summaryrefslogtreecommitdiff
path: root/to-wiki/getalltitles.py
diff options
context:
space:
mode:
authorAkash Deshpande <fastakash@gmail.com>2016-09-03 16:13:28 -0400
committerAndras Timar <andras.timar@collabora.com>2016-09-09 07:16:25 +0000
commit187a8d006c9b738a387eedd65c0cb71e8257e6ce (patch)
tree98b73262401a0ca1a309c6d77364b6892ce561c3 /to-wiki/getalltitles.py
parentfbd93f4c667396b55f7c2df3707590ba56218b39 (diff)
help-to-wiki shell call replaced with a function
shell call to run getalltitles has been replaced with a function call. Also added a new option to save the title file alltitles.csv If this file is needed, to continue to generate this, please add -t to the run. Or else, please remove it so that a stale file is not kept around Change-Id: I2902243df59d415fb313efa7d4132b0190658fa3 Reviewed-on: https://gerrit.libreoffice.org/28650 Reviewed-by: jan iversen <jani@documentfoundation.org> Tested-by: jan iversen <jani@documentfoundation.org> Reviewed-by: Andras Timar <andras.timar@collabora.com>
Diffstat (limited to 'to-wiki/getalltitles.py')
-rwxr-xr-xto-wiki/getalltitles.py26
1 files changed, 13 insertions, 13 deletions
diff --git a/to-wiki/getalltitles.py b/to-wiki/getalltitles.py
index 8db9bcb457..71f5aed325 100755
--- a/to-wiki/getalltitles.py
+++ b/to-wiki/getalltitles.py
@@ -137,18 +137,18 @@ def parsexhp(filename):
title = title.strip('_')
title = make_unique(title)
alltitles.append(title)
- print filename + ';' + title + ';' + readable_title
-
-if len(sys.argv) < 2:
- print "getalltitles.py <directory>"
- print "e.g. getalltitles.py source/text/scalc"
- sys.exit(1)
-
-pattern = "xhp"
-
-for root, dirs, files in os.walk(sys.argv[1]):
- for i in files:
- if i.find(pattern) >= 0:
- parsexhp(root+"/"+i)
+ return((filename, title, readable_title))
+
+# Main Function
+def gettitles(path):
+ pattern = "xhp"
+ alltitles = []
+ for root, dirs, files in os.walk(path):
+ for i in files:
+ if i.find(pattern) >= 0:
+ t = parsexhp(root+"/"+i)
+ if t is not None:
+ alltitles.append(t)
+ return alltitles
# vim:set shiftwidth=4 softtabstop=4 expandtab: