Changeset 16773


Ignore:
Timestamp:
Aug 26, 2017, 3:37:27 AM (8 years ago)
Author:
Ryan J Ollos
Message:

TracPyDoc 0.11.2: Add license info

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
     1Copyright (C) 2006 Alec Thomas
     2Copyright (C) 2006-2007 Christian Boos
    23All rights reserved.
    34
  • 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
    112from setuptools import setup
    213
    314PACKAGE = 'TracPyDoc'
    4 VERSION = '0.11.1'
     15VERSION = '0.11.2'
    516
    617setup(
     
    1526    Browse Python documentation as prepared by the pydoc system
    1627    from within Trac.""",
    17     license = "BSD",
     28    license = "3-Clause BSD",
    1829    keywords = "trac plugin python documentation pydoc",
    19     url='http://trac-hacks.swapoff.org/wiki/PyDocPlugin',
     30    url='https://trac-hacks.swapoff.org/wiki/PyDocPlugin',
    2031    packages=['tracpydoc'],
    2132    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-->
    18<!DOCTYPE html
    29    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#
    510
    611from trac.core import *
    712from trac.web.chrome import INavigationContributor, ITemplateProvider, \
    8      add_stylesheet
     13                            add_stylesheet
    914from trac.web.main import IRequestHandler
    1015from trac.util.compat import any
     16from trac.util.html import Markup, html as tag
    1117from trac.util.text import shorten_line, to_unicode
    1218from trac.wiki.api import IWikiSyntaxProvider, IWikiMacroProvider
    1319from trac.search.api import ISearchSource
    1420
    15 import inspect, os
    1621from pydoc import ispackage
    1722
     23import inspect
    1824import urllib
    1925import pydoc
Note: See TracChangeset for help on using the changeset viewer.