- Timestamp:
- 12/18/07 20:49:53 (17 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8793 r8794 18 18 19 19 -*-*- END OF LINE -*-*- 20 21 2007/12/18 Daniela Dorner 22 23 * datacenter/db/showplots-seq.php, datacenter/db/showplots-ds.php, 24 datacenter/db/showplots.php, datacenter/db/plotinclude.php: 25 - implemented function to print home- and help-link 26 - adapted home- and help-link 27 28 * datacenter/db/index-header.html: 29 - adapted links (H->Home, Docu->Help) 30 31 20 32 21 33 2007/12/17 Daniela Dorner -
trunk/MagicSoft/Mars/datacenter/db/index-header.html
r8791 r8794 28 28 <font size='+1'><B>Magic Database</B></font><BR> 29 29 <hr SIZE=1 NOSHADE WIDTH="80%"> 30 <A HREF="http://www.astro.uni-wuerzburg.de/wiki/Database_Websites">H </A> 31 <A HREF="http://www.astro.uni-wuerzburg.de/wiki/Database_Tutorial"> Docu</A> 30 <A HREF="http://www.astro.uni-wuerzburg.de/wiki/Database_Websites">Home</A> 31 <A HREF="http://www.astro.uni-wuerzburg.de/wiki/Database_Tutorial">Help</A> 32 32 <A HREF="printtable.php?fTable=MarsVersion">Mars</A> 33 33 <A HREF="plotdb.php">Plots</A> -
trunk/MagicSoft/Mars/datacenter/db/plotinclude.php
r8599 r8794 198 198 } 199 199 200 function PrintHomeHelp() 201 { 202 printf("<td valign='top'>\n"); 203 printf("<a href='http://www.astro.uni-wuerzburg.de/wiki/Database_Websites'>home</a>\n"); 204 printf("<a href='http://www.astro.uni-wuerzburg.de/wiki/Database_Tutorial#showplots:_calib.2C_signal.2C_star'>help</a>\n"); 205 printf("</td>\n"); 206 } 207 208 200 209 ?> -
trunk/MagicSoft/Mars/datacenter/db/showplots-ds.php
r8598 r8794 104 104 printf("<form action='showplots-ds.php' method='GET'>\n"); 105 105 printf("<table width='100%%' border='0'>\n"); 106 printf("<tr><td valign='top'>\n"); 107 printf("<a href='http://db.astro.uni-wuerzburg.de'>home</a>\n</td><td align='center'>"); 106 printf("<tr><td valign='top'>\n<tr>\n"); 107 PrintHomeHelp(); 108 printf("<td align='center'>\n"); 108 109 if (!empty($prevseq)) 109 110 printf("%d ", $prevseq); -
trunk/MagicSoft/Mars/datacenter/db/showplots-seq.php
r8793 r8794 111 111 112 112 printf("<form action='showplots-seq.php' method='GET'>\n"); 113 printf("<table width='100%%' border='0'>\n"); 114 printf("<tr><td valign='top'>\n"); 115 printf("<a href='http://db.astro.uni-wuerzburg.de'>home</a>\n"); 116 printf("</td><td align='center'>"); 113 printf("<table width='100%%' border='0'>\n<tr>\n"); 114 PrintHomeHelp(); 115 printf("<td align='center'>\n"); 117 116 if (!empty($prevseq)) 118 117 printf("%d ", $prevseq); -
trunk/MagicSoft/Mars/datacenter/db/showplots.php
r8598 r8794 89 89 } 90 90 printf("<form action='showplots.php' method='GET'>\n"); 91 printf("<table width='100%%' border='0'>\n ");92 printf("<tr><td valign='top'>\n");93 printf("< a href='http://db.astro.uni-wuerzburg.de'>home</a>\n</td><td align='center'>");91 printf("<table width='100%%' border='0'>\n<tr>\n"); 92 PrintHomeHelp(); 93 printf("<td align='center'>\n"); 94 94 printf("<input type='text' name='seq' size='10' maxlength='10' value='%s'>\n", $seq); 95 95 PrintType2PullDown($type2);
Note:
See TracChangeset
for help on using the changeset viewer.