/opennms-assemblies/http-remoting/src/main/webapp/index.html
https://github.com/ajakubo1/opennms · HTML · 116 lines · 109 code · 0 blank · 7 comment · 0 complexity · fc9a19434f638a805137703bed6e45c1 MD5 · raw file
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>OpenNMS Remote Poller</title>
- <link rel="stylesheet" type="text/css" href="../opennms/css/styles.css" media="screen" />
- <link rel="stylesheet" type="text/css" href="../opennms/css/gwt-asset.css" media="screen" />
- <link rel="stylesheet" type="text/css" href="../opennms/css/onms-gwt-chrome.css" media="screen" />
- <link rel="stylesheet" type="text/css" href="../opennms/css/print.css" media="print" />
- <style type="text/css">
- .download-link {
- background-color: #659324;
- background-image: linear-gradient(#81BC2E, #659324);
- background-repeat: repeat-x;
- border: 0 none;
- border-radius: 6px 6px 6px 6px;
- box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2), 0 -1px 0 0 rgba(0, 0, 0, 0.3) inset;
- color: #FFFFFF;
- font-size: 16px;
- font-weight: normal;
- padding: 5px;
- text-align: left;
- text-decoration: none;
- text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
- /* Hide the links by default, they are shown based on a jquery HEAD command */
- display: none;
- }
- .download-link.unavailable {
- background-color: #656565;
- background-image: linear-gradient(#818181, #656565);
- background-repeat: repeat-x;
- }
- .download-link P {
- font-size: 12px;
- padding-left:1.8em;
- margin: 0px;
- }
- </style>
- <script type="text/javascript" src="js/jquery-2.0.3.js"></script>
- <script type="text/javascript">
- // Shorthand for 'onload'
- $(function() {
- $.getJSON('js/properties.json', function (json) {
- // Change all 'version' spans to the correct version
- $('.version').html(json.projectVersion);
- // Check to see if the installer EXE is present on the system; if so, show the download link.
- $.ajax({
- url: 'opennms-remote-poller-windows-' + json.projectVersion + '.exe',
- method: 'HEAD',
- error: function()
- {
- $('#download-unavailable').css("display", "inline-block");
- },
- success: function()
- {
- $('#download-local').css("display", "inline-block");
- }
- });
- }
- );
- });
- </script>
- </head>
- <body>
- <div id='header'>
- <h1 id='headerlogo'><a href='../opennms/index.jsp'><img src="../opennms/images/logo.png" alt='OpenNMS Web Console Home'/></a></h1>
- <div id='headerinfo' style='height:56px;'>
- <h2>OpenNMS Remote Poller</h2>
- </div>
- </div>
- <p style="padding:10px;">
- You can launch the remote poller by using Java Web Start. Just click
- below to get started.
- </p>
- <div style="padding:0px 10px 10px 10px">
- <h2><a href="webstart/app.jnlp">Remote Poller with GUI</a></h2>
- <p>
- Starts the remote poller with an interactive GUI. On first start, it will prompt you for authentication credentials
- and the name of the monitoring location for this remote poller. These values will be stored in a configuration file so
- that subsequent invocations can be done without the GUI, allowing background operation of the remote poller.
- </p>
- <h2><a href="webstart/headless.jnlp">Remote Poller without GUI</a></h2>
- <p>
- Starts the remote poller in the background without a status GUI. You must run the GUI version of the remote poller
- at least once to configure your monitoring location.
- </p>
- </div>
- <p style="padding:0px 10px 10px 10px">
- The remote poller software can also be installed as a system package on your local machine.
- </p>
- <div style="padding:0px 10px 10px 10px">
- <h2>RPM-based Linux (Red Hat, Fedora)</h2>
- <p>After configuring the OpenNMS yum repository, you can install the <code>opennms-remote-poller</code> package via yum.</p>
- <h2>APT-based Linux (Debian, Ubuntu)</h2>
- <p>After configuring the OpenNMS apt repository, you can install the <code>opennms-remote-poller</code> package via apt-get.</p>
- <h2>Microsoft Windows</h2>
- <!--
- <p>
- There are two ways to install the OpenNMS remote poller on Windows. You can either install it as a Windows service that
- wraps Java Web Start or you can install it with a local copy of the JAR. Both install options are available from the following
- installer package.
- </p>
- -->
- <p>
- The following installer package can be used to register the Java Web Start version of the remote poller as a Windows service.
- </p>
- <div id="download-local" class="download-link">
- <span>▼ <a href="opennms-remote-poller-windows-1.13.0-SNAPSHOT.exe" style="color:#FFFF88;">OpenNMS Remote Poller Installer</a></span>
- <p>Windows 2000, XP, 2003, Vista, 2008, 7, 8, 2012</p>
- <p>Version <span class="version">Unknown</span></p>
- </div>
- <div id="download-unavailable" class="download-link unavailable">
- <span>The Windows installer is not available for download.</span>
- </div>
- </div>
- </body>
- </html>