Changeset 6067 for xmlrpcplugin/trunk


Ignore:
Timestamp:
Jun 20, 2009, 5:27:51 PM (14 years ago)
Author:
osimons
Message:

XmlRpcPlugin: Adding formalities following change in maintainership, and also some more license information as requested by various.

Location:
xmlrpcplugin/trunk
Files:
1 added
11 edited

Legend:

Unmodified
Added
Removed
  • xmlrpcplugin/trunk/setup.py

    r6065 r6067  
    11#!/usr/bin/env python
     2"""
     3License: BSD
     4
     5(c) 2005-2008 ::: Alec Thomas (alec@swapoff.org)
     6(c) 2009      ::: www.CodeResort.com - BV Network AS (simon-code@bvnetwork.no)
     7"""
    28
    39from setuptools import setup, find_packages
     
    713    version='1.0.5',
    814    license='BSD',
    9     author='Alec Thomas',
    10     author_email='alec@swapoff.org',
     15    author='Odd Simon Simonsen (maintainer)',
     16    author_email='simon-code@bvnetwork.no',
    1117    url='http://trac-hacks.org/wiki/XmlRpcPlugin',
    1218    description='XML-RPC interface to Trac',
  • xmlrpcplugin/trunk/tracrpc/__init__.py

    r2624 r6067  
     1# -*- coding: utf-8 -*-
     2"""
     3License: BSD
     4
     5(c) 2005-2008 ::: Alec Thomas (alec@swapoff.org)
     6(c) 2009      ::: www.CodeResort.com - BV Network AS (simon-code@bvnetwork.no)
     7"""
     8
    19from tracrpc.api import *
    210from tracrpc.web_ui import *
     
    513from tracrpc.search import *
    614
    7 __author__ = 'Alec Thomas <alec@swapoff.org>'
     15__author__ = 'Odd Simon Simonsen (maintainer) <simon-code@bvnetwork.no>'
    816__license__ = 'BSD'
    917
  • xmlrpcplugin/trunk/tracrpc/api.py

    r6065 r6067  
     1# -*- coding: utf-8 -*-
     2"""
     3License: BSD
     4
     5(c) 2005-2008 ::: Alec Thomas (alec@swapoff.org)
     6(c) 2009      ::: www.CodeResort.com - BV Network AS (simon-code@bvnetwork.no)
     7"""
     8
    19from trac.core import *
    210from trac.perm import IPermissionRequestor
  • xmlrpcplugin/trunk/tracrpc/search.py

    r6054 r6067  
     1# -*- coding: utf-8 -*-
     2"""
     3License: BSD
     4
     5(c) 2005-2008 ::: Alec Thomas (alec@swapoff.org)
     6(c) 2009      ::: www.CodeResort.com - BV Network AS (simon-code@bvnetwork.no)
     7"""
     8
    19from trac.core import *
    210from tracrpc.api import IXMLRPCHandler
  • xmlrpcplugin/trunk/tracrpc/tests/__init__.py

    r6065 r6067  
     1# -*- coding: utf-8 -*-
     2"""
     3License: BSD
     4
     5(c) 2009      ::: www.CodeResort.com - BV Network AS (simon-code@bvnetwork.no)
     6"""
     7
    18import unittest
    29import os
  • xmlrpcplugin/trunk/tracrpc/tests/json.py

    r6065 r6067  
     1# -*- coding: utf-8 -*-
     2"""
     3License: BSD
     4
     5(c) 2009      ::: www.CodeResort.com - BV Network AS (simon-code@bvnetwork.no)
     6"""
     7
    18import unittest
    29import os
  • xmlrpcplugin/trunk/tracrpc/tests/ticket.py

    r6064 r6067  
     1# -*- coding: utf-8 -*-
     2"""
     3License: BSD
     4
     5(c) 2009      ::: www.CodeResort.com - BV Network AS (simon-code@bvnetwork.no)
     6"""
     7
    18import unittest
    29
  • xmlrpcplugin/trunk/tracrpc/ticket.py

    r6063 r6067  
     1# -*- coding: utf-8 -*-
     2"""
     3License: BSD
     4
     5(c) 2005-2008 ::: Alec Thomas (alec@swapoff.org)
     6(c) 2009      ::: www.CodeResort.com - BV Network AS (simon-code@bvnetwork.no)
     7"""
     8
    19from trac.attachment import Attachment
    210from trac.core import *
  • xmlrpcplugin/trunk/tracrpc/util.py

    r6054 r6067  
     1# -*- coding: utf-8 -*-
     2"""
     3License: BSD
     4
     5(c) 2005-2008 ::: Alec Thomas (alec@swapoff.org)
     6(c) 2009      ::: www.CodeResort.com - BV Network AS (simon-code@bvnetwork.no)
     7"""
     8
    19import datetime
    210import time
  • xmlrpcplugin/trunk/tracrpc/web_ui.py

    r6065 r6067  
     1# -*- coding: utf-8 -*-
     2"""
     3License: BSD
     4
     5(c) 2005-2008 ::: Alec Thomas (alec@swapoff.org)
     6(c) 2009      ::: www.CodeResort.com - BV Network AS (simon-code@bvnetwork.no)
     7"""
     8
    19import re
    210import xmlrpclib
  • xmlrpcplugin/trunk/tracrpc/wiki.py

    r6063 r6067  
     1# -*- coding: utf-8 -*-
     2"""
     3License: BSD
     4
     5(c) 2005-2008 ::: Alec Thomas (alec@swapoff.org)
     6(c) 2009      ::: www.CodeResort.com - BV Network AS (simon-code@bvnetwork.no)
     7"""
     8
    19try:
    210    from cStringIO import StringIO
Note: See TracChangeset for help on using the changeset viewer.