From e8388374af659c5795493842477e7e2cf0c0810b Mon Sep 17 00:00:00 2001 From: Tom Cort Date: Mon, 26 Nov 2007 23:18:18 -0500 Subject: [PATCH] Add project website files. --- www/index.html | 97 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ www/style.css | 90 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 187 insertions(+) create mode 100644 www/index.html create mode 100644 www/style.css diff --git a/www/index.html b/www/index.html new file mode 100644 index 0000000..ec1b2ba --- /dev/null +++ b/www/index.html @@ -0,0 +1,97 @@ + + + + +Welcome to the inoclam Project Website + + + + + + +
+
+

Introduction

+

+ inoclam uses inotify + to watch user specified directories. When a file is created, changed + or copied to one of the monitored directories, the file is virus checked with + ClamAV. If a virus is detected, + the file is removed from the file system and the administrator is notified. +

+

License

+

+ This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. +

+

+ This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. +

+

+ You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +

+

Requirements

+

+

+

+

Git Repository

+

+ The inoclam project team uses the git version control system + to manage the inoclam source code. A copy of our work is hosted on + repo.or.cz at no cost to us, thanks Petr Baudis! You may explore the + code history via git-web at the following URL: + http://repo.or.cz/w/inoclam.git The repository itself + may be accessed with git at the following URL: + git://repo.or.cz/inoclam.git +

+
+git clone git://repo.or.cz/inoclam.git
+			
+

Contact Us

+

+ Patches, comments, questions and suggestions should be directed to + tom.cort@state.vt.us. +

+
+
+ + + diff --git a/www/style.css b/www/style.css new file mode 100644 index 0000000..b9ec92e --- /dev/null +++ b/www/style.css @@ -0,0 +1,90 @@ +/* + * inoclam - Inotify+ClamAV virus scanner + * Copyright (C) 2007 Vermont Department of Taxes + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + * Contributor(s): + * Tom Cort + */ + +* { + padding: 0; + margin: 0; +} + +body { + font-family: "Trebuchet MS" Verdana, Arial, sans-serif; + font-size: .9em; +} + +h3 { + font-size: 20px; + color: #666666; + padding-top: 7px; + padding-bottom: 7px; +} + +ul { + padding-left: 50px; + margin-top: 10px; + margin-bottom: 10px; +} + +p { + margin-top: 10px; + margin-bottom: 10px; +} + +blockquote { + padding-left: 40px; +} + +pre { + background-color: #eeeeee; + border: 1px dotted #000000; + padding: 10px 0px 0px 10px; + margin-top: 10px; + margin-bottom: 10px; +} + +#header { + margin: 0px auto 0 auto; + text-align: center; + font-size: 16pt; + border-bottom: dotted 1px #cccccc; + padding: 10px 0 10px 0; + color: #666666; + background: #cceecc; +} + +#container { + margin: 0 auto; + width: 70%; +} + +#content { + padding: 10px 0 10px 0; +} + +#footer { + margin: 20px auto 0 auto; + text-align: center; + border-top: 1px dotted #000000; + padding: 10px 0 10px 0; + color: #666666; + background: #eeeeee; +} + -- 2.11.4.GIT