Changeset 35944
- Timestamp:
- Aug 14, 2013, 1:31:09 PM (13 years ago)
- Location:
- branches/eam_branches/ipp-20130711/dvodist
- Files:
-
- 4 edited
-
INSTALL (modified) (1 diff)
-
Makefile.in (modified) (4 diffs)
-
dvodist/ipp.css (modified) (1 diff)
-
www-util/ipp.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20130711/dvodist/INSTALL
r35415 r35944 1 1 2 2 after setting up psconfig: 3 4 ippc11 / dvodist example 5 psconfigure --htdocs /export/ippc11.0/www/dvodist/ --rootdir /dvodist --rootwww http://dvodist.ipp.ifa.hawaii.edu 6 make dvodist 7 (or make dvodist-all) 3 8 4 9 ippc17 / dvodist example -
branches/eam_branches/ipp-20130711/dvodist/Makefile.in
r35942 r35944 1 1 default: help 2 2 help: 3 @echo "USAGE: make (website)" 4 @echo " (website) = dvodist or ippdata" 3 @echo "USAGE: make (target)" 4 @echo " targets: " 5 @echo " dvodist : the internal dvo distribution website (info pages only)" 6 @echo " dvodist-all : install pages for dvo data" 7 @echo " ippdata : the public ipp data distribution website" 8 @echo "" 9 @echo " clean-dvodist : remove generated php files" 10 @echo " clean-ippdata : remove generated php files" 5 11 6 12 GENERATE = src/generate --htdocs @HTDOCS@ --rootdir @ROOTDIR@ --rootwww @ROOTWWW@ … … 20 26 TGT-IPPDATA = @HTDOCS@/ippdata 21 27 22 # common code used by all installation? 23 UTIL = \ 24 $(TGT-UTIL)/blank.html \ 28 # generated common code used by all installations 29 UTIL-MKD = \ 25 30 $(TGT-UTIL)/ipp.page.php \ 26 $(TGT-UTIL)/ipp.menu.dat \27 31 $(TGT-UTIL)/ipp.php \ 28 32 $(TGT-UTIL)/markdown.php \ 29 33 $(TGT-UTIL)/phptest.php 30 34 31 DVODIST = \ 32 $(TGT-UTIL)/dvodist.menu.dat \ 35 # static common code used by all installations 36 UTIL-RAW = \ 37 $(TGT-UTIL)/blank.html \ 38 $(TGT-UTIL)/ipp.menu.dat 39 40 UTIL = $(UTIL-RAW) $(UTIL-MKD) 41 42 # pages which are generated (and thus depend on the config) 43 DVODIST-MKD = \ 33 44 $(TGT-UTIL)/dvodist.page.php \ 34 $(TGT-DVODIST)/PScolorlogo2.jpg \35 45 $(TGT-DVODIST)/index.php \ 36 46 $(TGT-DVODIST)/test.php \ 37 47 $(TGT-DVODIST)/docs.php \ 38 48 $(TGT-DVODIST)/help.php \ 39 $(TGT-DVODIST)/ipp.css \40 49 $(TGT-DVODIST)/catdir.syn.test/index.php \ 41 50 $(TGT-DVODIST)/catdir.syn.test/n3000/index.php \ 42 51 $(TGT-DVODIST)/catdir.syn.test/n3730/index.php 43 52 44 IPPDATA = \ 45 $(TGT-UTIL)/ippdata.menu.dat \ 53 # pages which are copied directly 54 DVODIST-RAW = \ 55 $(TGT-UTIL)/dvodist.menu.dat \ 56 $(TGT-DVODIST)/PScolorlogo2.jpg \ 57 $(TGT-DVODIST)/ipp.css 58 59 DVODIST = $(DVODIST-MKD) $(DVODIST-RAW) 60 61 IPPDATA-MKD = \ 46 62 $(TGT-UTIL)/ippdata.page.php \ 47 $(TGT-IPPDATA)/PScolorlogo2.jpg \48 63 $(TGT-IPPDATA)/index.php \ 49 64 $(TGT-IPPDATA)/docs/index.php \ 50 65 $(TGT-IPPDATA)/docs/photladder.php \ 66 $(TGT-IPPDATA)/photladder.20130107.subset/index.php \ 67 $(TGT-IPPDATA)/photladder.20130107.subset/relphot-fits/index.php \ 68 $(TGT-IPPDATA)/photladder.20130107.subset/relphot-csv/index.php \ 69 $(TGT-IPPDATA)/photladder.20130107.subset/ubercal-fits/index.php \ 70 $(TGT-IPPDATA)/photladder.20130107.subset/ubercal-csv/index.php \ 71 $(TGT-IPPDATA)/catdir.syn.test/index.php \ 72 $(TGT-IPPDATA)/catdir.syn.test/n3000/index.php \ 73 $(TGT-IPPDATA)/catdir.syn.test/n3730/index.php \ 74 $(TGT-IPPDATA)/help.php 75 76 IPPDATA-RAW = \ 77 $(TGT-UTIL)/ippdata.menu.dat \ 78 $(TGT-IPPDATA)/PScolorlogo2.jpg \ 51 79 $(TGT-IPPDATA)/docs/photladder-1206.20130301.pdf \ 52 80 $(TGT-IPPDATA)/docs/2mass.compare/dH.allsky.20120528.v3.png \ … … 57 85 $(TGT-IPPDATA)/docs/2mass.compare/sigma.g.ubercal.20120528.v0.png \ 58 86 $(TGT-IPPDATA)/docs/2mass.compare/sigma.i.ubercal.20120528.v0.png \ 59 $(TGT-IPPDATA)/photladder.20130107.subset/index.php \60 $(TGT-IPPDATA)/photladder.20130107.subset/relphot-fits/index.php \61 $(TGT-IPPDATA)/photladder.20130107.subset/relphot-csv/index.php \62 $(TGT-IPPDATA)/photladder.20130107.subset/ubercal-fits/index.php \63 $(TGT-IPPDATA)/photladder.20130107.subset/ubercal-csv/index.php \64 $(TGT-IPPDATA)/catdir.syn.test/index.php \65 $(TGT-IPPDATA)/catdir.syn.test/n3000/index.php \66 $(TGT-IPPDATA)/catdir.syn.test/n3730/index.php \67 $(TGT-IPPDATA)/help.php \68 87 $(TGT-IPPDATA)/ipp.css 88 89 IPPDATA = $(IPPDATA-RAW) $(IPPDATA-MKD) 69 90 70 91 include $(SRC-DVODIST)/3pi.20120509/Makefile … … 128 149 129 150 # utilities ################################################# 151 clean-dvodist: 152 rm -f $(DVODIST-MKD) $(UTIL-MKD) $(DVODIST_DIRS) 153 154 clean-ippdata: 155 rm -f $(IPPDATA-MKD) $(UTIL-MKD) 156 130 157 clean: 131 158 rm -f `find . -name "*.o"` -
branches/eam_branches/ipp-20130711/dvodist/dvodist/ipp.css
r34748 r35944 37 37 } 38 38 39 #footnote { 40 overflow: auto; 41 text-align: right; 42 font-size: 60%; 43 } 44 39 45 a:link, a:visited, a:active { 40 text-decoration: underline;46 text-decoration: none; 41 47 font-weight: bold; 42 color: # ff000048 color: #505050 43 49 } 44 50 -
branches/eam_branches/ipp-20130711/dvodist/www-util/ipp.php
r35415 r35944 129 129 function menu_end () { 130 130 echo "</td></tr></table>\n"; 131 echo "<div id=\"footnote\">\n"; 132 echo " Page Rendering by EAM with help from\n"; 133 echo " <a href=\"http://daringfireball.net/projects/markdown\">Markdown</a>\n"; 134 echo " <a href=\"http://michelf.com/projects/php-markdown\">PHP</a>\n"; 135 // echo " host: $root\n"; 136 echo "</div>\n"; 131 137 echo "</body></html>\n\n"; 132 138 exit ();
Note:
See TracChangeset
for help on using the changeset viewer.
