messing around with EOL types

This commit is contained in:
Viktor Szakats
2013-03-30 04:24:56 +01:00
parent b8a826c423
commit a2471a92c0
3 changed files with 3064 additions and 4 deletions

View File

@@ -10,9 +10,15 @@
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
*/
2013-03-30 04:20 UTC+0100 Viktor Szakats (harbour syenar.net)
2013-03-30 04:24 UTC+0100 Viktor Szakats (harbour syenar.net)
* utils/hbmk2/_po_push.hb
* utils/hbmk2/po/hbmk2.en.po
* messing around with EOL types
2013-03-30 04:20 UTC+0100 Viktor Szakats (harbour syenar.net)
* utils/hbmk2/_po_push.hb
+ will now refresh source language .po (.pot) from source code
+ will now save source .po locally
2013-03-30 03:52 UTC+0100 Viktor Szakats (harbour syenar.net)
+ utils/hbmk2/_po_push.hb

View File

@@ -28,7 +28,7 @@ PROCEDURE Main( cLogin )
? "saving locally"
cContent := StrTran( ;
cContent := ;
'#, c-format' + hb_eol() + ;
'msgid ""' + hb_eol() + ;
'msgstr ""' + hb_eol() + ;
@@ -37,13 +37,13 @@ PROCEDURE Main( cLogin )
'"MIME-Version: 1.0\n"' + hb_eol() + ;
'"Content-Type: text/plain; charset=UTF-8\n"' + hb_eol() + ;
'"Content-Transfer-Encoding: 8bit\n"' + hb_eol() + hb_eol() + ;
hb_MemoRead( cTemp ), hb_eol(), e"\n" )
hb_MemoRead( cTemp )
hb_MemoWrit( hb_DirSepToOS( hb_DirBase() + "po/hbmk2.en.po" ), cContent )
? "uploading"
hb_MemoWrit( cTemp, hb_jsonEncode( { "content" => cContent } ) )
hb_MemoWrit( cTemp, hb_jsonEncode( { "content" => StrTran( cContent, hb_eol(), e"\n" ) } ) )
hb_run( hb_StrFormat( 'curl -s -i -L --user %1$s -X ' + ;
'PUT -d @%2$s -H "Content-Type: application/json" ' + ;

File diff suppressed because it is too large Load Diff