Branch: refs/heads/document-messages
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Fri, 10 Feb 2012 00:18:30
Commit: 01fea3e7470756b51d1616e9b732a641f500de1b
https://github.com/geany/geany/commit/01fea3e7470756b51d1616e9b732a641f500d…
Log Message:
-----------
Remove possible '/' from display name when building socket filename
MacOS X seems to have slashes in the display name, which prevent the
socket file from being created. So, replace such characters that may
not appear in a filename with an underscore.
Modified Paths:
--------------
src/socket.c
Modified: src/socket.c
8 files changed, 6 insertions(+), 2 deletions(-)
===================================================================
@@ -281,8 +281,12 @@ gint socket_init(gint argc, gchar **argv)
/* these lines are taken from dcopc.c in kdelibs */
if ((p = strrchr(display_name, '.')) > strrchr(display_name, ':') && p != NULL)
*p = '\0';
- while ((p = strchr(display_name, ':')) != NULL)
- *p = '_';
+ /* remove characters that may not be acceptable in a filename */
+ for (p = display_name; *p; p++)
+ {
+ if (*p == ':' || *p == '/')
+ *p = '_';
+ }
if (socket_info.file_name == NULL)
socket_info.file_name = g_strdup_printf("%s%cgeany_socket_%s_%s",
@@ Diff output truncated at 100000 characters. @@
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).
Branch: refs/heads/document-messages
Author: Frank Lanitz <frank(a)frank.uvena.de>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Mon, 06 Feb 2012 10:26:50
Commit: 8f453d14cfa375a71b0687c79ed387752d2783d5
https://github.com/geany/geany/commit/8f453d14cfa375a71b0687c79ed387752d278…
Log Message:
-----------
Update of Traditional Chinese translation provided by Matthew Lien.
Modified Paths:
--------------
po/ChangeLog
po/zh_TW.po
Modified: po/ChangeLog
7 files changed, 6 insertions(+), 1 deletions(-)
===================================================================
@@ -1,6 +1,11 @@
+2012-02-06 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
+
+ * zh_TW.po: Update of Traditional Chinese translation provided by Matthew Lien.
+
+
2012-01-26 Frank Lanitz <frlan(a)frank.uvena.de>
- * id.po: Added Indonesian translation, provided by Fajar Wahyu.
+ * id.po: Added Indonesian translation, provided by Fajar Wahyu.
2011-12-30 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
Modified: po/zh_TW.po
1390 files changed, 733 insertions(+), 657 deletions(-)
===================================================================
No diff available, check online
@@ Diff output truncated at 100000 characters. @@
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).
Branch: refs/heads/document-messages
Author: Nick Treleaven <nick.treleaven(a)btinternet.com>
Committer: Nick Treleaven <nick.treleaven(a)btinternet.com>
Date: Mon, 06 Feb 2012 16:14:42
Commit: 402249f1b814952e80c8df01863450fe1cd41b93
https://github.com/geany/geany/commit/402249f1b814952e80c8df01863450fe1cd41…
Log Message:
-----------
Revert "Don't append file truncation warning if file doesn't exist"
This reverts commit 7cc443e1420b77d041815a464fe5b20bc62412f4.
Showing the truncation message only when the file exists doesn't work
when writing to a network file and the connection drops out (thanks to
Lex).
Modified Paths:
--------------
src/document.c
Modified: src/document.c
3 files changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -1767,8 +1767,7 @@ gboolean document_save_file(GeanyDocument *doc, gboolean force)
{
ui_set_statusbar(TRUE, _("Error saving file (%s)."), errmsg);
- if (!file_prefs.use_safe_file_saving &&
- g_file_test(locale_filename, G_FILE_TEST_IS_REGULAR))
+ if (!file_prefs.use_safe_file_saving)
{
SETPTR(errmsg,
g_strdup_printf(_("%s\n\nThe file on disk may now be truncated!"), errmsg));
@@ Diff output truncated at 100000 characters. @@
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).
Branch: refs/heads/document-messages
Author: Alex Charron <classixretrox(a)gmail.com>
Committer: Alex Charron <classixretrox(a)gmail.com>
Date: Sun, 05 Feb 2012 21:30:22
Commit: cc6e85f454a0af91f2e4606cc428757605d5ecc9
https://github.com/geany/geany/commit/cc6e85f454a0af91f2e4606cc428757605d5e…
Log Message:
-----------
Added C++11 keywords to syntax highlighter.
Modified Paths:
--------------
data/filetypes.cpp
Modified: data/filetypes.cpp
4 files changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -3,10 +3,10 @@
[keywords]
# all items must be in one line
-primary=and and_eq asm auto bitand bitor bool break case catch char class compl const const_cast continue default delete do double dynamic_cast else enum explicit export extern false float for friend goto if inline int long mutable namespace new not not_eq operator or or_eq private protected public register reinterpret_cast return short signed sizeof static static_cast struct switch template this throw true try typedef typeid typename union unsigned using virtual void volatile wchar_t while xor xor_eq
+primary=alignas alignof and and_eq asm auto bitand bitor bool break case catch char char16_t char32_t class compl const constexpr const_cast continue decltype default delete do double dynamic_cast else enum explicit export extern false final float for friend goto if inline int long mutable namespace new noexcept not not_eq nullptr operator or or_eq override private protected public register reinterpret_cast return short signed sizeof static static_assert static_cast struct switch template this thread_local throw true try typedef typeid typename union unsigned using virtual void volatile wchar_t while xor xor_eq
secondary=
# these are some doxygen keywords (incomplete)
-docComment=attention author brief bug class code date def enum example exception file fn namespace note param remarks return see since struct throw todo typedef var version warning union
+docComment=attention author brief bug class code date def enum example exception file fn namespace note param remarks return see since struct throw todo tparam typedef var version warning union
[lexer_properties]
styling.within.preprocessor=1
@@ Diff output truncated at 100000 characters. @@
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).
Branch: refs/heads/document-messages
Author: elextr <elextr(a)gmail.com>
Committer: elextr <elextr(a)gmail.com>
Date: Sun, 05 Feb 2012 22:39:02
Commit: 6e2d26b12498fe6b1a982eaf6f49f51205608524
https://github.com/geany/geany/commit/6e2d26b12498fe6b1a982eaf6f49f51205608…
Log Message:
-----------
Merge pull request #22 from RetroX/patch-1
Added C++11 keywords to syntax highlighter.
Modified Paths:
--------------
data/filetypes.cpp
Modified: data/filetypes.cpp
4 files changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -3,10 +3,10 @@
[keywords]
# all items must be in one line
-primary=and and_eq asm auto bitand bitor bool break case catch char class compl const const_cast continue default delete do double dynamic_cast else enum explicit export extern false float for friend goto if inline int long mutable namespace new not not_eq operator or or_eq private protected public register reinterpret_cast return short signed sizeof static static_cast struct switch template this throw true try typedef typeid typename union unsigned using virtual void volatile wchar_t while xor xor_eq
+primary=alignas alignof and and_eq asm auto bitand bitor bool break case catch char char16_t char32_t class compl const constexpr const_cast continue decltype default delete do double dynamic_cast else enum explicit export extern false final float for friend goto if inline int long mutable namespace new noexcept not not_eq nullptr operator or or_eq override private protected public register reinterpret_cast return short signed sizeof static static_assert static_cast struct switch template this thread_local throw true try typedef typeid typename union unsigned using virtual void volatile wchar_t while xor xor_eq
secondary=
# these are some doxygen keywords (incomplete)
-docComment=attention author brief bug class code date def enum example exception file fn namespace note param remarks return see since struct throw todo typedef var version warning union
+docComment=attention author brief bug class code date def enum example exception file fn namespace note param remarks return see since struct throw todo tparam typedef var version warning union
[lexer_properties]
styling.within.preprocessor=1
@@ Diff output truncated at 100000 characters. @@
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).