mybusinessbasic-devel Mailing List for My Business Basic (Page 2)
Status: Alpha
Brought to you by:
mikecurry1974
You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(90) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <mti...@us...> - 2003-12-29 19:38:34
|
Update of /cvsroot/mybusinessbasic/mybb
In directory sc8-pr-cvs1:/tmp/cvs-serv26300
Modified Files:
tables.c
Log Message:
fixes for task 90822
Index: tables.c
===================================================================
RCS file: /cvsroot/mybusinessbasic/mybb/tables.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** tables.c 18 Dec 2003 17:17:31 -0000 1.1
--- tables.c 29 Dec 2003 19:36:55 -0000 1.2
***************
*** 490,491 ****
--- 490,504 ----
{ "", 0, 0 }
};
+
+ //-----
+ // Single key Shortcuts
+ //-----
+ struct shortcuts shortcuttbl[] =
+ {
+ { "?", "PRINT", 5, TOK_COMMAND, NULL },
+ { "/", "LIST", 4, TOK_COMMAND, NULL },
+ { ".", "PBSTEP", 6, TOK_COMMAND, NULL },
+ { "\n","", 0, TOK_DONE, NULL },
+ { "", "", 0, 0, NULL }
+ };
+
|
|
From: <mik...@us...> - 2003-12-23 20:49:59
|
Update of /cvsroot/mybusinessbasic/mybb
In directory sc8-pr-cvs1:/tmp/cvs-serv18932
Modified Files:
mybb.h
Log Message:
Added FILE_KEYED for keyed files.
Index: mybb.h
===================================================================
RCS file: /cvsroot/mybusinessbasic/mybb/mybb.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** mybb.h 23 Dec 2003 16:47:01 -0000 1.5
--- mybb.h 23 Dec 2003 20:49:56 -0000 1.6
***************
*** 74,77 ****
--- 74,78 ----
#define FILE_TEXT 1
#define FILE_INDEXED 2
+ #define FILE_KEYED 3
extern struct functions {
|
|
From: <mik...@us...> - 2003-12-23 19:58:11
|
Update of /cvsroot/mybusinessbasic/mybb/probasic/tests In directory sc8-pr-cvs1:/tmp/cvs-serv10662/probasic/tests Removed Files: PSLCMD file2 filetest foo Log Message: House cleaning --- PSLCMD DELETED --- --- file2 DELETED --- --- filetest DELETED --- --- foo DELETED --- |
Update of /cvsroot/mybusinessbasic/mybb/mybb In directory sc8-pr-cvs1:/tmp/cvs-serv10457/mybb Removed Files: Makefile errors.h executor.c functions.c list.c mybb.c mybb.conf mybb.h mybbref.txt operators.h parser.c readme.txt revisions.txt runtime.c stack.c start_up storage.c tables.c utilities.c Log Message: House cleaning --- Makefile DELETED --- --- errors.h DELETED --- --- executor.c DELETED --- --- functions.c DELETED --- --- list.c DELETED --- --- mybb.c DELETED --- --- mybb.conf DELETED --- --- mybb.h DELETED --- --- mybbref.txt DELETED --- --- operators.h DELETED --- --- parser.c DELETED --- --- readme.txt DELETED --- --- revisions.txt DELETED --- --- runtime.c DELETED --- --- stack.c DELETED --- --- start_up DELETED --- --- storage.c DELETED --- --- tables.c DELETED --- --- utilities.c DELETED --- |
|
From: <mik...@us...> - 2003-12-23 19:55:49
|
Update of /cvsroot/mybusinessbasic/mybb/Desktop/Trash In directory sc8-pr-cvs1:/tmp/cvs-serv10287/Desktop/Trash Removed Files: .directory Log Message: House cleaning --- .directory DELETED --- |
|
From: <mik...@us...> - 2003-12-23 19:55:49
|
Update of /cvsroot/mybusinessbasic/mybb/Desktop In directory sc8-pr-cvs1:/tmp/cvs-serv10287/Desktop Removed Files: .directory Log Message: House cleaning --- .directory DELETED --- |
|
From: <mik...@us...> - 2003-12-23 16:47:05
|
Update of /cvsroot/mybusinessbasic/mybb In directory sc8-pr-cvs1:/tmp/cvs-serv9651 Modified Files: mybb.h revisions.txt Log Message: Changed version number to current 1.27, also added mybb.conf to the chage log (revisions.txt) Index: mybb.h =================================================================== RCS file: /cvsroot/mybusinessbasic/mybb/mybb.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** mybb.h 20 Dec 2003 03:30:52 -0000 1.4 --- mybb.h 23 Dec 2003 16:47:01 -0000 1.5 *************** *** 22,27 **** // Version Information ! #define VERSION "0126" // Version Change ! #define DVERSION "1.26" // Version Change #define DEBUG // Remove this for a release --- 22,27 ---- // Version Information ! #define VERSION "0127" // Version Change ! #define DVERSION "1.27" // Version Change #define DEBUG // Remove this for a release *************** *** 31,35 **** #define SYSNAME "LINUX" #define SYSDELIM "/" ! #define SSNID "0126-000-0200000" // Version Change #endif --- 31,35 ---- #define SYSNAME "LINUX" #define SYSDELIM "/" ! #define SSNID "0127-000-0200000" // Version Change #endif *************** *** 38,42 **** #define SYSNAME "MS-WINDOWS" #define SYSDELIM "\\" ! #define SSNID "0126-001-0000000" // Version Change #endif --- 38,42 ---- #define SYSNAME "MS-WINDOWS" #define SYSDELIM "\\" ! #define SSNID "0127-001-0000000" // Version Change #endif *************** *** 272,276 **** mybbfloat fltarg; } execelement; ! // storage.c int writeall(program *pgm, char *filename); --- 272,277 ---- mybbfloat fltarg; } execelement; ! ! // storage.c int writeall(program *pgm, char *filename); *************** *** 300,307 **** // utilities.c ! char *mid(char *str1,int start,int length); ! char *fgetValue(char *label); ! int fputValue(char *label, char *value); ! void getConfig(); short BigShort(short l); long BigLong(long l); --- 301,312 ---- // utilities.c ! char *mid(char *str1,int start,int length); ! ! char *fgetValue(char *label); ! ! int fputValue(char *label, char *value); ! ! void getConfig(); ! short BigShort(short l); long BigLong(long l); *************** *** 348,352 **** // exec.c ! int execline(program *pgm, statement *stmt); void *SafeMalloc(long size); --- 353,358 ---- // exec.c ! int execline(program *pgm, statement *stmt); ! void *SafeMalloc(long size); Index: revisions.txt =================================================================== RCS file: /cvsroot/mybusinessbasic/mybb/revisions.txt,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** revisions.txt 19 Dec 2003 06:15:38 -0000 1.6 --- revisions.txt 23 Dec 2003 16:47:01 -0000 1.7 *************** *** 1,4 **** ====================================================================== ! MyBB Version 1.26 - Release Notes Released: December 18th, 2003 --- 1,4 ---- ====================================================================== ! MyBB Version 1.27 - Release Notes Released: December 18th, 2003 *************** *** 15,18 **** --- 15,20 ---- Version Date Description of Change ---------------------------------------------------------------------- + 1.27 2003/12/20 Added mybb.conf. + 1.26 2003/12/17 Added headers to all programs before making the project open source. |
|
From: <is...@us...> - 2003-12-23 00:27:30
|
Update of /cvsroot/mybusinessbasic/mybb/.kde/share/services In directory sc8-pr-cvs1:/tmp/cvs-serv15711/.kde/share/services Removed Files: nsplugin.desktop Log Message: --- nsplugin.desktop DELETED --- |
|
From: <is...@us...> - 2003-12-23 00:27:30
|
Update of /cvsroot/mybusinessbasic/mybb/.kde/share/mimelnk/application In directory sc8-pr-cvs1:/tmp/cvs-serv15711/.kde/share/mimelnk/application Removed Files: futuresplash.desktop Log Message: --- futuresplash.desktop DELETED --- |
|
From: <is...@us...> - 2003-12-23 00:27:30
|
Update of /cvsroot/mybusinessbasic/mybb/.kde/share/fonts/override In directory sc8-pr-cvs1:/tmp/cvs-serv15711/.kde/share/fonts/override Removed Files: fonts.dir Log Message: --- fonts.dir DELETED --- |
|
From: <is...@us...> - 2003-12-23 00:27:30
|
Update of /cvsroot/mybusinessbasic/mybb/.kde/share/fonts In directory sc8-pr-cvs1:/tmp/cvs-serv15711/.kde/share/fonts Removed Files: fonts.dir Log Message: --- fonts.dir DELETED --- |
|
From: <is...@us...> - 2003-12-23 00:24:51
|
Update of /cvsroot/mybusinessbasic/mybb/.kde/share/config/session In directory sc8-pr-cvs1:/tmp/cvs-serv15170/config/session Removed Files: kwin_110a0b0a29000102257824100000015400000 Log Message: --- kwin_110a0b0a29000102257824100000015400000 DELETED --- |
Update of /cvsroot/mybusinessbasic/mybb/.kde/share/config In directory sc8-pr-cvs1:/tmp/cvs-serv15170/config Removed Files: dirfilterrc emaildefaults kab2kabcrc kalarmdrc kcminitrc kcmnspluginrc kcmshellrc kconf_updaterc kcontrolrc kdeglobals kdesktoprc kdewizardrc kickerrc kioslaverc klaunchrc klipperrc kmailrc konq_history konqiconviewrc konquerorrc konsolerc kpersonalizerrc ksmserverrc kstylerc kuserrc kwin.eventsrc kwinrc validatorsrc Log Message: --- dirfilterrc DELETED --- --- emaildefaults DELETED --- --- kab2kabcrc DELETED --- --- kalarmdrc DELETED --- --- kcminitrc DELETED --- --- kcmnspluginrc DELETED --- --- kcmshellrc DELETED --- --- kconf_updaterc DELETED --- --- kcontrolrc DELETED --- --- kdeglobals DELETED --- --- kdesktoprc DELETED --- --- kdewizardrc DELETED --- --- kickerrc DELETED --- --- kioslaverc DELETED --- --- klaunchrc DELETED --- --- klipperrc DELETED --- --- kmailrc DELETED --- --- konq_history DELETED --- --- konqiconviewrc DELETED --- --- konquerorrc DELETED --- --- konsolerc DELETED --- --- kpersonalizerrc DELETED --- --- ksmserverrc DELETED --- --- kstylerc DELETED --- --- kuserrc DELETED --- --- kwin.eventsrc DELETED --- --- kwinrc DELETED --- --- validatorsrc DELETED --- |
|
From: <is...@us...> - 2003-12-23 00:18:36
|
Update of /cvsroot/mybusinessbasic/mybb/.kde/share/apps/konqueror/dirtree/services In directory sc8-pr-cvs1:/tmp/cvs-serv13943/apps/konqueror/dirtree/services Removed Files: audiocd.desktop Log Message: Trash --- audiocd.desktop DELETED --- |
|
From: <is...@us...> - 2003-12-23 00:18:36
|
Update of /cvsroot/mybusinessbasic/mybb/.kde/share/apps/nsplugins In directory sc8-pr-cvs1:/tmp/cvs-serv13943/apps/nsplugins Removed Files: cache pluginsinfo Log Message: Trash --- cache DELETED --- --- pluginsinfo DELETED --- |
Update of /cvsroot/mybusinessbasic/mybb/.kde/share/apps/konqueror/dirtree/remote/web In directory sc8-pr-cvs1:/tmp/cvs-serv13943/apps/konqueror/dirtree/remote/web Removed Files: .directory apps_web.desktop dot_web.desktop kde_web.desktop Log Message: Trash --- .directory DELETED --- --- apps_web.desktop DELETED --- --- dot_web.desktop DELETED --- --- kde_web.desktop DELETED --- |
|
From: <is...@us...> - 2003-12-23 00:18:35
|
Update of /cvsroot/mybusinessbasic/mybb/.kde/share/apps/konqueror/dirtree/remote/ftp In directory sc8-pr-cvs1:/tmp/cvs-serv13943/apps/konqueror/dirtree/remote/ftp Removed Files: kde_ftp.desktop Log Message: Trash --- kde_ftp.desktop DELETED --- |
Update of /cvsroot/mybusinessbasic/mybb/.kde/share/apps/konqueror/dirtree In directory sc8-pr-cvs1:/tmp/cvs-serv13943/apps/konqueror/dirtree Removed Files: .directory bookmarks.desktop history.desktop home.desktop root.desktop Log Message: Trash --- .directory DELETED --- --- bookmarks.desktop DELETED --- --- history.desktop DELETED --- --- home.desktop DELETED --- --- root.desktop DELETED --- |
|
From: <is...@us...> - 2003-12-23 00:18:35
|
Update of /cvsroot/mybusinessbasic/mybb/.kde/share/apps/konqueror In directory sc8-pr-cvs1:/tmp/cvs-serv13943/apps/konqueror Removed Files: bookmarks.xml konq_history Log Message: Trash --- bookmarks.xml DELETED --- --- konq_history DELETED --- |
|
From: <is...@us...> - 2003-12-23 00:18:35
|
Update of /cvsroot/mybusinessbasic/mybb/.kde/share/apps/konqsidebartng/entries In directory sc8-pr-cvs1:/tmp/cvs-serv13943/apps/konqsidebartng/entries Removed Files: .version Log Message: Trash --- .version DELETED --- |
|
From: <is...@us...> - 2003-12-23 00:18:35
|
Update of /cvsroot/mybusinessbasic/mybb/.kde/share/apps/kabc In directory sc8-pr-cvs1:/tmp/cvs-serv13943/apps/kabc Removed Files: std.vcf Log Message: Trash --- std.vcf DELETED --- |
|
From: <is...@us...> - 2003-12-23 00:18:35
|
Update of /cvsroot/mybusinessbasic/mybb/.kde/share/apps/kicker In directory sc8-pr-cvs1:/tmp/cvs-serv13943/apps/kicker Removed Files: default-apps Log Message: Trash --- default-apps DELETED --- |
|
From: <is...@us...> - 2003-12-23 00:18:34
|
Update of /cvsroot/mybusinessbasic/mybb/.kde/share/apps/RecentDocuments In directory sc8-pr-cvs1:/tmp/cvs-serv13943/apps/RecentDocuments Removed Files: ntpdate.htm.desktop Log Message: Trash --- ntpdate.htm.desktop DELETED --- |
|
From: <is...@us...> - 2003-12-23 00:15:23
|
Update of /cvsroot/mybusinessbasic/mybb/.kde/share/apps/konqueror/dirtree/remote In directory sc8-pr-cvs1:/tmp/cvs-serv13466 Removed Files: .directory lan.desktop Log Message: Trash --- .directory DELETED --- --- lan.desktop DELETED --- |
Update of /cvsroot/mybusinessbasic/mybb/.kde/share/apps/konqsidebartng/entries In directory sc8-pr-cvs1:/tmp/cvs-serv5981 Removed Files: remote.desktop root.desktop services.desktop sidebar_classic.desktop Log Message: --- remote.desktop DELETED --- --- root.desktop DELETED --- --- services.desktop DELETED --- --- sidebar_classic.desktop DELETED --- |