Branch: refs/heads/master
Author: Duncan de Wet <duncandewet(a)gmail.com>
Committer: Duncan de Wet <duncandewet(a)gmail.com>
Date: Wed, 31 Jul 2013 05:39:11 UTC
Commit: 992ee22ce7ca53fc470036f90f03111ad2849362
https://github.com/geany/geany/commit/992ee22ce7ca53fc470036f90f03111ad2849…
Log Message:
-----------
Add various HTML5 keywords
Modified Paths:
--------------
data/filetypes.html
Modified: data/filetypes.html
2 files changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -77,7 +77,7 @@
[keywords]
-html=a abbr acronym address applet area b base basefont bdo big blockquote body br button caption center cite code col colgroup dd del dfn dir div dl dt em embed fieldset font form frame frameset h1 h2 h3 h4 h5 h6 head hr html i iframe img input ins isindex kbd label legend li link map menu meta noframes noscript object ol optgroup option p param pre q quality s samp script select small span strike strong style sub sup table tbody td textarea tfoot th thead title tr tt u ul var xmlns leftmargin topmargin abbr accept-charset accept accesskey action align alink alt archive axis background bgcolor border cellpadding cellspacing char charoff charset checked cite class classid clear codebase codetype color cols colspan compact content coords data datafld dataformatas datapagesize datasrc datetime declare defer dir disabled enctype face for frame frameborder selected headers height href hreflang hspace http-equiv id ismap label lang language link longdesc marginwidth marginheight maxlength media framespacing method multiple name nohref noresize noshade nowrap object onblur onchange onclick ondblclick onfocus onkeydown onkeypress onkeyup onload onmousedown onmousemove onmouseover onmouseout onmouseup onreset onselect onsubmit onunload profile prompt pluginspage readonly rel rev rows rowspan rules scheme scope scrolling shape size span src standby start style summary tabindex target text title type usemap valign value valuetype version vlink vspace width text password checkbox radio submit reset file hidden image public doctype xml xml:lang article aside audio canvas command details datalist figure figcaption footer header hgroup keygen mark meter nav output progress section time video wbr async autocomplete autofocus contenteditable contextmenu draggable formaction formenctype formnovalidate formtarget list manifest max min novalidate pattern ping placeholder required reversed role sandbox scoped seamless sizes spellcheck srcdoc step ^data- ^aria-
+html=a abbr acronym address applet area b base basefont bdo big blockquote body br button caption center cite code col colgroup dd del dfn dir div dl dt em embed fieldset font form frame frameset h1 h2 h3 h4 h5 h6 head hr html i iframe img input ins isindex kbd label legend li link map menu meta noframes noscript object ol optgroup option p param pre q quality s samp script select small span strike strong style sub sup table tbody td textarea tfoot th thead title tr tt u ul var xmlns leftmargin topmargin abbr accept-charset accept accesskey action align alink alt archive axis background bgcolor border cellpadding cellspacing char charoff charset checked cite class classid clear codebase codetype color cols colspan compact content coords data datafld dataformatas datapagesize datasrc datetime declare defer dir disabled enctype face for frame frameborder selected headers height href hreflang hspace http-equiv id ismap label lang language link longdesc marginwidth marginheight maxlength media framespacing method multiple name nohref noresize noshade nowrap object onblur onchange onclick ondblclick onfocus onkeydown onkeypress onkeyup onload onmousedown onmousemove onmouseover onmouseout onmouseup onreset onselect onsubmit onunload profile prompt pluginspage readonly rel rev rows rowspan rules scheme scope scrolling shape size span src standby start style summary tabindex target text title type usemap valign value valuetype version vlink vspace width text password checkbox radio submit reset file hidden image public doctype xml xml:lang article aside audio bdi canvas command details datalist dialog figure figcaption footer header hgroup keygen main mark meter nav output progress section source time video wbr async autocomplete autofocus contenteditable contextmenu draggable formaction formenctype formnovalidate formtarget list manifest max min novalidate pattern ping placeholder required reversed role rp rt ruby sandbox scoped seamless sizes spellcheck srcdoc step summary track ^data- ^aria-
javascript=abs abstract acos anchor asin atan atan2 big bold boolean break byte case catch ceil char charAt charCodeAt class concat const continue cos Date debugger default delete do double else enum escape eval exp export extends false final finally fixed float floor fontcolor fontsize for fromCharCode function goto if implements import in indexOf Infinity instanceof int interface isFinite isNaN italics join lastIndexOf length link log long Math max MAX_VALUE min MIN_VALUE NaN native NEGATIVE_INFINITY new null Number package parseFloat parseInt pop POSITIVE_INFINITY pow private protected public push random return reverse round shift short sin slice small sort splice split sqrt static strike string String sub substr substring sup super switch synchronized tan this throw throws toLowerCase toString toUpperCase transient true try typeof undefined unescape unshift valueOf var void volatile while with
vbscript=and as boolean byref byte byval call case class const continue currency date dim do double each else elseif empty end error exit false for function get global goto if in integer long loop me new next not nothing object on optional or private property public put redim rem resume select set single string sub then to true type until variant wend while with
python=and assert break class continue complex def del elif else except exec finally for from global if import in inherit is int lambda not or pass print raise return tuple try unicode while yield long float str list
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Sun, 21 Jul 2013 11:50:25 UTC
Commit: 458f4f2e75d1a48eae2cb3d3f08c01e11dcb8243
https://github.com/geany/geany/commit/458f4f2e75d1a48eae2cb3d3f08c01e11dcb8…
Log Message:
-----------
Don't warn when trying to close a document when none are open
When using the document close keybinding, it is legitimate for the
callback to be called even if there are no documents open, so properly
check for this.
Closes [bugs:#941]
Modified Paths:
--------------
src/callbacks.c
Modified: src/callbacks.c
5 files changed, 2 insertions(+), 3 deletions(-)
===================================================================
@@ -221,9 +221,8 @@ G_MODULE_EXPORT void on_close1_activate(GtkMenuItem *menuitem, gpointer user_dat
{
GeanyDocument *doc = document_get_current();
- g_return_if_fail(doc != NULL);
-
- document_close(doc);
+ if (doc != NULL)
+ document_close(doc);
}
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Sun, 21 Jul 2013 09:33:40 UTC
Commit: 7d1cd77eefdad27d228e9452443dbc415906d43b
https://github.com/geany/geany/commit/7d1cd77eefdad27d228e9452443dbc415906d…
Log Message:
-----------
update-scintilla.sh: Fix displaying of the message for new files
Modified Paths:
--------------
scripts/update-scintilla.sh
Modified: scripts/update-scintilla.sh
2 files changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -63,7 +63,7 @@ git apply -p0 scintilla/scintilla_changes.patch || {
#check whether there are new files
if git status -unormal -s scintilla | grep '^??'; then
- echo <<EOF
+ cat <<EOF
Untracked files above have been introduced by the new Scintilla version and
should be added to version control if appropriate, or removed.
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: elextr <elextr(a)gmail.com>
Committer: elextr <elextr(a)gmail.com>
Date: Thu, 18 Jul 2013 02:36:42 UTC
Commit: cac1115ced305f4828cbc49f08c12d95e05d9e85
https://github.com/geany/geany/commit/cac1115ced305f4828cbc49f08c12d95e05d9…
Log Message:
-----------
Prevent reading past start of Scintilla buffer
A quick check seemed to show Scintilla does not check the minimum
value is positive, so just check here to be safe and log message
if it fails.
Modified Paths:
--------------
src/editor.c
Modified: src/editor.c
1 files changed, 1 insertions(+), 0 deletions(-)
===================================================================
@@ -665,6 +665,7 @@ static gboolean match_last_chars(ScintillaObject *sci, gint pos, const gchar *st
gchar *buf;
g_return_val_if_fail(len < 100, FALSE);
+ g_return_val_if_fail(len <= pos, FALSE);
buf = g_alloca(len + 1);
sci_get_text_range(sci, pos - len, pos, buf);
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).