mailr10691 - /1.3/info.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on February 11, 2010 - 15:03:
Author: bugman
Date: Thu Feb 11 15:03:14 2010
New Revision: 10691

URL: http://svn.gna.org/viewcvs/relax?rev=10691&view=rev
Log:
Fix for the cite_html() method.

The hyperlinks were incorrectly formed.


Modified:
    1.3/info.py

Modified: 1.3/info.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/info.py?rev=10691&r1=10690&r2=10691&view=diff
==============================================================================
--- 1.3/info.py (original)
+++ 1.3/info.py Thu Feb 11 15:03:14 2010
@@ -211,9 +211,9 @@
         if pages and hasattr(self, 'pages'):
             cite = cite + ' ' + self.pages
         if doi and hasattr(self, 'doi'):
-            cite = cite + ' (<a href="http://dx.doi.org/%s>abstract</a>)' % 
self.doi
+            cite = cite + ' (<a href="http://dx.doi.org/%s";>abstract</a>)' % 
self.doi
         if url and hasattr(self, 'url'):
-            cite = cite + ' ('+self.url + ')'
+            cite = cite + ' (<a href="http://dx.doi.org/%s";>url</a>)' % 
self.url
 
         # End.
         if cite[-1] != '.':




Related Messages


Powered by MHonArc, Updated Thu Feb 11 15:20:04 2010