Revision: 1167
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1167&view=rev
Author: eht16
Date: 2010-03-15 14:08:47 +0000 (Mon, 15 Mar 2010)
Log Message:
-----------
Skip unavailable languages in LINGUAS (thanks to Christian Dywan).
Modified Paths:
--------------
trunk/geany-plugins/wscript
Modified: trunk/geany-plugins/wscript
===================================================================
--- trunk/geany-plugins/wscript 2010-03-15 14:01:58 UTC (rev 1166)
+++ trunk/geany-plugins/wscript 2010-03-15 14:08:47 UTC (rev 1167)
@@ -372,7 +372,10 @@
def write_linguas_file(self):
linguas = ''
if 'LINGUAS' in Build.bld.env:
- linguas = Build.bld.env['LINGUAS']
+ files = Build.bld.env['LINGUAS']
+ for po_filename in files.split(' '):
+ if os.path.exists ('po/%s.po' % po_filename):
+ linguas += '%s ' % po_filename
else:
files = os.listdir('%s/po' % self.path.abspath())
files.sort()
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1162
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1162&view=rev
Author: frlan
Date: 2010-03-12 11:05:59 +0000 (Fri, 12 Mar 2010)
Log Message:
-----------
GeanyLaTeX: If KOMA script is active, use the KOMA way of doing a landscape document
Modified Paths:
--------------
trunk/geanylatex/ChangeLog
trunk/geanylatex/src/geanylatex.c
Modified: trunk/geanylatex/ChangeLog
===================================================================
--- trunk/geanylatex/ChangeLog 2010-03-12 11:05:18 UTC (rev 1161)
+++ trunk/geanylatex/ChangeLog 2010-03-12 11:05:59 UTC (rev 1162)
@@ -1,7 +1,13 @@
+2010-03-12 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
+
+ * Add a very first attempt to support landscape on wizard. Output is
+ far away from being good.
+
+
2010-01-27 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
- * Add an example spec file for creating rpm files.
- Thanks to Krzysztof Goliński and Dominic Hopf for efforts here.
+ * Add an example spec file for creating rpm files.
+ Thanks to Krzysztof Goliński and Dominic Hopf for efforts here.
2010-01-16 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
Modified: trunk/geanylatex/src/geanylatex.c
===================================================================
--- trunk/geanylatex/src/geanylatex.c 2010-03-12 11:05:18 UTC (rev 1161)
+++ trunk/geanylatex/src/geanylatex.c 2010-03-12 11:05:59 UTC (rev 1162)
@@ -1308,7 +1308,14 @@
{
case 2:
{
- orientation_string = g_utf8_casefold("landscape", -1);
+ if (KOMA_active == TRUE)
+ {
+ orientation_string = g_utf8_casefold("paper=landscape", -1);
+ }
+ else
+ {
+ orientation_string = g_utf8_casefold("landscape", -1);
+ }
break;
}
/* 1 and default currently not handled differently, but
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Plugins GTK 2.8 build test failed at: plugins loading test
See http://nightly.geany.org/misc/build_gtk28_plugins_stderr.log for details.
Error messages:
../../gtk28_test_plugins/geanyinsertnum/src/insertnum.c:123:1: warning: "sci_get_line_end_position" redefined
In file included from ../../../../../usr/local/include/geany/geanyplugin.h:54,
from ../../gtk28_test_plugins/geanyinsertnum/src/insertnum.c:25:
../../../../../usr/local/include/geany/geanyfunctions.h:175:1: warning: this is the location of the previous definition
...
../../gtk28_test_plugins/pretty-printer/src/PrettyPrinter.c:812: warning: ISO C90 forbids mixed declarations and code
../../gtk28_test_plugins/pretty-printer/src/PrettyPrinter.c: In function 'processDoctype':
../../gtk28_test_plugins/pretty-printer/src/PrettyPrinter.c:832: warning: ISO C90 forbids mixed declarations and code
../../gtk28_test_plugins/pretty-printer/src/PrettyPrinter.c:838: warning: ISO C90 forbids mixed declarations and code
../../gtk28_test_plugins/pretty-printer/src/PrettyPrinter.c:866: warning: ISO C90 forbids mixed declarations and code
** (plugin_test:7725): WARNING **: Can't load plugin: /home/enrico/geany/_build_/plugins_gtk28/default/geanyinsertnum.so: undefined symbol: gtk_widget_set_can_default
http://nightly.geany.org/
Plugins Windows build failed at: waf build
See http://nightly.geany.org/win32/build_win32_plugins_stderr.log for details.
Error messages:
../../plugins_svn/geanyinsertnum/src/insertnum.c:123:1: warning: "sci_get_line_end_position" redefined
In file included from ../../../../../usr/local/cross-tools/include/geany/geanyplugin.h:54,
from ../../plugins_svn/geanyinsertnum/src/insertnum.c:25:
../../../../../usr/local/cross-tools/include/geany/geanyfunctions.h:175:1: warning: this is the location of the previous definition
...
../../plugins_svn/pretty-printer/src/PrettyPrinter.c:866: warning: ISO C90 forbids mixed declarations and code
default/geanyinsertnum/src/insertnum_4.o: In function `on_insert_numbers_activate':
/home/enrico/geany/_build_/plugins_win32/../../plugins_svn/geanyinsertnum/src/insertnum.c:437: undefined reference to `_gtk_widget_set_can_default'
collect2: ld returned 1 exit status
Build failed
-> task failed (err #1):
{task: cc_link insertnum_4.o -> geanyinsertnum.dll}
http://nightly.geany.org/