-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.dat
1069 lines (811 loc) · 30.3 KB
/
config.dat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#
# The contents of this file are used by the publish script
# publish.pl to determine where the
# output of publishing a page goes.
#
# Do not change unless you are *really* sure you know
# what you're doing.
#
# Unless otherwise noted, directories should end in a /
#
# Note:
# perhaps should make all values, other than site
# a member of the version block. This would give us
# a lot of flexibility [at the expense of a longer
# config file]
#
#
# 2019-10-04: KJG: Updated to use the new location for the
# secure https://cxc site, /proj/web-cxc/htdocs
#
# How to call the list_seealso executable.
# We now support running on different
# systems, so we make the values OS dependent.
#
# %perl is currently only used by publish_all.pl
#
# OS type values can be lin or osx
# (sun is also allowed but not expected to be used)
#
# Linux values tailored to Liz's machine (rory). I had tried
# building on a 32-bit Linux machine but it didn't seem to run
# on rory, so go back to the 64-bit versions
#
# Note that as of CIAO 4.6 the LD_LIBRARY_PATH needs to be set
# when calling list_seealso because it is no-longer set in the
# ciaorun script; hopefully this can be removed in CIAO 4.7
#
# 2023-05-25 updated list_seeaslo.ciao415.lin64 to build on RHEL8 since libxerces3.1 no longer available
%listseealso=lin /usr/bin/env LD_LIBRARY_PATH=${ASCDS_INSTALL}/lib:${ASCDS_INSTALL}/ots/lib /data/da/Docs/web4/utilities/binexe/list_seealso.ciao415.lin64
%perl=lin perl
#%perl=lin /usr/bin/env PERL5LIB=/data/da/Docs/local/linux_x86_64/lib64/perl5/site_perl:/data/da/Docs/local/linux_x86_64/lib64/perl5:/data/da/Docs/local/linux_x86_64/lib/perl5/site_perl perl
# OS-X, built on OS-X 10.6.8
#
%listseealso=osx ciaorun /data/da/Docs/web4/utilities/binexe/list_seealso.ciao46.osx64
%perl=osx perl
# Validation service: see https://validator.github.io/validator/
# Assumed to be a java app.
#
validator=/data/da/Docs/web4/dist.20.6.30/vnu.jar
# what "site" (ie part of the web pages) are we creating?
+site ciao
# the unix group the created files should be set to
group=cxcweb_ciao
# what "types" of publishing are allowed?
# - perhaps these should be within the version block?
#
@types=live
@types=test
@types=trial
# prefix should not end in a /
# NOTE: changed from old "prefix" (added ciaoweb)
prefix=/data/da/Docs/ciaoweb
# setting this to 0 makes some of the code a little easier
depth_offset=0
#
# for the moment we provide the full set of options for each "version"
# I cannot be bothered to be clever and have default/fall through
# values
#
+version ciao417
number=4.17
headtitlepostfix=CIAO 4.17
texttitlepostfix=CIAO 4.17
version_string=4.17
# main CSS location
%css=live /ciao4.17/ciao.css
%css=test /ciao4.17/ciao.css
%css=trial /ciao/ciao.css
%cssprint=live /ciao4.17/ciao.print.css
%cssprint=test /ciao4.17/ciao.print.css
%cssprint=trial /ciao/ciao.print.css
# favicon location
%favicon=live /ciao4.17/favicon.ico
%favicon=test /ciao4.17/favicon.ico
%favicon=trial /ciao/favicon.ico
# location of the news file for the "What's new" link
%newsfile=live /proj/web-cxc/htdocs/ciao4.17/news.html
%newsfile=test /proj/web-cxc-dmz-prev/htdocs/ciao4.17/news.html
%newsfile=trial /proj/web-cxc-dmz-test/htdocs/ciao/news.html
# Hmmm, should these be version-specific links (i.e. /ciao4.x/ rather than /ciao/)?
%newsurl=live /ciao/news.html
%newsurl=test /ciao/news.html
%newsurl=trial /ciao/news.html
# location of the "watch out" page
%watchouturl=live /ciao/watchout.html
%watchouturl=test /ciao/watchout.html
%watchouturl=trial /ciao/watchout.html
# location of the search ssi
%searchssi=live /ciao4.17/ciao_search.ssi
%searchssi=test /ciao4.17/ciao_search.ssi
%searchssi=trial /ciao/ciao_search.ssi
# location of the banner page, relative to the top-level directory
%sitebanner=live banner.xml
%sitebanner=test banner.xml
%sitebanner=trial banner.xml
# location of the google analytics ssi
# only added for the live site in helper.xsl
googlessi=/ciao4.17/analytics.ssi
# MathJax location
%mathjaxpath=live /ciao4.17/mathjax3/tex-chtml.js
%mathjaxpath=test /ciao4.17/mathjax3/tex-chtml.js
%mathjaxpath=trial /ciao/mathjax3/tex-chtml.js
# logo/text/url to use for navbar
logoimage=imgs/ciao_logo_navbar.gif
logotext=CIAO Logo
logourl=/ciao4.17/
# location of the stylesheets
%stylesheets=live /data/da/Docs/web4/ciao417/
%stylesheets=test /data/da/Docs/web4/ciao417/
%stylesheets=trial /data/da/Docs/web4/devel/
# what's the location for the output files?
%outdir=live /proj/web-cxc/htdocs/ciao4.17/
%outdir=test /proj/web-cxc-dmz-prev/htdocs/ciao4.17/
%outdir=trial /proj/web-cxc-dmz-test/htdocs/ciao/
# live outurl is unversioned for use in canonical header link
%outurl=live https://cxc.cfa.harvard.edu/ciao/
%outurl=test https://cxc-prev.cfa.harvard.edu/ciao4.17/
%outurl=trial https://cxc-dmz-test.cfa.harvard.edu/ciao/
# location of the "storage" space
%storage=live /data/da/Docs/ciaoweb/published/ciao417/live/
%storage=test /data/da/Docs/ciaoweb/published/ciao417/test/
%storage=trial /data/da/Docs/ciaoweb/published/ciao417/trial/
# We are moving away from the use of %storage and towards
# %storageloc, which gives the location of an XML file,
# format
# <storage><dir site="ciao">/data/da/Docs/ciaoweb/published/ciao40/live/</dir>...</storage>
# but we have not converted everything yet
#
%storageloc=live /data/da/Docs/ciaoweb/storage.ciao417.live.xml
%storageloc=test /data/da/Docs/ciaoweb/storage.ciao417.test.xml
%storageloc=trial /data/da/Docs/ciaoweb/storage.ciao417.trial.xml
## ahelp section
#
# where do the ahelp files (ie the XML files) live
#
%ahelpfiles=live /data/da/Docs/sxml_manuals/webxml/4.17/
%ahelpfiles=test /data/da/Docs/sxml_manuals/webxml/4.17/
%ahelpfiles=trial /data/da/Docs/sxml_manuals/webxml/4.17/
# where does the ahelp 'index' file live
# - ie the directory that contains
# ahelpindex.xml
# ahelpindex.lis
#
%ahelpindexdir=live /data/da/Docs/ciaoweb/published/ciao417/live/ahelp/
%ahelpindexdir=test /data/da/Docs/ciaoweb/published/ciao417/test/ahelp/
%ahelpindexdir=trial /data/da/Docs/ciaoweb/published/ciao417/trial/ahelp/
# what navbar to use for the ahelp index pages
ahelpindexnavbar=analysis
-version
+version dev
number=0.0
headtitlepostfix=CIAO dev
texttitlepostfix=CIAO dev
version_string=dev
# main CSS location
%css=trial /ciaositedev/ciao.css
%cssprint=trial /ciaositedev/ciao.print.css
# favicon location
%favicon=trial /ciaositedev/favicon.ico
# location of the news file for the "What's new" link
#%newsfile=trial /proj/web-icxc/htdocs/ciaositedev/news.html
%newsfile=trial /proj/web-cxc-dmz-test/htdocs/ciaositedev/news.html
%newsurl=trial /ciaositedev/news.html
# location of the "watch out" page
%watchouturl=trial /ciaositedev/watchout.html
# location of the search ssi
%searchssi=trial /ciaositedev/ciao_search.ssi
# location of the google analytics ssi
# only added for the live site in helper.xsl
googlessi=/ciao4.3/analytics.ssi
# logo/text to use for navbar
logoimage=imgs/ciao_logo_navbar.gif
logotext=CIAO Logo
logourl=/ciao/
# location of the stylesheets
%stylesheets=trial /data/da/Docs/web4/devel/
# what's the location for the output files?
#%outdir=trial /proj/web-icxc/htdocs/ciaositedev/
%outdir=trial /proj/web-cxc-dmz-test/htdocs/ciaositedev/
# live outurl is unversioned for use in canonical header link
#%outurl=trial http://icxc.harvard.edu/ciaositedev/
%outurl=trial https://cxc-dmz-test.cfa.harvard.edu/ciaositedev/
# location of the "storage" space
%storage=trial /data/da/Docs/ciaoweb/published/ciaositedev/trial/
# We are moving away from the use of %storage and towards
# %storageloc, which gives the location of an XML file,
# format
# <storage><dir site="ciao">/data/da/Docs/ciaoweb/published/ciao40/live/</dir>...</storage>
# but we have not converted everything yet
#
%storageloc=trial /data/da/Docs/ciaoweb/storage.ciao43.trial.xml
## ahelp section
#
# where do the ahelp files (ie the XML files) live
#
%ahelpfiles=trial /data/da/Docs/sxml_manuals/webxml/4.3/
# where does the ahelp 'index' file live
# - ie the directory that contains
# ahelpindex.xml
# ahelpindex.lis
#
%ahelpindexdir=trial /data/da/Docs/ciaoweb/published/ciao43/trial/ahelp/
# what navbar to use for the ahelp index pages
ahelpindexnavbar=analysis
-version
# stylesheets needed for the conversion
# ummm - really this should be version-specific
#
@stylesheets=page
@stylesheets=navbar
@stylesheets=navbar_main
@stylesheets=redirect
@stylesheets=bugs
@stylesheets=faq
@stylesheets=dictionary
@stylesheets=ahelp
@stylesheets=ahelp_index
@stylesheets=ahelp_common
@stylesheets=ahelp_main
@stylesheets=threadindex
@stylesheets=threadindex_common
@stylesheets=thread
@stylesheets=thread_common
@stylesheets=helper
@stylesheets=links
@stylesheets=myhtml
-site # end of ciao
+site chart
group=cxcweb_ciao
@types=live
@types=test
@types=trial
prefix=/data/da/Docs/chartweb
# setting this to 0 makes some of the code a little easier
depth_offset=0
+version internal
# this number is currently meaningless (but does it appear in the headers?)
number=1.0
%css=live /ciao/ciao.css
%css=test /ciao/ciao.css
%css=trial /ciao/ciao.css
%cssprint=live /ciao/ciao.print.css
%cssprint=test /ciao/ciao.print.css
%cssprint=trial /ciao/ciao.print.css
# favicon location
%favicon=live /ciao/favicon.ico
%favicon=test /ciao/favicon.ico
%favicon=trial /ciao/favicon.ico
imglinkicon=imgs/imageicon.gif
imglinkiconwidth=23
imglinkiconheight=16
%searchssi=live /chart/chart_search.ssi
%searchssi=test /chart/chart_search.ssi
%searchssi=trial /sds/chart/chart_search.ssi
# location of the google analytics ssi
# only added for the live site in helper.xsl
googlessi=/chart/analytics.ssi
# MathJax location
%mathjaxpath=live /ciao4.17/mathjax3/tex-chtml.js
%mathjaxpath=test /ciao4.17/mathjax3/tex-chtml.js
%mathjaxpath=trial /ciao/mathjax3/tex-chtml.js
%stylesheets=live /data/da/Docs/web4/chart/
%stylesheets=test /data/da/Docs/web4/chart/
%stylesheets=trial /data/da/Docs/web4/devel/
%outdir=live /proj/web-cxc/htdocs/chart/
%outdir=test /proj/web-cxc-dmz-prev/htdocs/chart/
#%outdir=trial /proj/web-icxc/htdocs/chart/
%outdir=trial /proj/web-cxc-dmz-test/htdocs/chart/
%outurl=live https://cxc.cfa.harvard.edu/chart/
%outurl=test https://cxc-prev.cfa.harvard.edu/chart/
#%outurl=trial http://icxc.harvard.edu/sds/chart/
%outurl=trial https://cxc-dmz-test.cfa.harvard.edu/chart/
%storage=live /data/da/Docs/chartweb/published/internal/live/
%storage=test /data/da/Docs/chartweb/published/internal/test/
%storage=trial /data/da/Docs/chartweb/published/internal/trial/
%storageloc=live /data/da/Docs/ciaoweb/storage.ciao417.live.xml
%storageloc=test /data/da/Docs/ciaoweb/storage.ciao417.test.xml
%storageloc=trial /data/da/Docs/ciaoweb/storage.ciao417.trial.xml
%ahelpindexdir=live /data/da/Docs/ciaoweb/published/ciao417/live/ahelp/
%ahelpindexdir=test /data/da/Docs/ciaoweb/published/ciao417/test/ahelp/
%ahelpindexdir=trial /data/da/Docs/ciaoweb/published/ciao417/trial/ahelp/
-version
@stylesheets=page
@stylesheets=navbar
@stylesheets=redirect
@stylesheets=thread
@stylesheets=thread_common
@stylesheets=helper
@stylesheets=links
@stylesheets=myhtml
-site # end of chart
+site sherpa
group=cxcweb_ciao
@types=live
@types=test
@types=trial
prefix=/data/da/Docs/sherpaweb
depth_offset=0
+version ciao417
number=4.17
headtitlepostfix=CIAO 4.17 Sherpa
texttitlepostfix=CIAO 4.17 Sherpa
version_string=4.17
# main CSS location
%css=live /ciao4.17/ciao.css
%css=test /ciao4.17/ciao.css
%css=trial /ciao/ciao.css
%cssprint=live /ciao4.17/ciao.print.css
%cssprint=test /ciao4.17/ciao.print.css
%cssprint=trial /ciao/ciao.print.css
# favicon location
%favicon=live /ciao4.17/favicon.ico
%favicon=test /ciao4.17/favicon.ico
%favicon=trial /ciao/favicon.ico
# location of the news file for the "What's new" link
%newsfile=live /proj/web-cxc/htdocs/sherpa4.17/news.html
%newsfile=test /proj/web-cxc-dmz-prev/htdocs/sherpa4.17/news.html
%newsfile=trial /proj/web-cxc-dmz-test/htdocs/sherpa/news.html
%newsurl=live /sherpa/news.html
%newsurl=test /sherpa/news.html
%newsurl=trial /sds/sherpa/news.html
# location of the "watch out" page
%watchouturl=live /sherpa/watchout.html
%watchouturl=test /sherpa/watchout.html
%watchouturl=trial /sds/sherpa/watchout.html
logoimage=imgs/sherpa_logo_navbar.gif
logotext=Sherpa Logo
logourl=/sherpa4.17/
%searchssi=live /sherpa4.17/sherpa_search.ssi
%searchssi=test /sherpa4.17/sherpa_search.ssi
%searchssi=trial /sds/sherpa/sherpa_search.ssi
# location of the banner page, relative to the top-level directory
%sitebanner=live banner.xml
%sitebanner=test banner.xml
%sitebanner=trial banner.xml
# location of the google analytics ssi
# only added for the live site in helper.xsl
googlessi=/sherpa4.17/analytics.ssi
# MathJax location
%mathjaxpath=live /ciao4.17/mathjax3/tex-chtml.js
%mathjaxpath=test /ciao4.17/mathjax3/tex-chtml.js
%mathjaxpath=trial /ciao/mathjax3/tex-chtml.js
%stylesheets=live /data/da/Docs/web4/ciao417/
%stylesheets=test /data/da/Docs/web4/ciao417/
%stylesheets=trial /data/da/Docs/web4/devel/
%outdir=live /proj/web-cxc/htdocs/sherpa4.17/
%outdir=test /proj/web-cxc-dmz-prev/htdocs/sherpa4.17/
%outdir=trial /proj/web-cxc-dmz-test/htdocs/sherpa/
# live outurl is unversioned for use in canonical header link
%outurl=live https://cxc.cfa.harvard.edu/sherpa/
%outurl=test https://cxc-prev.cfa.harvard.edu/sherpa4.17/
%outurl=trial https://cxc-dmz-test.cfa.harvard.edu/sherpa/
%storage=live /data/da/Docs/sherpaweb/published/ciao417/live/
%storage=test /data/da/Docs/sherpaweb/published/ciao417/test/
%storage=trial /data/da/Docs/sherpaweb/published/ciao417/trial/
%storageloc=live /data/da/Docs/ciaoweb/storage.ciao417.live.xml
%storageloc=test /data/da/Docs/ciaoweb/storage.ciao417.test.xml
%storageloc=trial /data/da/Docs/ciaoweb/storage.ciao417.trial.xml
%ahelpfiles=live /data/da/Docs/sxml_manuals/webxml/4.17/
%ahelpfiles=test /data/da/Docs/sxml_manuals/webxml/4.17/
%ahelpfiles=trial /data/da/Docs/sxml_manuals/webxml/4.17/
%ahelpindexdir=live /data/da/Docs/ciaoweb/published/ciao417/live/ahelp/
%ahelpindexdir=test /data/da/Docs/ciaoweb/published/ciao417/test/ahelp/
%ahelpindexdir=trial /data/da/Docs/ciaoweb/published/ciao417/trial/ahelp/
ahelpindexnavbar=ahelp
-version
@stylesheets=page
@stylesheets=navbar
@stylesheets=redirect
@stylesheets=threadindex
@stylesheets=threadindex_common
@stylesheets=thread
@stylesheets=thread_common
@stylesheets=helper
@stylesheets=links
@stylesheets=myhtml
-site # end of sherpa
+site caldb
group=cxcweb_caldb
# no live site for now
@types=live
@types=test
@types=trial
prefix=/data/da/Docs/caldbweb
# setting this to 0 makes some of the code a little easier
depth_offset=0
+version caldb4
# we do not have a 'number' variable since that is used to indicate
# the version of CIAO being used and we (probably) want the CALDB
# area to be independent of this
#
##number=4.0
headtitlepostfix=CALDB 4
##texttitlepostfix=- CALDB 4
%css=live /ciao/ciao.css
%css=test /ciao/ciao.css
%css=trial /ciao/ciao.css
%cssprint=live /ciao/ciao.print.css
%cssprint=test /ciao/ciao.print.css
%cssprint=trial /ciao/ciao.print.css
# favicon location
%favicon=live /ciao/favicon.ico
%favicon=test /ciao/favicon.ico
%favicon=trial /ciao/favicon.ico
%newsfile=live /proj/web-cxc/htdocs/caldb4/news.html
%newsfile=test /proj/web-cxc-dmz-prev/htdocs/caldb4/news.html
%newsfile=trial /proj/web-cxc-dmz-test/htdocs/caldb4/news.html
%newsurl=live /caldb/news.html
%newsurl=test /caldb/news.html
%newsurl=trial /sds/caldb4/news.html
%searchssi=live /caldb4/caldb_search.ssi
%searchssi=test /caldb4/caldb_search.ssi
%searchssi=trial /sds/caldb4/caldb_search.ssi
# MathJax location
# We use the CIAO 4.17 version here even though CALDB releases are decoupled from
# the CIAO one, since I do not want to have multiple copies of MathJax lying
# around.
%mathjaxpath=live /ciao4.17/mathjax3/tex-chtml.js
%mathjaxpath=test /ciao4.17/mathjax3/tex-chtml.js
%mathjaxpath=trial /ciao/mathjax3/tex-chtml.js
%stylesheets=live /data/da/Docs/web4/caldb/
%stylesheets=test /data/da/Docs/web4/caldb/
%stylesheets=trial /data/da/Docs/web4/devel/
# we have a versioned directory name for the live site
# but not the test one (since I only realised I needed a
# 'versioned' name here after testing had begun)
#
%outdir=live /proj/web-cxc/htdocs/caldb4/
%outdir=test /proj/web-cxc-dmz-prev/htdocs/caldb4/
%outdir=trial /proj/web-cxc-dmz-test/htdocs/caldb4/
# live outurl is unversioned for use in canonical header link
%outurl=live https://cxc.cfa.harvard.edu/caldb/
%outurl=test https://cxc-prev.cfa.harvard.edu/caldb4/
%outurl=trial https://cxc-dmz-test.cfa.harvard.edu/caldb4/
%storage=live /data/da/Docs/caldbweb/published/caldb4/live/
%storage=test /data/da/Docs/caldbweb/published/caldb4/test/
%storage=trial /data/da/Docs/caldbweb/published/caldb4/trial/
# point to the CIAO ahelp file indexes
%storageloc=live /data/da/Docs/ciaoweb/storage.ciao417.live.xml
%storageloc=test /data/da/Docs/ciaoweb/storage.ciao417.test.xml
%storageloc=trial /data/da/Docs/ciaoweb/storage.ciao417.trial.xml
%ahelpindexdir=live /data/da/Docs/ciaoweb/published/ciao417/live/ahelp/
%ahelpindexdir=test /data/da/Docs/ciaoweb/published/ciao417/test/ahelp/
%ahelpindexdir=trial /data/da/Docs/ciaoweb/published/ciao417/test/ahelp/
-version
@stylesheets=page
@stylesheets=navbar
@stylesheets=redirect
@stylesheets=helper
@stylesheets=links
@stylesheets=myhtml
-site # end of caldb
# The CSC site options MUST be updated when there's a new CIAO release
# (e.g. storage location/ahelp dir/...) so that links between sites
# will work
#
+site csc
group=cxcweb_ciao
@types=live
@types=test
@types=trial
prefix=/data/da/Docs/cscweb
depth_offset=0
+version csc1
# is this used for anything other than ahelp?
number=1.0
headtitlepostfix=CSC
texttitlepostfix=CSC
%css=live /csc1/csc.css
%css=test /csc1/csc.css
%css=trial /sds/csc/csc.css
%cssprint=live /csc1/csc.print.css
%cssprint=test /csc1/csc.print.css
%cssprint=trial /sds/csc/csc.print.css
# favicon location
%favicon=live /csc/favicon.ico
%favicon=test /csc/favicon.ico
%favicon=trial /sds/csc/favicon.ico
%newsfile=live /proj/web-cxc/htdocs/csc1/news.html
%newsfile=test /proj/web-cxc-dmz-prev/htdocs/csc1/news.html
%newsfile=trial /proj/web-cxc-dmz-test/htdocs/csc/news.html
%newsurl=live /csc/news.html
%newsurl=test /csc/news.html
%newsurl=trial /sds/csc/news.html
# I do not think these are used by CSC site
%watchouturl=live /csc/watchout.html
%watchouturl=test /csc/watchout.html
%watchouturl=trial /sds/csc/watchout.html
logoimage=imgs/csc_logo_navbar.jpg
logotext=Chandra Source Catalog logo
logourl=/csc1/
%searchssi=live /csc1/csc_search.ssi
%searchssi=test /csc1/csc_search.ssi
%searchssi=trial /sds/csc/csc_search.ssi
# location of the google analytics ssi
# only added for the live site in helper.xsl
googlessi=/csc1/analytics.ssi
# MathJax location
#
# NOTE: we have moved from MathJaX 2 to 3 which means that
# we leave around v2 for old code - note that this is
# accessed via CIAO 4.12
#
# IF WE REPUBLISH ANY V1 PAGES WE NEED TO UPDATE TO MATHJAX3
#
%mathjaxpath=live /ciao4.12/mathjax/MathJax.js?config=TeX-MML-AM_CHTML
%mathjaxpath=test /ciao4.12/mathjax/MathJax.js?config=TeX-MML-AM_CHTML
%mathjaxpath=trial /ciao/mathjax3/tex-chtml.js
%stylesheets=live /data/da/Docs/web4/ciao417/
%stylesheets=test /data/da/Docs/web4/ciao417/
%stylesheets=trial /data/da/Docs/web4/devel/
%outdir=live /proj/web-cxc/htdocs/csc1/
%outdir=test /proj/web-cxc-dmz-prev/htdocs/csc1/
%outdir=trial /proj/web-cxc-dmz-test/htdocs/csc/
# live outurl is unversioned for use in canonical header link
%outurl=live https://cxc.cfa.harvard.edu/csc/
%outurl=test https://cxc-prev.cfa.harvard.edu/csc1/
%outurl=trial https://cxc-dmz-test.cfa.harvard.edu/csc/
%storage=live /data/da/Docs/cscweb/published/csc1/live/
%storage=test /data/da/Docs/cscweb/published/csc1/test/
%storage=trial /data/da/Docs/cscweb/published/csc1/trial/
# where does the ahelp 'index' file live
# use CIAO versions
%ahelpindexdir=live /data/da/Docs/ciaoweb/published/ciao417/live/ahelp/
%ahelpindexdir=test /data/da/Docs/ciaoweb/published/ciao417/test/ahelp/
%ahelpindexdir=trial /data/da/Docs/ciaoweb/published/ciao417/trial/ahelp/
%ahelpfiles=live /data/da/Docs/sxml_manuals/webxml/4.17/
%ahelpfiles=test /data/da/Docs/sxml_manuals/webxml/4.17/
%ahelpfiles=trial /data/da/Docs/sxml_manuals/webxml/4.17/
%storageloc=live /data/da/Docs/ciaoweb/storage.ciao417.live.xml
%storageloc=test /data/da/Docs/ciaoweb/storage.ciao417.test.xml
%storageloc=trial /data/da/Docs/ciaoweb/storage.ciao417.trial.xml
-version
+version csc2
# is this used for anything other than ahelp?
number=2.0
headtitlepostfix=CSC
texttitlepostfix=CSC
%css=live /csc2.0/csc.css
%css=test /csc2.0/csc.css
%css=trial /sds/csc/csc.css
%cssprint=live /csc2.0/csc.print.css
%cssprint=test /csc2.0/csc.print.css
%cssprint=trial /sds/csc/csc.print.css
# favicon location
%favicon=live /csc/favicon.ico
%favicon=test /csc/favicon.ico
%favicon=trial /sds/csc/favicon.ico
%newsfile=live /proj/web-cxc/htdocs/csc2.0/news.html
%newsfile=test /proj/web-cxc-dmz-prev/htdocs/csc2.0/news.html
%newsfile=trial /proj/web-cxc-dmz-test/htdocs/csc/news.html
%newsurl=live /csc/news.html
%newsurl=test /csc/news.html
%newsurl=trial /sds/csc/news.html
# I do not think these are used by CSC site
%watchouturl=live /csc/watchout.html
%watchouturl=test /csc/watchout.html
%watchouturl=trial /sds/csc/watchout.html
logoimage=imgs/csc_logo_navbar.jpg
logotext=Chandra Source Catalog logo
logourl=/csc2.0/
%searchssi=live /csc2.0/csc_search.ssi
%searchssi=test /csc2.0/csc_search.ssi
%searchssi=trial /sds/csc/csc_search.ssi
# location of the banner page, relative to the top-level directory
%sitebanner=live banner.xml
%sitebanner=test banner.xml
%sitebanner=trial banner.xml
# location of the google analytics ssi
# only added for the live site in helper.xsl
googlessi=/csc2.0/analytics.ssi
# MathJax location
%mathjaxpath=live /ciao4.17/mathjax3/tex-chtml.js
%mathjaxpath=test /ciao4.17/mathjax3/tex-chtml.js
%mathjaxpath=trial /ciao/mathjax3/tex-chtml.js
%stylesheets=live /data/da/Docs/web4/ciao417/
%stylesheets=test /data/da/Docs/web4/ciao417/
%stylesheets=trial /data/da/Docs/web4/devel/
%outdir=live /proj/web-cxc/htdocs/csc2.0/
%outdir=test /proj/web-cxc-dmz-prev/htdocs/csc2.0/
%outdir=trial /proj/web-cxc-dmz-test/htdocs/csc/
# live outurl is unversioned for use in canonical header link
%outurl=live https://cxc.cfa.harvard.edu/csc/
%outurl=test https://cxc-prev.cfa.harvard.edu/csc2.0/
%outurl=trial https://cxc-dmz-test.cfa.harvard.edu/csc/
%storage=live /data/da/Docs/cscweb/published/csc2.0/live/
%storage=test /data/da/Docs/cscweb/published/csc2.0/test/
%storage=trial /data/da/Docs/cscweb/published/csc2.0/trial/
# where does the ahelp 'index' file live
# use CIAO versions
%ahelpindexdir=live /data/da/Docs/ciaoweb/published/ciao417/live/ahelp/
%ahelpindexdir=test /data/da/Docs/ciaoweb/published/ciao417/test/ahelp/
%ahelpindexdir=trial /data/da/Docs/ciaoweb/published/ciao417/trial/ahelp/
%ahelpfiles=live /data/da/Docs/sxml_manuals/webxml/4.17/
%ahelpfiles=test /data/da/Docs/sxml_manuals/webxml/4.17/
%ahelpfiles=trial /data/da/Docs/sxml_manuals/webxml/4.17/
%storageloc=live /data/da/Docs/ciaoweb/storage.ciao417.live.xml
%storageloc=test /data/da/Docs/ciaoweb/storage.ciao417.test.xml
%storageloc=trial /data/da/Docs/ciaoweb/storage.ciao417.trial.xml
-version
+version csc2.1
# is this used for anything other than ahelp?
number=2.1
headtitlepostfix=CSC
texttitlepostfix=CSC
%css=live /csc2.1/csc.css
%css=test /csc2.1/csc.css
%css=trial /sds/csc2.1/csc.css
%cssprint=live /csc2.1/csc.print.css
%cssprint=test /csc2.1/csc.print.css
%cssprint=trial /sds/csc2.1/csc.print.css
# favicon location
%favicon=live /csc2.1/favicon.ico
%favicon=test /csc2.1/favicon.ico
%favicon=trial /sds/csc/favicon.ico
%newsfile=live /proj/web-cxc/htdocs/csc2.1/news.html
%newsfile=test /proj/web-cxc-dmz-prev/htdocs/csc2.1/news.html
%newsfile=trial /proj/web-cxc-dmz-test/htdocs/csc2.1/news.html
%newsurl=live /csc2.1/news.html
%newsurl=test /csc2.1/news.html
%newsurl=trial /sds/csc/news.html
# I do not think these are used by CSC site
%watchouturl=live /csc2.1/watchout.html
%watchouturl=test /csc2.1/watchout.html
%watchouturl=trial /sds/csc/watchout.html
logoimage=imgs/csc_logo_navbar.jpg
logotext=Chandra Source Catalog logo
logourl=/csc2.1/
%searchssi=live /csc2.1/csc_search.ssi
%searchssi=test /csc2.1/csc_search.ssi
%searchssi=trial /sds/csc2.1/csc_search.ssi
# location of the google analytics ssi
# only added for the live site in helper.xsl
googlessi=/csc2.1/analytics.ssi
# MathJax location
%mathjaxpath=live /ciao4.17/mathjax3/tex-chtml.js
%mathjaxpath=test /ciao4.17/mathjax3/tex-chtml.js
%mathjaxpath=trial /ciao/mathjax3/tex-chtml.js
%stylesheets=live /data/da/Docs/web4/ciao417/
%stylesheets=test /data/da/Docs/web4/ciao417/
%stylesheets=trial /data/da/Docs/web4/devel/
%outdir=live /proj/web-cxc/htdocs/csc2.1/
%outdir=test /proj/web-cxc-dmz-prev/htdocs/csc2.1/
%outdir=trial /proj/web-cxc-dmz-test/htdocs/csc2.1/
# live outurl is unversioned for use in canonical header link
%outurl=live https://cxc.cfa.harvard.edu/csc/
%outurl=test https://cxc-prev.cfa.harvard.edu/csc2.1/
%outurl=trial https://cxc-dmz-test.cfa.harvard.edu/csc/
%storage=live /data/da/Docs/cscweb/published/csc2.1/live/
%storage=test /data/da/Docs/cscweb/published/csc2.1/test/
%storage=trial /data/da/Docs/cscweb/published/csc2.1/trial/
# where does the ahelp 'index' file live
# use CIAO versions
%ahelpindexdir=live /data/da/Docs/ciaoweb/published/ciao417/live/ahelp/
%ahelpindexdir=test /data/da/Docs/ciaoweb/published/ciao417/test/ahelp/
%ahelpindexdir=trial /data/da/Docs/ciaoweb/published/ciao417/trial/ahelp/
%ahelpfiles=live /data/da/Docs/sxml_manuals/webxml/4.17/
%ahelpfiles=test /data/da/Docs/sxml_manuals/webxml/4.17/
%ahelpfiles=trial /data/da/Docs/sxml_manuals/webxml/4.17/
%storageloc=live /data/da/Docs/cscweb/storage.csc21.live.xml
%storageloc=test /data/da/Docs/cscweb/storage.csc21.test.xml
%storageloc=trial /data/da/Docs/cscweb/storage.csc21.trial.xml
-version
@stylesheets=page
@stylesheets=navbar
@stylesheets=redirect
@stylesheets=helper
@stylesheets=links
@stylesheets=myhtml
-site # end of csc
+site obsvis
group=cxcweb_ciao
@types=live
@types=test
@types=trial
prefix=/data/da/Docs/obsvisweb
depth_offset=0
+version website
# is this used for anything other than ahelp?
number=1.0
headtitlepostfix=ObsVis
texttitlepostfix=ObsVis
# only used for ahelp files
# version_string=4.0
imglinkicon=imgs/imageicon.gif
imglinkiconwidth=23
imglinkiconheight=16
%css=live /ciao/ciao.css
%css=test /ciao/ciao.css
%css=trial /ciao/ciao.css
%cssprint=live /ciao/ciao.print.css
%cssprint=test /ciao/ciao.print.css
%cssprint=trial /ciao/ciao.print.css
# favicon location
%favicon=live /ciao/favicon.ico
%favicon=test /ciao/favicon.ico
%favicon=trial /ciao/favicon.ico
logoimage=imgs/obsvis_logo_navbar.gif
logotext=ObsVis logo
logourl=/obsvis/
%searchssi=live /obsvis/search.ssi
%searchssi=test /obsvis/search.ssi
%searchssi=trial /sds/obsvis/search.ssi
# location of the google analytics ssi
# only added for the live site in helper.xsl
googlessi=/obsvis/analytics.ssi
# MathJax location; for now use the old code as do not
# expect the site to be republished, but it should be
# changed to mathjax3
#
%mathjaxpath=live /ciao4.12/mathjax/MathJax.js?config=TeX-MML-AM_CHTML
%mathjaxpath=test /ciao4.12/mathjax/MathJax.js?config=TeX-MML-AM_CHTML
%mathjaxpath=trial /ciao/mathjax3/tex-chtml.js
%stylesheets=live /data/da/Docs/web4/ciao417/
%stylesheets=test /data/da/Docs/web4/ciao417/
%stylesheets=trial /data/da/Docs/web4/devel/
%outdir=live /proj/web-cxc/htdocs/obsvis/
%outdir=test /proj/web-cxc-dmz-prev/htdocs/obsvis/
%outdir=trial /proj/web-cxc-dmz-test/htdocs/obsvis/
%outurl=live https://cxc.cfa.harvard.edu/obsvis/
%outurl=test https://cxc-prev.cfa.harvard.edu/obsvis/
%outurl=trial https://cxc-dmz-test.cfa.harvard.edu/obsvis/
%storage=live /data/da/Docs/obsvisweb/published/obsvis/live/
%storage=test /data/da/Docs/obsvisweb/published/obsvis/test/
%storage=trial /data/da/Docs/obsvisweb/published/obsvis/trial/
# where does the ahelp 'index' file live
# use CIAO versions
%ahelpindexdir=live /data/da/Docs/ciaoweb/published/ciao417/live/ahelp/
%ahelpindexdir=test /data/da/Docs/ciaoweb/published/ciao417/test/ahelp/
%ahelpindexdir=trial /data/da/Docs/ciaoweb/published/ciao417/test/ahelp/
%storage=live /data/da/Docs/ciaoweb/published/ciao417/live/
%storage=test /data/da/Docs/ciaoweb/published/ciao417/test/
%storage=trial /data/da/Docs/ciaoweb/published/ciao417/trial/
%storageloc=live /data/da/Docs/ciaoweb/storage.ciao417.live.xml
%storageloc=test /data/da/Docs/ciaoweb/storage.ciao417.test.xml
%storageloc=trial /data/da/Docs/ciaoweb/storage.ciao417.trial.xml
-version
@stylesheets=page
@stylesheets=navbar
@stylesheets=redirect
@stylesheets=helper
@stylesheets=links
@stylesheets=myhtml
-site # end of obsvis
# This is for the internal iCXC web site, either
# https://icxc.cfa.harvard.edu
# https://cxc.cfa.harvard.edu
# depending on whether you are in the sds/ or secure/
# sub-directories of /data/da/Docs/icxcweb/
#
+site icxc
group=cxcweb_ciao
@types=live
@types=test