2009-06-12 14:49 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* examples/superlib/readme.txt
  * examples/dbu/readme.txt
  * examples/rl/readme.txt
    + Added workaround for hbformat needing quotes around wildcarded
      input filenames on *nix systems.

  * examples/dbu/dbu52.dif
  * examples/dbu/dbu53.dif
    ! Added fix to not force uppercase in filename input GETs.
      Thanks to Davor Siklic for the hint.

  * examples/rl/rl.dif
    ! Added fix to not force uppercase in filename input GET.
This commit is contained in:
Viktor Szakats
2009-06-12 12:50:40 +00:00
parent 0f918fcc7d
commit 994eff4250
7 changed files with 69 additions and 6 deletions

View File

@@ -17,6 +17,21 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-06-12 14:49 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* examples/superlib/readme.txt
* examples/dbu/readme.txt
* examples/rl/readme.txt
+ Added workaround for hbformat needing quotes around wildcarded
input filenames on *nix systems.
* examples/dbu/dbu52.dif
* examples/dbu/dbu53.dif
! Added fix to not force uppercase in filename input GETs.
Thanks to Davor Siklic for the hint.
* examples/rl/rl.dif
! Added fix to not force uppercase in filename input GET.
2009-06-12 12:27 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* examples/superlib/readme.txt
+ Added separate hbformat line for *.c files.

View File

@@ -168,7 +168,16 @@ diff -u dbu52ori/dbuutil.prg dbu52pat/dbuutil.prg
diff -u dbu52ori/dbuview.prg dbu52pat/dbuview.prg
--- dbu52ori/dbuview.prg 1993-03-04 04:20:00.000000000 +0100
+++ dbu52pat/dbuview.prg 2009-06-10 01:37:40.000000000 +0200
+++ dbu52pat/dbuview.prg 2009-06-12 14:42:30.000000000 +0200
@@ -1102,7 +1102,7 @@
KEYBOARD CHR(M->keystroke)
* entry in place
- filename = enter_rc(dbf[M->cur_area],M->f_row,M->d_col,64,"@K!S8",;
+ filename = enter_rc(dbf[M->cur_area],M->f_row,M->d_col,64,"@KS8",;
M->color1)
IF .NOT. EMPTY(M->filename)
@@ -1110,7 +1110,7 @@
IF .NOT. (RAT(".", M->filename) > RAT("\", M->filename))
@@ -187,6 +196,15 @@ diff -u dbu52ori/dbuview.prg dbu52pat/dbuview.prg
"do_opendbf", .F., 8) <> 0
ENDIF
@@ -1269,7 +1269,7 @@
KEYBOARD CHR(M->keystroke)
* entry in place
- filename = enter_rc(M->org_file,M->d_row,M->d_col,64,"@K!S8",M->color1)
+ filename = enter_rc(M->org_file,M->d_row,M->d_col,64,"@KS8",M->color1)
IF .NOT. EMPTY(M->filename)
* something entered
@@ -2790,7 +2790,7 @@
* get user entered file name..will default to primary + ".VEW"
IF EMPTY(M->view_file) .AND. .NOT. EMPTY(dbf[1])

View File

@@ -219,7 +219,16 @@ diff -u dbu53ori/dbuutil.prg dbu53pat/dbuutil.prg
diff -u dbu53ori/dbuview.prg dbu53pat/dbuview.prg
--- dbu53ori/dbuview.prg 1996-05-20 05:31:00.000000000 +0200
+++ dbu53pat/dbuview.prg 2009-06-10 01:42:42.000000000 +0200
+++ dbu53pat/dbuview.prg 2009-06-12 14:43:06.000000000 +0200
@@ -1102,7 +1102,7 @@
KEYBOARD CHR(M->keystroke)
* entry in place
- filename = enter_rc(dbf[M->cur_area],M->f_row,M->d_col,64,"@K!S8",;
+ filename = enter_rc(dbf[M->cur_area],M->f_row,M->d_col,64,"@KS8",;
M->color1)
IF .NOT. EMPTY(M->filename)
@@ -1110,7 +1110,7 @@
IF .NOT. (RAT(".", M->filename) > RAT("\", M->filename))
@@ -238,6 +247,15 @@ diff -u dbu53ori/dbuview.prg dbu53pat/dbuview.prg
"do_opendbf", .F., 8) <> 0
ENDIF
@@ -1269,7 +1269,7 @@
KEYBOARD CHR(M->keystroke)
* entry in place
- filename = enter_rc(M->org_file,M->d_row,M->d_col,64,"@K!S8",M->color1)
+ filename = enter_rc(M->org_file,M->d_row,M->d_col,64,"@KS8",M->color1)
IF .NOT. EMPTY(M->filename)
* something entered
@@ -2789,7 +2789,7 @@
* get user entered file name..will default to primary + ".VEW"
IF EMPTY(M->view_file) .AND. .NOT. EMPTY(dbf[1])

View File

@@ -7,7 +7,7 @@
2.) *nix users will need convert original filenames to lowercase
and EOLs to native format, using this command:
hbformat -lFCaseLow=yes -nEol=0 -lIndent=no -lCase=no -lSpaces=no *.prg
hbformat -lFCaseLow=yes -nEol=0 -lIndent=no -lCase=no -lSpaces=no "*.prg"
3.) Apply supplied patch to the source using GNU Patch:

View File

@@ -7,7 +7,7 @@
2.) *nix users will need convert original filenames to lowercase
and EOLs to native format, using this command:
hbformat -lFCaseLow=yes -nEol=0 -lIndent=no -lCase=no -lSpaces=no *.prg
hbformat -lFCaseLow=yes -nEol=0 -lIndent=no -lCase=no -lSpaces=no "*.prg"
3.) Apply supplied patch to the source using GNU Patch:
patch -lNi rl.dif

View File

@@ -194,6 +194,18 @@ diff -u rlori/rlback.prg rlpat/rlback.prg
ENDIF
** Calculate record_size, field_count and data_offset **
diff -u rlori/rldialg.prg rlpat/rldialg.prg
--- rlori/rldialg.prg 1996-05-20 05:31:00.000000000 +0200
+++ rlpat/rldialg.prg 2009-06-12 14:48:45.000000000 +0200
@@ -187,7 +187,7 @@
KEYBOARD CHR(k)
ENDIF
- filename = jenter_rc(filename, wt + 3, wl + 7, 64, "@K!S20")
+ filename = jenter_rc(filename, wt + 3, wl + 7, 64, "@KS20")
SET CURSOR ON
READ
diff -u rlori/rlfront.prg rlpat/rlfront.prg
--- rlori/rlfront.prg 1996-05-20 05:31:00.000000000 +0200
+++ rlpat/rlfront.prg 2009-06-10 08:23:53.000000000 +0200

View File

@@ -11,8 +11,8 @@
3.) *nix users will need convert original filenames to lowercase
and EOLs to native format, using this command:
hbformat -lFCaseLow=yes -nEol=0 -lIndent=no -lCase=no -lSpaces=no *.c
hbformat -lFCaseLow=yes -nEol=0 -lIndent=no -lCase=no -lSpaces=no *.prg
hbformat -lFCaseLow=yes -nEol=0 -lIndent=no -lCase=no -lSpaces=no "*.c"
hbformat -lFCaseLow=yes -nEol=0 -lIndent=no -lCase=no -lSpaces=no "*.prg"
4.) Apply supplied patch to the source using GNU Patch:
patch -lNi hbsuper.dif