Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/scripts/genpolist.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/genpolist.py')
-rw-r--r--scripts/genpolist.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/genpolist.py b/scripts/genpolist.py
new file mode 100644
index 0000000..558926f
--- /dev/null
+++ b/scripts/genpolist.py
@@ -0,0 +1,9 @@
+#!/usr/bin/env python
+
+import os
+
+activities = ['../' + rep for rep in os.listdir('../') if rep.endswith('activity')]
+for activity in activities:
+ for f in sorted(os.listdir(os.path.join(activity,'po'))):
+ print 'po/' + f
+ \ No newline at end of file