summaryrefslogtreecommitdiffstats
path: root/python/pykde/svnmergedocs.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/pykde/svnmergedocs.py')
-rw-r--r--python/pykde/svnmergedocs.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/python/pykde/svnmergedocs.py b/python/pykde/svnmergedocs.py
new file mode 100644
index 00000000..e77a908d
--- /dev/null
+++ b/python/pykde/svnmergedocs.py
@@ -0,0 +1,30 @@
+import os, os.path
+
+svnbase = "/home/jim/PyKDE/doc/classref"
+newbase = "/home/jim/PyKDE352/doc/classref"
+
+newfiles = os.listdir (newbase)
+
+for file in newfiles:
+ if os.path.isdir (file):
+ newpath = os.path.join (newbase, file)
+ svnpath = os.path.join (svnbase, file)
+ if os.path.exists (svnpath):
+ newdoc = os.listdir (newpath)
+ svndoc = os.listdir (svnpath)
+ for doc in newdoc:
+ os.system ("cp %s %s" % (os.path.join (newpath, doc), svnpath))
+ if doc not in svndoc:
+ os.system ("svn add %s" % (os.path.join (svnpath, doc)))
+ print "added %s" % doc
+ else:
+ os.system ("cp -R %s %s" % (newpath, svnpath))
+ os.system ("svn add %s" % svnpath)
+ else:
+ if os.path.exists (os.path.join (svnbase, file)):
+ os.system ("cp %s %s" % (os.path.join (newbase, file), svnbase))
+ else:
+ os.system ("cp %s %s" % (os.path.join (newbase, file), svnbase))
+ os.system ("svn add %s" % (os.path.join (svnbase, file)))
+
+ \ No newline at end of file