Changeset 16773
- Timestamp:
- Aug 26, 2017, 3:37:27 AM (8 years ago)
- Location:
- pydocplugin/0.11
- Files:
-
- 3 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
pydocplugin/0.11/COPYING
r16764 r16773 1 Copyright (C) 2006-2009 Alec Thomas 1 Copyright (C) 2006 Alec Thomas 2 Copyright (C) 2006-2007 Christian Boos 2 3 All rights reserved. 3 4 -
pydocplugin/0.11/setup.py
r2011 r16773 1 #!/usr/bin/env python 2 # -*- coding: utf-8 -*- 3 # 4 # Copyright (C) 2006 Alec Thomas 5 # Copyright (C) 2006-2007 Christian Boos 6 # All rights reserved. 7 # 8 # This software is licensed as described in the file COPYING, which 9 # you should have received as part of this distribution. 10 # 11 1 12 from setuptools import setup 2 13 3 14 PACKAGE = 'TracPyDoc' 4 VERSION = '0.11. 1'15 VERSION = '0.11.2' 5 16 6 17 setup( … … 15 26 Browse Python documentation as prepared by the pydoc system 16 27 from within Trac.""", 17 license = " BSD",28 license = "3-Clause BSD", 18 29 keywords = "trac plugin python documentation pydoc", 19 url='http ://trac-hacks.swapoff.org/wiki/PyDocPlugin',30 url='https://trac-hacks.swapoff.org/wiki/PyDocPlugin', 20 31 packages=['tracpydoc'], 21 32 package_data={'tracpydoc' : ['templates/*.html', 'htdocs/css/*.css']}, -
pydocplugin/0.11/tracpydoc/templates/pydoc.html
r2012 r16773 1 <!--! 2 Copyright (C) 2006 Alec Thomas 3 Copyright (C) 2006-2007 Christian Boos 4 5 This software is licensed as described in the file COPYING, which 6 you should have received as part of this distribution. 7 --> 1 8 <!DOCTYPE html 2 9 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" -
pydocplugin/0.11/tracpydoc/tracpydoc.py
r16525 r16773 1 # Tracpydoc plugin 2 3 from genshi.builder import tag 4 from genshi.core import Markup 1 # -*- coding: utf-8 -*- 2 # 3 # Copyright (C) 2006 Alec Thomas 4 # Copyright (C) 2006-2007 Christian Boos 5 # All rights reserved. 6 # 7 # This software is licensed as described in the file COPYING, which 8 # you should have received as part of this distribution. 9 # 5 10 6 11 from trac.core import * 7 12 from trac.web.chrome import INavigationContributor, ITemplateProvider, \ 8 add_stylesheet13 add_stylesheet 9 14 from trac.web.main import IRequestHandler 10 15 from trac.util.compat import any 16 from trac.util.html import Markup, html as tag 11 17 from trac.util.text import shorten_line, to_unicode 12 18 from trac.wiki.api import IWikiSyntaxProvider, IWikiMacroProvider 13 19 from trac.search.api import ISearchSource 14 20 15 import inspect, os16 21 from pydoc import ispackage 17 22 23 import inspect 18 24 import urllib 19 25 import pydoc
Note: See TracChangeset
for help on using the changeset viewer.