From: arjen Date: Sat, 27 Oct 2007 08:47:35 +0000 (+0000) Subject: Index page and style sheet for the Gnucomo website X-Git-Tag: V0_0_11~18 X-Git-Url: http://www.andromeda.nl/gitweb/?p=gnucomo.git;a=commitdiff_plain;h=f388feb799a7c40d9cbb39c41980ec8691ba2b2f Index page and style sheet for the Gnucomo website --- diff --git a/doc/gnucomo.css b/doc/gnucomo.css new file mode 100644 index 0000000..5660da0 --- /dev/null +++ b/doc/gnucomo.css @@ -0,0 +1,123 @@ + +body +{ + background-color : rgb(120, 180, 150); +} + +h1 +{ + font-family : sans-serif ; + text-align : center ; +} + +h2 +{ + font-family : sans-serif ; +} + +h2.error +{ + font-family : sans-serif ; + color : red; +} + +div.login +{ + background : rgb(80, 120, 150) ; + border: solid; + border-width: thick; + border-color : cyan ; + padding : 1em; + margin : 10% ; + width: 80%; + text-align : center ; +} + +table +{ + width : 90% ; + border-width : medium ; + border-style : solid ; + border-collapse : collapse; + padding : 1px ; +} + +table.form +{ + border-style : none ; + border-collapse : collapse; + padding : 1px ; +} + +td +{ + font-family : sans-serif ; + text-align : left ; + border-width : thin ; + border-style : solid ; + vertical-align : top ; + padding : 2px ; +} + +td.form +{ + font-family : sans-serif ; + text-align : left ; + border-style : none ; + vertical-align : top ; + padding : 2px ; +} + +td.number +{ + text-align : right ; +} + +td.time +{ + width : 18em ; +} + +th +{ + border-width : thin ; + border-style : solid ; +} + + +/* Table styles for diff-like views */ + +td.left +{ + color : blue ; + font-family : sans-serif ; +} + +td.right +{ + color : lightgreen ; + font-family : sans-serif ; +} + +td.both +{ + color : red ; + font-family : sans-serif ; +} + +td.shaded +{ + color : lightgray ; + font-family : sans-serif ; +} + +textarea +{ + width : 60em ; + height : 10em ; +} + +img +{ + border-style : none ; +} diff --git a/doc/index.html b/doc/index.html new file mode 100644 index 0000000..2a64c8b --- /dev/null +++ b/doc/index.html @@ -0,0 +1,125 @@ + + + +Welcome to the home of the GNUCOMO project. + + + +

GNUCOMO: GNU COmputer MOnitoring

+

+Gnucomo Logo +

+

About the project

+

Welcome to the homepage of Gnucomo, the project to monitor the devices (mostly computers) in your network. +The aim of the project is to build a set of applications that will help administrators to monitor +networks as a whole for errors, attacks and security-breaches in a very user-friendly way. +It resembles an intrusion detection system, but doesn't want to redo the efforts made by other projects. +All types of possible entries are used as signals for detection of not normal situations. +

+

The gnucomo mailing-list can be used to ask questions or to join the project.

+ +

Goal and used technology

+

The project tries to achieve the following goals:

+ +

Gnucomo is licensed according to the GNU Public License V2. We rely on the following free software to perform the tasks needed: +

+ + +

The core team

+

+ The core team has agreed to take responsibilities for parts of the projects. +

+ +

+Core Team
+The core team on Gnucomo developer day 1. +

+ +

Links

+

Documentation

+

+ Gnucomo Development Manifest
+ Gnucomo Design documentation
+ Gnucomo User manual
+

+

Presentation

+

+ Presentation held at the CCAMP in Bocholt on August 22nd 2002. +
+ Presentation (in Dutch) held at the dotnet event in the Amsterdam RAI. +

+

Downloads

+

All documentation here is in XMLDoc format. Please be aware that this is still work in progress: +

+ + +

Other

+

+ A mailinglist for development has been created. All announces will be done here. +

+ + +

Known problems

+ + + + + + + + + + + + + + + + + + + + +
Log Nr.SubjectSynopsisStatePrior
17GnuCoMo Computer MonitoringERROR in gcm_daemon: Attribute 'source_ip' specified more than once SOLVED
2GnuCoMo Computer MonitoringLog entries rejected by gcm_inputNOTED
5GnuCoMo Computer MonitoringList of required and recommended softwareANALYZED
10GnuCoMo Computer MonitoringGcm_input may loose its input messageOPENED
11GnuCoMo Computer MonitoringIndicate type of data to gcm_inputOPENED
7GnuCoMo Computer MonitoringNotifications pageOPENED
8GnuCoMo Computer MonitoringRelated log_adv records on a log lineOPENED
9GnuCoMo Computer MonitoringInput filename for gcm_inputOPENED
+ +

+ + + diff --git a/doc/makefile b/doc/makefile index b78eb5f..4dfb900 100644 --- a/doc/makefile +++ b/doc/makefile @@ -7,7 +7,7 @@ .obj.eps: tgif -print -eps -color $< -XMLS = manifest.xml design.xml +XMLS = manifest.xml design.xml manual.xml IMAGES= dataflow.png architecture.png erd-action.png erd-anu.png erd-log.png \ erd-lognotif.png erd-notif.png erd-object.png erd-objissue.png \ @@ -25,7 +25,7 @@ PICTURES= dataflow.eps architecture.eps erd-action.eps erd-anu.eps erd-log.eps \ class-database_entity.eps classes-gcm_input.eps gcm_input-dataflow.eps \ classes-message_filter.eps -html: manifest.html design.html +html: manifest.xhtml design.xhtml manual.xhtml ps: manifest.ps design.ps @@ -33,8 +33,11 @@ txt: manifest.txt design.txt all: ps html txt -manifest.html : manifest.xml $(IMAGES) - xml2html manifest.xml > manifest.html +manual.xhtml : manual.xml $(IMAGES) + xml2html manual.xml > manual.xhtml + +manifest.xhtml : manifest.xml $(IMAGES) + xml2html manifest.xml > manifest.xhtml manifest.ps : manifest.xml $(PICTURES) xml2latex manifest.xml >manifest.tex @@ -48,8 +51,8 @@ manifest.pdf : manifest.xml $(PICTURES) manifest.txt : manifest.xml xml2text manifest.xml > manifest.txt -design.html : design.xml $(IMAGES) - xml2html design.xml > design.html +design.xhtml : design.xml $(IMAGES) + xml2html design.xml > design.xhtml design.ps : design.xml $(PICTURES) xml2latex design.xml >design.tex @@ -66,6 +69,6 @@ design.txt : design.xml check: xmllint --noout --valid $(XMLS) clean: - rm -f *.html *.ps *.tex *.dvi *.toc *.aux + rm -f *.html *.xhtml *.ps *.tex *.dvi *.toc *.aux rm -f *.log *.txt *.pdf rm -f $(IMAGES) $(PICTURES) diff --git a/doc/manual.xml b/doc/manual.xml index 4f15d78..ed8cbd1 100644 --- a/doc/manual.xml +++ b/doc/manual.xml @@ -1,12 +1,12 @@ - +