summaryrefslogtreecommitdiff
path: root/portato/gui/gtk/views.py
diff options
context:
space:
mode:
authorNecoro <>2008-01-28 19:59:25 +0000
committerNecoro <>2008-01-28 19:59:25 +0000
commit0a99d2920f65dc3d92a24d32c1fbfe135a6435c1 (patch)
tree34dbf0072507dd50fdfc6bdd23f8f4d871982ab4 /portato/gui/gtk/views.py
parent242c73bb80ca95fc4e2f803f60ab1b35a610aa37 (diff)
downloadportato-0a99d2920f65dc3d92a24d32c1fbfe135a6435c1.tar.gz
portato-0a99d2920f65dc3d92a24d32c1fbfe135a6435c1.tar.bz2
portato-0a99d2920f65dc3d92a24d32c1fbfe135a6435c1.zip
r747@Devoty: necoro | 2008-01-28 20:57:52 +0100
really use gentoo syntax
Diffstat (limited to '')
-rw-r--r--portato/gui/gtk/views.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/portato/gui/gtk/views.py b/portato/gui/gtk/views.py
index 8a73bab..d341c10 100644
--- a/portato/gui/gtk/views.py
+++ b/portato/gui/gtk/views.py
@@ -84,10 +84,14 @@ class HighlightView (gtksourceview2.View, LazyView):
language = None
old_lang = None
for lang in languages:
- if old_lang and not language:
+ if old_lang:
warning(_("No %(old)s language file installed. Falling back to %(new)s."), {"old" : old_lang, "new" : lang})
+
language = man.get_language(lang)
- old_lang = lang
+ if language:
+ break
+ else:
+ old_lang = lang
if not language and old_lang:
warning(_("No %(old)s language file installed. Disable highlighting."), {"old" : old_lang})
templateLars Hjemli1-21/+32 Make the descriptions more helpfull. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2007-02-04Add support for lightweight tagsLars Hjemli2-19/+37 There is nothing bad about a tag that has no tag-object, but the old code didn't handle such tags correctly. Fix it. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2007-02-04Read repo-info from /etc/cgitrcLars Hjemli5-55/+120 This makes cgit read all repo-info from the configfile, instead of scanning for possible git-dirs below a common root path. This is primarily done to get better security (separate physical path from logical repo-name). In /etc/cgitrc each repo is registered with the following keys: repo.url repo.name repo.path repo.desc repo.owner Note: *Required keys are repo.url and repo.path, all others are optional *Each occurrence of repo.url starts a new repository registration *Default value for repo.name is taken from repo.url *The value of repo.url cannot contain characters with special meaning for urls (i.e. one of /?%&), while repo.name can contain anything. Example: repo.url=cgit-pub repo.name=cgit/public repo.path=/pub/git/cgit repo.desc=My public cgit repo repo.owner=Lars Hjemli repo.url=cgit-priv repo.name=cgit/private repo.path=/home/larsh/src/cgit/.git repo.desc=My private cgit repo repo.owner=Lars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2007-02-04Do not die if tag has no messageLars Hjemli1-2/+2 Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2007-02-03Fix search for non-virtual urlsLars Hjemli1-0/+6 When cgit don't use virtual urls, the current repo and page url parameters must be included in the search form as hidden input fields. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2007-01-28Update README with install/config informationLars Hjemli1-24/+28 Signed-off-by: Lars Hjemli <hjemli@gmail.com>