[issue2001] Pydoc interactive browsing enhancement

2010-11-07 Thread René Liebscher

René Liebscher r.liebsc...@gmx.de added the comment:

What about http://bugs.python.org/issue2001#msg114326 ?

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue2001
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2001] Pydoc interactive browsing enhancement

2010-08-19 Thread René Liebscher

Changes by René Liebscher r.liebsc...@gmx.de:


--
nosy: +r.liebscher

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue2001
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue902061] pydoc insists upon producing file: URLs

2008-10-29 Thread René Liebscher

René Liebscher [EMAIL PROTECTED] added the comment:

I would like to see this change introducing a method of class HTMLDoc.

It has already some such methods as:

def namelink(self, name, *dicts):
def classlink(self, object, modname):
def modulelink(self, object):
def modpkglink(self, data):

So it would be logically to make it a method 
 
def filelink(self,url,path):
 Make a link to source file.
 return 'a href=file:%s%s/a' % (url, path)
 
and changing the creating of the filelink to
...
filelink = self.filelink(url, path)
 except TypeError:
filelink = '(built-in)'
...

This way one can easily subclass HTMLDoc for own purposes and define a
own filelink method.

--
nosy: +r.liebscher

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue902061
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com