Page 10 of 16
Posted: Sun Jan 28, 2007 5:01 am
by ts-soft
ts-soft wrote:
(linux version in progress)
here the linux-version (including source, the same for win and lin

)
The pbosl_updater uses firefox, but for other browsers, you can simple
change this in the source. The linux version use no thread, don't work with
the current beta version.
The linux version only tested on opensuse 10.2 with KDE.
download
Posted: Tue Jan 30, 2007 12:32 pm
by SFSxOI
Thank You ts-soft.

Posted: Wed Jan 31, 2007 3:55 pm
by ts-soft
Update:
New version of the pbosl_updater linux, same link as above
This version should work with all browsers,
thanks to WishMaster and DoubleDutch for help and code
Posted: Wed Jan 31, 2007 7:33 pm
by DoubleDutch
What did I do? I didn't know I had helped?

Posted: Wed Jan 31, 2007 7:48 pm
by ts-soft
DoubleDutch wrote:What did I do? I didn't know I had helped?

Wishmaster say to me, the code to find the browser based on your code, so
you helped

Posted: Wed Jan 31, 2007 9:15 pm
by DoubleDutch
If its on Linux, then I must have either stumbled through to make it work, or it was probably due to the help of the Linux 'gurus' on the forum!

Posted: Tue Feb 20, 2007 5:44 pm
by ts-soft
Small bugfix
Problem with UTF-8 strings in PBOSL_SQLite3 fixed
Posted: Thu Feb 22, 2007 11:10 pm
by srod
@ts-soft: I'm having a clash of residents at the moment, the clash being between the PurePDF library and the PBOSL resident file.
Now whilst this is easy enough to get around, I'm just a little puzzled because I can find no reference to PurePDF within the PBOSL package!
Can you shed a little light on this? Does one of the PBOSL libraries make use of PurePDF? If so, I can't figure out which one, although #PUREPDF_VERSION is reported as having the value 3.0.
Thanks.
Posted: Thu Feb 22, 2007 11:36 pm
by ts-soft
srod wrote:@ts-soft: I'm having a clash of residents at the moment, the clash being between the PurePDF library and the PBOSL resident file.
Now whilst this is easy enough to get around, I'm just a little puzzled because I can find no reference to PurePDF within the PBOSL package!
Can you shed a little light on this? Does one of the PBOSL libraries make use of PurePDF? If so, I can't figure out which one, although #PUREPDF_VERSION is reported as having the value 3.0.
Thanks.
All PurePDF Constants not declared in PBOSL.res. Please load a newer version. You can also load the source. You see that all PurePDF a commented out (i hope

)
PurePDF uses many optional parameters, this did not work with tailbite
Many changes required to do this work, i haven't enough time, i still wait for a new TailBite version.
I can send you the version 3, if you want use it or change for me
greetings
Thomas
Posted: Thu Feb 22, 2007 11:43 pm
by srod
I must admit that PurePDF isn't going to work as it is for me because the compiled libs (version 2.06) are not threadsafe. So I will need to tinker with the source code anyhow.
In fact I'll be best served by using a source code include version - although I'm tempted to write my own library because I'm not in need of the huge feature set of PurePDF anyhow (although it is excellent).
I'd be interested to look through version 3.0 if you have the source to hand and are allowed to share it.
Thanks.
Posted: Thu Feb 22, 2007 11:51 pm
by ts-soft
No problem, is LGPL

, so any changes must be public for all users!
http://ts-soft.eu/dl/purepdf_source.zip
Posted: Fri Feb 23, 2007 12:12 am
by srod
Thankyou ts-soft, compiles fine when the includes are bundled in.
Now, shouldn't take more than 10 years or so to figure out how this works!

Posted: Tue Mar 27, 2007 1:21 am
by rsts
ts-soft wrote:Small bugfix
Problem with UTF-8 strings in PBOSL_SQLite3 fixed
Hi, I just noticed this after I had encountered a problem with the routine.
Apparently, the source isn't fixed? At least what I just downloaded appears to contain a utf8 encoding problem in PBOSL_Sqlite3 source.
cheers
Posted: Tue Mar 27, 2007 1:29 am
by ts-soft
Can you post an example? I don't use the lib for my applications, thus I myself can find no mistakes.
Posted: Tue Mar 27, 2007 1:34 am
by rsts
ts-soft wrote:Can you post an example? I don't use the lib for my applications, thus I myself can find no mistakes.
Sorry, it may be my fault. I had inserted a data via
Prepare
Bind
Step
Finalize
but used
sSQLQuery.s = "Select * from tblNotes WHERE KeyString = '"+dbRec$+"'"
Statement = SQLite3_GetRecordset(sSQLQuery, dbHandler, @RS)
If SQLite3_GetRecordsetValueByName("noteblob", @RS)
which failed to properly retrieve the previously inserted record.
Guess I shouldn't have mixed the routines.
edit
I can consistently create a problem using routines from the PBOSL source, so I will trim down my source and post something which will demonstrate the problem a little later. Maybe someone will be able to explain what I'm doing incorrectly, or confirm a problem with the source.
cheers