Changed the shipping configuration file into an example.
authorAaron Bentley <aaron.bentley@utoronto.ca>
Sat, 3 Dec 2005 22:52:49 +0000 (17:52 -0500)
committerAaron Bentley <aaron.bentley@utoronto.ca>
Sat, 3 Dec 2005 22:52:49 +0000 (17:52 -0500)
beweb/beweb/config.py [deleted file]
beweb/beweb/config.py.example [new file with mode: 0644]

diff --git a/beweb/beweb/config.py b/beweb/beweb/config.py
deleted file mode 100644 (file)
index 063b977..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-projects = {"be": ("Bugs Everywhere","/home/abentley/be"),
-            "devel": ("PF Devel","/home/abentley/devel"),
-            "release": ("PF Release","/home/abentley/release"),
-}
diff --git a/beweb/beweb/config.py.example b/beweb/beweb/config.py.example
new file mode 100644 (file)
index 0000000..8745c6d
--- /dev/null
@@ -0,0 +1,10 @@
+# This is an example beweb configuration file.
+
+# One thing we need is a map of projects.  Projects have a beweb ID, a path,
+# and a display name.
+
+# In this example, the 'be' beweb ID is assigned the display name "Bugs 
+# Everywhere" and the path "/home/abentley/be"
+
+projects = {"be": ("Bugs Everywhere","/home/abentley/be"),
+           }