The Lurker's Guide to Babylon 5
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
498 B

17 years ago
  1. #!/usr/local/bin/python
  2. import sys,string
  3. sys.path.append('../internal')
  4. import otros
  5. curep = string.atoi(sys.argv[1])
  6. if len(sys.argv) == 3:
  7. output = otros.pageheader(curep, 'other')
  8. else:
  9. output = otros.pageheader(curep, 'guide')
  10. if len(sys.argv) != 3:
  11. output = output + """
  12. <p>
  13. <b>Contents:</b>
  14. <a href="#OV">Overview</a> -
  15. <a href="#BP">Backplot</a> -
  16. <a href="#UQ">Questions</a> -
  17. <a href="#AN">Analysis</a> -
  18. <a href="#NO">Notes</a> -
  19. <a href="#JS">JMS</a>
  20. <p>
  21. <hr>
  22. """
  23. print output