diff --git a/ChangeLog.txt b/ChangeLog.txt index fb5e02f083..53ef5409b3 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -7,6 +7,34 @@ Entries may not always be in chronological/commit order. See license at the end of file. */ +2018-02-11 12:00 UTC+0100 Aleksander Czajczynski (hb fki.pl) + * README.md + * config/global.mk + * contrib/gtwvw/doc/gtwvw.txt + * contrib/hbwin/tests/ole.prg + * contrib/hbzebra/tests/cairo.prg + * contrib/hbzebra/tests/harupdf.prg + * contrib/hbzebra/tests/wingdi.prg + * package/harbour-wce.spec.in + * package/harbour-win.spec.in + * package/harbour.rb + * package/harbour.spec + * package/mpkg_win.nsi + * package/winuni/mpkg_win_uni.nsi + * src/3rd/zlib/ChangeLog.txt + * src/compiler/hbusage.c + * src/pp/hbpp.c + * tests/html.prg + * changed Harbour Project website URL references to + https://harbour.github.io/ + This change is very symbolic mark of time passing, but it had to be + done. Original harbour-project.org domain went out from reach + together with Phil Barnett passing away on April 16, 2015. + Respect Phil, RIP. + Phil's efforts are directly tied to The Harbour Project origins. + To memorize him, please take a tour to archived The Oasis + https://harbour.github.io/the-oasis/ + 2018-02-11 11:00 UTC+0100 Aleksander Czajczynski (hb fki.pl) * contrib/hbnetio/netiocli.c ! fix spontaneous Error 1003 in NETIO client code failing to receive diff --git a/README.md b/README.md index 6345a112e2..fb541a2b74 100644 --- a/README.md +++ b/README.md @@ -1937,7 +1937,7 @@ Supported shells per host platforms: # Harbour Links - * [Homepage](http://harbour-project.org/) + * [Homepage](https://harbour.github.io/) * [Users' Mailing List](https://groups.google.com/group/harbour-users/) (English language) * [Development Mailing List](https://groups.google.com/group/harbour-devel/) (English language) * [Source code](https://github.com/harbour/core) diff --git a/config/global.mk b/config/global.mk index c4aa945921..149f7897c8 100644 --- a/config/global.mk +++ b/config/global.mk @@ -191,7 +191,7 @@ ifeq ($(HB_INIT_DONE),) endif endif - $(info ! Building Harbour $(HB_VER_MAJOR).$(HB_VER_MINOR).$(HB_VER_RELEASE)$(HB_VER_STATUS) from source - http://harbour-project.org) + $(info ! Building Harbour $(HB_VER_MAJOR).$(HB_VER_MINOR).$(HB_VER_RELEASE)$(HB_VER_STATUS) from source - https://harbour.github.io) $(info ! MAKE: $(MAKE) $(MAKE_VERSION) $(SHELL) $(HB_MAKECMDGOALS) $(MAKEFLAGS) $(if $(MAKESHELL),MAKESHELL: $(MAKESHELL),)) ifneq ($(HB_USER_PRGFLAGS),) $(info ! HB_USER_PRGFLAGS: $(HB_USER_PRGFLAGS)) diff --git a/contrib/gtwvw/doc/gtwvw.txt b/contrib/gtwvw/doc/gtwvw.txt index f92afd44de..9a86ace6ca 100644 --- a/contrib/gtwvw/doc/gtwvw.txt +++ b/contrib/gtwvw/doc/gtwvw.txt @@ -66,14 +66,14 @@ based on Copyright 2002 Przemyslaw Czerpak The following parts are Copyright of the individual authors. -www - http://www.harbour-project.org +www - https://harbour.github.io Copyright 1999 David G. Holm hb_gt_Tone() See COPYING.txt for licensing terms. -www - http://www.harbour-project.org +www - https://harbour.github.io This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/contrib/hbwin/tests/ole.prg b/contrib/hbwin/tests/ole.prg index fd99081252..bd759fa1db 100644 --- a/contrib/hbwin/tests/ole.prg +++ b/contrib/hbwin/tests/ole.prg @@ -224,7 +224,7 @@ STATIC PROCEDURE Exm_IExplorer() IF ( oIE := win_oleCreateObject( "InternetExplorer.Application" ) ) != NIL oIE:Visible := .T. - oIE:Navigate( "http://harbour-project.org" ) + oIE:Navigate( "https://harbour.github.io" ) ELSE ? "Error. Internet Explorer not available.", win_oleErrorText() ENDIF @@ -238,7 +238,7 @@ STATIC PROCEDURE Exm_IExplorer2() IF ( oIE := win_oleCreateObject( "InternetExplorer.Application" ) ) != NIL oIE:__hSink := __axRegisterHandler( oIE:__hObj, {| ... | QOut( ... ) } ) oIE:Visible := .T. - oIE:Navigate( "http://harbour-project.org" ) + oIE:Navigate( "https://harbour.github.io" ) WHILE oIE:ReadyState != 4 hb_idleSleep( 0 ) ENDDO diff --git a/contrib/hbzebra/tests/cairo.prg b/contrib/hbzebra/tests/cairo.prg index 2c462e544f..7446d14242 100644 --- a/contrib/hbzebra/tests/cairo.prg +++ b/contrib/hbzebra/tests/cairo.prg @@ -38,7 +38,7 @@ PROCEDURE Main() DrawBarcode( hCairo, 440, 1, "CODE128", "Wikipedia" ) DrawBarcode( hCairo, 460, 1, "PDF417", "Hello, World of Harbour!!! It's 2D barcode PDF417 :)" ) DrawBarcode( hCairo, 540, 1, "DATAMATRIX", "Hello, World of Harbour!!! It's 2D barcode DataMatrix :)" ) - DrawBarcode( hCairo, 580, 1, "QRCODE", "http://harbour-project.org/" ) + DrawBarcode( hCairo, 580, 1, "QRCODE", "https://harbour.github.io/" ) cairo_destroy( hCairo ) cairo_surface_write_to_png( hSurface, hb_FNameExtSet( __FILE__, ".png" ) ) cairo_surface_destroy( hSurface ) diff --git a/contrib/hbzebra/tests/harupdf.prg b/contrib/hbzebra/tests/harupdf.prg index e39e3b47a1..2a84ea6faa 100644 --- a/contrib/hbzebra/tests/harupdf.prg +++ b/contrib/hbzebra/tests/harupdf.prg @@ -41,7 +41,7 @@ PROCEDURE Main() DrawBarcode( page, 440, 1, "CODE128", "Wikipedia" ) DrawBarcode( page, 460, 1, "PDF417", "Hello, World of Harbour!!! It's 2D barcode PDF417 :)" ) DrawBarcode( page, 540, 1, "DATAMATRIX", "Hello, World of Harbour!!! It's 2D barcode DataMatrix :)" ) - DrawBarcode( page, 580, 1, "QRCODE", "http://harbour-project.org/" ) + DrawBarcode( page, 580, 1, "QRCODE", "http://harbour.github.io/" ) FErase( hb_FNameExtSet( __FILE__, ".pdf" ) ) ? HPDF_SaveToFile( pdf, hb_FNameExtSet( __FILE__, ".pdf" ) ) diff --git a/contrib/hbzebra/tests/wingdi.prg b/contrib/hbzebra/tests/wingdi.prg index 333867246a..882db3b0ef 100644 --- a/contrib/hbzebra/tests/wingdi.prg +++ b/contrib/hbzebra/tests/wingdi.prg @@ -70,7 +70,7 @@ PROCEDURE Main() DrawBarcode( hDC, 440, 1, "CODE128", "Wikipedia" ) DrawBarcode( hDC, 460, 1, "PDF417", "Hello, World of Harbour!!! It's 2D barcode PDF417 :)" ) DrawBarcode( hDC, 540, 1, "DATAMATRIX", "Hello, World of Harbour!!! It's 2D barcode DataMatrix :)" ) - DrawBarcode( hDC, 580, 1, "QRCODE", "http://harbour-project.org/" ) + DrawBarcode( hDC, 580, 1, "QRCODE", "http://harbour.github.io/" ) wapi_EndPage( hDC ) ENDIF diff --git a/package/harbour-wce.spec.in b/package/harbour-wce.spec.in index 74d6ccfb78..ce9a5f1351 100644 --- a/package/harbour-wce.spec.in +++ b/package/harbour-wce.spec.in @@ -30,7 +30,7 @@ Version: %{version} Release: %{releasen} License: GPL (plus exception) Group: Development/Languages -URL: http://harbour-project.org/ +URL: https://harbour.github.io/ Source: harbour-%{version}.src.tar.gz BuildRequires: gcc binutils Requires: gcc binutils sh-utils cegcc-mingw32ce harbour = %{?epoch:%{epoch}:}%{version}-%{release} diff --git a/package/harbour-win.spec.in b/package/harbour-win.spec.in index 8d2eed9e2e..2feccab8d8 100644 --- a/package/harbour-win.spec.in +++ b/package/harbour-win.spec.in @@ -30,7 +30,7 @@ Version: %{version} Release: %{releasen} License: GPL (plus exception) Group: Development/Languages -URL: http://harbour-project.org/ +URL: https://harbour.github.io/ Source: harbour-%{version}.src.tar.gz BuildRequires: gcc binutils Requires: gcc binutils sh-utils harbour = %{?epoch:%{epoch}:}%{version}-%{release} diff --git a/package/harbour.rb b/package/harbour.rb index 75df48b183..3a19597648 100644 --- a/package/harbour.rb +++ b/package/harbour.rb @@ -2,7 +2,7 @@ require 'formula' class Harbour < Formula url 'http://downloads.sourceforge.net/project/harbour-project/source/3.0.0/harbour-3.0.0.tar.bz2' - homepage 'harbour-project.org/' + homepage 'harbour.github.io/' sha1 '66c21d666ac24c45485179eeaa9f90458b552e92' head 'https://github.com/harbour/core.git' diff --git a/package/harbour.spec b/package/harbour.spec index 66869b1738..f19edf5096 100644 --- a/package/harbour.spec +++ b/package/harbour.spec @@ -98,7 +98,7 @@ Version: %{version} Release: %{releasen}%{?alphatag:.%{alphatag}}%{?platform:.%{platform}} License: GPL (plus exception) Group: Development/Languages -URL: http://harbour-project.org/ +URL: http://harbour.github.io/ Source: %{name}-%{version}.src.tar.gz BuildRequires: gcc binutils %{!?_without_curses: ncurses-devel} %{!?_without_gpm: gpm-devel} Requires: gcc binutils sh-utils %{name}-lib = %{?epoch:%{epoch}:}%{version}-%{release} diff --git a/package/mpkg_win.nsi b/package/mpkg_win.nsi index 5742a635ef..3f38d6c4b2 100644 --- a/package/mpkg_win.nsi +++ b/package/mpkg_win.nsi @@ -126,7 +126,7 @@ Section "Start Menu and Desktop icons" hb_shortcuts CreateShortCut "$SMPROGRAMS\Harbour\Harbour.lnk" "$INSTDIR" "" "$INSTDIR" 0 CreateShortCut "$SMPROGRAMS\Harbour\Harbour (Interactive shell).lnk" "$INSTDIR\bin\hbrun.exe" "" "$INSTDIR\bin\hbrun.exe" 0 CreateDirectory "$SMPROGRAMS\Harbour\Links" - WriteINIStr "$SMPROGRAMS\Harbour\Links\Homepage.url" "InternetShortcut" "URL" "http://harbour-project.org/" + WriteINIStr "$SMPROGRAMS\Harbour\Links\Homepage.url" "InternetShortcut" "URL" "http://harbour.github.io/" WriteINIStr "$SMPROGRAMS\Harbour\Links\Users' Mailing List.url" "InternetShortcut" "URL" "http://groups.google.com/group/harbour-users/" WriteINIStr "$SMPROGRAMS\Harbour\Links\Developers' Mailing List.url" "InternetShortcut" "URL" "http://groups.google.com/group/harbour-devel/" WriteINIStr "$SMPROGRAMS\Harbour\Links\Development.url" "InternetShortcut" "URL" "https://github.com/harbour" diff --git a/package/winuni/mpkg_win_uni.nsi b/package/winuni/mpkg_win_uni.nsi index 37a982401b..60b6311d0c 100644 --- a/package/winuni/mpkg_win_uni.nsi +++ b/package/winuni/mpkg_win_uni.nsi @@ -335,7 +335,7 @@ Section "Start Menu and Desktop icons" hb_shortcuts CreateShortCut "$SMPROGRAMS\Harbour $%HB_VM%\Harbour.lnk" "$INSTDIR" "" "$INSTDIR" 0 CreateShortCut "$SMPROGRAMS\Harbour $%HB_VM%\Harbour (Interactive shell).lnk" "$INSTDIR\bin\hbrun.exe" "" "$INSTDIR\bin\hbrun.exe" 0 CreateDirectory "$SMPROGRAMS\Harbour $%HB_VM%\Links" - WriteINIStr "$SMPROGRAMS\Harbour $%HB_VM%\Links\Homepage.url" "InternetShortcut" "URL" "http://harbour-project.org/" + WriteINIStr "$SMPROGRAMS\Harbour $%HB_VM%\Links\Homepage.url" "InternetShortcut" "URL" "http://harbour.github.io/" WriteINIStr "$SMPROGRAMS\Harbour $%HB_VM%\Links\Users' Mailing List.url" "InternetShortcut" "URL" "http://groups.google.com/group/harbour-users/" WriteINIStr "$SMPROGRAMS\Harbour $%HB_VM%\Links\Developers' Mailing List.url" "InternetShortcut" "URL" "http://groups.google.com/group/harbour-devel/" WriteINIStr "$SMPROGRAMS\Harbour $%HB_VM%\Links\Development.url" "InternetShortcut" "URL" "https://github.com/harbour" diff --git a/src/3rd/zlib/ChangeLog.txt b/src/3rd/zlib/ChangeLog.txt index ef8e9f7e12..06fbe127ff 100644 --- a/src/3rd/zlib/ChangeLog.txt +++ b/src/3rd/zlib/ChangeLog.txt @@ -1,5 +1,5 @@ /* - Harbour Project - http://www.harbour-project.org + Harbour Project - https://harbour.github.io Please left here information about any modifications to original ZLIB files. It will make upgrading ZLIB library much more easier diff --git a/src/compiler/hbusage.c b/src/compiler/hbusage.c index 45e397a2a4..53ec61c9b8 100644 --- a/src/compiler/hbusage.c +++ b/src/compiler/hbusage.c @@ -261,7 +261,7 @@ void hb_compPrintLogo( HB_COMP_DECL ) char * szVer = hb_verHarbour(); #define HB_VER_COMMIT_YEAR "2016" - #define HB_VER_ORIGIN_URL "http://harbour-project.org/" + #define HB_VER_ORIGIN_URL "https://harbour.github.io/" hb_compOutStd( HB_COMP_PARAM, szVer ); hb_compOutStd( HB_COMP_PARAM, diff --git a/src/pp/hbpp.c b/src/pp/hbpp.c index a7a544e93c..773ef4105a 100644 --- a/src/pp/hbpp.c +++ b/src/pp/hbpp.c @@ -48,7 +48,7 @@ #include "hbapi.h" -#define _DEFAULT_ORIGIN_URL "http://harbour-project.org/" +#define _DEFAULT_ORIGIN_URL "https://harbour.github.io/" int hb_verRevision( void ) { diff --git a/tests/html.prg b/tests/html.prg index aff12581a1..701487583a 100644 --- a/tests/html.prg +++ b/tests/html.prg @@ -18,7 +18,7 @@ PROCEDURE Main() oHTML:AddHead( "Harbour" ) oHTML:AddPara( "Harbour is xBase at its best. Have a taste today!", "left" ) oHTML:AddPara( "L i n k s", "center" ) - oHTML:AddLink( "http://harbour-project.org", "Meet the Harbour power!" ) + oHTML:AddLink( "https://harbour.github.io", "Meet the Harbour power!" ) oHTML:Generate() // Uncomment the following if you don't have a Web Server to test