[Python-checkins] python/dist/src/Doc/perl python.perl,1.98.2.5,1.98.2.6

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Tue, 27 Aug 2002 12:50:44 -0700


Update of /cvsroot/python/python/dist/src/Doc/perl
In directory usw-pr-cvs1:/tmp/cvs-serv9144/perl

Modified Files:
      Tag: release21-maint
	python.perl 
Log Message:
Back-port the \ulink macro to the documentation package for Python 2.1.x
since a documentation patch included \ulink.  Adding this here makes
back-porting further documentation patches easier than having to remove
\ulink from the patches.
Closes SF bug #598996.


Index: python.perl
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/perl/python.perl,v
retrieving revision 1.98.2.5
retrieving revision 1.98.2.6
diff -C2 -d -r1.98.2.5 -r1.98.2.6
*** python.perl	3 Apr 2002 03:36:47 -0000	1.98.2.5
--- python.perl	27 Aug 2002 19:50:42 -0000	1.98.2.6
***************
*** 324,327 ****
--- 324,334 ----
  }
  
+ sub do_cmd_ulink{
+     local($_) = @_;
+     my $text = next_argument();
+     my $url = next_argument();
+     return "<a class=\"ulink\" href=\"$url\"\n  >$text</a>" . $_;
+ }
+ 
  sub do_cmd_citetitle{
      local($_) = @_;