Modified: perl/site/embperl/de/pod/Changes.-page-47-.htm URL: http://svn.apache.org/viewvc/perl/site/embperl/de/pod/Changes.-page-47-.htm?rev=1914099&r1=1914098&r2=1914099&view=diff ============================================================================== --- perl/site/embperl/de/pod/Changes.-page-47-.htm (original) +++ perl/site/embperl/de/pod/Changes.-page-47-.htm Fri Nov 24 21:28:20 2023 @@ -206,7 +206,7 @@ <tr> <td nowrap align="left" width=2> </td> <td nowrap align="left" width=15><img src="../../images/i-sub-off.gif" width="11" height="11" vspace="6" hspace="5"></td> - <td nowrap align="left" width=125><a href="../pod/doc/Embperl.-page-18-.htm"><div class="cMenu">Support</div></a></td> + <td nowrap align="left" width=125><a href="../pod/doc/Embperl.-page-17-.htm"><div class="cMenu">Support</div></a></td> </tr> </table> </td> @@ -242,7 +242,7 @@ <td align="left" background="../../images//hintergrund-nav.gif"> <table width="152" border="0" cellspacing="0" cellpadding="0"> <tr> - <td nowrap with="152" height=22> <a href="../pod/INSTALL.htm"><span class="cMenu">Stable 2.5.0</span></a></td> + <td nowrap with="152" height=22> <a href="../pod/doc/Embperl.-page-12-.htm"><span class="cMenu">Stable 3.0.0</span></a></td> </tr> </table> </td> @@ -257,7 +257,7 @@ <td align="left" background="../../images//hintergrund-nav.gif"> <table width="152" border="0" cellspacing="0" cellpadding="0"> <tr> - <td nowrap with="152" height=22> <a href="../pod/INSTALL.htm"><span class="cMenu">Beta 3.0.0-rc.2</span></a></td> + <td nowrap with="152" height=22> <a href="../pod/doc/Embperl.-page-12-.htm"><span class="cMenu">Beta 3.0.0-rc.2</span></a></td> </tr> </table> </td> @@ -303,81 +303,30 @@ </table> </td> <td valign="top" width="90%" class="cContent"><table width="100%"><tr><td valign="top" width="95%"> -<table xmlns="http://www.w3.org/TR/xhtml1/strict" width="100%" border="0" cellspacing="0" cellpadding="6"><tr><td class="cPodH1">1.2b2 (BETA) 9 Nov 1998</td></tr></table><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-46-.htm" class="cPodHeaderNavLink"> - [ << Prev: 1.2b3 (BETA) 22 Nov 1998 ] +<table xmlns="http://www.w3.org/TR/xhtml1/strict" width="100%" border="0" cellspacing="0" cellpadding="6"><tr><td class="cPodH1">1.2b3 (BETA) 22 Nov 1998</td></tr></table><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-46-.htm" class="cPodHeaderNavLink"> + [ << Prev: 1.2b4 (BETA) 15 Feb 1999 ] </a></td><td align="center" valign="top" width="10%"><a href="Changes.htm" class="cPodHeaderNavLink">[ Content ]</a></td><td align="right" valign="top" width="45%"><a href="Changes.-page-48-.htm" class="cPodHeaderNavLink"> - [ Next: 1.2b1 (BETA) 8 Oct 1998 >> ] - </a></td></tr></table></a><pre xmlns="http://www.w3.org/TR/xhtml1/strict" class="cPodVerbatim"> - There is now a short form of the Execute function. You can - now include a sub page in an Embperl page by simply writing - [- Execute ('filename.html') -] or use - [- Execute ('filename.html', 1, 2, 3) -] to pass additional - parameters - - Added new block [* ... *]. This block compiles code to an - outer subroutine which surounds the whole page. This makes - it possible to define "local" variables with a scope of the - whole page, which would be necessary for recursive calls - to Execute. - Also this let you use perl control structures inside Embperl - pages: e.g. - [* foreach $v (1..5) { *] Cnt = [+ $v +] [* } *] - NOTE: [* ... *] blocks _must_ always end with a ;,{ or } - [* ... *] cannot apear inside html tags that are - interpreted by Embperl (unless you disable the - interpretation of such tags like table, input etc.) - - Added a comment block: Everything between [# and #] is a - comment and is removed from the output. - NOTE: [* ... *] blocks also interpreted inside of a - [# ... #] block, all other blocks [+/-/$ $/-/+] are not. - - Added magic hash %mdat, which can be used to store persitent - data on a per module basis (needs Apache::Session, with - path in session.patch applied) - - Done more tests on session handling, seems to work fine now. - - Added new option dbgNoHiddenEmptyValue which suppresses - empty hidden input fields in the [$hidden$] meta command. - Patch from Steve Willer. - - Whitespaces after [...] blocks are removed in the output, so - there will be less empty lines, makeing the output shorter and - more readable, based on a patch from Todd Eigenschink. - - Embperl compiles now with mod_ssl (from Ralf Engelschall). - Spotted by Dirk Lutzebaeck and Randel Schwartz. - - Added a patch from Todd Eigenschink to build Embperl with - Stronghold 2.4.1 - - Added patch from Gerald McLarnon so Embperl compiles on AIX - - Added optAllowZeroFileSize to accept files of length 0, - without that option Embperl will report NOT_FOUND. - Suggested by Doug Bagley - - - fixed a wrong call to logerror when OPT_EXECCGI is not on, - spotted by Dirk Lutzebaeck. - - fixed the problem that reloads only takes place at the next day, - because mtime was an int instead of a double (introduced in1.2b1. - Spotted by Michael Smith and Roman Maeder. - - fixed a problem that changing of the filesize was ignored, when - a documents is reloaded (introducted in 1.2b1) - - cleanup for all subpages are disabled if main request has - disabled cleanup and subpages does not specify otherwise - - dbgShowCleanup works again - - Every package is only cleanuped once, also it's included multiple - times in one page - - %fdat and @ffld are setup correctly when optDisableVarCleanup - is set - - DEFS=-DEPDEBUGALL compiles again, spotted by Michael Smith - - fixed that cleanup is never called with Execute nesting, when - req_rec was not set. Now the parameter req_rec isn't necessary - anymore. Spotted by Michael J.Schout - - Changes of $escmode inside a HTML-A tag now handled correctly, - spotted by Michael Smith - - fixed problems with links to the logfile and the line break - in the html log file display - - fixed a problem with blocks that expand to nothing inside of Embperl - interpreted HTML tags. - - Adapted test script to modified error output of Apache 1.3.4. - Spotted by Eric Cholet. - - Empty values (VALUE="") in input tags will not be overridden by - value in %fdat</pre><hr xmlns="http://www.w3.org/TR/xhtml1/strict"></hr><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-46-.htm" class="cPodHeaderNavLink"> - [ << Prev: 1.2b3 (BETA) 22 Nov 1998 ] + [ Next: 1.2b2 (BETA) 9 Nov 1998 >> ] + </a></td></tr></table></a><pre xmlns="http://www.w3.org/TR/xhtml1/strict" class="cPodVerbatim"> - fixed an undefined pointer which occurs when using precompiled + [* ... *] blocks. Spotted by Bruce W. Holyman and Paul J. Schinder + - removed unwanted 0xa0 characters from tagscan.htm which causes + the test to fail on sunos. Spotted by Paul J. Schnider. + - Enhanced the detection of Stronghold, Apache SSL and mod_ssl + so they are found if they are not in a standard path. Spotted + by Brad Cox. + - Convert relativ path for apache source to absolute to avoid + problems within test script. Spotted by Brad Cox. + - Make Embperl compile with useperio=defined. Spotted by Todd + Eigenschink. + - Makefile.PL does now check if mod_perl is compiled into apache + and don't create a config for USE_DSO situtation even if + libperl.so exists. + - Added a workarround in the Execute('foo.htm') call, to avoid a + bug in perl5.004 which causes a SIGSEGV. Spotted by Michael J. + Schout and Chris Alexander.</pre><hr xmlns="http://www.w3.org/TR/xhtml1/strict"></hr><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-46-.htm" class="cPodHeaderNavLink"> + [ << Prev: 1.2b4 (BETA) 15 Feb 1999 ] </a></td><td align="center" valign="top" width="10%"><a href="Changes.htm" class="cPodHeaderNavLink">[ Content ]</a></td><td align="right" valign="top" width="45%"><a href="Changes.-page-48-.htm" class="cPodHeaderNavLink"> - [ Next: 1.2b1 (BETA) 8 Oct 1998 >> ] + [ Next: 1.2b2 (BETA) 9 Nov 1998 >> ] </a></td></tr></table></a> </td> </tr>
Modified: perl/site/embperl/de/pod/Changes.-page-48-.htm URL: http://svn.apache.org/viewvc/perl/site/embperl/de/pod/Changes.-page-48-.htm?rev=1914099&r1=1914098&r2=1914099&view=diff ============================================================================== --- perl/site/embperl/de/pod/Changes.-page-48-.htm (original) +++ perl/site/embperl/de/pod/Changes.-page-48-.htm Fri Nov 24 21:28:20 2023 @@ -206,7 +206,7 @@ <tr> <td nowrap align="left" width=2> </td> <td nowrap align="left" width=15><img src="../../images/i-sub-off.gif" width="11" height="11" vspace="6" hspace="5"></td> - <td nowrap align="left" width=125><a href="../pod/doc/Embperl.-page-18-.htm"><div class="cMenu">Support</div></a></td> + <td nowrap align="left" width=125><a href="../pod/doc/Embperl.-page-17-.htm"><div class="cMenu">Support</div></a></td> </tr> </table> </td> @@ -242,7 +242,7 @@ <td align="left" background="../../images//hintergrund-nav.gif"> <table width="152" border="0" cellspacing="0" cellpadding="0"> <tr> - <td nowrap with="152" height=22> <a href="../pod/INSTALL.htm"><span class="cMenu">Stable 2.5.0</span></a></td> + <td nowrap with="152" height=22> <a href="../pod/doc/Embperl.-page-12-.htm"><span class="cMenu">Stable 3.0.0</span></a></td> </tr> </table> </td> @@ -257,7 +257,7 @@ <td align="left" background="../../images//hintergrund-nav.gif"> <table width="152" border="0" cellspacing="0" cellpadding="0"> <tr> - <td nowrap with="152" height=22> <a href="../pod/INSTALL.htm"><span class="cMenu">Beta 3.0.0-rc.2</span></a></td> + <td nowrap with="152" height=22> <a href="../pod/doc/Embperl.-page-12-.htm"><span class="cMenu">Beta 3.0.0-rc.2</span></a></td> </tr> </table> </td> @@ -303,24 +303,81 @@ </table> </td> <td valign="top" width="90%" class="cContent"><table width="100%"><tr><td valign="top" width="95%"> -<table xmlns="http://www.w3.org/TR/xhtml1/strict" width="100%" border="0" cellspacing="0" cellpadding="6"><tr><td class="cPodH1">1.2b1 (BETA) 8 Oct 1998</td></tr></table><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-47-.htm" class="cPodHeaderNavLink"> - [ << Prev: 1.2b2 (BETA) 9 Nov 1998 ] +<table xmlns="http://www.w3.org/TR/xhtml1/strict" width="100%" border="0" cellspacing="0" cellpadding="6"><tr><td class="cPodH1">1.2b2 (BETA) 9 Nov 1998</td></tr></table><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-47-.htm" class="cPodHeaderNavLink"> + [ << Prev: 1.2b3 (BETA) 22 Nov 1998 ] </a></td><td align="center" valign="top" width="10%"><a href="Changes.htm" class="cPodHeaderNavLink">[ Content ]</a></td><td align="right" valign="top" width="45%"><a href="Changes.-page-49-.htm" class="cPodHeaderNavLink"> - [ Next: 1.1.1 15 Sep 1998 >> ] - </a></td></tr></table></a><pre xmlns="http://www.w3.org/TR/xhtml1/strict" class="cPodVerbatim"> - I have reworked the whole source code so Embperl is now - going to be an object. This means Embperl is reentrant, you - can call Execute within an Embperl page, for example to include - the same header on each page. - - Addeded Session handling via Apache::Session. Simply store data - to %udat and let Embperl do the rest for you. Experimental! - NOTE: You need Apache-Session-0.16.1 or higher and must apply - the patch from session.patch to it. - - Added test for calling Execute inside a Embperl page - - Errors of Input/Output function now also log to the httpd error log - - Added an test for input file not found</pre><hr xmlns="http://www.w3.org/TR/xhtml1/strict"></hr><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-47-.htm" class="cPodHeaderNavLink"> - [ << Prev: 1.2b2 (BETA) 9 Nov 1998 ] + [ Next: 1.2b1 (BETA) 8 Oct 1998 >> ] + </a></td></tr></table></a><pre xmlns="http://www.w3.org/TR/xhtml1/strict" class="cPodVerbatim"> - There is now a short form of the Execute function. You can + now include a sub page in an Embperl page by simply writing + [- Execute ('filename.html') -] or use + [- Execute ('filename.html', 1, 2, 3) -] to pass additional + parameters + - Added new block [* ... *]. This block compiles code to an + outer subroutine which surounds the whole page. This makes + it possible to define "local" variables with a scope of the + whole page, which would be necessary for recursive calls + to Execute. + Also this let you use perl control structures inside Embperl + pages: e.g. + [* foreach $v (1..5) { *] Cnt = [+ $v +] [* } *] + NOTE: [* ... *] blocks _must_ always end with a ;,{ or } + [* ... *] cannot apear inside html tags that are + interpreted by Embperl (unless you disable the + interpretation of such tags like table, input etc.) + - Added a comment block: Everything between [# and #] is a + comment and is removed from the output. + NOTE: [* ... *] blocks also interpreted inside of a + [# ... #] block, all other blocks [+/-/$ $/-/+] are not. + - Added magic hash %mdat, which can be used to store persitent + data on a per module basis (needs Apache::Session, with + path in session.patch applied) + - Done more tests on session handling, seems to work fine now. + - Added new option dbgNoHiddenEmptyValue which suppresses + empty hidden input fields in the [$hidden$] meta command. + Patch from Steve Willer. + - Whitespaces after [...] blocks are removed in the output, so + there will be less empty lines, makeing the output shorter and + more readable, based on a patch from Todd Eigenschink. + - Embperl compiles now with mod_ssl (from Ralf Engelschall). + Spotted by Dirk Lutzebaeck and Randel Schwartz. + - Added a patch from Todd Eigenschink to build Embperl with + Stronghold 2.4.1 + - Added patch from Gerald McLarnon so Embperl compiles on AIX + - Added optAllowZeroFileSize to accept files of length 0, + without that option Embperl will report NOT_FOUND. + Suggested by Doug Bagley + + - fixed a wrong call to logerror when OPT_EXECCGI is not on, + spotted by Dirk Lutzebaeck. + - fixed the problem that reloads only takes place at the next day, + because mtime was an int instead of a double (introduced in1.2b1. + Spotted by Michael Smith and Roman Maeder. + - fixed a problem that changing of the filesize was ignored, when + a documents is reloaded (introducted in 1.2b1) + - cleanup for all subpages are disabled if main request has + disabled cleanup and subpages does not specify otherwise + - dbgShowCleanup works again + - Every package is only cleanuped once, also it's included multiple + times in one page + - %fdat and @ffld are setup correctly when optDisableVarCleanup + is set + - DEFS=-DEPDEBUGALL compiles again, spotted by Michael Smith + - fixed that cleanup is never called with Execute nesting, when + req_rec was not set. Now the parameter req_rec isn't necessary + anymore. Spotted by Michael J.Schout + - Changes of $escmode inside a HTML-A tag now handled correctly, + spotted by Michael Smith + - fixed problems with links to the logfile and the line break + in the html log file display + - fixed a problem with blocks that expand to nothing inside of Embperl + interpreted HTML tags. + - Adapted test script to modified error output of Apache 1.3.4. + Spotted by Eric Cholet. + - Empty values (VALUE="") in input tags will not be overridden by + value in %fdat</pre><hr xmlns="http://www.w3.org/TR/xhtml1/strict"></hr><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-47-.htm" class="cPodHeaderNavLink"> + [ << Prev: 1.2b3 (BETA) 22 Nov 1998 ] </a></td><td align="center" valign="top" width="10%"><a href="Changes.htm" class="cPodHeaderNavLink">[ Content ]</a></td><td align="right" valign="top" width="45%"><a href="Changes.-page-49-.htm" class="cPodHeaderNavLink"> - [ Next: 1.1.1 15 Sep 1998 >> ] + [ Next: 1.2b1 (BETA) 8 Oct 1998 >> ] </a></td></tr></table></a> </td> </tr> Modified: perl/site/embperl/de/pod/Changes.-page-49-.htm URL: http://svn.apache.org/viewvc/perl/site/embperl/de/pod/Changes.-page-49-.htm?rev=1914099&r1=1914098&r2=1914099&view=diff ============================================================================== --- perl/site/embperl/de/pod/Changes.-page-49-.htm (original) +++ perl/site/embperl/de/pod/Changes.-page-49-.htm Fri Nov 24 21:28:20 2023 @@ -206,7 +206,7 @@ <tr> <td nowrap align="left" width=2> </td> <td nowrap align="left" width=15><img src="../../images/i-sub-off.gif" width="11" height="11" vspace="6" hspace="5"></td> - <td nowrap align="left" width=125><a href="../pod/doc/Embperl.-page-18-.htm"><div class="cMenu">Support</div></a></td> + <td nowrap align="left" width=125><a href="../pod/doc/Embperl.-page-17-.htm"><div class="cMenu">Support</div></a></td> </tr> </table> </td> @@ -242,7 +242,7 @@ <td align="left" background="../../images//hintergrund-nav.gif"> <table width="152" border="0" cellspacing="0" cellpadding="0"> <tr> - <td nowrap with="152" height=22> <a href="../pod/INSTALL.htm"><span class="cMenu">Stable 2.5.0</span></a></td> + <td nowrap with="152" height=22> <a href="../pod/doc/Embperl.-page-12-.htm"><span class="cMenu">Stable 3.0.0</span></a></td> </tr> </table> </td> @@ -257,7 +257,7 @@ <td align="left" background="../../images//hintergrund-nav.gif"> <table width="152" border="0" cellspacing="0" cellpadding="0"> <tr> - <td nowrap with="152" height=22> <a href="../pod/INSTALL.htm"><span class="cMenu">Beta 3.0.0-rc.2</span></a></td> + <td nowrap with="152" height=22> <a href="../pod/doc/Embperl.-page-12-.htm"><span class="cMenu">Beta 3.0.0-rc.2</span></a></td> </tr> </table> </td> @@ -303,40 +303,24 @@ </table> </td> <td valign="top" width="90%" class="cContent"><table width="100%"><tr><td valign="top" width="95%"> -<table xmlns="http://www.w3.org/TR/xhtml1/strict" width="100%" border="0" cellspacing="0" cellpadding="6"><tr><td class="cPodH1">1.1.1 15 Sep 1998</td></tr></table><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-48-.htm" class="cPodHeaderNavLink"> - [ << Prev: 1.2b1 (BETA) 8 Oct 1998 ] +<table xmlns="http://www.w3.org/TR/xhtml1/strict" width="100%" border="0" cellspacing="0" cellpadding="6"><tr><td class="cPodH1">1.2b1 (BETA) 8 Oct 1998</td></tr></table><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-48-.htm" class="cPodHeaderNavLink"> + [ << Prev: 1.2b2 (BETA) 9 Nov 1998 ] </a></td><td align="center" valign="top" width="10%"><a href="Changes.htm" class="cPodHeaderNavLink">[ Content ]</a></td><td align="right" valign="top" width="45%"><a href="Changes.-page-50-.htm" class="cPodHeaderNavLink"> - [ Next: 1.1.0 28 Jul 98 >> ] - </a></td></tr></table></a><pre xmlns="http://www.w3.org/TR/xhtml1/strict" class="cPodVerbatim"> - A lot of documentation updates. Now Embperl ships with most of - the documentation which is also available on - https://perl.apache.org/embperl/ - This includes: - - Intro.pod an introduction to Embperl - - Faq.pod an new very much extented version of the FAQ - and a lot of spell checking, gramar checking and so on - Thanks very much to Nora Mikes for putting together the FAQ - and doing a lot of proof reading. - - eg/x/upload.htm an example for file upload within Embperl - - splited documentation out of Embperl.pm into Embperl.pod - to make it load a little bit faster (Embperl.pm is now 30K - instead of 90K) - - Optimized the loading of other modules. Other modules are now - only loaded when really necessary. This make Embperl in CGI mode - about 2 times faster then version 1.1.0 was. - - Added a test for file-upload - - Embperl compiles and works now with threaded perl, but Embperl - is currently B<not> threadsafe. So you can use Embperl in a - threaded environement, but you have to make sure that only one - thread useses Embperl at a time. - - Fixed a memory leak which has occured in checkboxes and selects - - Enhanced test.pl - - MailFormTo: Send \n after mail header to work correctly with all - mail servers, added EMBPERL_MAILHOST to specify mail server hostname, - MailFormTo dies when it can't connect to mailserver. Spotted by - Steffen Geschke.</pre><hr xmlns="http://www.w3.org/TR/xhtml1/strict"></hr><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-48-.htm" class="cPodHeaderNavLink"> - [ << Prev: 1.2b1 (BETA) 8 Oct 1998 ] + [ Next: 1.1.1 15 Sep 1998 >> ] + </a></td></tr></table></a><pre xmlns="http://www.w3.org/TR/xhtml1/strict" class="cPodVerbatim"> - I have reworked the whole source code so Embperl is now + going to be an object. This means Embperl is reentrant, you + can call Execute within an Embperl page, for example to include + the same header on each page. + - Addeded Session handling via Apache::Session. Simply store data + to %udat and let Embperl do the rest for you. Experimental! + NOTE: You need Apache-Session-0.16.1 or higher and must apply + the patch from session.patch to it. + - Added test for calling Execute inside a Embperl page + - Errors of Input/Output function now also log to the httpd error log + - Added an test for input file not found</pre><hr xmlns="http://www.w3.org/TR/xhtml1/strict"></hr><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-48-.htm" class="cPodHeaderNavLink"> + [ << Prev: 1.2b2 (BETA) 9 Nov 1998 ] </a></td><td align="center" valign="top" width="10%"><a href="Changes.htm" class="cPodHeaderNavLink">[ Content ]</a></td><td align="right" valign="top" width="45%"><a href="Changes.-page-50-.htm" class="cPodHeaderNavLink"> - [ Next: 1.1.0 28 Jul 98 >> ] + [ Next: 1.1.1 15 Sep 1998 >> ] </a></td></tr></table></a> </td> </tr> Modified: perl/site/embperl/de/pod/Changes.-page-5-.htm URL: http://svn.apache.org/viewvc/perl/site/embperl/de/pod/Changes.-page-5-.htm?rev=1914099&r1=1914098&r2=1914099&view=diff ============================================================================== --- perl/site/embperl/de/pod/Changes.-page-5-.htm (original) +++ perl/site/embperl/de/pod/Changes.-page-5-.htm Fri Nov 24 21:28:20 2023 @@ -206,7 +206,7 @@ <tr> <td nowrap align="left" width=2> </td> <td nowrap align="left" width=15><img src="../../images/i-sub-off.gif" width="11" height="11" vspace="6" hspace="5"></td> - <td nowrap align="left" width=125><a href="../pod/doc/Embperl.-page-18-.htm"><div class="cMenu">Support</div></a></td> + <td nowrap align="left" width=125><a href="../pod/doc/Embperl.-page-17-.htm"><div class="cMenu">Support</div></a></td> </tr> </table> </td> @@ -242,7 +242,7 @@ <td align="left" background="../../images//hintergrund-nav.gif"> <table width="152" border="0" cellspacing="0" cellpadding="0"> <tr> - <td nowrap with="152" height=22> <a href="../pod/INSTALL.htm"><span class="cMenu">Stable 2.5.0</span></a></td> + <td nowrap with="152" height=22> <a href="../pod/doc/Embperl.-page-12-.htm"><span class="cMenu">Stable 3.0.0</span></a></td> </tr> </table> </td> @@ -257,7 +257,7 @@ <td align="left" background="../../images//hintergrund-nav.gif"> <table width="152" border="0" cellspacing="0" cellpadding="0"> <tr> - <td nowrap with="152" height=22> <a href="../pod/INSTALL.htm"><span class="cMenu">Beta 3.0.0-rc.2</span></a></td> + <td nowrap with="152" height=22> <a href="../pod/doc/Embperl.-page-12-.htm"><span class="cMenu">Beta 3.0.0-rc.2</span></a></td> </tr> </table> </td> @@ -303,55 +303,35 @@ </table> </td> <td valign="top" width="90%" class="cContent"><table width="100%"><tr><td valign="top" width="95%"> -<table xmlns="http://www.w3.org/TR/xhtml1/strict" width="100%" border="0" cellspacing="0" cellpadding="6"><tr><td class="cPodH1">2.3.0 30. Sept. 2007</td></tr></table><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-4-.htm" class="cPodHeaderNavLink"> - [ << Prev: 2.4.0 4. Oct 2010 ] +<table xmlns="http://www.w3.org/TR/xhtml1/strict" width="100%" border="0" cellspacing="0" cellpadding="6"><tr><td class="cPodH1">2.4.0 4. Oct 2010</td></tr></table><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-4-.htm" class="cPodHeaderNavLink"> + [ << Prev: 2.5.0 16. March 2014 ] </a></td><td align="center" valign="top" width="10%"><a href="Changes.htm" class="cPodHeaderNavLink">[ Content ]</a></td><td align="right" valign="top" width="45%"><a href="Changes.-page-6-.htm" class="cPodHeaderNavLink"> - [ Next: 2.2.0 8. Apr. 2006 >> ] - </a></td></tr></table></a><pre xmlns="http://www.w3.org/TR/xhtml1/strict" class="cPodVerbatim"> - Added support for Code ref in language message lookup hash. - That allows for internationalization to call a sub instead - of only looking up keys in a hash. - - Added UTF-8 messages to Embperl::Form::Validate. - - Include patch from Mark D. Anderson to make SSI syntax - behave more like mod_include. - - Make component -> curr_esc_mode available in Perl, requested - by Robert. - - Improve XHTML/XML support. Tags that are parsed by Embperl - like input, are now only have one slash at the end, if there - is already a slash in the source and output_mode is set to - xml. In addition checked attributes for input tags are now - added as checked="checked" to be valid xml. - Spotted by Villu Roogna. - - A lot of code was written for Embperl::Form a sophisticated - form creation/handling framework, which also contains some - nice AJAX and JS stuff like autocomplete input boxes, - grids and tabbed dialogs. Also the framework itself is ready - to use, there is not much documentation yet... - - Fixed wrong version numbers in make test files, - which caused make test to fail. Spotted by Matt Bockol. - - Use _stat() instead of stat() on Win32 to work around the problem - that Perl redefines stat() in an incompatibel way. - Spotted by Randy Korbes. - - Documented all options of embpexec.pl. - - Fixed default_language handling in Embperl::Form::Validate. - Patch from Kathryn Andersen. - - In Makefile.PL check for mod_perl2.pm instead of mod_perl - when mod_perl 2.x is used. Spotted by Dan Clawson. - - Included patch from Andrew O'Brian to correctly retrieve - Cookie header when running under Apache 2. - - Fixed timezone compiletime error on Mac OS-X. Patch from - Wolfgang Kinkeldei. - - Fixed segfault that might occur when an value of an input - attribute is removed. Spotted by Andrew Sitnikov. - - Fixed missing Perl Stack setup which causes memory errors on - BSD systems. Patch from Doug Rayner. - - Added internal check and error message when, due to a syntax - error in the source, a node is parsed as attribute. - Spotted by Kato M. Yoshiro. - - Fix segfault that occured during output of an error message - when not inside an Embperl request.</pre><hr xmlns="http://www.w3.org/TR/xhtml1/strict"></hr><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-4-.htm" class="cPodHeaderNavLink"> - [ << Prev: 2.4.0 4. Oct 2010 ] + [ Next: 2.3.0 30. Sept. 2007 >> ] + </a></td></tr></table></a><pre xmlns="http://www.w3.org/TR/xhtml1/strict" class="cPodVerbatim"> - Support for CGI.pm 3.43 (included within Perl 5.10.1) + for file uplaods. CGI.pm < 2.43 is not supported anymore. + - A lot of enhancements for Embperl::Form + - Add example for usage of Embperl::Form. See + eg/forms/README.txt. Can be viewed used using "make start" + - Increased size limit for errormessage from 1024 to 4096 + - Makefile.PL can now handle compiling 32Bit code on 64Bit + sytsem if Perl was compiled as 32Bit application + - Adaption of tests to changed error messages of perl 5.10 + - Makefile.PL can now cope with OpenSuSE 11.2, if perl, + mod_perl and apache are installed from OpenSuSE packages. + - Fix make test error for Perl compiled with DEBUGGING on + - Support for internationalization in Emberl::Form + - Do not link against unused libz + - Supports now Perl 5.12: Cope with changed flags G_ARRAY + and G_SCALAR, SVt_RV is now SVt_IV + - Fix Execute parameter app_name (was appname, but app_name + is correct, appname is still accepted, but might not always + work) + - Add parameter checks for Execute parameters to avoid segfaults + in case of non refs where refs are expected. + - Add more controls to Embperl::Form</pre><hr xmlns="http://www.w3.org/TR/xhtml1/strict"></hr><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-4-.htm" class="cPodHeaderNavLink"> + [ << Prev: 2.5.0 16. March 2014 ] </a></td><td align="center" valign="top" width="10%"><a href="Changes.htm" class="cPodHeaderNavLink">[ Content ]</a></td><td align="right" valign="top" width="45%"><a href="Changes.-page-6-.htm" class="cPodHeaderNavLink"> - [ Next: 2.2.0 8. Apr. 2006 >> ] + [ Next: 2.3.0 30. Sept. 2007 >> ] </a></td></tr></table></a> </td> </tr> Modified: perl/site/embperl/de/pod/Changes.-page-50-.htm URL: http://svn.apache.org/viewvc/perl/site/embperl/de/pod/Changes.-page-50-.htm?rev=1914099&r1=1914098&r2=1914099&view=diff ============================================================================== --- perl/site/embperl/de/pod/Changes.-page-50-.htm (original) +++ perl/site/embperl/de/pod/Changes.-page-50-.htm Fri Nov 24 21:28:20 2023 @@ -206,7 +206,7 @@ <tr> <td nowrap align="left" width=2> </td> <td nowrap align="left" width=15><img src="../../images/i-sub-off.gif" width="11" height="11" vspace="6" hspace="5"></td> - <td nowrap align="left" width=125><a href="../pod/doc/Embperl.-page-18-.htm"><div class="cMenu">Support</div></a></td> + <td nowrap align="left" width=125><a href="../pod/doc/Embperl.-page-17-.htm"><div class="cMenu">Support</div></a></td> </tr> </table> </td> @@ -242,7 +242,7 @@ <td align="left" background="../../images//hintergrund-nav.gif"> <table width="152" border="0" cellspacing="0" cellpadding="0"> <tr> - <td nowrap with="152" height=22> <a href="../pod/INSTALL.htm"><span class="cMenu">Stable 2.5.0</span></a></td> + <td nowrap with="152" height=22> <a href="../pod/doc/Embperl.-page-12-.htm"><span class="cMenu">Stable 3.0.0</span></a></td> </tr> </table> </td> @@ -257,7 +257,7 @@ <td align="left" background="../../images//hintergrund-nav.gif"> <table width="152" border="0" cellspacing="0" cellpadding="0"> <tr> - <td nowrap with="152" height=22> <a href="../pod/INSTALL.htm"><span class="cMenu">Beta 3.0.0-rc.2</span></a></td> + <td nowrap with="152" height=22> <a href="../pod/doc/Embperl.-page-12-.htm"><span class="cMenu">Beta 3.0.0-rc.2</span></a></td> </tr> </table> </td> @@ -303,47 +303,40 @@ </table> </td> <td valign="top" width="90%" class="cContent"><table width="100%"><tr><td valign="top" width="95%"> -<table xmlns="http://www.w3.org/TR/xhtml1/strict" width="100%" border="0" cellspacing="0" cellpadding="6"><tr><td class="cPodH1">1.1.0 28 Jul 98</td></tr></table><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-49-.htm" class="cPodHeaderNavLink"> - [ << Prev: 1.1.1 15 Sep 1998 ] +<table xmlns="http://www.w3.org/TR/xhtml1/strict" width="100%" border="0" cellspacing="0" cellpadding="6"><tr><td class="cPodH1">1.1.1 15 Sep 1998</td></tr></table><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-49-.htm" class="cPodHeaderNavLink"> + [ << Prev: 1.2b1 (BETA) 8 Oct 1998 ] </a></td><td align="center" valign="top" width="10%"><a href="Changes.htm" class="cPodHeaderNavLink">[ Content ]</a></td><td align="right" valign="top" width="45%"><a href="Changes.-page-51-.htm" class="cPodHeaderNavLink"> - [ Next: 1.1b2 27 Jun 98 >> ] - </a></td></tr></table></a><pre xmlns="http://www.w3.org/TR/xhtml1/strict" class="cPodVerbatim"> - Added support for perl5.005 (currently only without threads!) - - Nesting of metacommands and HTML tags are now independent of - each other. - - Added examples in eg/x for do .. until, foreach, if, - DBI datbase access, DBIx::Recordset database access and a - input- / confirmation form. - - Added optUndefToEmptyValue which will cause Embperl to treat non- - existent values in %fdat as an empty string in input tags, as suggested - by Steve Willer. - - Catch "die" within EMBPERL_INPUT/OUTPUT_FUNC and write error - message to the logfile - - Write error message of LWP::UserAgent in ProxyInput to logfile - if any - - Added test for POST Requests - - Added support for tests when mod_perl is built with USE_DSO. - Spotted by Christian Oyarzun. - - - Selects and checkboxes are setup correctly if state is set via %fdat. - Spotted by Todd Eigenschink and Steve Willer. - - Changes URL escaping so that only space, '+', '&', '=' and chars < 0x20 - will be escaped to avoid problems with older netscape browsers. - - Added missing documentation for req_rec parameter of the Execute - function. Spotted by Eric Cholet. - - Send correct http header for error page, spotted by Steve Willer - - Fixed a memory leak in foreach metacommand - - Removed limit of 2048 Bytes for GET request data (there is no - limit anymore). Spotted by Steve Willer - - Read all POSTed data (not just the first 1024 Bytes). Patch from - Steve Willer. - - Removed some compiler warnings spotted by Tarang Kumar Patel - - Make sure all data is flushed to the logfile at the end of - each request - - Fixed a bug that causes Init to set DebugFlags to 1 instead of 0. - Spotted by Eric Cholet.</pre><hr xmlns="http://www.w3.org/TR/xhtml1/strict"></hr><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-49-.htm" class="cPodHeaderNavLink"> - [ << Prev: 1.1.1 15 Sep 1998 ] + [ Next: 1.1.0 28 Jul 98 >> ] + </a></td></tr></table></a><pre xmlns="http://www.w3.org/TR/xhtml1/strict" class="cPodVerbatim"> - A lot of documentation updates. Now Embperl ships with most of + the documentation which is also available on + https://perl.apache.org/embperl/ + This includes: + - Intro.pod an introduction to Embperl + - Faq.pod an new very much extented version of the FAQ + and a lot of spell checking, gramar checking and so on + Thanks very much to Nora Mikes for putting together the FAQ + and doing a lot of proof reading. + - eg/x/upload.htm an example for file upload within Embperl + - splited documentation out of Embperl.pm into Embperl.pod + to make it load a little bit faster (Embperl.pm is now 30K + instead of 90K) + - Optimized the loading of other modules. Other modules are now + only loaded when really necessary. This make Embperl in CGI mode + about 2 times faster then version 1.1.0 was. + - Added a test for file-upload + - Embperl compiles and works now with threaded perl, but Embperl + is currently B<not> threadsafe. So you can use Embperl in a + threaded environement, but you have to make sure that only one + thread useses Embperl at a time. + - Fixed a memory leak which has occured in checkboxes and selects + - Enhanced test.pl + - MailFormTo: Send \n after mail header to work correctly with all + mail servers, added EMBPERL_MAILHOST to specify mail server hostname, + MailFormTo dies when it can't connect to mailserver. Spotted by + Steffen Geschke.</pre><hr xmlns="http://www.w3.org/TR/xhtml1/strict"></hr><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-49-.htm" class="cPodHeaderNavLink"> + [ << Prev: 1.2b1 (BETA) 8 Oct 1998 ] </a></td><td align="center" valign="top" width="10%"><a href="Changes.htm" class="cPodHeaderNavLink">[ Content ]</a></td><td align="right" valign="top" width="45%"><a href="Changes.-page-51-.htm" class="cPodHeaderNavLink"> - [ Next: 1.1b2 27 Jun 98 >> ] + [ Next: 1.1.0 28 Jul 98 >> ] </a></td></tr></table></a> </td> </tr> Modified: perl/site/embperl/de/pod/Changes.-page-51-.htm URL: http://svn.apache.org/viewvc/perl/site/embperl/de/pod/Changes.-page-51-.htm?rev=1914099&r1=1914098&r2=1914099&view=diff ============================================================================== --- perl/site/embperl/de/pod/Changes.-page-51-.htm (original) +++ perl/site/embperl/de/pod/Changes.-page-51-.htm Fri Nov 24 21:28:20 2023 @@ -206,7 +206,7 @@ <tr> <td nowrap align="left" width=2> </td> <td nowrap align="left" width=15><img src="../../images/i-sub-off.gif" width="11" height="11" vspace="6" hspace="5"></td> - <td nowrap align="left" width=125><a href="../pod/doc/Embperl.-page-18-.htm"><div class="cMenu">Support</div></a></td> + <td nowrap align="left" width=125><a href="../pod/doc/Embperl.-page-17-.htm"><div class="cMenu">Support</div></a></td> </tr> </table> </td> @@ -242,7 +242,7 @@ <td align="left" background="../../images//hintergrund-nav.gif"> <table width="152" border="0" cellspacing="0" cellpadding="0"> <tr> - <td nowrap with="152" height=22> <a href="../pod/INSTALL.htm"><span class="cMenu">Stable 2.5.0</span></a></td> + <td nowrap with="152" height=22> <a href="../pod/doc/Embperl.-page-12-.htm"><span class="cMenu">Stable 3.0.0</span></a></td> </tr> </table> </td> @@ -257,7 +257,7 @@ <td align="left" background="../../images//hintergrund-nav.gif"> <table width="152" border="0" cellspacing="0" cellpadding="0"> <tr> - <td nowrap with="152" height=22> <a href="../pod/INSTALL.htm"><span class="cMenu">Beta 3.0.0-rc.2</span></a></td> + <td nowrap with="152" height=22> <a href="../pod/doc/Embperl.-page-12-.htm"><span class="cMenu">Beta 3.0.0-rc.2</span></a></td> </tr> </table> </td> @@ -303,41 +303,47 @@ </table> </td> <td valign="top" width="90%" class="cContent"><table width="100%"><tr><td valign="top" width="95%"> -<table xmlns="http://www.w3.org/TR/xhtml1/strict" width="100%" border="0" cellspacing="0" cellpadding="6"><tr><td class="cPodH1">1.1b2 27 Jun 98</td></tr></table><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-50-.htm" class="cPodHeaderNavLink"> - [ << Prev: 1.1.0 28 Jul 98 ] +<table xmlns="http://www.w3.org/TR/xhtml1/strict" width="100%" border="0" cellspacing="0" cellpadding="6"><tr><td class="cPodH1">1.1.0 28 Jul 98</td></tr></table><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-50-.htm" class="cPodHeaderNavLink"> + [ << Prev: 1.1.1 15 Sep 1998 ] </a></td><td align="center" valign="top" width="10%"><a href="Changes.htm" class="cPodHeaderNavLink">[ Content ]</a></td><td align="right" valign="top" width="45%"><a href="Changes.-page-52-.htm" class="cPodHeaderNavLink"> - [ Next: 1.1b1 14 Jun 98 >> ] - </a></td></tr></table></a><pre xmlns="http://www.w3.org/TR/xhtml1/strict" class="cPodVerbatim"> - Added an additional note for input- and output- escaping - which is described in "Inside Embperl" section. - It's very important to understand this if you have any - problems with HTML tags or filehandles in your Perl code. - - Embperl will recognize Apache::exit. If called inside an - Embperl page or in a module called from an Embperl page, - the processing of the document is immediately aborted. - Everything processed so far is output/sent to the browser. - Based on a patch from Steve Willer. - - When running under mod_perl, 'exit' is an alias for Apache::exit - in every document. - - Enhanced the format of the Errorpage. Thanks for the patch - from Steve Willer - - Added a [$ foreach $] and a [$ do $] ... [$ until $] - metacommand - - - Now multiple checkboxes with the same name will be set - correctly, to the values posted to the document. Spotted - by Todd Eigenschink and Nathan Krislock. - - [+ local $escmode = 0 .... +] works now. The first setting - of $escmode in a [+ ... +] block will now applied to the - whole block. You cannot change $escmode inside a [+ ... +] - block. Spotted by Chris Thormann. - - Fixed the return path setting in MailFormFields - - ProxyInput now passes http headers, so authentification - will be passed thru. - - Removed the limit 2048 for the length of HTML tags when [+ ... +] - are included. Now there is no limit anymore. Spotted by Doug Bagley</pre><hr xmlns="http://www.w3.org/TR/xhtml1/strict"></hr><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-50-.htm" class="cPodHeaderNavLink"> - [ << Prev: 1.1.0 28 Jul 98 ] + [ Next: 1.1b2 27 Jun 98 >> ] + </a></td></tr></table></a><pre xmlns="http://www.w3.org/TR/xhtml1/strict" class="cPodVerbatim"> - Added support for perl5.005 (currently only without threads!) + - Nesting of metacommands and HTML tags are now independent of + each other. + - Added examples in eg/x for do .. until, foreach, if, + DBI datbase access, DBIx::Recordset database access and a + input- / confirmation form. + - Added optUndefToEmptyValue which will cause Embperl to treat non- + existent values in %fdat as an empty string in input tags, as suggested + by Steve Willer. + - Catch "die" within EMBPERL_INPUT/OUTPUT_FUNC and write error + message to the logfile + - Write error message of LWP::UserAgent in ProxyInput to logfile + if any + - Added test for POST Requests + - Added support for tests when mod_perl is built with USE_DSO. + Spotted by Christian Oyarzun. + + - Selects and checkboxes are setup correctly if state is set via %fdat. + Spotted by Todd Eigenschink and Steve Willer. + - Changes URL escaping so that only space, '+', '&', '=' and chars < 0x20 + will be escaped to avoid problems with older netscape browsers. + - Added missing documentation for req_rec parameter of the Execute + function. Spotted by Eric Cholet. + - Send correct http header for error page, spotted by Steve Willer + - Fixed a memory leak in foreach metacommand + - Removed limit of 2048 Bytes for GET request data (there is no + limit anymore). Spotted by Steve Willer + - Read all POSTed data (not just the first 1024 Bytes). Patch from + Steve Willer. + - Removed some compiler warnings spotted by Tarang Kumar Patel + - Make sure all data is flushed to the logfile at the end of + each request + - Fixed a bug that causes Init to set DebugFlags to 1 instead of 0. + Spotted by Eric Cholet.</pre><hr xmlns="http://www.w3.org/TR/xhtml1/strict"></hr><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-50-.htm" class="cPodHeaderNavLink"> + [ << Prev: 1.1.1 15 Sep 1998 ] </a></td><td align="center" valign="top" width="10%"><a href="Changes.htm" class="cPodHeaderNavLink">[ Content ]</a></td><td align="right" valign="top" width="45%"><a href="Changes.-page-52-.htm" class="cPodHeaderNavLink"> - [ Next: 1.1b1 14 Jun 98 >> ] + [ Next: 1.1b2 27 Jun 98 >> ] </a></td></tr></table></a> </td> </tr> Modified: perl/site/embperl/de/pod/Changes.-page-52-.htm URL: http://svn.apache.org/viewvc/perl/site/embperl/de/pod/Changes.-page-52-.htm?rev=1914099&r1=1914098&r2=1914099&view=diff ============================================================================== --- perl/site/embperl/de/pod/Changes.-page-52-.htm (original) +++ perl/site/embperl/de/pod/Changes.-page-52-.htm Fri Nov 24 21:28:20 2023 @@ -206,7 +206,7 @@ <tr> <td nowrap align="left" width=2> </td> <td nowrap align="left" width=15><img src="../../images/i-sub-off.gif" width="11" height="11" vspace="6" hspace="5"></td> - <td nowrap align="left" width=125><a href="../pod/doc/Embperl.-page-18-.htm"><div class="cMenu">Support</div></a></td> + <td nowrap align="left" width=125><a href="../pod/doc/Embperl.-page-17-.htm"><div class="cMenu">Support</div></a></td> </tr> </table> </td> @@ -242,7 +242,7 @@ <td align="left" background="../../images//hintergrund-nav.gif"> <table width="152" border="0" cellspacing="0" cellpadding="0"> <tr> - <td nowrap with="152" height=22> <a href="../pod/INSTALL.htm"><span class="cMenu">Stable 2.5.0</span></a></td> + <td nowrap with="152" height=22> <a href="../pod/doc/Embperl.-page-12-.htm"><span class="cMenu">Stable 3.0.0</span></a></td> </tr> </table> </td> @@ -257,7 +257,7 @@ <td align="left" background="../../images//hintergrund-nav.gif"> <table width="152" border="0" cellspacing="0" cellpadding="0"> <tr> - <td nowrap with="152" height=22> <a href="../pod/INSTALL.htm"><span class="cMenu">Beta 3.0.0-rc.2</span></a></td> + <td nowrap with="152" height=22> <a href="../pod/doc/Embperl.-page-12-.htm"><span class="cMenu">Beta 3.0.0-rc.2</span></a></td> </tr> </table> </td> @@ -303,32 +303,41 @@ </table> </td> <td valign="top" width="90%" class="cContent"><table width="100%"><tr><td valign="top" width="95%"> -<table xmlns="http://www.w3.org/TR/xhtml1/strict" width="100%" border="0" cellspacing="0" cellpadding="6"><tr><td class="cPodH1">1.1b1 14 Jun 98</td></tr></table><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-51-.htm" class="cPodHeaderNavLink"> - [ << Prev: 1.1b2 27 Jun 98 ] +<table xmlns="http://www.w3.org/TR/xhtml1/strict" width="100%" border="0" cellspacing="0" cellpadding="6"><tr><td class="cPodH1">1.1b2 27 Jun 98</td></tr></table><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-51-.htm" class="cPodHeaderNavLink"> + [ << Prev: 1.1.0 28 Jul 98 ] </a></td><td align="center" valign="top" width="10%"><a href="Changes.htm" class="cPodHeaderNavLink">[ Content ]</a></td><td align="right" valign="top" width="45%"><a href="Changes.-page-53-.htm" class="cPodHeaderNavLink"> - [ Next: 1.0.0 12 Jun 98 >> ] - </a></td></tr></table></a><pre xmlns="http://www.w3.org/TR/xhtml1/strict" class="cPodVerbatim"> - Now you can set custom input and/or output functions via - EMBPERL_INPUT_FUNC and EMBPERL_OUTPUT_FUNC. This can be - used to chain modules together or to get the input from - (or put the output to) non-standard locations. - - Added a function ProxyInput which can be used to fetch - the input from another URL instead of the disk. One possible - usage for this is to let mod_include parse the document first - and then let Embperl process it. Suggested by Steffen Geschke. - - Added a function LogOutput, which will write every generated - document to a unique file in addition to sending it to the - browser. Suggested by Dan Peterson. - - EMBPERL_FILESMATCH allows you to select which files in - a Location should be processed by Embperl. The rest are handled - by the Apache default handler. This allows you to have - Embperl and non-Embperl documents (like gifs etc.) in - the same directory. - - - Logfile was displayed at the wrong position when requested via the - browser the first time after the httpd was started.</pre><hr xmlns="http://www.w3.org/TR/xhtml1/strict"></hr><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-51-.htm" class="cPodHeaderNavLink"> - [ << Prev: 1.1b2 27 Jun 98 ] + [ Next: 1.1b1 14 Jun 98 >> ] + </a></td></tr></table></a><pre xmlns="http://www.w3.org/TR/xhtml1/strict" class="cPodVerbatim"> - Added an additional note for input- and output- escaping + which is described in "Inside Embperl" section. + It's very important to understand this if you have any + problems with HTML tags or filehandles in your Perl code. + - Embperl will recognize Apache::exit. If called inside an + Embperl page or in a module called from an Embperl page, + the processing of the document is immediately aborted. + Everything processed so far is output/sent to the browser. + Based on a patch from Steve Willer. + - When running under mod_perl, 'exit' is an alias for Apache::exit + in every document. + - Enhanced the format of the Errorpage. Thanks for the patch + from Steve Willer + - Added a [$ foreach $] and a [$ do $] ... [$ until $] + metacommand + + - Now multiple checkboxes with the same name will be set + correctly, to the values posted to the document. Spotted + by Todd Eigenschink and Nathan Krislock. + - [+ local $escmode = 0 .... +] works now. The first setting + of $escmode in a [+ ... +] block will now applied to the + whole block. You cannot change $escmode inside a [+ ... +] + block. Spotted by Chris Thormann. + - Fixed the return path setting in MailFormFields + - ProxyInput now passes http headers, so authentification + will be passed thru. + - Removed the limit 2048 for the length of HTML tags when [+ ... +] + are included. Now there is no limit anymore. Spotted by Doug Bagley</pre><hr xmlns="http://www.w3.org/TR/xhtml1/strict"></hr><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-51-.htm" class="cPodHeaderNavLink"> + [ << Prev: 1.1.0 28 Jul 98 ] </a></td><td align="center" valign="top" width="10%"><a href="Changes.htm" class="cPodHeaderNavLink">[ Content ]</a></td><td align="right" valign="top" width="45%"><a href="Changes.-page-53-.htm" class="cPodHeaderNavLink"> - [ Next: 1.0.0 12 Jun 98 >> ] + [ Next: 1.1b1 14 Jun 98 >> ] </a></td></tr></table></a> </td> </tr> Modified: perl/site/embperl/de/pod/Changes.-page-53-.htm URL: http://svn.apache.org/viewvc/perl/site/embperl/de/pod/Changes.-page-53-.htm?rev=1914099&r1=1914098&r2=1914099&view=diff ============================================================================== --- perl/site/embperl/de/pod/Changes.-page-53-.htm (original) +++ perl/site/embperl/de/pod/Changes.-page-53-.htm Fri Nov 24 21:28:20 2023 @@ -206,7 +206,7 @@ <tr> <td nowrap align="left" width=2> </td> <td nowrap align="left" width=15><img src="../../images/i-sub-off.gif" width="11" height="11" vspace="6" hspace="5"></td> - <td nowrap align="left" width=125><a href="../pod/doc/Embperl.-page-18-.htm"><div class="cMenu">Support</div></a></td> + <td nowrap align="left" width=125><a href="../pod/doc/Embperl.-page-17-.htm"><div class="cMenu">Support</div></a></td> </tr> </table> </td> @@ -242,7 +242,7 @@ <td align="left" background="../../images//hintergrund-nav.gif"> <table width="152" border="0" cellspacing="0" cellpadding="0"> <tr> - <td nowrap with="152" height=22> <a href="../pod/INSTALL.htm"><span class="cMenu">Stable 2.5.0</span></a></td> + <td nowrap with="152" height=22> <a href="../pod/doc/Embperl.-page-12-.htm"><span class="cMenu">Stable 3.0.0</span></a></td> </tr> </table> </td> @@ -257,7 +257,7 @@ <td align="left" background="../../images//hintergrund-nav.gif"> <table width="152" border="0" cellspacing="0" cellpadding="0"> <tr> - <td nowrap with="152" height=22> <a href="../pod/INSTALL.htm"><span class="cMenu">Beta 3.0.0-rc.2</span></a></td> + <td nowrap with="152" height=22> <a href="../pod/doc/Embperl.-page-12-.htm"><span class="cMenu">Beta 3.0.0-rc.2</span></a></td> </tr> </table> </td> @@ -303,21 +303,32 @@ </table> </td> <td valign="top" width="90%" class="cContent"><table width="100%"><tr><td valign="top" width="95%"> -<table xmlns="http://www.w3.org/TR/xhtml1/strict" width="100%" border="0" cellspacing="0" cellpadding="6"><tr><td class="cPodH1">1.0.0 12 Jun 98</td></tr></table><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-52-.htm" class="cPodHeaderNavLink"> - [ << Prev: 1.1b1 14 Jun 98 ] +<table xmlns="http://www.w3.org/TR/xhtml1/strict" width="100%" border="0" cellspacing="0" cellpadding="6"><tr><td class="cPodH1">1.1b1 14 Jun 98</td></tr></table><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-52-.htm" class="cPodHeaderNavLink"> + [ << Prev: 1.1b2 27 Jun 98 ] </a></td><td align="center" valign="top" width="10%"><a href="Changes.htm" class="cPodHeaderNavLink">[ Content ]</a></td><td align="right" valign="top" width="45%"><a href="Changes.-page-54-.htm" class="cPodHeaderNavLink"> - [ Next: 0.28-beta 19 May 1998 >> ] - </a></td></tr></table></a><pre xmlns="http://www.w3.org/TR/xhtml1/strict" class="cPodVerbatim"> - Make test runs with Apache 1.3.0, spotted by Eric Cholet - - Added a definition for MAX_PATH, which is not there on SunOS 4.1.4. - Spotted by Dan Peterson - - Fixed a bug that causes Makefile.PL to interpret MakeMaker parameters - spotted by Jason Bodnar - - Fixed a bug that caused EMBPERL_PACKAGE not to be recognized. - - Fixed a bug that caused optDisableFormData not to be recognized for - multipart formdata.</pre><hr xmlns="http://www.w3.org/TR/xhtml1/strict"></hr><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-52-.htm" class="cPodHeaderNavLink"> - [ << Prev: 1.1b1 14 Jun 98 ] + [ Next: 1.0.0 12 Jun 98 >> ] + </a></td></tr></table></a><pre xmlns="http://www.w3.org/TR/xhtml1/strict" class="cPodVerbatim"> - Now you can set custom input and/or output functions via + EMBPERL_INPUT_FUNC and EMBPERL_OUTPUT_FUNC. This can be + used to chain modules together or to get the input from + (or put the output to) non-standard locations. + - Added a function ProxyInput which can be used to fetch + the input from another URL instead of the disk. One possible + usage for this is to let mod_include parse the document first + and then let Embperl process it. Suggested by Steffen Geschke. + - Added a function LogOutput, which will write every generated + document to a unique file in addition to sending it to the + browser. Suggested by Dan Peterson. + - EMBPERL_FILESMATCH allows you to select which files in + a Location should be processed by Embperl. The rest are handled + by the Apache default handler. This allows you to have + Embperl and non-Embperl documents (like gifs etc.) in + the same directory. + + - Logfile was displayed at the wrong position when requested via the + browser the first time after the httpd was started.</pre><hr xmlns="http://www.w3.org/TR/xhtml1/strict"></hr><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-52-.htm" class="cPodHeaderNavLink"> + [ << Prev: 1.1b2 27 Jun 98 ] </a></td><td align="center" valign="top" width="10%"><a href="Changes.htm" class="cPodHeaderNavLink">[ Content ]</a></td><td align="right" valign="top" width="45%"><a href="Changes.-page-54-.htm" class="cPodHeaderNavLink"> - [ Next: 0.28-beta 19 May 1998 >> ] + [ Next: 1.0.0 12 Jun 98 >> ] </a></td></tr></table></a> </td> </tr> Modified: perl/site/embperl/de/pod/Changes.-page-54-.htm URL: http://svn.apache.org/viewvc/perl/site/embperl/de/pod/Changes.-page-54-.htm?rev=1914099&r1=1914098&r2=1914099&view=diff ============================================================================== --- perl/site/embperl/de/pod/Changes.-page-54-.htm (original) +++ perl/site/embperl/de/pod/Changes.-page-54-.htm Fri Nov 24 21:28:20 2023 @@ -206,7 +206,7 @@ <tr> <td nowrap align="left" width=2> </td> <td nowrap align="left" width=15><img src="../../images/i-sub-off.gif" width="11" height="11" vspace="6" hspace="5"></td> - <td nowrap align="left" width=125><a href="../pod/doc/Embperl.-page-18-.htm"><div class="cMenu">Support</div></a></td> + <td nowrap align="left" width=125><a href="../pod/doc/Embperl.-page-17-.htm"><div class="cMenu">Support</div></a></td> </tr> </table> </td> @@ -242,7 +242,7 @@ <td align="left" background="../../images//hintergrund-nav.gif"> <table width="152" border="0" cellspacing="0" cellpadding="0"> <tr> - <td nowrap with="152" height=22> <a href="../pod/INSTALL.htm"><span class="cMenu">Stable 2.5.0</span></a></td> + <td nowrap with="152" height=22> <a href="../pod/doc/Embperl.-page-12-.htm"><span class="cMenu">Stable 3.0.0</span></a></td> </tr> </table> </td> @@ -257,7 +257,7 @@ <td align="left" background="../../images//hintergrund-nav.gif"> <table width="152" border="0" cellspacing="0" cellpadding="0"> <tr> - <td nowrap with="152" height=22> <a href="../pod/INSTALL.htm"><span class="cMenu">Beta 3.0.0-rc.2</span></a></td> + <td nowrap with="152" height=22> <a href="../pod/doc/Embperl.-page-12-.htm"><span class="cMenu">Beta 3.0.0-rc.2</span></a></td> </tr> </table> </td> @@ -303,85 +303,21 @@ </table> </td> <td valign="top" width="90%" class="cContent"><table width="100%"><tr><td valign="top" width="95%"> -<table xmlns="http://www.w3.org/TR/xhtml1/strict" width="100%" border="0" cellspacing="0" cellpadding="6"><tr><td class="cPodH1">0.28-beta 19 May 1998</td></tr></table><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-53-.htm" class="cPodHeaderNavLink"> - [ << Prev: 1.0.0 12 Jun 98 ] - </a></td><td align="center" valign="top" width="10%"><a href="Changes.htm" class="cPodHeaderNavLink">[ Content ]</a></td><td align="right" valign="top" width="45%"><a href="Changes.-page-56-.htm" class="cPodHeaderNavLink"> - [ Next: 0.26-beta 16 Mar 98 >> ] - </a></td></tr></table></a><pre xmlns="http://www.w3.org/TR/xhtml1/strict" class="cPodVerbatim"> - I have added a chapter "Inside Embperl" to the docs, I hope this - will make it clearer how escaping and unescaping works and how you - can get desired results. Highly recommended! (Thanks for spell- and - grammar-checking to Todd Eigenschink) - - make test now runs under win32 (You need to install LWP and libwin32) - IMPORTANT: You need a mod_perl version > 1.11 or you get a deadlock. - - Compiles with apache_1.3b6 - - Added support for Stronghold and Apache_SSL to Makefile.PL and test.pl - - Changed dbgEarlyHttpHeader to optEarlyHttpHeader because it's not a - debugging option. dbgEarlyHttpHeader still persists, but will be removed - in one of the following versions - - Embperl does not change the current working directory when optDisableChdir - is set, this saves some milliseconds per request, also the cwd is moved - to the c code, so it runs faster then Cwd::fastwd. - Thanks to Doug Bagley for the profile which has shown how much time - Cwd::fastcwd consumes - - You can set optDisableHtmlScan in EMBPERL_OPTIONS. If set, Embperl only - recongizes [+/-/$/! ... !/$/-/+], but will not do anything with HTML tags, - as suggested by Randy Harmon. - - optDisableInputScan, optDisableTableScan and optDisableMetaScan can be - used to disable only some of the HTML tag processing - - You can set optDisableFormData in EMBPERL_OPTIONS. If set, Embperl - will not setup the %fdat and @ffld, as suggested by Doug Bagley - - If you use Execute, the explicit call to Init/Term isn't needed anymore, - because Embperl performs the Init automatically when it is loaded. The - Init function can still be used to change the path of logfile. Suggested - by Honza Jirousek - - All options and debugging flags can now be read/set at runtime. For - example $optRawInput = 1 sets the optRawInputFlag. Some of the options - are read-only, because they must be known before the request. - - Added more tests - - Embperl discards all errors which occur in an expression after the end - of a dynamic table, and which are only evaluated to detect the table end and - never displayed. This allows usage of object methods in dynamic tables, - where the table end is caused by an undefined object. (see - test/html/object.htm for an example). Spotted by Jason Bodnar. - - Printing to filehandle OUT has the same effect as using [+ .. +] - (including html-escaping) - - Setting optRedirectStdout causes Embperl to tie STDOUT to the Embperl - output stream (same as print OUT ...), suggested by Jason Bodar - - Setting optAllFormData will make empty formfields occur in %fdat and @ffld - with an empty string value, suggested by Dan Peterson - - - Embperl now handles SELECT MULTIPLE correct. All OPTIONs which are - posted to the document will now be selected by Embperl, spotted by - Todd Eigenschink - - Fixed a bug that caused a '>' inside a [$/! ... !/$] block to be - interpreted as the end of a HTML tag, spotted by Todd Eigenschink. - - Fixed a bug which caused the SELECT/OPTIONS tag to not insert their - values in %idat and therefore made [$hidden$] work incorrectly, spotted by - Dave Paris [aka Spider] - - Fixed a bug that caused the INPUT CHECKBOX tag to not insert its - value in %idat when the value wasn't in %fdat and therefore made [$hidden$] - work incorrectly. - - Fixed a problem that caused magical variables to be handled as if they - were undefined, which caused dynamic tables to end, sometimes prematurely. - - Closing HTML tags will be correctly removed form Perl source again - (when optRawInput is not set) - - &nbsp; will be translated to space (0x20) instead of 0xf0 - - When EMBPERL_DEBUG is set 0, only errors and warnings will be written to - the logfile - - MailFormTo will generate the correct TO header and insert a Return-Path - from the posted e-mail address - - Changed detection of mod_perl to $ENV{MOD_PERL}. This makes sure that - it will work correctly, even if Apache.pm isn't loaded. - - Re-entered the optDisableEmbperlErrorPage, which was lost in one of the last - releases, spotted by Doug Bagley. - - The content_length of the Apache request_rec will only be set when a http - header is sent. - - If, Elsif and While metacommands now use SvTRUE instead of a != 0 to test the - evaluated expression, so they now behave like the Perl ones do. Spotted by Jason - Bondar</pre><hr xmlns="http://www.w3.org/TR/xhtml1/strict"></hr><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-53-.htm" class="cPodHeaderNavLink"> - [ << Prev: 1.0.0 12 Jun 98 ] - </a></td><td align="center" valign="top" width="10%"><a href="Changes.htm" class="cPodHeaderNavLink">[ Content ]</a></td><td align="right" valign="top" width="45%"><a href="Changes.-page-56-.htm" class="cPodHeaderNavLink"> - [ Next: 0.26-beta 16 Mar 98 >> ] +<table xmlns="http://www.w3.org/TR/xhtml1/strict" width="100%" border="0" cellspacing="0" cellpadding="6"><tr><td class="cPodH1">1.0.0 12 Jun 98</td></tr></table><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-53-.htm" class="cPodHeaderNavLink"> + [ << Prev: 1.1b1 14 Jun 98 ] + </a></td><td align="center" valign="top" width="10%"><a href="Changes.htm" class="cPodHeaderNavLink">[ Content ]</a></td><td align="right" valign="top" width="45%"><a href="Changes.-page-55-.htm" class="cPodHeaderNavLink"> + [ Next: 0.28-beta 19 May 1998 >> ] + </a></td></tr></table></a><pre xmlns="http://www.w3.org/TR/xhtml1/strict" class="cPodVerbatim"> - Make test runs with Apache 1.3.0, spotted by Eric Cholet + - Added a definition for MAX_PATH, which is not there on SunOS 4.1.4. + Spotted by Dan Peterson + - Fixed a bug that causes Makefile.PL to interpret MakeMaker parameters + spotted by Jason Bodnar + - Fixed a bug that caused EMBPERL_PACKAGE not to be recognized. + - Fixed a bug that caused optDisableFormData not to be recognized for + multipart formdata.</pre><hr xmlns="http://www.w3.org/TR/xhtml1/strict"></hr><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-53-.htm" class="cPodHeaderNavLink"> + [ << Prev: 1.1b1 14 Jun 98 ] + </a></td><td align="center" valign="top" width="10%"><a href="Changes.htm" class="cPodHeaderNavLink">[ Content ]</a></td><td align="right" valign="top" width="45%"><a href="Changes.-page-55-.htm" class="cPodHeaderNavLink"> + [ Next: 0.28-beta 19 May 1998 >> ] </a></td></tr></table></a> </td> </tr> Modified: perl/site/embperl/de/pod/Changes.-page-57-.htm URL: http://svn.apache.org/viewvc/perl/site/embperl/de/pod/Changes.-page-57-.htm?rev=1914099&r1=1914098&r2=1914099&view=diff ============================================================================== --- perl/site/embperl/de/pod/Changes.-page-57-.htm (original) +++ perl/site/embperl/de/pod/Changes.-page-57-.htm Fri Nov 24 21:28:20 2023 @@ -206,7 +206,7 @@ <tr> <td nowrap align="left" width=2> </td> <td nowrap align="left" width=15><img src="../../images/i-sub-off.gif" width="11" height="11" vspace="6" hspace="5"></td> - <td nowrap align="left" width=125><a href="../pod/doc/Embperl.-page-18-.htm"><div class="cMenu">Support</div></a></td> + <td nowrap align="left" width=125><a href="../pod/doc/Embperl.-page-17-.htm"><div class="cMenu">Support</div></a></td> </tr> </table> </td> @@ -242,7 +242,7 @@ <td align="left" background="../../images//hintergrund-nav.gif"> <table width="152" border="0" cellspacing="0" cellpadding="0"> <tr> - <td nowrap with="152" height=22> <a href="../pod/INSTALL.htm"><span class="cMenu">Stable 2.5.0</span></a></td> + <td nowrap with="152" height=22> <a href="../pod/doc/Embperl.-page-12-.htm"><span class="cMenu">Stable 3.0.0</span></a></td> </tr> </table> </td> @@ -257,7 +257,7 @@ <td align="left" background="../../images//hintergrund-nav.gif"> <table width="152" border="0" cellspacing="0" cellpadding="0"> <tr> - <td nowrap with="152" height=22> <a href="../pod/INSTALL.htm"><span class="cMenu">Beta 3.0.0-rc.2</span></a></td> + <td nowrap with="152" height=22> <a href="../pod/doc/Embperl.-page-12-.htm"><span class="cMenu">Beta 3.0.0-rc.2</span></a></td> </tr> </table> </td> @@ -303,86 +303,36 @@ </table> </td> <td valign="top" width="90%" class="cContent"><table width="100%"><tr><td valign="top" width="95%"> -<table xmlns="http://www.w3.org/TR/xhtml1/strict" width="100%" border="0" cellspacing="0" cellpadding="6"><tr><td class="cPodH1">0.25-beta 17 Feb 1998</td></tr></table><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-56-.htm" class="cPodHeaderNavLink"> - [ << Prev: 0.26-beta 16 Mar 98 ] +<table xmlns="http://www.w3.org/TR/xhtml1/strict" width="100%" border="0" cellspacing="0" cellpadding="6"><tr><td class="cPodH1">0.26-beta 16 Mar 98</td></tr></table><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-55-.htm" class="cPodHeaderNavLink"> + [ << Prev: 0.28-beta 19 May 1998 ] </a></td><td align="center" valign="top" width="10%"><a href="Changes.htm" class="cPodHeaderNavLink">[ Content ]</a></td><td align="right" valign="top" width="45%"><a href="Changes.-page-58-.htm" class="cPodHeaderNavLink"> - [ Next: 0.23-beta 31 Dec 1997 >> ] - </a></td></tr></table></a><pre xmlns="http://www.w3.org/TR/xhtml1/strict" class="cPodVerbatim"> - Included the "translation" of the Embperl POD to a human-readable - form done by Todd Eigenschink - - Started a FAQ file from the questions I answered by e-mail - - Added the function Execute, which can be called from Perl programs - (or Apache::Registry scripts), and can take input from (and/or - output to) memory, as suggested by Doug Bagley and Randy Harmon - (Look at test/html/registry/Execute.htm for an example) - - Changed the source so that it will compile on aix, spotted by - Patrick McAuliffe - - Access sys_errlist via perl macro Strerror to avoid errors with - redeclaration, thanks for spotting this to Honza Jirousek - - Changed the tab size from 4 to 8 in my editor to be compatible with - Unix standard - - Added warning if dbgLogLink is set and EMBPERL_VIRTLOG is not - - Changed the delimiter of metacommand from space to any non-alpha char - to allow writing [$while(a==b)$] as suggested by Michael D. Dowling - - Added config variable EMBPERL_ESCMODE to set inital values of $escmode - as suggested by Todd Eigenschink - - Added [! ... !]. Does just the same as [- ... -] but will only execute - on the first request for that document. This can be used to do one-time - initialization and to define subroutines. - - Changed push_handlers to register_cleanup, so PERL_STACKED_HANDLERS and - PERL_CLEANUP aren't necessary anymore, as suggested by Doug MacEachern - - If it exists, the function CLEANUP of the processed document will be called - before the variable cleanup, but after the connection to the client is closed - - Added a closing </font> in the logfile which is sent to the browser, otherwise - MS IE 4 can't handle it - - Changed Perl constants in Perl part from subroutines to "real" constants - - Did some general rearranging of code - - - Fixed a memory leak which caused Embperl to lose one sv per Perl - block when a document is reloaded - - Fixed a bug which caused [+... +] within the Textarea tag to be ignored, - spotted by Todd Eigenschink - - Fixed a bug in sorting hidden fields - - Fixed a wrong argument to MakeMaker, which was causing Embperl to not be able - to build statically, spotted by Anatoli Belomestnov (and added a - description to the Faq on how to build a copy of Embperl which is statically- - linked to mod_perl) - - Fixed a problem which was causing the LOG filehandle to not be imported in - the documents package, this was causing everything printed to LOG to sort - of disappear - -=head1 0.24-beta 13 Jan 1998 - - - Added the option optRawInput which causes Embperl not to pre-process the - source for a Perl expression (the only exception is that CR will be removed). - This option should be set when you are writing your code with an ascii editor. - If you are using a WYSIWYG editor, which inserts unwanted HTML tags in your - Perl expressions and escapes special characters automatically (i.e. - < will occur as &lt; in the source), you should not set this option, and - Embperl will automatically convert the HTML input back to the Perl - expression you have written. (Thanks to Todd R. Eigenschink for a patch) - - $0 is set to the filename of the HTML source - - Change Current Working Directory to directory of HTML source - - Warning messages are now also logged in logfile at the correct - position, next to the source line - - Perl error and warning messages contain the filename and correct - linenumber of the HTML source - - Sourcelines in logfile contain linenumbers - - Output via [+ ... +] of undefined values at the end of a dynamic table - (which must be there to end the table) do not generate a warning anymore - NOTE: If you use them in an expression (such as $a = $arr[$row] or simply - inside " ", you will still get a warning) - - Open HTML source in binary mode on Win32 to avoid overhead of crlf -> lf - translation. - - Use aplog_error for apache_1.3 to avoid senseless os errors written to - httpd error log - - - Removed some uninitializied value messages when running with - -w / PerlWarn on, spotted by Todd R. Eigenschink - - Fixed a bug which has caused nested 'while' loops to execute incorrectly - if the condition of the outer one is false </pre><hr xmlns="http://www.w3.org/TR/xhtml1/strict"></hr><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-56-.htm" class="cPodHeaderNavLink"> - [ << Prev: 0.26-beta 16 Mar 98 ] + [ Next: 0.25-beta 17 Feb 1998 >> ] + </a></td></tr></table></a><pre xmlns="http://www.w3.org/TR/xhtml1/strict" class="cPodVerbatim"> - Adapt include pass to compile with apache_1.3b5 + - Applied patch from Dan Walters to make Embperl compile with + apache_1.3b3 and mod_perl on Win 32 + - Changed the order of included c headers and undef some macros + inbetween (copied from mod_perl.c) to compile with Apache on Win 32 + - Embperl works with apache_1.3b5 on Win NT ('make test' does not yet) + (You need the Apache source and must compile Perl with the vc++) + + - Added the 'param' parameter to the 'Execute' function to pass parameters + from and to the Embperl document. + - Added the 'fdat' and 'ffld' parameter to the 'Execute' function to + setup %fdat and @ffld + + - Fixed a problem which displayed tables a second time after the end of + the document, if dbgEarly HttpHeaders was on, thanks to Ask Bjorn Hansen + for spotting this. + - Fixed the return values of CheckFile, which was not correct after a change + from 0.24 to 0.25. Thanks to Todd Eigenschrink for spotting this. + - Fixed an error which was causing Embperl to crash on an HTML input tag without + the 'type' parameter. Thanks to Todd Eigenschrink for the hint. + - Fixed a problem that caused Embperl to not recognize errors correctly + when reading the sourcefile + </pre><hr xmlns="http://www.w3.org/TR/xhtml1/strict"></hr><a xmlns="http://www.w3.org/TR/xhtml1/strict" name="top"><table width="100%"><tr><td align="left" valign="top" width="45%"><a href="Changes.-page-55-.htm" class="cPodHeaderNavLink"> + [ << Prev: 0.28-beta 19 May 1998 ] </a></td><td align="center" valign="top" width="10%"><a href="Changes.htm" class="cPodHeaderNavLink">[ Content ]</a></td><td align="right" valign="top" width="45%"><a href="Changes.-page-58-.htm" class="cPodHeaderNavLink"> - [ Next: 0.23-beta 31 Dec 1997 >> ] + [ Next: 0.25-beta 17 Feb 1998 >> ] </a></td></tr></table></a> </td> </tr>