Reorganized documentation to clean doc/ for user-readable files
authorW. Trevor King <wking@drexel.edu>
Sat, 23 Jan 2010 16:40:11 +0000 (11:40 -0500)
committerW. Trevor King <wking@drexel.edu>
Sat, 23 Jan 2010 16:40:11 +0000 (11:40 -0500)
Makefile
README
doc/spam [moved from doc/SPAM with 100% similarity]
doc/src/be.1.sgml [moved from doc/be.1.sgml with 100% similarity]
doc/src/module.mk [moved from doc/module.mk with 98% similarity]
doc/tutorial [new file with mode: 0644]
setup.py

index 03889332adfab43b8abdff9b04574c97cde9b15e..ad78ccb3fc4676f480bc9c610e570198b027421a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -27,7 +27,7 @@ SHELL = /bin/bash
 PATH = /usr/bin:/bin
 
 # Directories with semantic meaning
-DOC_DIR := doc
+DOC_DIR := doc/src
 
 # Variables that will be extended by module include files
 GENERATED_FILES := libbe/_version.py build
diff --git a/README b/README
index 031ae131847e5cb081c2a23d65773cf2f0efb4a9..428ca86bd9ea82aa954c0cf64b89c0e7471a67a8 100644 (file)
--- a/README
+++ b/README
@@ -21,3 +21,10 @@ To create bugs, use "be new $DESCRIPTION".  To comment on bugs, you
 can can use "be comment $BUG_ID".  To close a bug, use "be close
 $BUG_ID" or "be status $BUG_ID fixed".  For more commands, see "be
 help".  You can also look at the usage examples in test_usage.sh.
+
+Documentation
+=============
+
+If "be help" isn't scratching your itch, there's also
+  * doc/tutorial        (a gentle introduction to BE)
+  * doc/README.dev      (a guide to hacking BE)
similarity index 100%
rename from doc/SPAM
rename to doc/spam
similarity index 100%
rename from doc/be.1.sgml
rename to doc/src/be.1.sgml
similarity index 98%
rename from doc/module.mk
rename to doc/src/module.mk
index 960f7c032bbf4dcdf7d953c667a6719d260ca376..ea4eacc6a7be732dc859e8ac72a21f306a60fd65 100644 (file)
@@ -23,7 +23,7 @@
 
 # Makefile module for documentation
 
-MODULE_DIR := doc
+MODULE_DIR := doc/src
 
 MANPAGES = be.1
 manpage_files = $(patsubst %,${MODULE_DIR}/%,${MANPAGES})
diff --git a/doc/tutorial b/doc/tutorial
new file mode 100644 (file)
index 0000000..1333ed7
--- /dev/null
@@ -0,0 +1 @@
+TODO
index 9c3c080b3c942ea4e3fdf60ced4d06ee74171ad1..2bb724c233e5a2638903fd4719a8bed4db09a285 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -21,6 +21,6 @@ setup(
               'libbe.util'],
     scripts=['be'],
     data_files=[
-        ('share/man/man1', ['doc/be.1']),
+        ('share/man/man1', ['doc/src/be.1']),
         ]
     )