]> www.wagner.pp.ru Git - oss/ljdump.git/commitdiff
move README to separate file
authorGreg Hewgill <greg@hewgill.com>
Sat, 10 Jan 2009 00:27:33 +0000 (13:27 +1300)
committerGreg Hewgill <greg@hewgill.com>
Sat, 10 Jan 2009 01:12:26 +0000 (14:12 +1300)
README.txt [new file with mode: 0644]
build
ljdump.py

diff --git a/README.txt b/README.txt
new file mode 100644 (file)
index 0000000..d9deccb
--- /dev/null
@@ -0,0 +1,24 @@
+ljdump - livejournal archiver
+
+This program reads the journal entries from a livejournal (or compatible)
+blog site and archives them in a subdirectory named after the journal name.
+
+The configuration is read from "ljdump.config". A sample configuration is
+provided in "ljdump.config.sample", which should be copied and then edited.
+The configuration settings are:
+
+  server - The XMLRPC server URL. This should only need to be changed
+           if you are dumping a journal that is livejournal-compatible
+           but is not livejournal itself.
+
+  username - The livejournal user name. A subdirectory will be created
+             with this same name to store the journal entries.
+
+  password - The account password. This password is never sent in the
+             clear; the livejournal "challenge" password mechanism is used.
+
+This program may be run as often as needed to bring the backup copy up
+to date. Both new and updated items are downloaded.
+
+The community http://ljdump.livejournal.com has been set up for questions
+or comments.
diff --git a/build b/build
index 6d0ce92ee8af81909486be31f2ae5dbcb9ca240a..24b2d254cdb9fc183e7aad80a3e06a20f8074c1c 100755 (executable)
--- a/build
+++ b/build
@@ -5,7 +5,7 @@ VERSION=`grep Version ljdump.py | cut -d' ' -f3`
 DIR=ljdump-$VERSION
 rm -rf $DIR
 mkdir $DIR
-cp ChangeLog ljdump.py ljdump.config.sample $DIR/
+cp ChangeLog README.txt ljdump.py ljdump.config.sample $DIR/
 
 TARGZ=ljdump-$VERSION.tar.gz
 rm $TARGZ
index 42f1d968df3150b1f4d3665d48aa390a4b2952a1..604774edac41ab2cf174573414a5783827134c82 100755 (executable)
--- a/ljdump.py
+++ b/ljdump.py
@@ -4,31 +4,6 @@
 # Greg Hewgill <greg@hewgill.com> http://hewgill.com
 # Version 1.3.2
 #
-# $Id$
-#
-# This program reads the journal entries from a livejournal (or compatible)
-# blog site and archives them in a subdirectory named after the journal name.
-#
-# The configuration is read from "ljdump.config". A sample configuration is
-# provided in "ljdump.config.sample", which should be copied and then edited.
-# The configuration settings are:
-#
-#   server - The XMLRPC server URL. This should only need to be changed
-#            if you are dumping a journal that is livejournal-compatible
-#            but is not livejournal itself.
-#
-#   username - The livejournal user name. A subdirectory will be created
-#              with this same name to store the journal entries.
-#
-#   password - The account password. This password is never sent in the
-#              clear; the livejournal "challenge" password mechanism is used.
-#
-# This program may be run as often as needed to bring the backup copy up
-# to date. Both new and updated items are downloaded.
-#
-# The community http://ljdump.livejournal.com has been set up for questions
-# or comments.
-#
 # LICENSE
 #
 # This software is provided 'as-is', without any express or implied