author | zecke <zecke> | 2003-05-17 13:29:50 (UTC) |
---|---|---|
committer | zecke <zecke> | 2003-05-17 13:29:50 (UTC) |
commit | bc581ecfb47325fc6b8c8558b596f643002401b6 (patch) (unidiff) | |
tree | ea0d48bec465066c7726db488dbddb4b52e3dec6 /scripts/mkHelpSkeleton | |
parent | 6e3480b56d8962592e946f779ed9249749cf8dbb (diff) | |
download | opie-bc581ecfb47325fc6b8c8558b596f643002401b6.zip opie-bc581ecfb47325fc6b8c8558b596f643002401b6.tar.gz opie-bc581ecfb47325fc6b8c8558b596f643002401b6.tar.bz2 |
executable and not opie-executable
DOCTYPE is too much for QTextView
-rwxr-xr-x | scripts/mkHelpSkeleton | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/scripts/mkHelpSkeleton b/scripts/mkHelpSkeleton index ffb21c2..d7914fe 100755 --- a/scripts/mkHelpSkeleton +++ b/scripts/mkHelpSkeleton | |||
@@ -1,7 +1,7 @@ | |||
1 | #!/usr/bin/env python | 1 | #!/usr/bin/env python |
2 | """ | 2 | """ |
3 | This skript creates a help skeleton for a certain application | 3 | This skript creates a help skeleton for a certain application |
4 | (C) Michael 'Mickey' Lauer who did this even if he had a lot of other stuff to do... | 4 | (C) Michael 'Mickey' Lauer who did this even if he had a lot of other stuff to do... THANKS |
5 | """ | 5 | """ |
6 | 6 | ||
7 | import os | 7 | import os |
@@ -49,12 +49,10 @@ def doit( name, cc ): | |||
49 | def makehtml( directory, application, cc, desktop ): | 49 | def makehtml( directory, application, cc, desktop ): |
50 | """Creates the help template file.""" | 50 | """Creates the help template file.""" |
51 | 51 | ||
52 | helpfilename = "%s/opie-%s.html" % ( directory, application ) | 52 | helpfilename = "%s/%s.html" % ( directory, application ) |
53 | print "Creating help file '%s'" % helpfilename | 53 | print "Creating help file '%s'" % helpfilename |
54 | h = file( helpfilename, "w" ) | 54 | h = file( helpfilename, "w" ) |
55 | print >> h, """ | 55 | print >> h, """<html> <head> <title>%s</title> </head> |
56 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"> | ||
57 | <html> <head> <title>%s</title> </head> | ||
58 | <body> | 56 | <body> |
59 | <center><h1>%s</h1></center> | 57 | <center><h1>%s</h1></center> |
60 | <hr> | 58 | <hr> |
@@ -70,7 +68,7 @@ def makecontrol( directory, application, cc, desktop ): | |||
70 | print "Creating control file '%s'" % controlfilename | 68 | print "Creating control file '%s'" % controlfilename |
71 | c = file( controlfilename, "w" ) | 69 | c = file( controlfilename, "w" ) |
72 | print >> c, "Package: opie-%s-help-%s" % ( application, cc ) | 70 | print >> c, "Package: opie-%s-help-%s" % ( application, cc ) |
73 | print >> c, "Files: help/%s/html/opie-%s.html help/%s/html/%s" % ( cc, application, cc, application ) | 71 | print >> c, "Files: help/%s/html/%s.html help/%s/html/%s" % ( cc, application, cc, application ) |
74 | print >> c, "Priority: optional" | 72 | print >> c, "Priority: optional" |
75 | print >> c, "Section: opie/onlinedoc" | 73 | print >> c, "Section: opie/onlinedoc" |
76 | print >> c, "Maintainer: %s" % desktop.get( "Maintainer", "Team Opie <opie@handhelds.org>" ) | 74 | print >> c, "Maintainer: %s" % desktop.get( "Maintainer", "Team Opie <opie@handhelds.org>" ) |