← Back to team overview

keryx team mailing list archive

[Merge] lp:~mac9416/keryx/trunk into lp:keryx

 

mac9416 has proposed merging lp:~mac9416/keryx/trunk into lp:keryx.

Requested reviews:
    Keryx Admins (keryx-admins)

Fixed newline characters in keryx.conf. Made CLI project creation default to debian plugin, ignoring plugin argument
-- 
https://code.launchpad.net/~mac9416/keryx/trunk/+merge/10408
Your team Keryx Development Team is subscribed to branch lp:keryx.
=== modified file 'keryx.conf' (properties changed: +x to -x)
--- keryx.conf	2009-08-16 01:38:01 +0000
+++ keryx.conf	2009-08-19 12:59:11 +0000
@@ -1,7 +1,7 @@
-LogDir=../logs
-PluginsDir=../plugins
-ProjectsDir=../projects
-PixmapsDir=../pixmaps
-ThemesDir=../pixmaps/themes
-DefaultTheme=../pixmaps/themes/default
-CurrentTheme=../pixmaps/themes/default
+LogDir=../logs
+PluginsDir=../plugins
+ProjectsDir=../projects
+PixmapsDir=../pixmaps
+ThemesDir=../pixmaps/themes
+DefaultTheme=../pixmaps/themes/default
+CurrentTheme=../pixmaps/themes/default

=== modified file 'keryx.py' (properties changed: +x to -x)
--- keryx.py	2009-02-07 03:51:20 +0000
+++ keryx.py	2009-08-19 12:59:11 +0000
@@ -71,13 +71,13 @@
 if ('--create' in sys.argv):
     import platform
     from lib import plugins, project
-    try:
-        index = sys.argv.index('--create')
-        name = sys.argv[index + 1]
-        plugin_name = sys.argv[index + 2].lower()
-    except:
-        log.error(_('Unable to create project'))
-        sys.exit(1)
+#    try:
+    index = sys.argv.index('--create')
+    name = sys.argv[index + 1]
+    plugin_name = 'debian'
+#    except:
+#        log.error(_('Unable to create project'))
+#        sys.exit(1)
     plugins.load(consts.dirPlugins, '', False) # Don't load interface plugins
     for item in range(0,len(plugins.OSPluginList)):
         if plugin_name == plugins.OSPluginList[item][0].lower():


Follow ups