~ubuntu-branches/ubuntu/karmic/linkchecker/karmic

« back to all changes in this revision

Viewing changes to linkcheck/configuration/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Ebner
  • Date: 2008-04-26 08:29:53 UTC
  • mfrom: (1.3.1 upstream) (2.1.3 lenny)
  • Revision ID: james.westby@ubuntu.com-20080426082953-3zqaicgg6lp4fuj0
Tags: 4.9-1ubuntu1
* Merge from Debian unstable. (LP: #225630) Remaining Ubuntu changes:
  - Drop dependency on versioned python package.
  - Modify Maintainer value to match Debian-Maintainer-Field Spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# -*- coding: iso-8859-1 -*-
2
 
# Copyright (C) 2000-2007 Bastian Kleineidam
 
2
# Copyright (C) 2000-2008 Bastian Kleineidam
3
3
#
4
4
# This program is free software; you can redistribute it and/or modify
5
5
# it under the terms of the GNU General Public License as published by
32
32
App = AppName+u" "+Version
33
33
Author =  _linkchecker_configdata.author
34
34
HtmlAuthor = Author.replace(u' ', u' ')
35
 
Copyright = u"Copyright (C) 2000-2007 "+Author
36
 
HtmlCopyright = u"Copyright © 2000-2007 "+HtmlAuthor
 
35
Copyright = u"Copyright (C) 2000-2008 "+Author
 
36
HtmlCopyright = u"Copyright © 2000-2008 "+HtmlAuthor
37
37
AppInfo = App+u"              "+Copyright
38
38
HtmlAppInfo = App+u", "+HtmlCopyright
39
39
Url = _linkchecker_configdata.url
145
145
        self["threads"] = 10
146
146
        # socket timeout in seconds
147
147
        self["timeout"] = 60
 
148
        self["checkhtml"] = False
 
149
        self["checkcss"] = False
148
150
 
149
151
    def init_logging (self, debug=None):
150
152
        """