Imported Debian patch 0.13.1-3
[pkg-lisaac.git] / shorter / html_raw.li
blobbbeb4f5d68655475b31fd2e9c605b9e3dd728139
1   - type_file := ".html";
3   - begin :=
4   "<!DOCTYPE HTML SYSTEM>\n\
5   \<!-- Generated by Lisaac shorter / html style -->\n\
6   \<html>\n\
7   \<head>\n\
8   \<title>\n\
9   \Lisaac prototype interface\n\
10   \</title>\n\
11   \</head>\n\
12   \<body BGCOLOR=\"#FFFFFF\">\n\
13   \<pre>\n";
14   
15   - end :=    
16   "\n</body>\n\
17   \</html>\n";
18   
19   - keyword := 
20   "<strong><font color=\"#A020F0\">" + token + "</font></strong>";
22   - keyword_section := 
23   "<strong><font color=\"#A020F0\">" + token + "</font></strong>";
24   
25   - integer := 
26   "<font color=\"#A020F0\">" + token + "</font>";
27   
28   - character := 
29   "<font color=\"#5F9EA0\">" + token + "</font>";
30   
31   - string :=
32   "<font color=\"#BC8F8F\">" + token + "</font>";
33   
34   - operator :=
35   "<font color=\"#B8860B\">" + token + "</font>";
36   
37   - keyprototype :=
38   "<font color=\"#008000\">"+token+"</font>";
40   - prototype :=
41   "<a href=\"" + token + ".html\">\
42   \<font color=\"#008000\">"+token+"</font></a>";
43   
44   - comment_header_line :=
45   "<em><font color=\"#FF0000\">//" + token + "</font></em>";
47   - comment_line :=
48   "<em><font color=\"#FF0000\">//" + token + "</font></em>";
50   - comment_slot_line :=
51   "<em><font color=\"#FF0000\">//" + token + "</font></em>";
52   
53   - french := 
54   "<em><font color=\"#FF0FF0\">//" + token + "</font></em>";
56   - english := 
57   "<em><font color=\"#8080FF\">//" + token + "</font></em>";
58   
59   - greek := 
60   "<em><font color=\"#808000\">//" + token + "</font></em>";
62   - comment := 
63   "<em><font color=\"#5F9EA0\">" + token + "</font></em>";
64   
65   - slot := 
66   "<strong><font color=\"#0000FF\">" + token + "</font></strong>";
68   - slot_call := 
69   "<font color=\"#0000FF\">" + token + "</font>";
70   
71   - slot_style :=
72   "<strong><font color=\"#FF0000\">" + token + "</font></strong>";
73   
74   - block := 
75   "<font color=\"#FF0000\">" + token + "</font>";  
76   
77   - external := 
78   "<em><strong><font color=\"#A4DEA4\">" + token + "</font></strong></em>";
79   
80   //
81   // Recursive Option.
82   //
83   
84   - index :=
85   "<html><head><title>Lisaac Documentation</title></head>\n\
86   \<frameset cols=\"260,*\" border=\"3\" frameborder=\"yes\" \
87   \framespacing=\"5\" scrolling=\"auto\">\n\
88   \  <frameset rows=\"30%,*\" border=\"3\" frameborder=\"yes\" \
89   \framespacing=\"5\" scrolling=\"no\">\n\
90   \   <frame src=\"directory_list.html\" frameborder=\"yes\" scrolling=\"auto\">\n\
91   \   <frame src=\"file_list.html\"      frameborder=\"yes\" scrolling=\"auto\" \
92   \name=\"file\">\n\
93   \  </frameset>\n\
94   \  <frame src=\"default.html\" name=\"content\">\n\
95   \</frameset>\n\
96   \<noframes>\n\
97   \<h3>Frame Error</h3>\n\
98   \<p>This web site works only with frames.</p>\n\
99   \</noframes>\n\
100   \</html>\n";  
101   
102   - default := 
103   "<html><head><title>Proto</title></head>\n\
104   \<body bgcolor=\"red\">\n\
105   \Content proto documentation.\n\
106   \</body>\n\
107   \</html>\n";
109   - directory_list_begin :=
110   "<html><head><title>List Directories</title></head>\n\
111   \<body bgcolor=\"#FFFFFF\">\n\
112   \<a href=\"file_list.html\" target=\"file\">All</a>\n";
113   
114   - directory_list_item :=
115   "<br><a href=\""+token+".html\" target=\"file\">"+token+"</a>\n";
116   
117   - directory_list_end := 
118   "</body>\n\
119   \</html>";
121   - file_list_begin :=
122   "<html><head><title>All Files</title></head>\n\
123   \<body bgcolor=\"#F0F0FF\" link=\"black\" vlink=\"black\">\n";
124   
125   - file_list_item :=
126   "<br><a href=\""+token+".html\" target=\"content\">"+token+"</a>\n";
127   
128   - file_list_end :=
129   "</body>\n\
130   \</html>";
131