You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
(4) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(2) |
Feb
(4) |
Mar
(10) |
Apr
(2) |
May
(2) |
Jun
(2) |
Jul
(9) |
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
(9) |
2005 |
Jan
(2) |
Feb
|
Mar
(8) |
Apr
(46) |
May
(16) |
Jun
(69) |
Jul
(27) |
Aug
(12) |
Sep
|
Oct
(11) |
Nov
|
Dec
(14) |
2006 |
Jan
(22) |
Feb
(4) |
Mar
(9) |
Apr
(1) |
May
|
Jun
(4) |
Jul
|
Aug
(1) |
Sep
(6) |
Oct
(5) |
Nov
(2) |
Dec
(16) |
2007 |
Jan
(1) |
Feb
|
Mar
(5) |
Apr
(3) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
(2) |
Nov
(2) |
Dec
(3) |
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(14) |
Sep
(10) |
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
(3) |
Mar
|
Apr
(2) |
May
(7) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
(2) |
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
From: Bob D. <bd...@si...> - 2005-03-07 14:44:43
|
All, If you have a moment could you try out rlib 1.3.2 again http://www.sicom.com/~bdoan/rlib-1.3.2.tar.gz There are a bunch of fixes from the last time (Including a RPDF problem) Documentation is included in the tarball and will build if you have db2pdf on your system. There are also about 10-15 possible crashes fixed as well. Also the Python and JAVA bindings work again! (PERL almost works) let me know what you think - bob |
From: Bob D. <bd...@si...> - 2005-03-07 14:39:18
|
Hi Thanks for the patch! I applied the patch minus the "r->queries_count = 0;" because the struct is bzero'd when its initialized. It also motivated me to fix a few other crashing situations if the actual query failed to run. Curiosity question. What would php compiler folks be doing w/ RLIB? - bob On Fri, 2005-03-04 at 14:04 -0500, Shannon Weyrick wrote: > Bob Doan wrote: > > >Hey all, > > > >I have written a GPL'd PDF library for RLIB called RPDF. It will now be > >distributed w/ RLIB as the default PDF LIBRARY and CPDF is OFFICIAL > >REMOVED FROM RLIB!!! > > > >Bonuses: Don't have to worry about cpdf any more > >RLIB is now 100% GPL'D > > > >It may not be production ready yet. It needs some testing. If you have > >a change could you try it and see if it works and report back > > > >download it here: > > > >http://www.sicom.com/~bdoan/rlib-1.3.2.tar.gz > > > >THIS IS NOT THE OFFICIAL 1.3.2 Release!!!! > > > >Please try it.. I want to know if it works for you all! > > > >Thanks! > > > >- bob > > > > > > > > > Hi Bob, > > Congrats on the new PDF library, seems to work well so far. I just > started using RLIB and I'm really impressed so far - thanks for your > efforts on it. > > On another note, I was experiencing a segfault which I tracked down to > not passing a query to a report (via rlib_add_query_as) before running > rlib_execute. I whipped up a patch (attached) that at least handles this > a little more gracefully. > > Thanks again, > Shannon > > plain text document attachment (no_query_fix.diff) > --- rlib-1.3.2/libsrc/api.c 2005-03-02 09:46:41.000000000 -0500 > +++ rlib-1.3.2-weyrick/libsrc/api.c 2005-03-04 13:53:25.980009365 -0500 > @@ -68,6 +68,7 @@ > > r->output_parameters = g_hash_table_new_full (g_str_hash, g_str_equal, string_destroyer, string_destroyer); > r->input_metadata = g_hash_table_new_full (g_str_hash, g_str_equal, string_destroyer, metadata_destroyer); > + r->queries_count = 0; > > #if !DISABLE_UTF8 > make_all_locales_utf8(); > @@ -161,6 +162,11 @@ > char newfile[MAXSTRLEN]; > > r->now = time(NULL); > + > + if(r->queries_count < 1) { > + r_error("No queries added to report\n"); > + return -1; > + } > rlib_execute_queries(r); > > LIBXML_TEST_VERSION |
From: Shannon W. <we...@ro...> - 2005-03-04 19:05:14
|
Bob Doan wrote: >Hey all, > >I have written a GPL'd PDF library for RLIB called RPDF. It will now be >distributed w/ RLIB as the default PDF LIBRARY and CPDF is OFFICIAL >REMOVED FROM RLIB!!! > >Bonuses: Don't have to worry about cpdf any more >RLIB is now 100% GPL'D > >It may not be production ready yet. It needs some testing. If you have >a change could you try it and see if it works and report back > >download it here: > >http://www.sicom.com/~bdoan/rlib-1.3.2.tar.gz > >THIS IS NOT THE OFFICIAL 1.3.2 Release!!!! > >Please try it.. I want to know if it works for you all! > >Thanks! > >- bob > > > > Hi Bob, Congrats on the new PDF library, seems to work well so far. I just started using RLIB and I'm really impressed so far - thanks for your efforts on it. On another note, I was experiencing a segfault which I tracked down to not passing a query to a report (via rlib_add_query_as) before running rlib_execute. I whipped up a patch (attached) that at least handles this a little more gracefully. Thanks again, Shannon |
From: Bob D. <bd...@si...> - 2005-03-02 15:14:20
|
Good News! Mike Roth here @ SICOM is working on the RLIB Documentation. Now is an excellent time to share w/ the list examples or suggestions for the documentation.. I know Carol has some.. did you have a chance to work on the official documentation Carol? - bob |
From: Bob D. <bd...@si...> - 2005-03-02 15:11:39
|
Hey all, I have written a GPL'd PDF library for RLIB called RPDF. It will now be distributed w/ RLIB as the default PDF LIBRARY and CPDF is OFFICIAL REMOVED FROM RLIB!!! Bonuses: Don't have to worry about cpdf any more RLIB is now 100% GPL'D It may not be production ready yet. It needs some testing. If you have a change could you try it and see if it works and report back download it here: http://www.sicom.com/~bdoan/rlib-1.3.2.tar.gz THIS IS NOT THE OFFICIAL 1.3.2 Release!!!! Please try it.. I want to know if it works for you all! Thanks! - bob |
From: Bob D. <bd...@si...> - 2005-01-20 18:28:55
|
Hey all, I'm pleased to announce the official release of RLIB 1.3.1 (UNSTABLE). The major changes are graphing support. For examples see: http://www.sicom.com/~bdoan/report.html and http://www.sicom.com/~bdoan/report.pdf In src/examples/php/ there is graphing.xml and graphing.php which show you how to use it. The graphing support is not quite yet complete as there are still a few problems w/ y axis labeling and ticking.. but it works out nice a lot of the time. At this time I want to give a VERY SPECIAL THANK YOU to Mike Ibison for all of his help w/ graping support! It would not have been possible w/ out his help! (Mike doesn't work for SICOM so he did this on his own time) Once again!! Thanks Mike! Get it from the usual place: http://rlib.sicompos.com Note RLIB requires gd > 2.0 form HTML images support Packages needed are (gd, gd-devel, AND gd-progs) There are a few more things to get done before RLIB 1.4 comes out: * Fix up python bindings * Fix up java bindings * Finish perl bindings * Windows Port * Graphing cleanup All feedback is appreciated - bob |
From: Stephen T. <STe...@fc...> - 2005-01-19 20:34:52
|
Hi, I installed on Red Hat Fedora 2; no problems during install. When I run the PHP example nothing gets displayed, but my apache error log has: [Wed Jan 19 13:43:04 2005] [notice] child pid 10995 exit signal Quit (3) Any idea how to troubleshoot? Thanks - ST |
From: Bob D. <bd...@si...> - 2004-12-14 14:42:26
|
I'm guessing that you didn't configure it with --prefix=/usr and you are running a linux where /usr/local/lib is not in your /etc/ld.so.conf reconfigure w/ the above and it will work - bob > RLIB did find PHP and seemed to be happy with what it found. But when > I run the thing from the command line, this is what I get. > > dorms:~/rlib-1.3.0/src/examples/php> php example.php > Setting output encoding to ISO-8859-1 > Setting locale to > [LC_CTYPE=en_US;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C; > LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C; > LC_MEASUREMENT=C;LC_IDENTIFICATION=C] FAILEDencoding is NULL or invalid > [C]... using en_USSetting locale to [C] FAILEDSetting locale to [en_US] > FAILEDencoding is NULL or invalid [C]... using en_USSetting locale to > [C] FAILEDencoding is NULL or invalid [C]... using en_USSetting locale > to [C] FAILEDencoding is NULL or invalid [C]... using en_USSetting > locale to [C] FAILEDencoding is NULL or invalid [C]... using > en_USSetting locale to [C] FAILEDencoding is NULL or invalid [C]... > using en_USSetting locale to [C] FAILEDencoding is NULL or invalid > [C]... using en_USSetting locale to [C] FAILEDencoding is NULL or > invalid [C]... using en_USSetting locale to [C] FAILEDencoding is NULL > or invalid [C]... using en_USSetting locale to [C] FAILEDencoding is > NULL or invalid [C]... using en_USSetting locale to [C] FAILEDencoding > is NULL or invalid [C]... using en_USSetting locale to [C] FAILEDCould > Not Load MYSQL Input [libr-mysql.so: cannot open shared object file: No > such file or directory] > ** NUTS.. WE CRASHED > Quit > > > ------- University of Michigan Department of Mathematics ------- > Jeff Kopmanis, Systems Project Coordinator, Computer Support Group > B736 East Hall, 525 East University Ave, Ann Arbor, MI 48109-1109 > Office: 734-615-6038 http://www-personal.umich.edu/~kopmanis |
From: Jeff K. <kop...@um...> - 2004-12-14 14:32:08
|
>> Q2: Perl still doesn't get configured...complains it can't find the >> files, and I've installed every -dev package I can find for perl. >> Here's the message from the configure run: > > PERL bindings don't work yet anyway ;) OK...then I won't worry about them. >> The PHP sample code crashes, but the C code works, and gives me >> results...happy-happy! > > Do you need the PHP to work? And did RLIB find php support when it > configured? RLIB did find PHP and seemed to be happy with what it found. But when I run the thing from the command line, this is what I get. dorms:~/rlib-1.3.0/src/examples/php> php example.php Setting output encoding to ISO-8859-1 Setting locale to [LC_CTYPE=en_US;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C; LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C; LC_MEASUREMENT=C;LC_IDENTIFICATION=C] FAILEDencoding is NULL or invalid [C]... using en_USSetting locale to [C] FAILEDSetting locale to [en_US] FAILEDencoding is NULL or invalid [C]... using en_USSetting locale to [C] FAILEDencoding is NULL or invalid [C]... using en_USSetting locale to [C] FAILEDencoding is NULL or invalid [C]... using en_USSetting locale to [C] FAILEDencoding is NULL or invalid [C]... using en_USSetting locale to [C] FAILEDencoding is NULL or invalid [C]... using en_USSetting locale to [C] FAILEDencoding is NULL or invalid [C]... using en_USSetting locale to [C] FAILEDencoding is NULL or invalid [C]... using en_USSetting locale to [C] FAILEDencoding is NULL or invalid [C]... using en_USSetting locale to [C] FAILEDencoding is NULL or invalid [C]... using en_USSetting locale to [C] FAILEDencoding is NULL or invalid [C]... using en_USSetting locale to [C] FAILEDCould Not Load MYSQL Input [libr-mysql.so: cannot open shared object file: No such file or directory] ** NUTS.. WE CRASHED Quit ------- University of Michigan Department of Mathematics ------- Jeff Kopmanis, Systems Project Coordinator, Computer Support Group B736 East Hall, 525 East University Ave, Ann Arbor, MI 48109-1109 Office: 734-615-6038 http://www-personal.umich.edu/~kopmanis |
From: Bob D. <bd...@si...> - 2004-12-14 14:24:37
|
On Tue, 2004-12-14 at 01:15 -0500, Jeff Kopmanis wrote: > Thanks, Bob...that helped. Got RLib compiled. Had to do add the > libraries for PHP and MySQL support. > > Q1: do --enable-mysql, --enable-php, etc have to be given to get these > features turned on? > Well.. it tries to find everything automatically.. on most systems it will find mysql and php automatically..... There only there just in case > Q2: Perl still doesn't get configured...complains it can't find the > files, and I've installed every -dev package I can find for perl. > Here's the message from the configure run: PERL bindings don't work yet anyway ;) > The PHP sample code crashes, but the C code works, and gives me > results...happy-happy! Do you need the PHP to work? And did RLIB find php support when it configured? |
From: Jeff K. <kop...@um...> - 2004-12-14 06:16:33
|
Thanks, Bob...that helped. Got RLib compiled. Had to do add the libraries for PHP and MySQL support. Q1: do --enable-mysql, --enable-php, etc have to be given to get these features turned on? Q2: Perl still doesn't get configured...complains it can't find the files, and I've installed every -dev package I can find for perl. Here's the message from the configure run: checking for PERL files... configure: WARNING: PERL bindings are not going to be used The PHP sample code crashes, but the C code works, and gives me results...happy-happy! Thanks for the help before, it was key. -Jeff. :) On Dec 13, 2004, at 11:04 PM, rli...@li... wrote: > Send Rlib-devel mailing list submissions to > rli...@li... > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/rlib-devel > or, via email, send a message with subject or body 'help' to > rli...@li... > > You can reach the person managing the list at > rli...@li... > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Rlib-devel digest..." > > > Today's Topics: > > 1. pkg-config problems (Jeff Kopmanis) > 2. Re: pkg-config problems (Bob Doan) > 3. Re: pkg-config problems (Jeff Kopmanis) > > --__--__-- > > Message: 1 > To: rli...@li... > From: Jeff Kopmanis <kop...@um...> > Date: Mon, 13 Dec 2004 01:05:24 -0500 > Subject: [Rlib-devel] pkg-config problems > > I'm having trouble getting this thing built, and I used to think it was > only a problem with MacOSX, but now, its doing the same thing with > Debian Linux. > > Here's the last error I got when running ./configure : > >> checking for libxml-2.0 >= 2.6.0... Package libxml-2.0 was not found >> in the pkg-config search path. >> Perhaps you should add the directory containing `libxml-2.0.pc' >> to the PKG_CONFIG_PATH environment variable >> No package 'libxml-2.0' found >> >> configure: error: Library requirements (libxml-2.0 >= 2.6.0) not met; >> consider adjusting the PKG_CONFIG_PATH environment variable if your >> libraries are in a nonstandard prefix so pkg-config can find them. > > I checked on the debian system and its got libxml2 version 2.6.11, > which is more than current enough. > > There aren't any special variables set, but the above libraries are > located in /usr/lib, which should be a very standard place to be. > > What am I doing wrong here? Rlib looks like a great library, but if it > doesn't compile, there's not much more to be done. > > Alternatively, I'd love to see a set of binaries for both MacOSX and > Debian linux. > > -Jeff. :) > > ------- University of Michigan Department of Mathematics ------- > Jeff Kopmanis, Systems Project Coordinator, Computer Support Group > B736 East Hall, 525 East University Ave, Ann Arbor, MI 48109-1109 > Office: 734-615-6038 http://www-personal.umich.edu/~kopmanis > > > > --__--__-- > > Message: 2 > Subject: Re: [Rlib-devel] pkg-config problems > From: Bob Doan <bd...@si...> > To: Jeff Kopmanis <kop...@um...> > Cc: rli...@li... > Date: Mon, 13 Dec 2004 09:34:40 -0500 > > The problem is you need to have the "devel" packages installed. > > http://packages.debian.org/stable/devel/libxml2-dev > > >> Alternatively, I'd love to see a set of binaries for both MacOSX and >> Debian linux. > > > Yea.. we really need to get around to making RPMS and DEBS.. > > volunteers?? > > > - bob > > > > --__--__-- > > Message: 3 > Cc: rli...@li... > From: Jeff Kopmanis <kop...@um...> > Subject: Re: [Rlib-devel] pkg-config problems > Date: Mon, 13 Dec 2004 10:06:47 -0500 > To: Bob Doan <bd...@si...> > > Thanks, Bob...I'll try that. :) > > On Dec 13, 2004, at 9:34 AM, Bob Doan wrote: > >> The problem is you need to have the "devel" packages installed. >> >> http://packages.debian.org/stable/devel/libxml2-dev >> >> >>> Alternatively, I'd love to see a set of binaries for both MacOSX and >>> Debian linux. >> >> >> Yea.. we really need to get around to making RPMS and DEBS.. >> >> volunteers?? >> >> >> - bob >> >> > ------- University of Michigan Department of Mathematics ------- > Jeff Kopmanis, Systems Project Coordinator, Computer Support Group > B736 East Hall, 525 East University Ave, Ann Arbor, MI 48109-1109 > Office: 734-615-6038 http://www-personal.umich.edu/~kopmanis > > > > > --__--__-- > > _______________________________________________ > Rlib-devel mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-devel > > > End of Rlib-devel Digest > ------- University of Michigan Department of Mathematics ------- Jeff Kopmanis, Systems Project Coordinator, Computer Support Group B736 East Hall, 525 East University Ave, Ann Arbor, MI 48109-1109 Office: 734-615-6038 http://www-personal.umich.edu/~kopmanis |
From: Jeff K. <kop...@um...> - 2004-12-13 15:06:56
|
Thanks, Bob...I'll try that. :) On Dec 13, 2004, at 9:34 AM, Bob Doan wrote: > The problem is you need to have the "devel" packages installed. > > http://packages.debian.org/stable/devel/libxml2-dev > > >> Alternatively, I'd love to see a set of binaries for both MacOSX and >> Debian linux. > > > Yea.. we really need to get around to making RPMS and DEBS.. > > volunteers?? > > > - bob > > ------- University of Michigan Department of Mathematics ------- Jeff Kopmanis, Systems Project Coordinator, Computer Support Group B736 East Hall, 525 East University Ave, Ann Arbor, MI 48109-1109 Office: 734-615-6038 http://www-personal.umich.edu/~kopmanis |
From: Bob D. <bd...@si...> - 2004-12-13 14:34:48
|
The problem is you need to have the "devel" packages installed. http://packages.debian.org/stable/devel/libxml2-dev > Alternatively, I'd love to see a set of binaries for both MacOSX and > Debian linux. Yea.. we really need to get around to making RPMS and DEBS.. volunteers?? - bob |
From: Jeff K. <kop...@um...> - 2004-12-13 06:06:56
|
I'm having trouble getting this thing built, and I used to think it was only a problem with MacOSX, but now, its doing the same thing with Debian Linux. Here's the last error I got when running ./configure : > checking for libxml-2.0 >= 2.6.0... Package libxml-2.0 was not found > in the pkg-config search path. > Perhaps you should add the directory containing `libxml-2.0.pc' > to the PKG_CONFIG_PATH environment variable > No package 'libxml-2.0' found > > configure: error: Library requirements (libxml-2.0 >= 2.6.0) not met; > consider adjusting the PKG_CONFIG_PATH environment variable if your > libraries are in a nonstandard prefix so pkg-config can find them. I checked on the debian system and its got libxml2 version 2.6.11, which is more than current enough. There aren't any special variables set, but the above libraries are located in /usr/lib, which should be a very standard place to be. What am I doing wrong here? Rlib looks like a great library, but if it doesn't compile, there's not much more to be done. Alternatively, I'd love to see a set of binaries for both MacOSX and Debian linux. -Jeff. :) ------- University of Michigan Department of Mathematics ------- Jeff Kopmanis, Systems Project Coordinator, Computer Support Group B736 East Hall, 525 East University Ave, Ann Arbor, MI 48109-1109 Office: 734-615-6038 http://www-personal.umich.edu/~kopmanis |
From: Bob D. <bd...@si...> - 2004-12-05 01:31:09
|
Nice! At first glace patch looks pretty good. The XML Input looks pretty good.. I don't see any real problems there hower I can't tell if breaking will work @ first glance. Output looks pretty good except things like pages across doesn't look like it will work. As far as the auto* stuff.. I'll take a poke at it. I can usually force it into submission. How hard would it be to fix the font finding stuff? The hard coded font stuff would be a downer. This patch would be good for HEAD (1.3.x).. any chance you could rework it for HEAD.. INPUT has not changed at all, OUTPUT however is chaning as some of us @ SICOM are making graphing work. Which leads to the next question.. Would you be willing to sync the PSLIB stuff to what we're doing w/ graphing?? If so I'd be happy to include it in rlib propper and give you guys credit all that good stuff. Also we have a copyright assignment thing http://rlib.sicompos.com/copyright_form.pdf Which basically says You give us copyright and we give it right back to you on all your contributions. In other words, we don't have to drag you with us if we go to court to defend the GPL, and we can use a dual license like Mozilla does for commercial purposes. (Ximian, Novel, Sun, others do it also) We would need Jeremy to sign it also. I hope this won't be a problem and if you need futher clarification let me know. PS. What brought this on?? Out of curiosity what are you using RLIB for? Again.. Thanks! - bob On Sat, 2004-12-04 at 17:52 -0600, Warren Smith wrote: > Yeah, we know rlib 1.3.0 is out, but we started this batch beforehand. > So, without further delay, this patch adds a new xml-based input for > flat-file data and a PSLIB (pslib.sf.net)-based postscript output filter > for fully GPL pdf generation (using ps2pdf). The only problem is that > pslib is kind of retarded in it's font finding algorithm (compared to > clibpdf's) and the font is currently hard-coded to tex's courier 8-pt > font as installed by debian package tetex-extras. Other than that, it > works like a charm. > > You may have issues building it, as for some reason, with my old version > of autotools, we couldn't get ENABLE_PSLIB in libsrc/Makefile.am to > trigger and ps.c doesn't get built. > > > Enjoy! > > Warren and Jeremy > > -- Bob Doan <bd...@si...> |
From: Warren S. <wa...@wa...> - 2004-12-04 23:53:00
|
Yeah, we know rlib 1.3.0 is out, but we started this batch beforehand. So, without further delay, this patch adds a new xml-based input for flat-file data and a PSLIB (pslib.sf.net)-based postscript output filter for fully GPL pdf generation (using ps2pdf). The only problem is that pslib is kind of retarded in it's font finding algorithm (compared to clibpdf's) and the font is currently hard-coded to tex's courier 8-pt font as installed by debian package tetex-extras. Other than that, it works like a charm. You may have issues building it, as for some reason, with my old version of autotools, we couldn't get ENABLE_PSLIB in libsrc/Makefile.am to trigger and ps.c doesn't get built. Enjoy! Warren and Jeremy |
From: Everton L. B. <ev...@fa...> - 2004-11-17 19:13:51
|
Hi, I found errors using the new rlib with php4 and php5. everton@nsa3:~/workspace/sanovo_v1/gradecurricular$ php gradecurricular.php > a.pdf PHP Warning: dl(): Unable to load dynamic library '/usr/lib/php/extensions/no-debug-non-zts-20020429/librlib.so' - libr-1.3.0.so: cannot open shared object file: No such file or directory in /home/everton/workspace/sanovo_v1/gradecurricular/gradecurricular.php on line 1 PHP Fatal error: Call to undefined function: rlib_init() in /home/everton/workspace/sanovo_v1/gradecurricular/gradecurricular.php on line 13 The extensions directory is right and *.so files exists. -- Everton Luis Berz Bob Doan wrote: > Fajitas! > > I'm proud to announce the 1st official test release of RLIB 1.4 > > Features include: > > * Parts > * Fixed and Flow Layouts > * Bold and Italics > * Language Improvements such as "eval" > * PHP Array input method > * More stability? > * Horizontal line's properties are more dynamic > * Break's newpage is dynamic (for Carol) > > And much more!! > > Please give it a go > > Also.. I'm now looking for people to help fix the RLIB manual. PLEASE > PLEASE PLEASE > > You can download it from source forge > > - bob > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: InterSystems CACHE > FREE OODBMS DOWNLOAD - A multidimensional database that combines > robust object and relational technologies, making it a perfect match > for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8 > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users > |
From: Bob D. <bd...@si...> - 2004-11-17 18:15:07
|
Fajitas! I'm proud to announce the 1st official test release of RLIB 1.4 Features include: * Parts * Fixed and Flow Layouts * Bold and Italics * Language Improvements such as "eval" * PHP Array input method * More stability? * Horizontal line's properties are more dynamic * Break's newpage is dynamic (for Carol) And much more!! Please give it a go Also.. I'm now looking for people to help fix the RLIB manual. PLEASE PLEASE PLEASE You can download it from source forge - bob |
From: Bob D. <bd...@si...> - 2004-07-20 17:36:07
|
For bug fixes: RLIB_1_2_0 Development goes in HEAD As reminder use the "-r" tag to get the branch on checkout - bob |
From: Bob D. <bd...@si...> - 2004-07-20 16:07:13
|
Hey All, I thought I would update you all on where RLIB's going. The next major change to RLIB is going to be able to do report "parts". Which basically means having more then one report in a report. See the attached document on parts. Also, we are going to add a "table" data source provider. Which basically means you will be able to pass RLIB a 2d array instead of using a query if you want to. Depending on how things go we might start some BASIC graphing support in this release cycle. Documentation: Steve Tilden and Mike Roth will improve the RLIB Documentation. - Bob |
From: Bob D. <bd...@si...> - 2004-07-20 16:01:12
|
Hey All, SICOM Systems is pleased to announce the next stable release of RLIB. Over the course of the past year many exciting changes have happened in RLIB. * Changed from a PHP Module to a true c library. * Able to use RLIB in c, php, python, java * More datasources: MySql, PostgreSQL, ODBC * Non US Character set support (UFT8, ISO8869, ect) * RLIB data types got better (dates can go back further then 1970) * Many cleanups, bug fixes The last release notes before release: 1.20.0 === - Added Everton as an offical RLIB Color - Fix PDF Content Type for IE (chet) - better utf8/no utf8 support (me) - small variable/ breaking order changes to make it make more sense (chet) - compile fixes on other platforms (chet, me) New SICOM Contributors: Please join me in welcoming Mike Roth and Steve Tilden to the RLIB Project. Both will contribute to the engine/ documentation. Community Contributors: First: A very special thanks goes out to Everton Luis Berz. He's been wonderful w/ his testing. He found tons of bugs over the year, and he always helped with testing. Thanks Everton! Farryp Philippe-Auguste: For testing Heri Steuer: For datasource bug fixing Tony Cratz: For different unix testing and some bug reporting John Buckman: For some small patches and pointing us at SWIG |
From: Bob D. <bd...@si...> - 2004-07-08 15:40:11
|
Hey All, SICOM Systems is pleased to announce the release of RLIB 1.1.9 - Able to really disable UTF8 (me) - Make Python really work (me) - i18n fixed (me) - Fix numeric conversion so '-' works when the integer value is 0. (chet) - Compile Fixes (me) - Build w/ out CPDF (me) And I have 2 people to thank this time Farryp Philippe-Auguste for help w/ build fixes/python Everton Luis Berz for his continued testing and bug hunting http://rlib.sicompos.com Enjoy! - bob |
From: Bob D. <bd...@si...> - 2004-07-02 18:36:31
|
Hi, In c here's how it works As you know RLIB support Mysql, postgresql, and ODBC (allowing like 20 other data sources) RLIB does this w/ an "input class" filter Here's the struct/class struct input_filter { gpointer private; struct input_info info; gint (*input_close)(gpointer); gpointer (*new_result_from_query)(gpointer, gchar *); gint (*free)(gpointer); gint (*first)(gpointer, gpointer); gint (*next)(gpointer, gpointer); gint (*previous)(gpointer, gpointer); gint (*last)(gpointer, gpointer); gint (*isdone)(gpointer, gpointer); gchar * (*get_field_value_as_string)(gpointer, gpointer, gpointer); gpointer (*resolve_field_pointer)(gpointer, gpointer, gchar *); void (*free_result)(gpointer, gpointer); gint (*set_encoding)(gpointer); }; The second part of the magic is having a "query" or some real filter on the data set that the input_filter operates on. There is typically a 1 to N relationship between the input_filter and the queries. Also, RLIB has a lot of "object oriented" code, even though it is C.. so almost all functions in this input_filter class take a "this" pointer.. Other functions take a "this" pointer and a pointer to a result set Most of the function are obvious, and if you look at mysql.c or postgres.c you can see how they are implemented.. Basically inside rlib the normal chain of events are: 1) Open the input_filter.. this is typically a custom job, and is done differently for all databases.. so it's up to you to do it.. and in the private * part of the input_filter hold connection info and other crap you care about. 2) Pass it all the queries and *new_result_from_query will return a pointer to A result set 3) RLIB compiles the XML into PCODE and resolves all fields from the XML to the datasource/result sets. The function *resolve_field_pointer takes a char * field name and turns it into a direct access/ almost direct access pointer. In MYSQL the name gets turned into a col number. In postgresql it gets turned into a field pointer. 4) RLIB spins in a loop through the main loop query.. basically.. First the "first" function is called, then it keeps calling "next" until the "isdone" function returns TRUE. WATCH OUT: When RLIB hits a break it got there by calling NEXT and seeing if things no longer match. But RLIB will go PREVIOUS 1 row so that the break footer fields reflect the correct row (Most Reporting Engines don't do this BTW) So you will need to keep at least a ONE ROW CACHE as you spin though your data set. Postgresql makes this easy, MySQL is kinda easy, ODBC is not.. you have to do it your self. 5) *free_result is called for all the queries. input_close is called, then free is called (free your private stuff here) All Done. Here's what I don't know 1) In PYTHON once it calls a "c" function can the "c" function go back out and call a "python" function. DO YOU KNOW? 2) I know SICOM has no plans to do this sorta PYTHON work for free (as we currently don't need it and no one has offered to pay) If you are of the paying type and you want to use RLIB commercially then let me know and I'll look into how long it would take me or Chet - bob On Fri, 2004-07-02 at 15:54 +0000, Farryp Philippe-Auguste wrote: > Pls, > send me the info. > > How long will it take to write a python binding to support this option for > python ? > > best regards > > Farry > > > Bob Doan (bd...@si...) wrote: > > > > Yes, > > > > We (SICOM) Do some of the same things w/ one of our particular projects. > > However, you need to use C. If your C is good then I'll explain a bit > > more how it works > > > > - bob > > > > On Thu, 2004-07-01 at 22:37 +0000, Farryp Philippe-Auguste wrote: > > > Hi, > > > > > > I'm wondering if there is a way to pass data to rlib without using a > > > datasource. > > > > > > I'm using a replication system so I do not connect to a particular database. > > > > > > Is there is a way of instead of using rlib_add_datasource... and > > > rlib_add_query_as, > > > > > > can I instead of having a select statement , having a variable which contains > > > the data that I need RLIB to populate ? I will use my own libraries to get > > > the data from the database. > > > > > > > > > Thanks > > > > > > farry > > > > > > > > > > > > ------------------------------------------------------- > > > This SF.Net email sponsored by Black Hat Briefings & Training. > > > Attend Black Hat Briefings & Training, Las Vegas July 24-29 - > > > digital self defense, top technical experts, no vendor pitches, > > > unmatched networking opportunities. Visit www.blackhat.com > > > _______________________________________________ > > > Rlib-users mailing list > > > Rli...@li... > > > https://lists.sourceforge.net/lists/listinfo/rlib-users > > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by Black Hat Briefings & Training. > > Attend Black Hat Briefings & Training, Las Vegas July 24-29 - > > digital self defense, top technical experts, no vendor pitches, > > unmatched networking opportunities. Visit www.blackhat.com > > _______________________________________________ > > Rlib-users mailing list > > Rli...@li... > > https://lists.sourceforge.net/lists/listinfo/rlib-users > > > > > > ------------------------------------------------------- > This SF.Net email sponsored by Black Hat Briefings & Training. > Attend Black Hat Briefings & Training, Las Vegas July 24-29 - > digital self defense, top technical experts, no vendor pitches, > unmatched networking opportunities. Visit www.blackhat.com > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Farryp <fa...@co...> - 2004-07-02 15:48:21
|
Pls, send me the info. How long will it take to write a python binding to support this option for python ? best regards Farry Bob Doan (bd...@si...) wrote: > > Yes, > > We (SICOM) Do some of the same things w/ one of our particular projects. > However, you need to use C. If your C is good then I'll explain a bit > more how it works > > - bob > > On Thu, 2004-07-01 at 22:37 +0000, Farryp Philippe-Auguste wrote: > > Hi, > > > > I'm wondering if there is a way to pass data to rlib without using a > > datasource. > > > > I'm using a replication system so I do not connect to a particular database. > > > > Is there is a way of instead of using rlib_add_datasource... and > > rlib_add_query_as, > > > > can I instead of having a select statement , having a variable which contains > > the data that I need RLIB to populate ? I will use my own libraries to get > > the data from the database. > > > > > > Thanks > > > > farry > > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by Black Hat Briefings & Training. > > Attend Black Hat Briefings & Training, Las Vegas July 24-29 - > > digital self defense, top technical experts, no vendor pitches, > > unmatched networking opportunities. Visit www.blackhat.com > > _______________________________________________ > > Rlib-users mailing list > > Rli...@li... > > https://lists.sourceforge.net/lists/listinfo/rlib-users > > > > ------------------------------------------------------- > This SF.Net email sponsored by Black Hat Briefings & Training. > Attend Black Hat Briefings & Training, Las Vegas July 24-29 - > digital self defense, top technical experts, no vendor pitches, > unmatched networking opportunities. Visit www.blackhat.com > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users > |
From: Bob D. <bd...@si...> - 2004-07-02 13:00:39
|
Yes, We (SICOM) Do some of the same things w/ one of our particular projects. However, you need to use C. If your C is good then I'll explain a bit more how it works - bob On Thu, 2004-07-01 at 22:37 +0000, Farryp Philippe-Auguste wrote: > Hi, > > I'm wondering if there is a way to pass data to rlib without using a > datasource. > > I'm using a replication system so I do not connect to a particular database. > > Is there is a way of instead of using rlib_add_datasource... and > rlib_add_query_as, > > can I instead of having a select statement , having a variable which contains > the data that I need RLIB to populate ? I will use my own libraries to get > the data from the database. > > > Thanks > > farry > > > > ------------------------------------------------------- > This SF.Net email sponsored by Black Hat Briefings & Training. > Attend Black Hat Briefings & Training, Las Vegas July 24-29 - > digital self defense, top technical experts, no vendor pitches, > unmatched networking opportunities. Visit www.blackhat.com > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users |