Revision: 5325 http://geany.svn.sourceforge.net/geany/?rev=5325&view=rev Author: ntrel Date: 2010-10-26 15:11:06 +0000 (Tue, 26 Oct 2010)
Log Message: ----------- Edit XML tag autocompletion pref and tooltip to include HTML.
Modified Paths: -------------- trunk/ChangeLog trunk/doc/geany.html trunk/doc/geany.txt trunk/geany.glade trunk/src/interface.c
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2010-10-25 17:29:52 UTC (rev 5324) +++ trunk/ChangeLog 2010-10-26 15:11:06 UTC (rev 5325) @@ -1,3 +1,9 @@ +2010-10-26 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com> + + * src/interface.c, doc/geany.txt, doc/geany.html, geany.glade: + Edit XML tag autocompletion pref and tooltip to include HTML. + + 2010-10-25 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
* src/editor.c, data/snippets.conf:
Modified: trunk/doc/geany.html =================================================================== --- trunk/doc/geany.html 2010-10-25 17:29:52 UTC (rev 5324) +++ trunk/doc/geany.html 2010-10-26 15:11:06 UTC (rev 5325) @@ -6,7 +6,7 @@ <meta name="generator" content="Docutils 0.4: http://docutils.sourceforge.net/" /> <title>Geany</title> <meta name="authors" content="Enrico Tröger Nick Treleaven Frank Lanitz" /> -<meta name="date" content="2010-10-07" /> +<meta name="date" content="2010-10-15" /> <style type="text/css">
/* @@ -139,7 +139,7 @@ <br />Nick Treleaven <br />Frank Lanitz</td></tr> <tr><th class="docinfo-name">Date:</th> -<td>2010-10-07</td></tr> +<td>2010-10-15</td></tr> <tr><th class="docinfo-name">Version:</th> <td>0.20</td></tr> </tbody> @@ -2317,7 +2317,7 @@ <dd>Whether to replace special keywords after typing Tab into a pre-defined text snippet. See <a class="reference" href="#user-definable-snippets">User-definable snippets</a>.</dd> -<dt>XML tag autocompletion</dt> +<dt>XML/HTML tag autocompletion</dt> <dd>When you open an XML tag automatically generate its completion tag.</dd> <dt>Automatic continuation multi-line comments</dt> <dd><p class="first">Continue automatically multi-line comments in languages like C, C++ @@ -6264,7 +6264,7 @@ <div class="footer"> <hr class="footer" /> <a class="reference" href="geany.txt">View document source</a>. -Generated on: 2010-10-15 17:13 UTC. +Generated on: 2010-10-26 15:07 UTC. Generated by <a class="reference" href="http://docutils.sourceforge.net/">Docutils</a> from <a class="reference" href="http://docutils.sourceforge.net/rst.html">reStructuredText</a> source.
</div>
Modified: trunk/doc/geany.txt =================================================================== --- trunk/doc/geany.txt 2010-10-25 17:29:52 UTC (rev 5324) +++ trunk/doc/geany.txt 2010-10-26 15:11:06 UTC (rev 5325) @@ -1996,7 +1996,7 @@ pre-defined text snippet. See `User-definable snippets`_.
-XML tag autocompletion +XML/HTML tag autocompletion When you open an XML tag automatically generate its completion tag.
Automatic continuation multi-line comments
Modified: trunk/geany.glade =================================================================== --- trunk/geany.glade 2010-10-25 17:29:52 UTC (rev 5324) +++ trunk/geany.glade 2010-10-26 15:11:06 UTC (rev 5325) @@ -6299,9 +6299,9 @@ <child> <widget class="GtkCheckButton" id="check_xmltag"> <property name="visible">True</property> - <property name="tooltip" translatable="yes">Automatic completion and closing of XML tags (includes HTML tags)</property> + <property name="tooltip" translatable="yes">Insert matching closing tag for XML/HTML</property> <property name="can_focus">True</property> - <property name="label" translatable="yes">XML tag autocompletion</property> + <property name="label" translatable="yes">XML/HTML tag autocompletion</property> <property name="use_underline">True</property> <property name="relief">GTK_RELIEF_NORMAL</property> <property name="focus_on_click">True</property>
Modified: trunk/src/interface.c =================================================================== --- trunk/src/interface.c 2010-10-25 17:29:52 UTC (rev 5324) +++ trunk/src/interface.c 2010-10-26 15:11:06 UTC (rev 5325) @@ -3817,10 +3817,10 @@ gtk_box_pack_start (GTK_BOX (vbox19), check_complete_snippets, FALSE, FALSE, 0); gtk_tooltips_set_tip (tooltips, check_complete_snippets, _("Type a defined short character sequence and complete it to a more complex string using a single keypress"), NULL);
- check_xmltag = gtk_check_button_new_with_mnemonic (_("XML tag autocompletion")); + check_xmltag = gtk_check_button_new_with_mnemonic (_("XML/HTML tag autocompletion")); gtk_widget_show (check_xmltag); gtk_box_pack_start (GTK_BOX (vbox19), check_xmltag, FALSE, FALSE, 0); - gtk_tooltips_set_tip (tooltips, check_xmltag, _("Automatic completion and closing of XML tags (includes HTML tags)"), NULL); + gtk_tooltips_set_tip (tooltips, check_xmltag, _("Insert matching closing tag for XML/HTML"), NULL);
check_auto_multiline = gtk_check_button_new_with_mnemonic (_("Automatic continuation of multi-line comments")); gtk_widget_show (check_auto_multiline);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.