Revision: 1026
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1026&view=rev
Author: hyperair
Date: 2009-10-23 21:56:22 +0000 (Fri, 23 Oct 2009)
Log Message:
-----------
Add README for autotools
Added Paths:
-----------
branches/geany-plugins/geany-plugins-0.18/README
Added: branches/geany-plugins/geany-plugins-0.18/README
===================================================================
--- branches/geany-plugins/geany-plugins-0.18/README (rev 0)
+++ branches/geany-plugins/geany-plugins-0.18/README 2009-10-23 21:56:22 UTC (rev 1026)
@@ -0,0 +1,46 @@
+You can use Autotools to build the Geany plugins in this repository.
+
+Usage:
+./configure [arguments] or alternatively ./autogen.sh [arguments]
+make
+sudo make install
+
+This will configure, build and install most of the Geany plugins. There is some
+auto-detection in place which automagically disables some of the plug-ins if
+there are insufficient build dependencies. The following arguments can tweak the
+behaviour of the configure script:-
+
+=== Options ===
+A full listing of all supported options can be found in ./configure --help.
+
+== Enable/Disable Features ==
+The following options can be passed to ./configure in forms
+--enable-<option>=auto (default), --enable-<option>, --disable-<option>. In all
+cases, --enable-<option>=auto causes the feature to be enabled/disabled
+automatically based on whether the dependency exists on your system.
+--enable-<option> causes the feature to be forcefully enabled, causing configure
+to fail with an error message if you have missing
+dependencies. --disable-<option> causes the feature to be forcefully disabled.
+
+* geanylua -- the GeanyLua plug-in
+* gtkspell -- GeanyVC's spell-check support
+* spellcheck -- the Spellcheck plug-in
+
+Example:
+./configure --enable-geanylua --enable-gtkspell --enable-spellcheck
+
+This will force all optional plug-ins to be enabled even if dependencies are missing.
+
+
+== Other tweaks ==
+The following options can be passed to ./configure in the form
+--with-<option>=<argument>.
+
+* Lu's-pkg -- the name of the lua pkg-config package name.
+* geany-prefix -- Geany's prefix, used when compiling Geany.
+
+
+== Compiling Individual Plug-ins ==
+The Geany Plug-ins project uses a recursive automake build system, which means
+that after running ./configure, you may compile each individual plug-in by cd-ing
+into the respective plug-in directory and compiling it.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1025
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1025&view=rev
Author: hyperair
Date: 2009-10-23 21:55:37 +0000 (Fri, 23 Oct 2009)
Log Message:
-----------
Add README for autotools
Added Paths:
-----------
trunk/geany-plugins/README
Added: trunk/geany-plugins/README
===================================================================
--- trunk/geany-plugins/README (rev 0)
+++ trunk/geany-plugins/README 2009-10-23 21:55:37 UTC (rev 1025)
@@ -0,0 +1,46 @@
+You can use Autotools to build the Geany plugins in this repository.
+
+Usage:
+./configure [arguments] or alternatively ./autogen.sh [arguments]
+make
+sudo make install
+
+This will configure, build and install most of the Geany plugins. There is some
+auto-detection in place which automagically disables some of the plug-ins if
+there are insufficient build dependencies. The following arguments can tweak the
+behaviour of the configure script:-
+
+=== Options ===
+A full listing of all supported options can be found in ./configure --help.
+
+== Enable/Disable Features ==
+The following options can be passed to ./configure in forms
+--enable-<option>=auto (default), --enable-<option>, --disable-<option>. In all
+cases, --enable-<option>=auto causes the feature to be enabled/disabled
+automatically based on whether the dependency exists on your system.
+--enable-<option> causes the feature to be forcefully enabled, causing configure
+to fail with an error message if you have missing
+dependencies. --disable-<option> causes the feature to be forcefully disabled.
+
+* geanylua -- the GeanyLua plug-in
+* gtkspell -- GeanyVC's spell-check support
+* spellcheck -- the Spellcheck plug-in
+
+Example:
+./configure --enable-geanylua --enable-gtkspell --enable-spellcheck
+
+This will force all optional plug-ins to be enabled even if dependencies are missing.
+
+
+== Other tweaks ==
+The following options can be passed to ./configure in the form
+--with-<option>=<argument>.
+
+* Lu's-pkg -- the name of the lua pkg-config package name.
+* geany-prefix -- Geany's prefix, used when compiling Geany.
+
+
+== Compiling Individual Plug-ins ==
+The Geany Plug-ins project uses a recursive automake build system, which means
+that after running ./configure, you may compile each individual plug-in by cd-ing
+into the respective plug-in directory and compiling it.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1024
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1024&view=rev
Author: ntrel
Date: 2009-10-23 16:47:15 +0000 (Fri, 23 Oct 2009)
Log Message:
-----------
Remove trailing space from strings (patch by Frank & Dominic, thanks).
Remove double space in some strings.
Modified Paths:
--------------
trunk/geany-plugins/geanylua/examples/scripting/help.lua
trunk/geany-plugins/geanylua/glspi.h
trunk/geany-plugins/geanylua/glspi_app.c
trunk/geany-plugins/geanylua/glspi_dlg.c
trunk/geany-plugins/geanylua/glspi_sci.c
trunk/geany-plugins/geanylua/gsdlg_lua.c
Modified: trunk/geany-plugins/geanylua/examples/scripting/help.lua
===================================================================
--- trunk/geany-plugins/geanylua/examples/scripting/help.lua 2009-10-20 19:40:56 UTC (rev 1023)
+++ trunk/geany-plugins/geanylua/examples/scripting/help.lua 2009-10-23 16:47:15 UTC (rev 1024)
@@ -55,6 +55,6 @@
end
else
geany.message("Error launching help",
- "Can't find help file in:\n "..OwnHelpDir.."\nor:\n "..SysHelpDir)
+ "Can't find help file in:\n "..OwnHelpDir.."\nor:\n"..SysHelpDir)
end
Modified: trunk/geany-plugins/geanylua/glspi.h
===================================================================
--- trunk/geany-plugins/geanylua/glspi.h 2009-10-20 19:40:56 UTC (rev 1023)
+++ trunk/geany-plugins/geanylua/glspi.h 2009-10-23 16:47:15 UTC (rev 1024)
@@ -124,7 +124,7 @@
{
lua_pushfstring(L, _("Error in module \"%s\" at function %s():\n"
" invalid table in argument #%d:\n"
- " expected type \"%s\" for element #%d\n "),
+ " expected type \"%s\" for element #%d\n"),
LUA_MODULE_NAME, func+6, argnum, type, idx);
lua_error(L);
return 0;
Modified: trunk/geany-plugins/geanylua/glspi_app.c
===================================================================
--- trunk/geany-plugins/geanylua/glspi_app.c 2009-10-20 19:40:56 UTC (rev 1023)
+++ trunk/geany-plugins/geanylua/glspi_app.c 2009-10-23 16:47:15 UTC (rev 1024)
@@ -147,7 +147,7 @@
w=ui_lookup_widget(main_widgets->window, widname);
if (!w) {
lua_pushfstring(L, _("Error in module \"%s\" at function %s():\n"
- "widget \"%s\" not found for argument #1.\n "),
+ "widget \"%s\" not found for argument #1.\n"),
LUA_MODULE_NAME, &__FUNCTION__[6], widname);
lua_error(L);
return 0;
@@ -156,7 +156,7 @@
sigid=g_signal_lookup(signame,typeid);
if (!sigid) {
lua_pushfstring(L, _("Error in module \"%s\" at function %s() argument #2:\n"
- "widget \"%s\" has no signal named \"%s\".\n "),
+ "widget \"%s\" has no signal named \"%s\".\n"),
LUA_MODULE_NAME, &__FUNCTION__[6], widname, signame);
lua_error(L);
return 0;
Modified: trunk/geany-plugins/geanylua/glspi_dlg.c
===================================================================
--- trunk/geany-plugins/geanylua/glspi_dlg.c 2009-10-20 19:40:56 UTC (rev 1023)
+++ trunk/geany-plugins/geanylua/glspi_dlg.c 2009-10-23 16:47:15 UTC (rev 1024)
@@ -436,7 +436,7 @@
}
if (!create_file_filter(L, GTK_FILE_CHOOSER(dlg), mask)) {
lua_pushfstring(L, _("Error in module \"%s\" at function pickfile():\n"
- "failed to parse filter string at argument #3.\n "),
+ "failed to parse filter string at argument #3.\n"),
LUA_MODULE_NAME);
lua_error(L);
return NULL;
@@ -486,7 +486,7 @@
} else
if ( (*tmp != '\0') && (strcasecmp(tmp,"open")!=0) ) {
lua_pushfstring(L, _("Error in module \"%s\" at function %s():\n"
- "expected string \"open\" or \"save\" for argument #1.\n "),
+ "expected string \"open\" or \"save\" for argument #1.\n"),
LUA_MODULE_NAME, &__FUNCTION__[6]);
lua_error(L);
return 0;
Modified: trunk/geany-plugins/geanylua/glspi_sci.c
===================================================================
--- trunk/geany-plugins/geanylua/glspi_sci.c 2009-10-20 19:40:56 UTC (rev 1023)
+++ trunk/geany-plugins/geanylua/glspi_sci.c 2009-10-23 16:47:15 UTC (rev 1024)
@@ -792,7 +792,7 @@
} else {
lua_pushfstring(L, _("Error in module \"%s\" at function %s():\n"
" invalid table in argument #%d:\n"
- " unknown flag \"%s\" for element #%d\n "),
+ " unknown flag \"%s\" for element #%d\n"),
LUA_MODULE_NAME, &__FUNCTION__[6], 4,
(strlen(flagname)>64)?_("<too large to display>"):flagname, i);
lua_error(L);
Modified: trunk/geany-plugins/geanylua/gsdlg_lua.c
===================================================================
--- trunk/geany-plugins/geanylua/gsdlg_lua.c 2009-10-20 19:40:56 UTC (rev 1023)
+++ trunk/geany-plugins/geanylua/gsdlg_lua.c 2009-10-23 16:47:15 UTC (rev 1024)
@@ -107,7 +107,7 @@
{
lua_pushfstring(L, _("Error in module \"%s\" at function %s():\n"
" invalid table in argument #%d:\n"
- " expected type \"%s\" for element #%d\n "),
+ " expected type \"%s\" for element #%d\n"),
LUA_MODULE_NAME, func+5, argnum, type, idx);
lua_error(L);
return 0;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1019
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1019&view=rev
Author: frlan
Date: 2009-10-18 20:28:00 +0000 (Sun, 18 Oct 2009)
Log Message:
-----------
Added new files for codenavigation plugin to list of translatable files
Modified Paths:
--------------
trunk/geany-plugins/po/POTFILES.in
Modified: trunk/geany-plugins/po/POTFILES.in
===================================================================
--- trunk/geany-plugins/po/POTFILES.in 2009-10-18 20:25:10 UTC (rev 1018)
+++ trunk/geany-plugins/po/POTFILES.in 2009-10-18 20:28:00 UTC (rev 1019)
@@ -9,8 +9,11 @@
#codenav
codenav/src/codenavigation.c
+codenav/src/goto_file.c
+codenav/src/switch_head_impl.c
+codenav/src/utils.c
-#codenav
+#geanydoc
geanydoc/src/geanydoc.c
#geanygdb
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.