changeset 66:59eb24184e9c trunk

Switch copyright to Edgewall and URLs to markup.edgewall.org.
author cmlenz
date Sun, 09 Jul 2006 17:46:12 +0000
parents b3fdf93057ab
children b2886e53aa64
files markup/__init__.py markup/builder.py markup/core.py markup/eval.py markup/filters.py markup/input.py markup/output.py markup/path.py markup/plugin.py markup/template.py markup/tests/__init__.py markup/tests/builder.py markup/tests/core.py markup/tests/eval.py markup/tests/input.py markup/tests/output.py markup/tests/path.py markup/tests/template.py setup.cfg setup.py
diffstat 20 files changed, 61 insertions(+), 65 deletions(-) [+]
line wrap: on
line diff
--- a/markup/__init__.py
+++ b/markup/__init__.py
@@ -1,15 +1,15 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2006 Christopher Lenz
+# Copyright (C) 2006 Edgewall Software
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
 # you should have received as part of this distribution. The terms
-# are also available at http://markup.cmlenz.net/wiki/License.
+# are also available at http://markup.edgewall.org/wiki/License.
 #
 # This software consists of voluntary contributions made by many
 # individuals. For the exact contribution history, see the revision
-# history and logs, available at http://markup.cmlenz.net/log/.
+# history and logs, available at http://markup.edgewall.org/log/.
 
 """This package provides various means for generating and processing web markup
 (XML or HTML).
--- a/markup/builder.py
+++ b/markup/builder.py
@@ -1,15 +1,15 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2006 Christopher Lenz
+# Copyright (C) 2006 Edgewall Software
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
 # you should have received as part of this distribution. The terms
-# are also available at http://markup.cmlenz.net/wiki/License.
+# are also available at http://markup.edgewall.org/wiki/License.
 #
 # This software consists of voluntary contributions made by many
 # individuals. For the exact contribution history, see the revision
-# history and logs, available at http://markup.cmlenz.net/log/.
+# history and logs, available at http://markup.edgewall.org/log/.
 
 from markup.core import Attributes, Namespace, QName, Stream
 
--- a/markup/core.py
+++ b/markup/core.py
@@ -1,15 +1,15 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2006 Christopher Lenz
+# Copyright (C) 2006 Edgewall Software
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
 # you should have received as part of this distribution. The terms
-# are also available at http://markup.cmlenz.net/wiki/License.
+# are also available at http://markup.edgewall.org/wiki/License.
 #
 # This software consists of voluntary contributions made by many
 # individuals. For the exact contribution history, see the revision
-# history and logs, available at http://markup.cmlenz.net/log/.
+# history and logs, available at http://markup.edgewall.org/log/.
 
 """Core classes for markup processing."""
 
--- a/markup/eval.py
+++ b/markup/eval.py
@@ -1,15 +1,15 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2006 Christopher Lenz
+# Copyright (C) 2006 Edgewall Software
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
 # you should have received as part of this distribution. The terms
-# are also available at http://markup.cmlenz.net/wiki/License.
+# are also available at http://markup.edgewall.org/wiki/License.
 #
 # This software consists of voluntary contributions made by many
 # individuals. For the exact contribution history, see the revision
-# history and logs, available at http://markup.cmlenz.net/log/.
+# history and logs, available at http://markup.edgewall.org/log/.
 
 """Support for "safe" evaluation of Python expressions."""
 
--- a/markup/filters.py
+++ b/markup/filters.py
@@ -1,15 +1,15 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2006 Christopher Lenz
+# Copyright (C) 2006 Edgewall Software
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
 # you should have received as part of this distribution. The terms
-# are also available at http://markup.cmlenz.net/wiki/License.
+# are also available at http://markup.edgewall.org/wiki/License.
 #
 # This software consists of voluntary contributions made by many
 # individuals. For the exact contribution history, see the revision
-# history and logs, available at http://markup.cmlenz.net/log/.
+# history and logs, available at http://markup.edgewall.org/log/.
 
 """Implementation of a number of stream filters."""
 
--- a/markup/input.py
+++ b/markup/input.py
@@ -1,15 +1,15 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2006 Christopher Lenz
+# Copyright (C) 2006 Edgewall Software
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
 # you should have received as part of this distribution. The terms
-# are also available at http://markup.cmlenz.net/wiki/License.
+# are also available at http://markup.edgewall.org/wiki/License.
 #
 # This software consists of voluntary contributions made by many
 # individuals. For the exact contribution history, see the revision
-# history and logs, available at http://markup.cmlenz.net/log/.
+# history and logs, available at http://markup.edgewall.org/log/.
 
 from xml.parsers import expat
 try:
--- a/markup/output.py
+++ b/markup/output.py
@@ -1,15 +1,15 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2006 Christopher Lenz
+# Copyright (C) 2006 Edgewall Software
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
 # you should have received as part of this distribution. The terms
-# are also available at http://markup.cmlenz.net/wiki/License.
+# are also available at http://markup.edgewall.org/wiki/License.
 #
 # This software consists of voluntary contributions made by many
 # individuals. For the exact contribution history, see the revision
-# history and logs, available at http://markup.cmlenz.net/log/.
+# history and logs, available at http://markup.edgewall.org/log/.
 
 """This module provides different kinds of serialization methods for XML event
 streams.
--- a/markup/path.py
+++ b/markup/path.py
@@ -1,15 +1,15 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2006 Christopher Lenz
+# Copyright (C) 2006 Edgewall Software
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
 # you should have received as part of this distribution. The terms
-# are also available at http://markup.cmlenz.net/wiki/License.
+# are also available at http://markup.edgewall.org/wiki/License.
 #
 # This software consists of voluntary contributions made by many
 # individuals. For the exact contribution history, see the revision
-# history and logs, available at http://markup.cmlenz.net/log/.
+# history and logs, available at http://markup.edgewall.org/log/.
 
 """Basic support for evaluating XPath expressions against streams."""
 
--- a/markup/plugin.py
+++ b/markup/plugin.py
@@ -1,16 +1,16 @@
 # -*- coding: utf-8 -*-
 #
+# Copyright (C) 2006 Edgewall Software
 # Copyright (C) 2006 Matthew Good
-# Copyright (C) 2006 Christopher Lenz
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
 # you should have received as part of this distribution. The terms
-# are also available at http://markup.cmlenz.net/wiki/License.
+# are also available at http://markup.edgewall.org/wiki/License.
 #
 # This software consists of voluntary contributions made by many
 # individuals. For the exact contribution history, see the revision
-# history and logs, available at http://markup.cmlenz.net/log/.
+# history and logs, available at http://markup.edgewall.org/log/.
 
 """Basic support for the template engine plugin API used by TurboGears and
 CherryPy/Buffet.
--- a/markup/template.py
+++ b/markup/template.py
@@ -1,15 +1,15 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2006 Christopher Lenz
+# Copyright (C) 2006 Edgewall Software
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
 # you should have received as part of this distribution. The terms
-# are also available at http://markup.cmlenz.net/wiki/License.
+# are also available at http://markup.edgewall.org/wiki/License.
 #
 # This software consists of voluntary contributions made by many
 # individuals. For the exact contribution history, see the revision
-# history and logs, available at http://markup.cmlenz.net/log/.
+# history and logs, available at http://markup.edgewall.org/log/.
 
 """Template engine that is compatible with Kid (http://kid.lesscode.org) to a
 certain extent.
@@ -704,7 +704,8 @@
                     cls = self._dir_by_name.get(tag.localname)
                     if cls is None:
                         raise BadDirectiveError(tag, pos[0], pos[1])
-                    directives.append(cls(attrib.get(getattr(cls, 'ATTRIBUTE', None), '')))
+                    value = attrib.get(getattr(cls, 'ATTRIBUTE', None), '')
+                    directives.append(cls(value))
                     strip = True
 
                 new_attrib = []
--- a/markup/tests/__init__.py
+++ b/markup/tests/__init__.py
@@ -1,15 +1,15 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2006 Christopher Lenz
+# Copyright (C) 2006 Edgewall Software
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
 # you should have received as part of this distribution. The terms
-# are also available at http://markup.cmlenz.net/wiki/License.
+# are also available at http://markup.edgewall.org/wiki/License.
 #
 # This software consists of voluntary contributions made by many
 # individuals. For the exact contribution history, see the revision
-# history and logs, available at http://markup.cmlenz.net/log/.
+# history and logs, available at http://markup.edgewall.org/log/.
 
 import doctest
 import unittest
--- a/markup/tests/builder.py
+++ b/markup/tests/builder.py
@@ -1,15 +1,15 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2006 Christopher Lenz
+# Copyright (C) 2006 Edgewall Software
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
 # you should have received as part of this distribution. The terms
-# are also available at http://markup.cmlenz.net/wiki/License.
+# are also available at http://markup.edgewall.org/wiki/License.
 #
 # This software consists of voluntary contributions made by many
 # individuals. For the exact contribution history, see the revision
-# history and logs, available at http://markup.cmlenz.net/log/.
+# history and logs, available at http://markup.edgewall.org/log/.
 
 import doctest
 from HTMLParser import HTMLParseError
--- a/markup/tests/core.py
+++ b/markup/tests/core.py
@@ -1,15 +1,15 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2006 Christopher Lenz
+# Copyright (C) 2006 Edgewall Software
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
 # you should have received as part of this distribution. The terms
-# are also available at http://markup.cmlenz.net/wiki/License.
+# are also available at http://markup.edgewall.org/wiki/License.
 #
 # This software consists of voluntary contributions made by many
 # individuals. For the exact contribution history, see the revision
-# history and logs, available at http://markup.cmlenz.net/log/.
+# history and logs, available at http://markup.edgewall.org/log/.
 
 import doctest
 import unittest
--- a/markup/tests/eval.py
+++ b/markup/tests/eval.py
@@ -1,15 +1,15 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2006 Christopher Lenz
+# Copyright (C) 2006 Edgewall Software
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
 # you should have received as part of this distribution. The terms
-# are also available at http://markup.cmlenz.net/wiki/License.
+# are also available at http://markup.edgewall.org/wiki/License.
 #
 # This software consists of voluntary contributions made by many
 # individuals. For the exact contribution history, see the revision
-# history and logs, available at hhttp://markup.cmlenz.net/log/.
+# history and logs, available at hhttp://markup.edgewall.org/log/.
 
 import doctest
 import unittest
--- a/markup/tests/input.py
+++ b/markup/tests/input.py
@@ -1,15 +1,15 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2006 Christopher Lenz
+# Copyright (C) 2006 Edgewall Software
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
 # you should have received as part of this distribution. The terms
-# are also available at http://markup.cmlenz.net/wiki/License.
+# are also available at http://markup.edgewall.org/wiki/License.
 #
 # This software consists of voluntary contributions made by many
 # individuals. For the exact contribution history, see the revision
-# history and logs, available at http://markup.cmlenz.net/log/.
+# history and logs, available at http://markup.edgewall.org/log/.
 
 import doctest
 import unittest
--- a/markup/tests/output.py
+++ b/markup/tests/output.py
@@ -1,15 +1,15 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2006 Christopher Lenz
+# Copyright (C) 2006 Edgewall Software
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
 # you should have received as part of this distribution. The terms
-# are also available at http://markup.cmlenz.net/wiki/License.
+# are also available at http://markup.edgewall.org/wiki/License.
 #
 # This software consists of voluntary contributions made by many
 # individuals. For the exact contribution history, see the revision
-# history and logs, available at http://markup.cmlenz.net/log/.
+# history and logs, available at http://markup.edgewall.org/log/.
 
 import doctest
 import unittest
--- a/markup/tests/path.py
+++ b/markup/tests/path.py
@@ -1,15 +1,15 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2006 Christopher Lenz
+# Copyright (C) 2006 Edgewall Software
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
 # you should have received as part of this distribution. The terms
-# are also available at http://markup.cmlenz.net/wiki/License.
+# are also available at http://markup.edgewall.org/wiki/License.
 #
 # This software consists of voluntary contributions made by many
 # individuals. For the exact contribution history, see the revision
-# history and logs, available at http://markup.cmlenz.net/log/.
+# history and logs, available at http://markup.edgewall.org/log/.
 
 import doctest
 import unittest
--- a/markup/tests/template.py
+++ b/markup/tests/template.py
@@ -1,15 +1,15 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2006 Christopher Lenz
+# Copyright (C) 2006 Edgewall Software
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
 # you should have received as part of this distribution. The terms
-# are also available at http://markup.cmlenz.net/wiki/License.
+# are also available at http://markup.edgewall.org/wiki/License.
 #
 # This software consists of voluntary contributions made by many
 # individuals. For the exact contribution history, see the revision
-# history and logs, available at http://markup.cmlenz.net/log/.
+# history and logs, available at http://markup.edgewall.org/log/.
 
 import doctest
 import unittest
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,8 +1,3 @@
 [egg_info]
 tag_build = dev
 tag_svn_revision = true
-
-[unittest]
-xml-results = build/test-results.xml
-coverage-summary = build/test-coverage.txt
-coverage-dir = build/coverage
--- a/setup.py
+++ b/setup.py
@@ -1,24 +1,24 @@
 #!/usr/bin/env python
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2006 Christopher Lenz
+# Copyright (C) 2006 Edgewall Software
 # All rights reserved.
 #
 # This software is licensed as described in the file COPYING, which
 # you should have received as part of this distribution. The terms
-# are also available at http://markup.cmlenz.net/wiki/License.
+# are also available at http://markup.edgewall.org/wiki/License.
 #
 # This software consists of voluntary contributions made by many
 # individuals. For the exact contribution history, see the revision
-# history and logs, available at http://markup.cmlenz.net/log/.
+# history and logs, available at http://markup.edgewall.org/log/.
 
 from setuptools import setup, find_packages
 
 setup(
     name='Markup', version='0.1',
     description='Toolkit for stream-based generation of markup for the web',
-    author='Christopher Lenz', author_email='cmlenz@gmx.net',
-    license='BSD', url='http://markup.cmlenz.net/',
+    author='Edgewall Software', author_email='info@edgewall.org',
+    license='BSD', url='http://markup.edgewall.org/',
     packages=find_packages(exclude=['*.tests*']),
     test_suite = 'markup.tests.suite',
     zip_safe = True,
Copyright (C) 2012-2017 Edgewall Software