Skip to content

Commit

Permalink
2017-04-12 22:04 UTC Viktor Szakats (vszakats users.noreply.github.com)
Browse files Browse the repository at this point in the history
  * doc/en/rdddb.txt
  * doc/vm.txt
    ! fix spelling/typos

  * addons/README.txt
    * convert to Markdown

  * package/mpkg_win.sh
  * package/RELNOTES.txt.in -> package/RELNOTES.md.in
  * addons/README.txt -> addons/README.md
    * rename to Markdown
  • Loading branch information
vszakats committed Apr 12, 2017
1 parent 49626e5 commit afbe19e
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 17 deletions.
13 changes: 13 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@
git log --pretty=medium --no-merges --date=iso --abbrev-commit HEAD~50..HEAD
See license at the end of file. */

2017-04-12 22:04 UTC Viktor Szakats (vszakats users.noreply.github.com)
* doc/en/rdddb.txt
* doc/vm.txt
! fix spelling/typos

* addons/README.txt
* convert to Markdown

* package/mpkg_win.sh
* package/RELNOTES.txt.in -> package/RELNOTES.md.in
* addons/README.txt -> addons/README.md
* rename to Markdown

2017-04-11 22:08 UTC Viktor Szakats (vszakats users.noreply.github.com)
* contrib/hbct/doc/en/charsort.txt
* contrib/hbct/doc/en/ctmath2.txt
Expand Down
2 changes: 2 additions & 0 deletions addons/README.txt → addons/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
Add this line to your `.hbp` file to get your library
installed into this directory and be usable like contribs:

```
$hb_pkg_install.hbm
```
8 changes: 4 additions & 4 deletions doc/en/rdddb.txt
Original file line number Diff line number Diff line change
Expand Up @@ -270,12 +270,12 @@
$SUBCATEGORY$
Database
$ONELINER$
Updates all index and database buffers for a given workarea
Updates all index and database buffers for a given work area
$SYNTAX$
dbCommit()
$DESCRIPTION$
This function updates all of the information for a give, selected,
or active workarea. This operation includes all database and index
or active work area. This operation includes all database and index
buffers for that work area only. This function does not update all
open work areas.
$EXAMPLES$
Expand Down Expand Up @@ -384,7 +384,7 @@

<cRDD> Name of the RDD

<lKeepOpen> 3-way toggle to Open the file in New or Current workarea:
<lKeepOpen> 3-way toggle to Open the file in New or Current work area:

<table-noheader>
NIL The file is not opened.
Expand Down Expand Up @@ -931,7 +931,7 @@
$ONELINER$
Change to another work area
$SYNTAX$
dbSelectArea( <xArea> ) -
dbSelectArea( <xArea> ) --> NIL
$ARGUMENTS$
<xArea> Alias or work area
$DESCRIPTION$
Expand Down
12 changes: 6 additions & 6 deletions doc/vm.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ The dynamic symbol table: Dynamically generated from the startup subsystem
at the beginning of the application. It organizes in an efficient way the
static symbol table creating an alphabetical index that allows a dichotomic
search of symbols. This subsystem is responsible for quick access to symbols
(functions, variables, fields and workareas aliases).
(functions, variables, fields and work areas aliases).

The static and public variables: Responsible for storing public and static
variables.
Expand All @@ -76,9 +76,9 @@ The macro subsystem: it implements a reduced compiler that may be used at
runtime to generate pcode to be used by the application. In fact it is a
portion of the Harbour yacc specifications.

The workareas subsystem: Responsible for databases management. It defines
the locations where the used workareas will be stored and provides all the
functions to access those workareas. It also implements the interface to the
The work areas subsystem: Responsible for databases management. It defines
the locations where the used work areas will be stored and provides all the
functions to access those work areas. It also implements the interface to the
replaceable database drivers.

Question:
Expand All @@ -89,7 +89,7 @@ relation between them?) If so, are Clipper opcodes described somewhere?
Answer:

Clipper language pcode opcodes
DEFINE NAME VALOR BYTES
DEFINE NAME VALUE BYTES
#define NOP 0x00 1
#define PUSHC 0x01 3 + literal
#define PUSHN 0x05 3
Expand Down Expand Up @@ -291,7 +291,7 @@ Question:
while Valkyrie calls it "PUSHW"(3B): Different names, different codes.
Isn't it desirable that Harbour pcode be binary-compatible with Clipper? I
mean, by doing so, Harbour VM could interpret Clipper pcode and
vice-versa.
vice versa.

Answer:

Expand Down
File renamed without changes.
14 changes: 7 additions & 7 deletions package/mpkg_win.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,11 @@ mkdir -p "${HB_ABSROOT}"
(
cd .. || exit
# shellcheck disable=SC2046
cp -f -p --parents $(find 'addons' -type f -name '*.txt') "${HB_ABSROOT}"
cp -f -p --parents $(find 'addons' -type f -name '*') "${HB_ABSROOT}"
# shellcheck disable=SC2046
cp -f -p --parents $(find 'extras' -type f -name '*') "${HB_ABSROOT}"
cp -f -p --parents $(find 'extras' -type f -name '*') "${HB_ABSROOT}"
# shellcheck disable=SC2046
cp -f -p --parents $(find 'tests' -type f -name '*') "${HB_ABSROOT}"
cp -f -p --parents $(find 'tests' -type f -name '*') "${HB_ABSROOT}"
)

mkdir -p "${HB_ABSROOT}bin/"
Expand Down Expand Up @@ -242,7 +242,7 @@ fi
cp -f -p --parents $(find 'src/3rd' -name '*.h') "${HB_ABSROOT}"
)

# Burn build information into RELNOTES.txt
# Burn build information into RELNOTES.md

_hb_ver="${HB_VF}"
if [ "${HB_VF}" != "${HB_VF_DEF}" ]; then
Expand All @@ -257,8 +257,8 @@ _vcs_url="$(git ls-remote --get-url | sed 's|.git$||')/"
sed -e "s|_HB_VER_COMMIT_ID_SHORT_|${_vcs_id_short}|g" \
-e "s|_HB_VER_ORIGIN_URL_|${_vcs_url}|g" \
-e "s|_HB_VERSION_|${_hb_ver}|g" \
'RELNOTES.txt.in' > "${HB_ABSROOT}RELNOTES.txt"
touch -c -r "${HB_ABSROOT}README.md" "${HB_ABSROOT}RELNOTES.txt"
'RELNOTES.md.in' > "${HB_ABSROOT}RELNOTES.md"
touch -c -r "${HB_ABSROOT}README.md" "${HB_ABSROOT}RELNOTES.md"

sed "s|_HB_URL_SRC_|${_vcs_url}archive/${_vcs_id}.tar.gz|g" \
'getsrc.sh.in' > "${HB_ABSROOT}getsrc.sh"
Expand Down Expand Up @@ -322,7 +322,7 @@ cd "${HB_RT}" || exit
echo 'include/*'
echo 'lib/*'
echo 'src/*'
echo 'addons/*.txt'
echo 'addons/*'
echo 'contrib/*'
echo 'doc/*'
echo 'extras/*'
Expand Down

0 comments on commit afbe19e

Please sign in to comment.