From 21ba973f789a3228d6ec850cd3e9e4d81e018ab8 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 30 Mar 2013 02:06:08 +0100 Subject: [PATCH] 2013-03-30 02:03 UTC+0100 Viktor Szakats (harbour syenar.net) * README.md * moved Travis build status to top + linked to two users' list posts on unstable builds % deleted old envvars recommended for deletion (they don't appear anymore in user reports) * utils/hbmk2/_po_dl.hb + allow login information to be supplied via envvar ! minor cleanup --- ChangeLog.txt | 11 +++++++++++ README.md | 26 ++++++-------------------- utils/hbmk2/_po_dl.hb | 8 ++++++-- 3 files changed, 23 insertions(+), 22 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index fa600ea789..36c738fcc3 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -10,6 +10,17 @@ * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment */ +2013-03-30 02:03 UTC+0100 Viktor Szakats (harbour syenar.net) + * README.md + * moved Travis build status to top + + linked to two users' list posts on unstable builds + % deleted old envvars recommended for deletion (they don't + appear anymore in user reports) + + * utils/hbmk2/_po_dl.hb + + allow login information to be supplied via envvar + ! minor cleanup + 2013-03-30 01:05 UTC+0100 Viktor Szakats (harbour syenar.net) * utils/hbmk2/_md_gen.hb ! fixed another cwd dependence diff --git a/README.md b/README.md index 2a0650d34e..909db9649b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Welcome to Harbour +# Welcome to Harbour [![Build Status](https://travis-ci.org/harbour/core.png)](https://travis-ci.org/harbour/core) Harbour is the free software implementation of a multi-platform, multi-threading, object-oriented, scriptable programming language, @@ -101,9 +101,11 @@ Download source archive from this page and unpack: ## Unstable versions > WARNING: -> Recommended for users contributing to Harbour development, -> following the development mailing list, commits and reading -> [ChangeLog.txt](ChangeLog.txt?raw=true). +> Recommended +> [for](https://groups.google.com/forum/#!msg/harbour-users/2fwUzdKwpKA/32nI4WhZLfYJ) +> [users](https://groups.google.com/forum/#!msg/harbour-users/Ro99f8S6my0/KvfjhCx_jE4J) +> contributing to Harbour development, following the development mailing list, +> commits and reading [ChangeLog.txt](ChangeLog.txt?raw=true). ### Harbour live source repository @@ -125,8 +127,6 @@ Download source archive from any of these links and unpack: ### Harbour unstable binaries (updated once a day from live source repository) -[![Build Status](https://travis-ci.org/harbour/core.png)](https://travis-ci.org/harbour/core) - Windows (unified): *
@@ -1435,20 +1435,6 @@ mailing list. Follows some environment variable settings which are commonly believed by users to be useful, but which in reality are either not needed or not even used by Harbour build process and hbmk2. - You should delete them: - - set HB_DIR= - set HB_PATH= - set HRB_DIR= - set INCLUDE= - set LIB= - set HB_GT_LIB= - set HB_*_INSTALL= - set HB_INSTALL_???= - set HB_INC_*= - set HB_DIR_*= - set HB_LEX= - 7. Remove any Harbour build settings documented in [Build Options](#build-options). 8. Try to do no or only small modifications at once to examples included in [Build Examples](#build-examples). diff --git a/utils/hbmk2/_po_dl.hb b/utils/hbmk2/_po_dl.hb index 23a9399d0e..46d1ceb11a 100644 --- a/utils/hbmk2/_po_dl.hb +++ b/utils/hbmk2/_po_dl.hb @@ -16,6 +16,10 @@ PROCEDURE Main( cLogin ) LOCAL cLang LOCAL cTemp + IF Empty( cLogin ) + cLogin := GetEnv( "HB_TRANSIFEX_LOGIN" ) /* Format: username:password */ + ENDIF + FClose( hb_FTempCreateEx( @cTemp ) ) FOR EACH cLang IN hb_ATokens( hb_regexAll( "-lng=([a-zA-Z0-9_,]*)", hb_MemoRead( hb_DirBase() + "hbmk2.hbp" ),,,,, .T. )[ 1 ][ 2 ], "," ) @@ -30,10 +34,10 @@ PROCEDURE Main( cLogin ) ELSE ? "error" ENDIF - - FErase( cTemp ) NEXT + FErase( cTemp ) + RETURN STATIC FUNCTION GetJSON( cString )