Gossamer Forum
Home : Products : Gossamer Links : Development, Plugins and Globals :

Edit_Case... New Plugin.

(Page 3 of 3)
> >
Quote Reply
Re: [mick31] Edit_Case plugin v1.8 beta4 release In reply to
The global is ok, just the template usage example was wrong.

Code:
sub {
my $input = shift;
my $from = shift;
my $to = shift;
$input =~ s|$from|$to|;
return $input;
}

In template try:
<%set Description = 'test'%>
<%replace($Description, 'est', 'ab')%><br>

So it prints 'tab' instead 'test'.

Best regards,
Webmaster33


Paid Support
from Webmaster33. Expert in Perl programming & Gossamer Threads applications. (click here for prices)
Webmaster33's products (upd.2004.09.26) | Private message | Contact me | Was my post helpful? Donate my help...
Quote Reply
Re: [mick31] Edit_Case plugin v1.8 beta4 release In reply to
This plugin does not work for greek characters. Any possibilities?
Quote Reply
Re: [Taki-x] Edit_Case plugin v1.8 beta4 release In reply to
I don't know too much about greek characters, but I think the plugin might be updated to support them.

I can implement new features into the plugin, as paid job.
You need to pay only if the asked feature is successfully implemented.

Best regards,
Webmaster33


Paid Support
from Webmaster33. Expert in Perl programming & Gossamer Threads applications. (click here for prices)
Webmaster33's products (upd.2004.09.26) | Private message | Contact me | Was my post helpful? Donate my help...
Quote Reply
Re: [webmaster33] Edit_Case plugin v1.8 beta4 release In reply to
Can I change with this plug the URL of the category?
Form
/aaa_bbb/index.html
to
/aaa-bbb/index.html

> >