--- a/.hgignore Fri Nov 19 01:23:10 2010 +0900
+++ b/.hgignore Fri Nov 19 01:24:50 2010 +0900
@@ -2,4 +2,8 @@
syntax: regexp
^lib/redbot/src$
syntax: regexp
-^lib/redbot/web$
\ No newline at end of file
+^lib/redbot/web$
+syntax: regexp
+^\.pydevproject$
+syntax: regexp
+^\.project$
\ No newline at end of file
--- a/.project Fri Nov 19 01:23:10 2010 +0900
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>redbot</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.python.pydev.PyDevBuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.python.pydev.pythonNature</nature>
- </natures>
-</projectDescription>
--- a/.pydevproject Fri Nov 19 01:23:10 2010 +0900
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<?eclipse-pydev version="1.0"?>
-
-<pydev_project>
-<pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH">
-<path>/redbot/src</path>
-</pydev_pathproperty>
-<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 2.6</pydev_property>
-<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">py26</pydev_property>
-<pydev_pathproperty name="org.python.pydev.PROJECT_EXTERNAL_SOURCE_PATH">
-<path>/opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/nbhttp</path>
-</pydev_pathproperty>
-</pydev_project>
--- a/README.rst Fri Nov 19 01:23:10 2010 +0900
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,78 +0,0 @@
-===
-RED
-===
-
-This is RED, the Resource Expert Droid.
-
-Requirements
-------------
-
-RED needs:
-
-1. Python 2.5 or greater; see <http://python.org/>
-2. a Web server that implements the CGI interface; e.g., Apache
- <http://httpd.apache.org/>.
-3. The nbhttp library; see <http://github.com/mnot/nbhttp/>
-4. Optionally, RED will take advantage of the pyevent extension, if installed.
- See PyEvent <http://code.google.com/p/pyevent/>.
-
-Installing RED
---------------
-
-Unpack the RED tarball. There are a number of interesting files:
-
-- src/webui.py - the Web frontend for RED. This is what is run by the server.
-- src/\*.py - other Python files necessary for RED.
-- web/\* - RED's CSS stylesheet and JavaScript libraries.
-
-Place webui.py where you wish it to be served from the Web server. For example,
-with Apache you can put it in a directory and add these configuration directives
-(e.g., in .htaccess, if enabled)::
-
- AddHandler cgi-script .py
- DirectoryIndex webui.py
-
-If the directory is the root directory for your server "example.com",
-this will configure RED to be at the URI "http://example.com/".
-
-The contents of the web directory need to be made available on the server;
-by default, they're in the 'static' subdirectory of the script's URI. This
-can be changed using the 'static_root' configuration variable in webui.py.
-
-Finally, the other .py files in src must be available to Python; you can either
-place them in the same directory, or somewhere else on your PYTHONPATH. See
-Python's documentation for more information.
-
-Support, Reporting Issues and Contributing
-------------------------------------------
-
-See <http://REDbot.org/project> to give feedback, report issues, and contribute
-to the project. You can also join the redbot-users mailing list there.
-
-Credits
--------
-
-Icons by Momenticon <http://momenticon.com/>.
-
-License
--------
-
-Copyright (c) 2008-2009 Mark Nottingham
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.