Revision: 1304
http://svn.sourceforge.net/geany/?rev=1304&view=rev
Author: eht16
Date: 2007-02-18 05:24:20 -0800 (Sun, 18 Feb 2007)
Log Message:
-----------
Added notice about contributing to the docs (patch from John Gabriele, thanks).
Modified Paths:
--------------
trunk/ChangeLog
trunk/doc/geany.docbook
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2007-02-18 12:55:54 UTC (rev 1303)
+++ trunk/ChangeLog 2007-02-18 13:24:20 UTC (rev 1304)
@@ -2,6 +2,8 @@
* data/filetypes.ruby, src/highlighting.c:
Added several missing style types for filetype Ruby.
+ * doc/geany.docbook: Added notice about contributing to the docs
+ (patch from John Gabriele, thanks).
2007-02-17 Nick Treleaven <nick.treleaven(a)btinternet.com>
Modified: trunk/doc/geany.docbook
===================================================================
--- trunk/doc/geany.docbook 2007-02-18 12:55:54 UTC (rev 1303)
+++ trunk/doc/geany.docbook 2007-02-18 13:24:20 UTC (rev 1304)
@@ -5,7 +5,7 @@
<!ENTITY appversion "0.11">
<!ENTITY appurl "http://geany.uvena.de">
<!ENTITY author_mail "enrico.troeger(a)uvena.de">
-<!ENTITY date "January 06, 2007">
+<!ENTITY date "February 18, 2007">
<!ENTITY legal SYSTEM "geany_gpl.docbook">
<!ENTITY scikeybinding SYSTEM "scikeybinding.docbook">
]>
@@ -61,10 +61,10 @@
<itemizedlist>
<listitem><para>Syntax highlighting</para></listitem>
<listitem><para>Code completion</para></listitem>
- <listitem><para>Auto completion of often used constructs like if, for and while</para></listitem>
+ <listitem><para>Auto completion of often-used constructs like "if", "for" and "while"</para></listitem>
<listitem><para>Auto completion of XML and HTML tags</para></listitem>
<listitem><para>Call tips</para></listitem>
- <listitem><para>Many supported filetypes like C, Java, PHP, HTML, Python, Perl, Pascal</para></listitem>
+ <listitem><para>Many supported filetypes including C, Java, PHP, HTML, Python, Perl, Pascal, and others</para></listitem>
<listitem><para>Tag/Symbol lists</para></listitem>
</itemizedlist>
</para>
@@ -1986,6 +1986,28 @@
</section>
</chapter>
+ <!-- Contributing to this document -->
+ <appendix id="contrib">
+ <title>Contributing to this document</title>
+ <para>This document is written in Docbook XML. The source file for it is located in the
+ subdirectory "doc" of the source directory of <application>Geany</application>.
+ If you intend on making changes, you should grab the source right from SVN to make
+ sure you have got the newest version. After editing that file, to build the docs and
+ see how your changes look, run "make doc" in the subdirectory "doc" of the source
+ directory of <application>Geany</application> to build HTML pages and a text file.
+ Your updated HTML docs will end up in the <filename>./html</filename> directory.
+ To generate a PDF file, use the command "make pdf" which should generate a
+ file called <filename>geany-&appversion;.pdf</filename>.
+ </para>
+ <para>After you are happy with your changes, create a patch:
+ <screen>
+ <prompt>%</prompt> <userinput><command>svn diff geany.docbook > whatever.patch</command></userinput></screen>
+ and then submit that file to the mailing list for review.
+ </para>
+ <para>Note, you will need the docbook-xml and xmlto software packages installed to build the docs.
+ </para>
+ </appendix>
+
<!-- Sci default keys appendix -->
<appendix id="scikeybinding">
&scikeybinding;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1300
http://svn.sourceforge.net/geany/?rev=1300&view=rev
Author: ntrel
Date: 2007-02-17 08:59:36 -0800 (Sat, 17 Feb 2007)
Log Message:
-----------
Scroll Compiler and Messages window in view when using Next Error
or Next Message.
Modified Paths:
--------------
branches/geany-0.10.1/NEWS
branches/geany-0.10.1/src/ui_utils.c
Modified: branches/geany-0.10.1/NEWS
===================================================================
--- branches/geany-0.10.1/NEWS 2007-02-17 16:57:17 UTC (rev 1299)
+++ branches/geany-0.10.1/NEWS 2007-02-17 16:59:36 UTC (rev 1300)
@@ -35,6 +35,8 @@
John Gabriele for reporting).
* Prevent right click in Symbol list from selecting a tag.
* Update the symbol list when starting a new document.
+ * Scroll Compiler and Messages window in view when using Next Error
+ or Next Message.
Internationalisation:
* New translations: fi (thanks to Harri Koskinen).
Modified: branches/geany-0.10.1/src/ui_utils.c
===================================================================
--- branches/geany-0.10.1/src/ui_utils.c 2007-02-17 16:57:17 UTC (rev 1299)
+++ branches/geany-0.10.1/src/ui_utils.c 2007-02-17 16:59:36 UTC (rev 1300)
@@ -1218,6 +1218,15 @@
if (! gtk_tree_model_iter_next(model, &iter))
return FALSE; // no more items
}
+ // scroll item in view
+ if (app->msgwindow_visible)
+ {
+ GtkTreePath *path = gtk_tree_model_get_path(
+ gtk_tree_view_get_model(treeview), &iter);
+
+ gtk_tree_view_scroll_to_cell(treeview, path, NULL, TRUE, 0.5, 0.5);
+ gtk_tree_path_free(path);
+ }
return TRUE;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1299
http://svn.sourceforge.net/geany/?rev=1299&view=rev
Author: ntrel
Date: 2007-02-17 08:57:17 -0800 (Sat, 17 Feb 2007)
Log Message:
-----------
Update for fixed loading global tags bug
Modified Paths:
--------------
branches/geany-0.10.1/TODO
Modified: branches/geany-0.10.1/TODO
===================================================================
--- branches/geany-0.10.1/TODO 2007-02-17 16:52:52 UTC (rev 1298)
+++ branches/geany-0.10.1/TODO 2007-02-17 16:57:17 UTC (rev 1299)
@@ -5,8 +5,6 @@
Next version or later:
- o fix problems when loading global.tags and other tags files are
- already loaded
o fix calltip return type to show pointers (and maybe const, etc.)
o Go to xxx - definable command
o documentation: list and explain filetype modes
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1298
http://svn.sourceforge.net/geany/?rev=1298&view=rev
Author: ntrel
Date: 2007-02-17 08:52:52 -0800 (Sat, 17 Feb 2007)
Log Message:
-----------
Scroll Compiler and Messages window in view when using Next Error
or Next Message.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/ui_utils.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2007-02-17 12:13:41 UTC (rev 1297)
+++ trunk/ChangeLog 2007-02-17 16:52:52 UTC (rev 1298)
@@ -1,3 +1,10 @@
+2007-02-17 Nick Treleaven <nick.treleaven(a)btinternet.com>
+
+ * src/ui_utils.c:
+ Scroll Compiler and Messages window in view when using Next Error
+ or Next Message.
+
+
2007-02-16 Nick Treleaven <nick.treleaven(a)btinternet.com>
* src/sciwrappers.c, src/sciwrappers.h, src/sci_cb.c, src/document.c:
Modified: trunk/src/ui_utils.c
===================================================================
--- trunk/src/ui_utils.c 2007-02-17 12:13:41 UTC (rev 1297)
+++ trunk/src/ui_utils.c 2007-02-17 16:52:52 UTC (rev 1298)
@@ -1073,6 +1073,15 @@
if (! gtk_tree_model_iter_next(model, &iter))
return FALSE; // no more items
}
+ // scroll item in view
+ if (app->msgwindow_visible)
+ {
+ GtkTreePath *path = gtk_tree_model_get_path(
+ gtk_tree_view_get_model(treeview), &iter);
+
+ gtk_tree_view_scroll_to_cell(treeview, path, NULL, TRUE, 0.5, 0.5);
+ gtk_tree_path_free(path);
+ }
return TRUE;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1297
http://svn.sourceforge.net/geany/?rev=1297&view=rev
Author: ntrel
Date: 2007-02-17 04:13:41 -0800 (Sat, 17 Feb 2007)
Log Message:
-----------
Add items:
fix bug that prevents UTF-16, UTF-32 files from being loaded.
word wrapping mode to limit chars on a line for e.g. XML content.
Modified Paths:
--------------
trunk/TODO
Modified: trunk/TODO
===================================================================
--- trunk/TODO 2007-02-16 17:09:53 UTC (rev 1296)
+++ trunk/TODO 2007-02-17 12:13:41 UTC (rev 1297)
@@ -5,9 +5,9 @@
Next version or later:
- o fix problems when loading global.tags and other tags files are
- already loaded
- o fix calltip return type to show pointers (and maybe const, etc.)
+ o fix bug that prevents UTF-16, UTF-32 files from being loaded.
+ o make calltips show full function signature for C-like files (e.g.
+ return type with const, [] for D, etc.)
o Go to xxx - definable command
o documentation: list and explain filetype modes
o documentation: preferences
@@ -16,6 +16,7 @@
o allow use of custom global tags files
o project management
o filetype template support for all filetypes
+ o word wrapping mode to limit chars on a line for e.g. XML content.
o common default highlighting for all programming languages
o fix parsing command line args after given filenames
o (DBUS)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.