Re: [PHP-DEV] cvs: php4 / TODO-4.1.txt

2001-04-21 Thread Fredrik Ohrn
On 18 Apr 2001, Stig Sæther Bakken wrote: > ["Sean R. Bright" <[EMAIL PROTECTED]>] > > To continue a tangent... I don't like the idea of having the PEAR > > fetching/installation mechanism written in PHP (already some base code in > > PEAR to do this). It seems to me that it forces the user to d

[PHP-DEV] [PHP-QA] Re: [PHP-DEV] Re: [PHP-QA] Re: [PHP-DEV] Re: [PHP-CVS] cvs:[PHP-QA] Re: [PHP-DEV] Re: [PHP-QA] Re: [PHP-DEV] Re: [PHP-CVS] cvs:

2001-03-21 Thread Fredrik Ohrn
Flame each other all you want. I don't mind. But please, stick to one list, stop crossposing to every list and your mum. This is getting pretty annoying. /Fredrik -- Do fish get thirsty? Fredrik Öhrn Chalmers University of Technology [EMAIL PROTECTED]

[PHP-DEV] Function design recomendation?

2001-03-21 Thread Fredrik Ohrn
I'm about to properly implement cpdf_set_viewer_preferences which is currently just a stub. The underlying function takes a struct with 8 fields. I'd like to avoid having to specify 8 parameters to the PHP equivalent (especially as most of them has sensible defaults). How are structs 'emulated

[PHP-DEV] GD configure slightly broken.

2001-03-19 Thread Fredrik Ohrn
If I do a ./configure --with-gd Without actually having GD installed in a standard location the configure script decides to statically link it instead of raising an error: checking whether to include GD support... yes (static) And then the make will bomb when gcc can't find the gd headers

Re: [PHP-DEV] "Independent" comments on a bug.

2001-03-18 Thread Fredrik Ohrn
reports and fixing bugs... > > http://www.php.net/cvs-php.php > > On Sat, 17 Mar 2001, Fredrik Ohrn wrote the following to [EMAIL PROTECTED] : > > > > > In the bug tracker, is it possible to add a comment to a bug already filed > > by

[PHP-DEV] Quick solution for bug 5906 (ClibPDF + IMAP)

2001-03-17 Thread Fredrik Ohrn
Bug 5906 is a fatal compile error which occurs when including both IMAP and ClibPDF support. Problem: IMAP headers define T, which collide with a cpdflib function declaration. Solution: Get rid of it before incuding cpdflib.h. T is unused anyway, but if someone someday decides to use T in the i

[PHP-DEV] Remade the YP/NIS diffs against the CVS tree.

2001-03-17 Thread Fredrik Ohrn
. | +--+ | Authors: Stephanie Wehner <[EMAIL PROTECTED]>| + | Fredri

[PHP-DEV] Remade the ClibPDF diffs against the CVS tree.

2001-03-17 Thread Fredrik Ohrn
See my post form earlier today for details on the patch. -- Do fish get thirsty? Fredrik Öhrn Chalmers University of Technology [EMAIL PROTECTED] Sweden Index: cpdf.c ==

[PHP-DEV] YP/NIS functions reworked.

2001-03-17 Thread Fredrik Ohrn
*** *** 13,18 --- 13,19 | [EMAIL PROTECTED] so we can mail you a copy immediately. | +--+ | Authors: Stephanie Wehner <[EMAIL PROTECTED]>| +| Fredrik Ohrn| +

[PHP-DEV] "Independent" comments on a bug.

2001-03-17 Thread Fredrik Ohrn
In the bug tracker, is it possible to add a comment to a bug already filed by someone else? If it is, please explain coz I'm to dumb to figure it out. Regards, Fredrik -- Do fish get thirsty? Fredrik Öhrn Chalmers University of Technology [EMAIL PROTECTED]

[PHP-DEV] New functions with patch: cpdf_set_font_directories andcpdf_set_font_map_file

2001-03-17 Thread Fredrik Ohrn
Hello! Let's try again, this time I'm sure the functionality doesn't already exist. :) void cpdf_set_font_directories(int pdfdoc, string pfmdir, string pfbdir) Set the directories in which PFM and PFB files are located. See the ClibPDF Manual for further details. void cpdf_set_font_map_fil

Re: [PHP-DEV] New functions (patch included): str_uri_escape andunescape

2001-03-17 Thread Fredrik Ohrn
On Sat, 17 Mar 2001, Gavin Sherry wrote: > What's wrong with rawurl(en)(de)code() ? > > Gavin > Well, nothing I guess, except that I didnt find them... :) They do encode a lot of characters that are allowed thou. I'll just write it off as practice. Regards, Fredrik -- Do fish get thirsty?

[PHP-DEV] New functions (patch included): str_uri_escape and unescape

2001-03-16 Thread Fredrik Ohrn
Hello! I couldn't find any pointers on where to send contributions, I hope this is the right place. Anyway, I was stumped when I couldn't find an easy way to escape strings for use when printing URLs. So I added two new functions: str_uri_escape and the coresponding str_uri_unescape to the col