Hi
I just found some time to test some of new features that appeared recently (mostly thanks to Garvin), and I have one question: is $SUBJ transformation supposed to work now?
Hi Michal!
I just found some time to test some of new features that appeared recently (mostly thanks to Garvin), and I have one question: is $SUBJ transformation supposed to work now?
Basically, it is supposed to work. It does not work, when your table doesn't have a good unique UVA-Condition to rebuild the blob data in transformation_wrapper.php3. This can only be worked out using sessions.
Doesn't the transform work for you?
Regards, Garvin.
Hi Garvin and list
On Tue, Mar 18, 2003 at 10:46:42AM +0100, Garvin Hicking wrote:
I just found some time to test some of new features that appeared recently (mostly thanks to Garvin), and I have one question: is $SUBJ transformation supposed to work now?
Basically, it is supposed to work. It does not work, when your table doesn't have a good unique UVA-Condition to rebuild the blob data in transformation_wrapper.php3.
The problem is not general to all transformations, some (ehm, only one :-)) works okay.
Doesn't the transform work for you?
I will probably fill bugreport and look more deeply in that :-)
on blob field with image: image/jpeg: link - works okay image/jpeg: inline - inline image is not shown, after click image is shown, I have gd installed. image/jpeg: plain - I get "<img src="%s" border="0">"
on varchar with html text: text/plain: formatted - I get text "BLOB" instead of field content text/plain: link - I get "<a href="%1$s" title="%1$s">%1$s</a>"
The site is running PHP 4.1.2, couldn't this be a problem?
Hi Michal!
I will probably fill bugreport and look more deeply in that :-)
Thanks for your report. I haven't tested the transformations very thouroughly, and just found a bug which solves your "BLOB" display issue for text-transformations. I will check a fix in shortly.
With the inline image, if it works after clicking, there has to be a problem with your GDLib. Because getting the data in transformation_wrapper for both image and thumbnail is the same code. It only differs that the GDLib code resizes the JPEG data. I'll try to keep an eye on it, maybe Marc can help out here...
image/jpeg: plain - I get "<img src="%s" border="0">"
This one is still work in progress, you're right. :)
text/plain: link - I get "<a href="%1$s" title="%1$s">%1$s</a>"
There seems to be some problem with printf() replacements....
Regards, Garvin.
Hi Garvin
On Tue, Mar 18, 2003 at 11:32:43AM +0100, Garvin Hicking wrote:
I will probably fill bugreport and look more deeply in that :-)
Thanks for your report. I haven't tested the transformations very thouroughly, and just found a bug which solves your "BLOB" display issue for text-transformations. I will check a fix in shortly.
Already fixed in cvs :-)
With the inline image, if it works after clicking, there has to be a problem with your GDLib. Because getting the data in transformation_wrapper for both image and thumbnail is the same code. It only differs that the GDLib code resizes the JPEG data. I'll try to keep an eye on it, maybe Marc can help out here...
Yes you're right, this is GD problem, I just asked admin to fix this..
text/plain: link - I get "<a href="%1$s" title="%1$s">%1$s</a>"
There seems to be some problem with printf() replacements....
I will look at this.