Changeset 1280
- Timestamp:
- 03/18/10 16:18:10 (23 months ago)
- Location:
- trunk
- Files:
-
- 4 modified
-
LICENSE (modified) (1 diff)
-
glossary.c (modified) (2 diffs)
-
tglossaryfunc.h (modified) (1 diff)
-
tpropertyfunc.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LICENSE
r1 r1280 288 288 multi-datacenter multi-node critical internet infrastructure services. 289 289 290 Copyright (C) 2001-20 09 Gary Wallis for Unixservice290 Copyright (C) 2001-2010 Gary Wallis for Unixservice, LLC. 291 291 292 292 This program is free software; you can redistribute it and/or modify -
trunk/glossary.c
r1279 r1280 4 4 $Id: glossary.c 660 2008-12-18 18:48:48Z hus $ 5 5 AUTHOR 6 (C) 2006-2010 Gary Wallis and Hugo Urquiza for Unixservice 6 (C) 2006-2010 Gary Wallis and Hugo Urquiza for Unixservice, LLC. 7 GPLv2 license applies see LICENSE file included. 7 8 PURPOSE 8 iDNS Admin (Owner) Interface, modified for backend usage 9 program file. 9 For tGlossary content html popups. 10 10 */ 11 11 … … 14 14 static char cLabel[33]={""}; 15 15 static char *cText=""; 16 17 //Protos 18 void StyleSheet(void);//main.c 16 19 17 20 // -
trunk/tglossaryfunc.h
r166 r1280 283 283 while((field=mysql_fetch_row(res))) 284 284 { 285 printf("<a class=darkLink href=unxsVZ.cgi?gcFunction=tGlossary\ 286 &uGlossary=%s>%s</a><br>\n",field[0],field[1]); 285 printf("<a class=darkLink href=unxsVZ.cgi?gcFunction=tGlossary&uGlossary=%s>%s</a>", 286 field[0],field[1]); 287 printf(" <a class=darkLink href=# onClick=\"open_popup('?gcFunction=Glossary&cLabel=%s')\">" 288 "Popup</a><br>",field[1]); 287 289 } 288 290 } -
trunk/tpropertyfunc.h
r879 r1280 668 668 if((field=mysql_fetch_row(res))) 669 669 { 670 printf("Glossary entry for <a class=darkLink href=unxsVZ.cgi?gcFunction=tGlossary" 671 "&uGlossary=%s>%s</a><p>\n",field[0],cLabel); 670 printf("Glossary entry for <a class=darkLink href=#" 671 " onClick=\"open_popup('?gcFunction=Glossary&cLabel=%1$s')\">%1$s</a><p>",cLabel); 672 672 673 } 673 674 mysql_free_result(res);
