At first I'm thanking for a nice editor.
But I'm freezed because I'm having some trouble to integrate it in my perl script. When I'm loading a html file (from server) in editor window it goes lost. I find out the problem .. ' and " generating this error. For instance, if there is a word DON'T, because of the presence of a single quote in word DON'T, editor goes lost.
It will be appreciated if anyone have a solution for this or is there any Perl integration module?
Regards,
Tomal
But I'm freezed because I'm having some trouble to integrate it in my perl script. When I'm loading a html file (from server) in editor window it goes lost. I find out the problem .. ' and " generating this error. For instance, if there is a word DON'T, because of the presence of a single quote in word DON'T, editor goes lost.
It will be appreciated if anyone have a solution for this or is there any Perl integration module?
Regards,
Tomal
Again: Perl Integration module
-----------------------------------------------------------------------
#! /usr/bin/perl -w
my $file = 'test.html';
my $content = '';
open(FILE, "<$file");
$content = <FILE>;
close(FILE);
print "Content-type: text/html \n";
-------------------------------------------------------------------
Thanx,
Tomal
RE: Perl Integration module
Though im not a perl man, there are same problems with all code types. You need to make sure that in your content you replace all occurences of ' with '' (two single quotes).
Take a look at this: - though for javascript it is the same problem you are facing.
http://sourceforge.net/forum/forum.php? ... _id=257180
John Watson
RE: Perl Integration module
Finall I able to integrate the editor in Perl. Now its working fine.
Thanx,
Tomal