You are viewing a plain text version of this content. The canonical link for it is here.
Posted to embperl-cvs@perl.apache.org by ri...@apache.org on 2002/04/10 08:00:47 UTC

cvs commit: embperl/test/html/pod pod.asc

richter     02/04/09 23:00:47

  Modified:    .        Tag: Embperl2c Changes.pod TODO epio.c
               Embperl/Syntax Tag: Embperl2c POD.pm
               test/cmp Tag: Embperl2c escape.htm pod.asc pod.asc.htm
                        pod.asc.xalan.htm
               test/html Tag: Embperl2c escape.htm
               test/html/pod Tag: Embperl2c pod.asc
  Log:
  pod #<> id tag
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.129.4.64 +3 -1      embperl/Changes.pod
  
  Index: Changes.pod
  ===================================================================
  RCS file: /home/cvs/embperl/Changes.pod,v
  retrieving revision 1.129.4.63
  retrieving revision 1.129.4.64
  diff -u -r1.129.4.63 -r1.129.4.64
  --- Changes.pod	8 Apr 2002 03:39:09 -0000	1.129.4.63
  +++ Changes.pod	10 Apr 2002 06:00:46 -0000	1.129.4.64
  @@ -9,7 +9,9 @@
      - fixed incorrected escaping inside of an URL when expanding an hash
        or array reference. Reported by Axel Beckert.
      - fixed possible endless loop when expanding hash or array inside of
  -     an URL.   
  +     an URL.
  +   - fixed a segfault that occured when source file encryption was enabled.
  +     Reported by Edwin Ramirez.     
   
   =head1 2.0b7 (BETA) 21. Mar. 2002
   
  
  
  
  1.97.4.9  +3 -0      embperl/TODO
  
  Index: TODO
  ===================================================================
  RCS file: /home/cvs/embperl/TODO,v
  retrieving revision 1.97.4.8
  retrieving revision 1.97.4.9
  diff -u -r1.97.4.8 -r1.97.4.9
  --- TODO	8 Mar 2002 06:44:14 -0000	1.97.4.8
  +++ TODO	10 Apr 2002 06:00:46 -0000	1.97.4.9
  @@ -102,6 +102,9 @@
   
   - $fdat_ref = $set; [Kee Hinckley 7.3.02]
   
  +- print OUT as first statement in [$sub$] doesn't work [Eric-Olivier Le Bigot 1.4.02]
  +
  +- Vars in @param not being undefined [Luiz Fernando B. Ribeiro 9.4.02]
   
   Docs 2.0
   --------
  
  
  
  1.16.4.11 +2 -2      embperl/epio.c
  
  Index: epio.c
  ===================================================================
  RCS file: /home/cvs/embperl/epio.c,v
  retrieving revision 1.16.4.10
  retrieving revision 1.16.4.11
  diff -u -r1.16.4.10 -r1.16.4.11
  --- epio.c	12 Mar 2002 08:58:44 -0000	1.16.4.10
  +++ epio.c	10 Apr 2002 06:00:46 -0000	1.16.4.11
  @@ -10,7 +10,7 @@
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
   #
  -#   $Id: epio.c,v 1.16.4.10 2002/03/12 08:58:44 richter Exp $
  +#   $Id: epio.c,v 1.16.4.11 2002/04/10 06:00:46 richter Exp $
   #
   ###################################################################################*/
   
  @@ -598,7 +598,7 @@
   #ifndef EP2
           syntax = (r -> Component.pTokenTable && strcmp ((char *)r -> Component.pTokenTable, "Text") == 0)?"Text":"Embperl" ;
   #else
  -        syntax = r -> Component.pTokenTable -> sName ;
  +        syntax = r -> Component.Config.sSyntax ;
   #endif
   
           if ((rc = do_crypt_file (ifd, NULL, pData, *nFileSize, 0, syntax, EPC_HEADER)) <= 0)
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.16  +9 -1      embperl/Embperl/Syntax/Attic/POD.pm
  
  Index: POD.pm
  ===================================================================
  RCS file: /home/cvs/embperl/Embperl/Syntax/Attic/POD.pm,v
  retrieving revision 1.1.2.15
  retrieving revision 1.1.2.16
  diff -u -r1.1.2.15 -r1.1.2.16
  --- POD.pm	2 Mar 2002 00:46:17 -0000	1.1.2.15
  +++ POD.pm	10 Apr 2002 06:00:46 -0000	1.1.2.16
  @@ -10,7 +10,7 @@
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
   #
  -#   $Id: POD.pm,v 1.1.2.15 2002/03/02 00:46:17 richter Exp $
  +#   $Id: POD.pm,v 1.1.2.16 2002/04/10 06:00:46 richter Exp $
   #
   ###################################################################################
    
  @@ -275,6 +275,14 @@
   	'end'  => '>',
           'nodename' => 'xlink',
           'nodetype'  => ntypStartEndTag,
  +        },
  +    'POD Format #' => {
  +	'text' => '#<',
  +	'end'  => '>',
  +        'nodename' => 'id',
  +        'nodetype'   => ntypAttr,
  +        'cdatatype'  => ntypAttrValue,
  +        'removespaces' => 72,
           },
       'http link' => {
   	'text' => 'http://',
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.19.4.9  +2 -2      embperl/test/cmp/escape.htm
  
  Index: escape.htm
  ===================================================================
  RCS file: /home/cvs/embperl/test/cmp/escape.htm,v
  retrieving revision 1.19.4.8
  retrieving revision 1.19.4.9
  diff -u -r1.19.4.8 -r1.19.4.9
  --- escape.htm	8 Apr 2002 03:39:10 -0000	1.19.4.8
  +++ escape.htm	10 Apr 2002 06:00:46 -0000	1.19.4.9
  @@ -189,9 +189,9 @@
   0: �ric
   7: &eacute;ric
   0: �ric
  -<a href="0?!Table=interface,router&amp;$where=interface.router_id=router.id&amp;!LongNames=1">
  +<a href="0?!Table=interface,router&amp;$where=interface.router_id=router.id">
   
  -<a href="7?!Table=interface,router&amp;$where=interface.router_id%3Drouter.id&amp;!LongNames=1">
  +<a href="7?!Table=interface,router&amp;$where=interface.router_id%3Drouter.id">
     
   
   <P>Ok.<P>
  
  
  
  1.1.2.9   +1 -1      embperl/test/cmp/Attic/pod.asc
  
  Index: pod.asc
  ===================================================================
  RCS file: /home/cvs/embperl/test/cmp/Attic/pod.asc,v
  retrieving revision 1.1.2.8
  retrieving revision 1.1.2.9
  diff -u -r1.1.2.8 -r1.1.2.9
  --- pod.asc	11 Mar 2002 09:24:47 -0000	1.1.2.8
  +++ pod.asc	10 Apr 2002 06:00:47 -0000	1.1.2.9
  @@ -42,5 +42,5 @@
   and second line of title</title><para>again some text under HEAD1</para>
   <sect2><title>again HEAD2</title><para>again some text under HEAD2</para>
   </sect2></sect1><sect1><title>restart</title><para>some text</para></sect1><sect1><title>restart 2</title><sect2><title>restart 2 Head 2</title><para>text</para></sect2></sect1><sect1><title>restart 2</title><sect2><title>restart 2 Head 2</title></sect2><sect2><title>restart 3 Head 2</title><para>end</para><para><xlink>test</xlink> <xlink uri="yyy">xxx</xlink> <xlink>http://www.ecos.de</xlink> <xlink>ftp://ftp.dev.ecos.de</xlink>
  -<xlink>test</xlink> <xlink uri="yyy 2">xxx 2</xlink> <xlink>http://www.ecos.de</xlink> <xlink>ftp://ftp.dev.ecos.de</xlink></para>
  +<xlink>test</xlink> <xlink uri="yyy 2">xxx 2</xlink> <xlink>http://www.ecos.de</xlink> <xlink>ftp://ftp.dev.ecos.de</xlink></para></sect2></sect1><sect1><title id="idhead1">ID Test head1</title><sect2><title id="idhead2">ID Test head2</title><para id="idpara">ID Test para</para>
   </sect2></sect1></pod>
  
  
  
  1.1.2.8   +1 -1      embperl/test/cmp/Attic/pod.asc.htm
  
  Index: pod.asc.htm
  ===================================================================
  RCS file: /home/cvs/embperl/test/cmp/Attic/pod.asc.htm,v
  retrieving revision 1.1.2.7
  retrieving revision 1.1.2.8
  diff -u -r1.1.2.7 -r1.1.2.8
  --- pod.asc.htm	11 Mar 2002 09:24:47 -0000	1.1.2.7
  +++ pod.asc.htm	10 Apr 2002 06:00:47 -0000	1.1.2.8
  @@ -47,6 +47,6 @@
   and second line of title</h1><p>again some text under HEAD1</p>
   <h2>again HEAD2</h2><p>again some text under HEAD2</p>
   <h1>restart</h1><p>some text</p><h1>restart 2</h1><h2>restart 2 Head 2</h2><p>text</p><h1>restart 2</h1><h2>restart 2 Head 2</h2><h2>restart 3 Head 2</h2><p>end</p><p><a href="test">test</a> <a href="yyy">xxx</a> <a href="http://www.ecos.de">http://www.ecos.de</a> <a href="ftp://ftp.dev.ecos.de">ftp://ftp.dev.ecos.de</a>
  -<a href="test">test</a> <a href="yyy 2">xxx 2</a> <a href="http://www.ecos.de">http://www.ecos.de</a> <a href="ftp://ftp.dev.ecos.de">ftp://ftp.dev.ecos.de</a></p>
  +<a href="test">test</a> <a href="yyy 2">xxx 2</a> <a href="http://www.ecos.de">http://www.ecos.de</a> <a href="ftp://ftp.dev.ecos.de">ftp://ftp.dev.ecos.de</a></p><h1>ID Test head1</h1><h2>ID Test head2</h2><p>ID Test para</p>
   </body>
   </html>
  
  
  
  1.1.2.5   +3 -0      embperl/test/cmp/Attic/pod.asc.xalan.htm
  
  Index: pod.asc.xalan.htm
  ===================================================================
  RCS file: /home/cvs/embperl/test/cmp/Attic/pod.asc.xalan.htm,v
  retrieving revision 1.1.2.4
  retrieving revision 1.1.2.5
  diff -u -r1.1.2.4 -r1.1.2.5
  --- pod.asc.xalan.htm	11 Mar 2002 09:24:47 -0000	1.1.2.4
  +++ pod.asc.xalan.htm	10 Apr 2002 06:00:47 -0000	1.1.2.5
  @@ -109,5 +109,8 @@
   <a href="test">test</a> <a href="yyy">xxx</a> <a href="http://www.ecos.de">http://www.ecos.de</a> <a href="ftp://ftp.dev.ecos.de">ftp://ftp.dev.ecos.de</a>
   <a href="test">test</a> <a href="yyy 2">xxx 2</a> <a href="http://www.ecos.de">http://www.ecos.de</a> <a href="ftp://ftp.dev.ecos.de">ftp://ftp.dev.ecos.de</a>
   </p>
  +<h1>ID Test head1</h1>
  +<h2>ID Test head2</h2>
  +<p>ID Test para</p>
   </body>
   </html>
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.13.4.9  +1 -1      embperl/test/html/escape.htm
  
  Index: escape.htm
  ===================================================================
  RCS file: /home/cvs/embperl/test/html/escape.htm,v
  retrieving revision 1.13.4.8
  retrieving revision 1.13.4.9
  diff -u -r1.13.4.8 -r1.13.4.9
  --- escape.htm	7 Apr 2002 19:25:04 -0000	1.13.4.8
  +++ escape.htm	10 Apr 2002 06:00:47 -0000	1.13.4.9
  @@ -255,7 +255,7 @@
   $find_if = 
   { '!Table'     => 'interface,router',
   '$where'     => 'interface.router_id=router.id',
  -'!LongNames' => 1,
  +#'!LongNames' => 1,
    }; 
   -]
   
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.8   +6 -0      embperl/test/html/pod/Attic/pod.asc
  
  Index: pod.asc
  ===================================================================
  RCS file: /home/cvs/embperl/test/html/pod/Attic/pod.asc,v
  retrieving revision 1.1.2.7
  retrieving revision 1.1.2.8
  diff -u -r1.1.2.7 -r1.1.2.8
  --- pod.asc	2 Mar 2002 00:46:17 -0000	1.1.2.7
  +++ pod.asc	10 Apr 2002 06:00:47 -0000	1.1.2.8
  @@ -173,6 +173,12 @@
   L<test> L<xxx|yyy> http://www.ecos.de ftp://ftp.dev.ecos.de
   L<test> L<"xxx 2"|"yyy 2"> http://www.ecos.de ftp://ftp.dev.ecos.de
   
  +=head1 #<idhead1>ID Test head1
  +
  +=head2 #<idhead2>ID Test head2
  +
  +#<idpara>ID Test para
  +
   
   =cut
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: embperl-cvs-unsubscribe@perl.apache.org
For additional commands, e-mail: embperl-cvs-help@perl.apache.org