From 10a9a2f5ec66a8c6b82890f329f3bad2ef939af1 Mon Sep 17 00:00:00 2001 From: David Blacka Date: Fri, 13 Jun 2008 22:36:13 -0400 Subject: [PATCH] initial website contents --- index.html | 99 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ main.css | 47 ++++++++++++++++++++++++++ 2 files changed, 146 insertions(+) create mode 100644 index.html create mode 100644 main.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..1325cbd --- /dev/null +++ b/index.html @@ -0,0 +1,99 @@ + + + + + + python-rwhoisd + + + + +
+

python-rwhoisd

+
+

python-rwhoisd is a simple RWhois server (see RFC 2167 written in python.

+ +

It uses in-memory data structures, and it intuits the schema + based on the data it sees. The server takes as input a schema file + which just describes which attributes should be indexed (and how), + and data files which are similar to the C rwhoisd's data files.

+ +

This version supports a sort of extended query syntax: IP or CIDR + queries ending in "**" will result in a "subnet" search, where all + of the found subnets at or below the specified network will be + returned. Ending a IP or CIDR query with a single "*" will result + in a "supernet" search, returning all the networks enclosing the + queried network. (A plain network query will return the closest + enclosing network, including matching networks).

+ +

This server doesn't implement every possible feature of an RWhois + server. It generally just supports querying.

+ +

This software is licensed under the GPLv2.

+ +

The Software

+ + +

Contributing

+ +

This project is open source, and contributions are welcome. There are two basic ways to contribute changes to this project.

+
    +
  1. Send patches. Please send them to
  2. +
  3. Set up a git + repository that I can pull from.
  4. +
+ +

Comments? Discussion?

+ +

Comments may be sent directly to me (), although more + general discussion should occur on the rwhois@rwhois.net + mailing list.

+ + \ No newline at end of file diff --git a/main.css b/main.css new file mode 100644 index 0000000..a9b1f20 --- /dev/null +++ b/main.css @@ -0,0 +1,47 @@ +body +{ + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: medium; + margin-left: 60px; + margin-right: 40px; +# background-color: #CC9; +} + +p, li, table { font-size: 14px; } + +p.i1 +{ + margin-left: 2em; + } + +h1, h2 +{ + border-color: black; + border-width: 0 0 1px 0; + border-style: solid; + padding-left: 10px; +} +h1 +{ + font-size: 18pt; + +} + +h2 +{ + font-size: 14pt; + +} +table.download +{ + width: 70%; + margin: 0 auto 0 auto; + vertical-align: bottom; + text-align: left; + background-color: #996; + border-width: 1px; + border-color: #666; + border-style: dotted; +} +ul { list-style-type: circle; } +.hilite-text { font-style: italic; } -- 2.36.6