Changeset 1279
- Timestamp:
- 03/18/10 15:27:22 (23 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
glossary.c (modified) (2 diffs)
-
main.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/glossary.c
r1278 r1279 53 53 void htmlGlossary(void) 54 54 { 55 Header_ism3(":: Glossary",0); 55 printf("Content-type: text/html\n\n"); 56 StyleSheet(); 57 printf("<title>%s Glossary Entry</title>\n",cLabel); 56 58 htmlGlossaryPage(); 57 Footer_ism3();59 exit(0); 58 60 59 61 }//void htmlGlossary(void) … … 62 64 void htmlGlossaryPage(void) 63 65 { 64 printf("<fieldset><legend><b>%s Glossary Entry</b>\n" 65 "<table>\n" 66 "<tr><td>%s</td></tr>\n" 67 "</table>\n", 66 printf("<b>%s Glossary Entry</b><br><br>\n" 67 "%s", 68 68 cLabel 69 69 ,cText -
trunk/main.c
r1277 r1279 500 500 if(js) 501 501 jsCalendarHeader(); 502 502 503 printf("<script language='JavaScript' src='/css/popups.js'></script>\n"); 503 504 printf("</head><body><form action=unxsVZ.cgi method=post><blockquote>\n"); 504 505 printf("<img src=/images/unxslogo.gif> \n"); … … 1144 1145 void OpenRow(const char *cFieldLabel, const char *cColor) 1145 1146 { 1146 printf("<tr><td width=20%% valign=top><font color=%.32s>%.32s</td><td>",cColor,cFieldLabel); 1147 printf("<tr><td width=20%% valign=top><a class=darkLink " 1148 "href=# onClick=\"open_popup('?gcFunction=Glossary&cLabel=%2$s')\">" 1149 "<font color=%1$s>%2$s</font></td><td>",cColor,cFieldLabel); 1147 1150 1148 1151 }//void OpenRow()
