README
上传用户:seven77cht
上传日期:2007-01-04
资源大小:486k
文件大小:3k
源码类别:

浏览器

开发平台:

Unix_Linux

  1.                         WWWOFFLE MESSAGES - Version 2.3e
  2.                         ================================
  3. The HTML pages that WWWOFFLE generates are now contained in this directory.
  4. Description of Pages
  5. --------------------
  6. The pages that are in this directory are the messages that are generated by
  7. WWWOFFLE itself.
  8. All of the pages that it generates are customisable apart from:
  9.     The body of the index pages.
  10. The files in this directory all correspond to one message apart from those that
  11. are named *-Head.html, *-Body.html or *-Tail.html, these are parts of a page
  12. that are assembled with others to create the whole page.
  13. Writing Pages
  14. -------------
  15. If you modify these pages for your own use then please bear in mind the
  16. following points:
  17.     The name wwwoffle should appear clearly somewhere on the page.
  18.     The wwwoffle URL interface is likely to change between versions.
  19.     Keep to the HTML specification (see http://www.w3.org/).
  20.     The files must be in UNIX format, not MS-DOS format (LF not CRLF).
  21. If you generate some pages that you would like to see included into the next
  22. version of wwwoffle, please tell me.  In fact, you might want to tell me before
  23. you start since there may others aiming for the same target.  Do not send me the
  24. pages unless asked, since they can be quite large.
  25. I am interested in including the following types of pages in future:
  26.     Translations
  27.         German [most popular country according to e-mail received]
  28.         Other European (FR,IT,ES..)
  29.         Other (PL?)
  30.     Enhanced versions
  31.         Images
  32.         Javascript
  33.         More helpful (link to help pages/FAQ in case of error?)
  34. I can make these available from the wwwoffle web-page if they are approved, and
  35. also in the next version.
  36. Parsing Rules
  37. -------------
  38. The parser is a very simple micro language (too simple to be a macro language!).
  39. The rules that are obeyed are the following:
  40. Class-1
  41. $foo                    - Replaced by the contents of the variable foo.
  42. Class-2
  43. $foo=bar                - Set the variable foo to the value 'bar'.
  44. $foo="bar 1"            - Set the variable foo to the value 'bar 1'.
  45. $foo='bar 2'            - Set the variable foo to the value 'bar 2'.
  46. $foo=$bar               - Set the variable foo to the value of the variable bar.
  47. Class-3
  48. $foo?{yes}{no}          - Replaced by 'yes' if $foo is set or 'no' if it is not.
  49. $foo?=bar{yes}{no}      - Replaced by 'yes' if $foo == bar or 'no' if it is not.
  50. The variable names are not case sensitive, the rest of it is.
  51. The Class-1 construct may be used within the Class-2 construct.
  52. The Class-1 and Class-2 constructs can be used within a Class-3 construct.
  53. The Class-3 construct cannot be nested.
  54. The characters { and } must be quoted as { and } in the Class-2 and Class-3
  55. constructs.
  56. The characters ' and " must be quoted if used within a Class-2 construct.
  57. ----------
  58. Andrew M. Bishop June 7th 1998