ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/web/www/index.xhtml
(Generate patch)

Comparing web/www/index.xhtml (file contents):
Revision 1.2 by tdb, Sat Feb 9 15:00:42 2002 UTC vs.
Revision 1.33 by tdb, Wed Jun 5 10:49:40 2013 UTC

# Line 1 | Line 1
1 < <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2 <
3 < <!--
4 <    $Author$
5 <    $Id$
6 < -->
7 <
8 <
9 < <html>
10 <
11 < <head>
12 < <title>The i-scream Project</title>
13 < <meta name="description" content="The i-scream Project is a central monitoring system for Solaris, Linux, FreeBSD and Windows servers.">
14 < <meta name="keywords" content="i-scream, project, central monitoring system, unix, linux, nt, solaris, server, freebsd, alert">
15 < </head>
16 <
17 < <body bgcolor="#ffffff" link="#0000ff" alink="#3333cc" vlink="#3333cc" text="#000066">
18 <
19 < <table border="0" cellpadding="2" cellspacing="2">
20 < <tr>
21 <  <td valign="top">
22 < <!--#include virtual="left.inc" -->
23 <  </td>
24 <  <td valign="top">
25 < <!--#include virtual="title.inc" -->
26 < <!--#include virtual="welcome.inc" -->
27 <
28 < <!--#include virtual="contents.inc" -->
29 <
30 < <!--#include virtual="bottom.inc" -->
31 <  </td>
32 < </tr>
33 < </table>
34 <
35 < </body>
36 <
37 < </html>
1 > <!--#include virtual="/doctype.inc" -->
2 >  <head>
3 >    <title>
4 >      i-scream homepage
5 >    </title>
6 > <!--#include virtual="/style.inc" -->
7 >  </head>
8 >  <body>
9 >    <div id="container">
10 >      <div id="main">
11 > <!--#include virtual="/header.inc" -->
12 >        <div id="contents">
13 >          <h1 class="top">
14 >            i-scream homepage
15 >          </h1>
16 >          <div id="topnav">
17 >            <ul>
18 >              <li>
19 >                <a href="#news">News</a>
20 >              </li>
21 >              <li>
22 >                <a href="#projects">Projects</a>
23 >              </li>
24 >              <li>
25 >                <a href="#about">About</a>
26 >              </li>
27 >              <li>
28 >                <a href="#search">Search</a>
29 >              </li>
30 >            </ul>
31 >          </div>
32 >          <h2>
33 >            <a id="news">News</a>
34 >          </h2>
35 >          <h3>
36 >            Thursday 12 January 2012
37 >          </h3>
38 >          <h4>
39 >            Source code moved to Git
40 >          </h4>
41 >          <p>
42 >            We've moved both libstatgrab and pystatgrab to their
43 >            own Git repositories. CVS will remain for everything
44 >            else for now.
45 >          </p>
46 >          <h3>
47 >            Sunday 21 February 2010
48 >          </h3>
49 >          <h4>
50 >            libstatgrab 0.17 released
51 >          </h4>
52 >          <p>
53 >            <a href="/libstatgrab/">libstatgrab</a> 0.17 has
54 >            been released. This release contains minor changes
55 >            and bugfixes.
56 >          </p>
57 >          <h3>
58 >            Monday 17 March 2008
59 >          </h3>
60 >          <h4>
61 >            libstatgrab 0.16 released
62 >          </h4>
63 >          <p>
64 >            <a href="/libstatgrab/">libstatgrab</a> 0.16 has
65 >            been released. This release just contains bugfixes.
66 >          </p>
67 >          <h3>
68 >            Saturday 14 July 2007
69 >          </h3>
70 >          <h4>
71 >            libstatgrab 0.15 released
72 >          </h4>
73 >          <p>
74 >            <a href="/libstatgrab/">libstatgrab</a> 0.15 has
75 >            been released. This release contains mainly bugfixes.
76 >          </p>
77 >          <h4>
78 >            pystatgrab 0.5 released
79 >          </h4>
80 >          <p>
81 >            <a href="/pystatgrab/">pystatgrab</a> 0.5 has been
82 >            released. This release contains an important bugfix.
83 >          </p>
84 >          <h2>
85 >            <a id="projects">Projects</a>
86 >          </h2>
87 >          <h3>
88 >            libstatgrab
89 >          </h3>
90 >          <ul>
91 >            <li>
92 >              <a href="/libstatgrab/">libstatgrab homepage</a>
93 >            </li>
94 >          </ul>
95 >          <p>
96 >            libstatgrab is a library and tool set for acquiring system
97 >            statistics from the operating system. An API is provided
98 >            for other applications to easily accesses a variety of
99 >            system statistics, including, amongst other things, CPU
100 >            usage, VM usage, disk statistics, and network interface
101 >            usage.
102 >          </p>
103 >          <p>
104 >            A handful of tools are also provided to make this
105 >            information more readily available to users. A curses based
106 >            tool gives users a "top like" view of the current state of
107 >            their system, and a "sysctl like" tool gives easy access to
108 >            the statistics for other applications that can't easily
109 >            used the C API.
110 >          </p>
111 >          <p>
112 >            Finally scripts are provided to quickly setup MRTG to use
113 >            libstatgrab for generating graphs of the available
114 >            statistics.
115 >          </p>
116 >          <h3>
117 >            pystatgrab
118 >          </h3>
119 >          <ul>
120 >            <li>
121 >              <a href="/pystatgrab/">pystatgrab homepage</a>
122 >            </li>
123 >          </ul>
124 >          <p>
125 >            pystatgrab is a set of Python bindings for the libstatgrab
126 >            library. It provides a set of function calls identical to
127 >            those of libstatgrab, and returns data in structures that
128 >            logically map on to those of libstatgrab.
129 >          </p>
130 >          <h3>
131 >            CMS - Central Monitoring System
132 >          </h3>
133 >          <ul>
134 >            <li>
135 >              <a href="/cms/">CMS homepage</a>
136 >            </li>
137 >          </ul>
138 >          <p>
139 >            i-scream originally started out with just the CMS (Central
140 >            Monitoring System) project. Since then it's moved on to
141 >            have other related projects, as well as the CMS.
142 >          </p>
143 >          <p>
144 >            The CMS is no longer being developed.
145 >          </p>
146 >          <h2>
147 >            <a id="about">About</a>
148 >          </h2>
149 >          <p>
150 >            The i-scream group is a causual team of individuals with a
151 >            variety of personal interests, working together to produce
152 >            software, tools, and libraries that might be of use or
153 >            interest to others.
154 >          </p>
155 >          <p>
156 >            To find out more about who we are see the
157 >            <a href="/who.xhtml">Who We Are</a> webpage.
158 >          </p>
159 >          <h2>
160 >            <a id="search">Search</a>
161 >          </h2>
162 >          <p>
163 >            Use this form to search the whole i-scream website,
164 >            courtesy of Google.
165 >          </p>
166 >          <div>
167 >            <script>
168 >              (function() {
169 >                var cx = '015923082814183233257:dz2h65arce8';
170 >                var gcse = document.createElement('script');
171 >                gcse.type = 'text/javascript';
172 >                gcse.async = true;
173 >                gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
174 >                    '//www.google.com/cse/cse.js?cx=' + cx;
175 >                var s = document.getElementsByTagName('script')[0];
176 >                s.parentNode.insertBefore(gcse, s);
177 >              })();
178 >            </script>
179 >            <gcse:search></gcse:search>
180 >          </div>
181 >        </div>
182 > <!--#include virtual="/footer.inc" -->
183 >      </div>
184 > <!--#include virtual="/menu.inc" -->
185 >    </div>
186 >  </body>
187 > </html>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines