mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-17 21:01:00 +00:00
Updated support URL.
This commit is contained in:
parent
51086eadac
commit
3ecfb4a67b
5 changed files with 10 additions and 10 deletions
|
|
@ -40,6 +40,7 @@ HtmlCopyright = u"Copyright © 2000-2010 "+HtmlAuthor
|
|||
AppInfo = App+u" "+Copyright
|
||||
HtmlAppInfo = App+u", "+HtmlCopyright
|
||||
Url = configdata.url
|
||||
SupportUrl = u"http://sourceforge.net/projects/linkchecker/support"
|
||||
Email = configdata.author_email
|
||||
UserAgent = u"%s/%s (+%s)" % (AppName, Version, Url)
|
||||
Freeware = AppName+u""" comes with ABSOLUTELY NO WARRANTY!
|
||||
|
|
|
|||
|
|
@ -69,9 +69,8 @@ def internal_error (out=stderr):
|
|||
print >> out, _("""********** Oops, I did it again. *************
|
||||
|
||||
You have found an internal error in LinkChecker. Please write a bug report
|
||||
at http://sourceforge.net/tracker/?func=add&group_id=1913&atid=101913
|
||||
or send mail to linkchecker-user@lists.sourceforge.net and include the
|
||||
following information:
|
||||
at %s
|
||||
and include the following information:
|
||||
- the URL or file you are testing
|
||||
- your commandline arguments and/or configuration.
|
||||
- the output of a debug run with option "-Dall" of the executed command
|
||||
|
|
@ -80,7 +79,7 @@ following information:
|
|||
Not disclosing some of the information above due to privacy reasons is ok.
|
||||
I will try to help you nonetheless, but you have to give me something
|
||||
I can work with ;) .
|
||||
""")
|
||||
""") % configuration.SupportUrl
|
||||
etype, value = sys.exc_info()[:2]
|
||||
print >> out, etype, value
|
||||
traceback.print_exc()
|
||||
|
|
|
|||
|
|
@ -270,8 +270,8 @@ class Logger (object):
|
|||
"time": strformat.strtime(self.starttime)})
|
||||
self.comment(_("Get the newest version at %(url)s") %
|
||||
{'url': configuration.Url})
|
||||
self.comment(_("Write comments and bugs to %(email)s") %
|
||||
{'email': configuration.Email})
|
||||
self.comment(_("Write comments and bugs to %(url)s") %
|
||||
{'url': configuration.SupportUrl})
|
||||
self.check_date()
|
||||
|
||||
def write_outro (self):
|
||||
|
|
|
|||
|
|
@ -311,7 +311,7 @@ class HtmlLogger (Logger):
|
|||
(u'<a href="'+configuration.Url+u'" target="_top">'+
|
||||
configuration.Url+u"</a>.<br>"))
|
||||
self.writeln(_("Write comments and bugs to %s") %
|
||||
(u'<a href="mailto:'+configuration.Email+u'">'+
|
||||
configuration.Email+u"</a>."))
|
||||
(u'<a href="'+configuration.SupportUrl+u'">'+
|
||||
configuration.SupportUrl+u"</a>."))
|
||||
self.writeln(u"</small></body></html>")
|
||||
self.close_fileoutput()
|
||||
|
|
|
|||
|
|
@ -99,8 +99,8 @@ class TextLogger (Logger):
|
|||
self.writeln(configuration.Freeware)
|
||||
self.writeln(_("Get the newest version at %(url)s") %
|
||||
{'url': configuration.Url})
|
||||
self.writeln(_("Write comments and bugs to %(email)s") %
|
||||
{'email': configuration.Email})
|
||||
self.writeln(_("Write comments and bugs to %(url)s") %
|
||||
{'url': configuration.SupportUrl})
|
||||
self.check_date()
|
||||
self.writeln()
|
||||
self.writeln(_("Start checking at %s") %
|
||||
|
|
|
|||
Loading…
Reference in a new issue