Move all docs to docs/
authorLennart Poettering <lennart@poettering.net>
Sat, 6 Aug 2005 12:46:45 +0000 (12:46 +0000)
committerLennart Poettering <lennart@poettering.net>
Sat, 6 Aug 2005 12:46:45 +0000 (12:46 +0000)
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@245 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe

avahi-daemon/embedd-file.py [deleted file]
docs/DBUS-API [moved from avahi-daemon/DBUS-API with 100% similarity]
docs/HACKING [moved from HACKING with 100% similarity]
docs/INSTALL [moved from INSTALL with 100% similarity]
docs/README [moved from README with 100% similarity]
docs/todo [moved from todo with 100% similarity]

diff --git a/avahi-daemon/embedd-file.py b/avahi-daemon/embedd-file.py
deleted file mode 100644 (file)
index eaa250f..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-#!/usr/bin/python
-
-import os, sys
-
-def usage(ret = 0):
-    print "%s [-s] <file> <symbol>" % sys.argv[0]
-    sys.exit(ret)
-
-args = sys.argv[1:]
-
-use_static = False
-
-if len(args) >= 1 and args[0] == '-s':
-    use_static = True
-    args = args[1:]
-
-if len(args) >= 1 and args[0] == '-h':
-    usage()
-
-if len(args) != 2:
-    sys.stderr("Wrong number of arguments")
-    usage(1)
-
-f = file(args[0])
-t = f.read()
-f.close()
-
-out = sys.stdout
-
-if use_static:
-    out.write("static ")
-
-out.write('const char %s[] = \n"' % args[1]);
-
-n = 0
-
-for c in t:
-    if c == '\n':
-        out.write('\\n"\n"')
-        n = 0
-    elif c == '"':
-        out.write('\\"')
-        n += 2
-    elif ord(c) < 32 or ord(c) >= 127:
-        out.write('\\x%02x' % ord(c))
-        n += 4
-    else:
-        out.write(c)
-        n += 1
-
-    if n >= 76:
-        out.write('"\n"')
-        n = 0
-        
-out.write('";\n');
-
similarity index 100%
rename from avahi-daemon/DBUS-API
rename to docs/DBUS-API
similarity index 100%
rename from HACKING
rename to docs/HACKING
similarity index 100%
rename from INSTALL
rename to docs/INSTALL
similarity index 100%
rename from README
rename to docs/README
diff --git a/todo b/docs/todo
similarity index 100%
rename from todo
rename to docs/todo