Branch: refs/heads/master Author: Paul Menzel pmenzel@molgen.mpg.de Committer: Paul Menzel pmenzel@molgen.mpg.de Date: Mon, 23 Apr 2018 15:11:37 UTC Commit: b10b2a716784d7fa3fd953ebde55982c39878313 https://github.com/geany/geany/commit/b10b2a716784d7fa3fd953ebde55982c398783...
Log Message: ----------- Use HTTPS URL for domain www.geany.org
Replace all occurrences with the command below.
git grep -l 'http://www.geany.org' | xargs sed -i 's,http://www.geany.org,https://www.geany.org,g'
Modified Paths: -------------- HACKING README README.I18N data/ui_toolbar.xml doc/geany.1.in doc/geany.txt doc/plugins.dox geany.nsi.in geany.spec.in src/geany.h src/toolbar.c
Modified: HACKING 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -39,7 +39,7 @@ tool:
The documentation will be output to doc/reference/index.html. Alternatively you can view the API documentation online at -http://www.geany.org/manual/reference/. +https://www.geany.org/manual/reference/.
Pull requests -------------
Modified: README 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -41,7 +41,7 @@ and many more. Installation on Mac OS and Windows ---------------------------------- Prebuilt binary packages for Mac OS and Windows can be found on -http://www.geany.org. +https://www.geany.org.
Installation from sources @@ -133,7 +133,7 @@ included with the source code of this program.
Ideas, questions, patches and bug reports ----------------------------------------- -See http://www.geany.org/. +See https://www.geany.org/. If you add something, or fix a bug, please create a pull request at https://github.com/geany/geany/. Also see the HACKING file.
Modified: README.I18N 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -81,10 +81,10 @@ I18n mailing list -----------------
There is also a mailing list dedicated to translation issues. Please visit -http://www.geany.org/Support/MailingList#geany-i18 for more information. +https://www.geany.org/Support/MailingList#geany-i18 for more information.
[1] http://i18n.geany.org/ [2] http://www.poedit.net/ -[3] http://www.geany.org/Support/MailingList#geany-i18 +[3] https://www.geany.org/Support/MailingList#geany-i18 [4] Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
Modified: data/ui_toolbar.xml 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -12,7 +12,7 @@ For changes to take effect, you need to restart Geany. Alternatively you can use editor in Geany.
A list of available actions can be found in the documentation included with Geany or -at http://www.geany.org/manual/current/index.html#customizing-the-toolbar. +at https://www.geany.org/manual/current/index.html#customizing-the-toolbar. -->
<ui>
Modified: doc/geany.1.in 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -11,7 +11,7 @@ Geany is a small and fast editor with basic features of an integrated developmen Some of its features: syntax highlighting, code completion, code folding, symbol/tag lists and many supported filetypes like C(++), Java, PHP, HTML, DocBook, Perl and more. .PP -Homepage: http://www.geany.org/ +Homepage: https://www.geany.org/ .SH "OPTIONS" .IP "\fB\fP \fBfiles ...\fP " 10 A space-separated list of filenames. Absolute and relative filenames can be used. Geany also
Modified: doc/geany.txt 12 lines changed, 6 insertions(+), 6 deletions(-) =================================================================== @@ -64,9 +64,9 @@ Some basic features of Geany: Where to get it ---------------
-You can obtain Geany from http://www.geany.org/ or perhaps also from +You can obtain Geany from https://www.geany.org/ or perhaps also from your distribution. For a list of available packages, please see -http://www.geany.org/Download/ThirdPartyPackages. +https://www.geany.org/Download/ThirdPartyPackages.
@@ -89,7 +89,7 @@ About this document -------------------
This documentation is available in HTML and text formats. -The latest version can always be found at http://www.geany.org/. +The latest version can always be found at https://www.geany.org/.
If you want to contribute to it, see `Contributing to this document`_.
@@ -113,7 +113,7 @@ Binary packages ---------------
There are many binary packages available. For an up-to-date but maybe -incomplete list see http://www.geany.org/Download/ThirdPartyPackages. +incomplete list see https://www.geany.org/Download/ThirdPartyPackages.
Source compilation @@ -1425,7 +1425,7 @@ You can use regular expressions in the Find and Replace dialogs by selecting the *Use regular expressions* check box (see `Matching options`_). The syntax is Perl compatible. Basic syntax is described in the table below. For full details, see -http://www.geany.org/manual/gtk/glib/glib-regex-syntax.html. +https://www.geany.org/manual/gtk/glib/glib-regex-syntax.html.
By default regular expressions are matched on a line-by-line basis. If you are interested in multi-line regular expressions, matched against @@ -1529,7 +1529,7 @@ While the syntax is the same, a few practical differences applies: ======= ============================================================ . Matches any character but newlines. This behavior can be changed to also match newlines using the (?s) option, see - http://www.geany.org/manual/gtk/glib/glib-regex-syntax.html#idp5671632 + https://www.geany.org/manual/gtk/glib/glib-regex-syntax.html#idp5671632
[^...] A negative range (see above) *will* match newlines if they are not explicitly listed in that negative range. For example, range
Modified: doc/plugins.dox 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -84,7 +84,7 @@ them at all. @subsection ideas Getting a plugin idea
If you want to write a plugin but don't know yet what it should do, have a look at -http://www.geany.org/Support/PluginWishlist to get an idea about what users wish. +https://www.geany.org/Support/PluginWishlist to get an idea about what users wish.
@subsection code Managing the source code
@@ -171,7 +171,7 @@ Basically, you are done at this point and could continue with writing the plugin
[1] For Windows, it is basically the same but you might have some more work on setting up the general build environment (compiler, GTK development files, ...). This is described on -Geany's website at http://www.geany.org/Support/BuildingOnWin32. +Geany's website at https://www.geany.org/Support/BuildingOnWin32.
@section helloworld "Hello World"
Modified: geany.nsi.in 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -35,7 +35,7 @@ RequestExecutionLevel highest ; set execution level for Windows Vista !define PRODUCT_VERSION "@VERSION@" !define PRODUCT_VERSION_ID "@VERSION@.0.0" !define PRODUCT_PUBLISHER "The Geany developer team" -!define PRODUCT_WEB_SITE "http://www.geany.org/" +!define PRODUCT_WEB_SITE "https://www.geany.org/" !define PRODUCT_DIR_REGKEY "Software\Geany" !define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall${PRODUCT_NAME}" !define PRODUCT_EXE "$INSTDIR\bin\Geany.exe"
Modified: geany.spec.in 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -9,7 +9,7 @@ Summary: A fast and lightweight IDE using GTK+
Group: Development/Tools License: GPLv2+ -URL: http://www.geany.org/ +URL: https://www.geany.org/ Vendor: The Geany developer team info@geany.org Packager: Dominic Hopf dmaphy@googlemail.com Source: http://download.geany.org/%%7Bname%7D-%%7Bversion%7D.tar.bz2
Modified: src/geany.h 6 lines changed, 3 insertions(+), 3 deletions(-) =================================================================== @@ -43,10 +43,10 @@ G_BEGIN_DECLS #define GEANY_TEMPLATES_SUBDIR "templates" #define GEANY_TAGS_SUBDIR "tags" #define GEANY_CODENAME "Keong" -#define GEANY_HOMEPAGE "http://www.geany.org/" +#define GEANY_HOMEPAGE "https://www.geany.org/" #define GEANY_WIKI "http://wiki.geany.org/" -#define GEANY_BUG_REPORT "http://www.geany.org/Support/Bugs" -#define GEANY_DONATE "http://www.geany.org/service/donate/" +#define GEANY_BUG_REPORT "https://www.geany.org/Support/Bugs" +#define GEANY_DONATE "https://www.geany.org/service/donate/" #define GEANY_STRING_UNTITLED _("untitled") #define GEANY_DEFAULT_DIALOG_HEIGHT 350 #define GEANY_WINDOW_DEFAULT_WIDTH 900
Modified: src/toolbar.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -897,7 +897,7 @@ Everything you add or change must be inside the /ui/toolbar/ path.\n\n\ For changes to take effect, you need to restart Geany. Alternatively you can use the toolbar\n\ editor in Geany.\n\n\ A list of available actions can be found in the documentation included with Geany or\n\ -at http://www.geany.org/manual/current/index.html#customizing-the-toolbar.%5Cn-... +at https://www.geany.org/manual/current/index.html#customizing-the-toolbar.%5Cn... \t<toolbar name='GeanyToolbar'>\n"; gchar *filename; GString *str = g_string_new(template);
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).