Changeset 65 for trunk


Ignore:
Timestamp:
05/15/09 17:06:50 (15 years ago)
Author:
pinsard
Message:

new User's guide production

Location:
trunk/adm/guides
Files:
11 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/adm/guides/html.xsl

    r5 r65  
    1515--> 
    1616 
    17 <!-- 
    18 <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl"/> 
    19 --> 
    20 <xsl:import href="http://docbook.sourceforge.net/release/xsl/1.73.2/xhtml/docbook.xsl"/> 
     17<xsl:import href="http://docbook.sourceforge.net/release/xsl/1.74.3/xhtml/docbook.xsl"/> 
    2118 
    2219 
  • trunk/adm/guides/makefile

    r9 r65  
    99# ===== 
    1010# 
    11 # original location 
    12 # ~~~~~~~~~~~~~~~~~ 
    13 # 
    1411# /usr/home/fplod/incas/ircaam/ircaam_ws/adm/guides/makefile sur aedon.locean-ipsl.upmc.fr 
     12# 
     13# TODO 
     14# ==== 
     15# 
     16# revision of Bibliography production 
     17# 
     18# improve HTML one style 
     19# 
     20# improve PDF one style 
     21# 
     22# improve logo 
     23# 
     24# improve htmllinkchecka (no clear between URL and DIR, test and official) 
    1525# 
    1626# EVOLUTIONS 
     
    1929# $Id$ 
    2030# 
    21 # -  fplod 2008-12-03T18:05:28Z aedon.locean-ipsl.upmc.fr (Darwin) 
    22 # 
    23 #   * creation 
     31# - fplod 2009-05-15T10:39:16Z aedon.locean-ipsl.upmc.fr (Darwin) 
     32# 
     33#   * re-creation 
    2434# 
    2535#- 
     
    3040./ 
    3141 
     42DIRADM = \ 
     43../ 
     44 
    3245DIRTMP = \ 
    3346./ 
    3447 
    3548DIRWWW = \ 
    36 ../../doc/guides/ 
     49../../doc/guides/users/ 
     50 
     51# here are some examples of DIRPUBLISH/URLPUBLISH, the first on for Françoise Pinsard on her mac, 
     52# 
     53# the official one ++ is http://www.locean-ipsl.upmc.fr/~fplod/ircaam/ircaam_ws/doc/guides/users/ 
     54# 
     55# comment all of them and define your own 
     56 
     57# one for me (Françoise) on my Mac aedon 
     58# URL is http://localhost/~fplod/ircaam/ on this machine when run under 
     59# fplod account 
     60DIRPUBLISH = \ 
     61fplod@aedon.locean-ipsl.upmc.fr:Sites/$(PRODUCT) 
     62 
     63#uncomment these lines for official publication 
     64URLPUBLISH = \ 
     65http://www.locean-ipsl.upmc.fr/~fplod/$(PRODUCT)/$(PRODUCT)_ws/doc/guides/users/ 
    3766 
    3867DIRWIKI = \ 
    39 $(DIRWWW)/wiki/ 
     68$(DIRWWW)/wiki/fr/ 
    4069 
    4170LIST_XML = \ 
     
    4372LIST_XML_fr 
    4473 
     74LIST_XML_fr = \ 
     75$(DIRSRC)/web.xml 
     76 
    4577LIST_XML_en = \ 
    4678$(DIRSRC)/svnbasiccommands.xml 
    4779 
    48 LIST_XML_fr = \ 
    49 $(DIRSRC)/web.xml 
     80MAKEDATE = \ 
     81`date -u +"%Y-%m-%dT%H:%M:%SZ"` 
    5082 
    5183.PHONY : \ 
     
    5486before \ 
    5587dbkcheck \ 
     88htmllinkcheckb \ 
     89htmllinkchecka \ 
    5690spellcheck \ 
    5791help \ 
    5892html \ 
     93html_one \ 
     94html_many \ 
     95pdf \ 
    5996tracwiki 
    6097 
    6198help : 
     99        @echo "Prepare output directories :" 
    62100        @echo "\$$ make clean" 
    63101        @echo "\$$ make before" 
     102        @echo "" 
     103        @echo "Following commands are available to build outputs :" 
    64104        @echo "\$$ make all" 
     105        @echo " " 
     106        @echo "Check DocBook conformity :" 
    65107        @echo "\$$ make dbkcheck" 
    66         @echo "++ check link" 
     108        @echo " " 
     109        @echo "Check links before installation : " 
     110        @echo "\$$ make htmllinkcheckb" 
     111        @echo " " 
     112        @echo "Last step = installation of HTML, pdf and wiki files" 
     113        @echo "\$$ make install_all" 
    67114        @echo "++ depot html et wiki" 
     115        @echo " " 
     116        @echo "Check links after installation : " 
     117        @echo "\$$ make htmllinkchecka" 
     118        @echo " " 
     119 
    68120 
    69121before : 
    70         @mkdir -p ${DIRWWW}/html/ 
    71         @cp -p $(DIRSRC)/style.css ${DIRWWW}/html/ 
    72         @cp -p $(DIRSRC)/$(PRODUCT).css ${DIRWWW}/html/ 
    73         @mkdir -p ${DIRWWW}/wiki 
     122        @-mkdir -p ${DIRWWW}/html/css/ 
     123        @-mkdir -p ${DIRWWW}/html/images/ 
     124        @-mkdir -p ${DIRWWW}/html/en/one/ 
     125        @-mkdir -p ${DIRWWW}/html/en/many/ 
     126        @-mkdir -p ${DIRWWW}/pdf/en/one/ 
     127        @-cp -p $(DIRSRC)/*.css ${DIRWWW}/html/css/ 
     128        @-cp $(DIRSRC)/*.gif $(DIRWWW)/html/images/ 
     129        @-cp $(DIRSRC)/*.bmp $(DIRWWW)/html/images/ 
     130        @-mkdir -p ${DIRWIKI} 
     131 
     132install_all : \ 
     133install_html \ 
     134install_pdf 
     135 
     136install_html : 
     137        @$(DIRADM)/install.sh -w $(DIRWWW)/html/ -p $(DIRPUBLISH)/html/ 
     138        @$(DIRADM)/install.sh -w $(DIRWWW)/html/ -u $(URLPUBLISH)/html/ 
     139 
     140install_pdf : 
     141        @$(DIRADM)/install.sh -w $(DIRWWW)/pdf/ -p $(DIRPUBLISH)/pdf/ 
     142        @$(DIRADM)/install.sh -w $(DIRWWW)/pdf/ -u $(URLPUBLISH)/pdf/ 
    74143 
    75144clean : \ 
    76145cleantmp 
    77146        -@rm -rf ${DIRWWW}/html/ 
     147        -@rm -rf ${DIRWWW}/pdf/ 
    78148        -@rm -rf ${DIRWWW}/wiki/ 
    79149 
    80150cleantmp : 
    81         -@rm -f $(DIRTMP)/*_full.xml 
     151        -@rm -f $(DIRTMP)/*_full*.xml 
     152        -@rm -f $(DIRTMP)/*_dblatex.err 
     153        -@rm -f $(DIRTMP)/*_dblatex.log 
    82154        -@rm -f $(DIRTMP)/err_xmlstarlet_xsd 
    83         -@rm -f $(DIRTMP)/get_sed.xml 
    84         -@rm -f $(DIRTMP)/firststeps_sed.xml 
     155 
     156htmllinkcheckb : 
     157        @$(DIRADM)linkchecker.sh -d $(DIRWWW) 
     158 
     159htmllinkchecka : 
     160        $(DIRADM)/linkchecker.sh -u http://localhost/~fplod/ircaam/ 
     161        @-#$(DIRADM)/linkchecker.sh -d $(DIRPUBLISH) 
     162        @-#$(DIRADM)/linkchecker.sh -u $(URLPUBLISH) 
     163        @echo "++wiki 
    85164 
    86165spellcheck : 
     
    100179all : \ 
    101180html \ 
     181pdf \ 
    102182tracwiki 
    103183 
    104184html : \ 
    105 $(DIRWWW)/html/index.html \ 
    106 $(DIRWWW)/html/svnbasiccommands.html 
     185html_one \ 
     186html_many 
     187 
     188html_one : \ 
     189$(DIRWWW)/html/en/one/index.html 
     190 
     191html_many : \ 
     192$(DIRWWW)/html/en/many/$(PRODUCT)01/ \ 
     193$(DIRWWW)/html/en/many/$(PRODUCT)02/ 
     194 
     195pdf : \ 
     196$(DIRWWW)/pdf/en/one/$(PRODUCT).pdf 
    107197 
    108198tracwiki : \ 
     
    117207 
    118208$(DIRWIKI)/WikiStart : \ 
    119 $(DIRSRC)/tracwiki.xsl \ 
    120 $(DIRTMP)/web_full.xml 
     209$(DIRTMP)/web_full.xml \ 
     210$(DIRSRC)/tracwiki.xsl 
    121211        @xsltproc \ 
    122212        $(DIRSRC)/tracwiki.xsl \ 
    123         $(DIRTMP)/web_full.xml | \ 
     213        $< | \ 
    124214        awk 'sub(/ @star@ $$/,""){printf(" * %s", $$0);next};1' | \ 
    125215        sed -e "s+@star@+ *+" \ 
    126216        > $@ 
    127217 
    128 $(DIRWWW)/html/index.html : \ 
     218$(DIRWWW)/html/en/one/index.html : \ 
    129219$(DIRTMP)/web_full.xml \ 
    130220$(DIRSRC)/html.xsl \ 
     
    132222$(DIRSRC)/$(PRODUCT).css 
    133223        @xsltproc \ 
    134         --param html.stylesheet "'style.css $(PRODUCT).css'" \ 
     224        --param makedate "'$(MAKEDATE)'" \ 
     225        --param html.stylesheet "'../../css/style.css ../../css/$(PRODUCT).css'" \ 
    135226        --param css.decoration 1 \ 
     227        --param link.mailto.url "'mailto:Francoise.Pinsard@locean-ipsl.upmc.fr'" \ 
    136228        --param section.autolabel 1 \ 
    137229        --output $@ \ 
    138230        $(DIRSRC)/html.xsl \ 
    139         $(DIRTMP)/web_full.xml 
     231        $< 
     232 
     233$(DIRWWW)/html/en/many/$(PRODUCT)01/ : \ 
     234$(DIRTMP)/web_full_many01.xml \ 
     235$(DIRSRC)/style.css \ 
     236$(DIRSRC)/$(PRODUCT).css \ 
     237$(DIRSRC)/main_many01_html.xsl 
     238        @xsltproc \ 
     239        --param makedate "'$(MAKEDATE)'" \ 
     240        --param html.stylesheet "'../../../css/style.css ../../../css/$(PRODUCT).css'" \ 
     241        --param css.decoration 1 \ 
     242        --param link.mailto.url "'mailto:Francoise.Pinsard@locean-ipsl.upmc.fr'" \ 
     243        --param base.dir "'$@/'" \ 
     244        $(DIRSRC)/main_many01_html.xsl \ 
     245        $< 
     246        @touch $@/ 
     247 
     248$(DIRTMP)/web_full_many01.xml : \ 
     249$(DIRTMP)/web_full.xml 
     250        @xml ed \ 
     251        -N dbk="http://docbook.org/ns/docbook" \ 
     252        -N xl="http://www.w3.org/1999/xlink" \ 
     253        -P -S \ 
     254        -u "//dbk:link[@xl:href='../../../../../manuals/html/one/index.html']/@xl:href" -v '../../../../../../manuals/html/one/index.html'  \ 
     255        $< > $@ 
     256 
     257$(DIRWWW)/html/en/many/$(PRODUCT)02/ : \ 
     258$(DIRTMP)/web_full_many02.xml \ 
     259$(DIRSRC)/$(PRODUCT).css \ 
     260$(DIRSRC)/v1.css \ 
     261$(DIRSRC)/style.css \ 
     262$(DIRSRC)/bg.gif \ 
     263$(DIRSRC)/left.gif \ 
     264$(DIRSRC)/left_on.gif \ 
     265$(DIRSRC)/right.gif \ 
     266$(DIRSRC)/right_on.gif \ 
     267$(DIRTMP)/logo2.bmp \ 
     268$(DIRSRC)/main_many02_html.xsl \ 
     269$(DIRSRC)/navigation02_html.xsl \ 
     270$(DIRSRC)/message_lang.xsl 
     271        @xsltproc \ 
     272        --param language "'en'" \ 
     273        --param makedate "'$(MAKEDATE)'" \ 
     274        --param html.stylesheet "'../../../css/style.css ../../../css/$(PRODUCT).css ../../../css/v1.css'" \ 
     275        --param css.decoration 1 \ 
     276        --param link.mailto.url "'mailto:Francoise.Pinsard@locean-ipsl.upmc.fr'" \ 
     277        --param base.dir "'$@/'" \ 
     278        $(DIRSRC)/main_many02_html.xsl \ 
     279        $< 
     280        @touch $@/ 
     281 
     282$(DIRTMP)/web_full_many02.xml : \ 
     283$(DIRTMP)/web_full.xml 
     284        @xml ed \ 
     285        -N dbk="http://docbook.org/ns/docbook" \ 
     286        -N xl="http://www.w3.org/1999/xlink" \ 
     287        -P -S \ 
     288        -u "//dbk:link[@xl:href='../../../../../manuals/html/one/index.html']/@xl:href" -v '../../../../../../manuals/html/one/index.html'  \ 
     289        $< > $@ 
     290 
     291$(DIRWWW)/pdf/en/one/$(PRODUCT).pdf : \ 
     292$(DIRTMP)/web_full.xml 
     293        @-dblatex \ 
     294        -b pdftex \ 
     295        -T simple \ 
     296        -o $@ \ 
     297        -d \ 
     298        -x "--nonet" \ 
     299        -I "$(DIRWWW)/images/" \ 
     300        -f png \ 
     301        $< \ 
     302        1> $(DIRTMP)/main_dblatex.log \ 
     303        2> $(DIRTMP)/main_dblatex.err 
    140304 
    141305$(DIRTMP)/web_full.xml : \ 
     
    146310        --noent \ 
    147311        --output $@ \ 
    148         $(DIRSRC)/web.xml 
     312        $< 
    149313 
    150314$(DIRWIKI)/SvnBasicCommands : \ 
    151 $(DIRSRC)/tracwiki.xsl \ 
    152 $(DIRTMP)/svnbasiccommands_full.xml 
     315$(DIRTMP)/svnbasiccommands_full.xml \ 
     316$(DIRSRC)/tracwiki.xsl 
    153317        @xsltproc \ 
    154318        $(DIRSRC)/tracwiki.xsl \ 
    155         $(DIRTMP)/svnbasiccommands_full.xml | \ 
     319        $< | \ 
    156320        awk 'sub(/ @star@ $$/,""){printf(" * %s", $$0);next};1' | \ 
    157321        sed -e "s+@star@+*+" \ 
    158322        > $@ 
    159  
    160 $(DIRWWW)/html/svnbasiccommands.html : \ 
    161 $(DIRTMP)/svnbasiccommands_full.xml \ 
    162 $(DIRSRC)/html.xsl \ 
    163 $(DIRSRC)/style.css \ 
    164 $(DIRSRC)/$(PRODUCT).css 
    165         @xsltproc \ 
    166         --param html.stylesheet "'style.css $(PRODUCT).css'" \ 
    167         --param css.decoration 1 \ 
    168         --param section.autolabel 1 \ 
    169         --output $@ \ 
    170         $(DIRSRC)/html.xsl \ 
    171         $(DIRTMP)/svnbasiccommands_full.xml 
    172323 
    173324$(DIRTMP)/svnbasiccommands_full.xml : \ 
     
    178329        --noent \ 
    179330        --output $@ \ 
    180         $(DIRSRC)/svnbasiccommands.xml 
    181  
    182 $(DIRWIKI)/Faq : \ 
    183 $(DIRSRC)/tracwiki.xsl \ 
    184 $(DIRTMP)/faq_full.xml 
    185         @xsltproc \ 
    186         $(DIRSRC)/tracwiki.xsl \ 
    187         $(DIRTMP)/faq_full.xml | \ 
    188         awk 'sub(/ @star@ $$/,""){printf(" * %s", $$0);next};1' | \ 
    189         sed -e "s+@star@+*+" \ 
    190         > $@ 
    191  
    192 $(DIRWWW)/html/faq.html : \ 
    193 $(DIRTMP)/faq_full.xml \ 
    194 $(DIRSRC)/html.xsl \ 
    195 $(DIRSRC)/style.css \ 
    196 $(DIRSRC)/$(PRODUCT).css 
    197         @xsltproc \ 
    198         --param html.stylesheet "'style.css $(PRODUCT).css'" \ 
    199         --param css.decoration 1 \ 
    200         --param section.autolabel 1 \ 
    201         --output $@ \ 
    202         $(DIRSRC)/html.xsl \ 
    203         $(DIRTMP)/faq_full.xml 
    204  
    205 $(DIRTMP)/faq_full.xml : \ 
    206 $(DIRSRC)/faq.xml 
    207         @xmllint \ 
    208         --xinclude \ 
    209         --encode utf-8 \ 
    210         --noent \ 
    211         --output $@ \ 
    212         $(DIRSRC)/faq.xml 
    213  
    214 $(DIRWIKI)/Get : \ 
    215 $(DIRSRC)/tracwiki.xsl \ 
    216 $(DIRTMP)/get_full.xml 
    217         @xsltproc \ 
    218         $(DIRSRC)/tracwiki.xsl \ 
    219         $(DIRTMP)/get_full.xml | \ 
    220         awk 'sub(/ @star@ $$/,""){printf(" * %s", $$0);next};1' | \ 
    221         sed -e "s+@star@+*+" \ 
    222         > $@ 
    223  
    224 $(DIRWWW)/html/get.html : \ 
    225 $(DIRTMP)/get_full.xml \ 
    226 $(DIRSRC)/html.xsl \ 
    227 $(DIRSRC)/style.css \ 
    228 $(DIRSRC)/$(PRODUCT).css 
    229         @xsltproc \ 
    230         --param html.stylesheet "'style.css $(PRODUCT).css'" \ 
    231         --param css.decoration 1 \ 
    232         --param section.autolabel 1 \ 
    233         --output $@ \ 
    234         $(DIRSRC)/html.xsl \ 
    235         $(DIRTMP)/get_full.xml 
    236  
    237 $(DIRTMP)/get_full.xml : \ 
    238 $(DIRSRC)/get.xml \ 
    239 $(DIRSRC)/get_pre.sh 
    240         @$(DIRSRC)/get_pre.sh 
    241         @xmllint \ 
    242         --xinclude \ 
    243         --encode utf-8 \ 
    244         --noent \ 
    245         --output $@ \ 
    246         $(DIRTMP)/get_sed.xml 
    247  
    248 $(DIRWIKI)/FirstSteps : \ 
    249 $(DIRSRC)/tracwiki.xsl \ 
    250 $(DIRTMP)/firststeps_full.xml 
    251         @xsltproc \ 
    252         $(DIRSRC)/tracwiki.xsl \ 
    253         $(DIRTMP)/firststeps_full.xml | \ 
    254         awk 'sub(/ @star@ $$/,""){printf(" * %s", $$0);next};1' | \ 
    255         sed -e "s+@star@+*+" \ 
    256         > $@ 
    257  
    258 $(DIRWWW)/html/firststeps.html : \ 
    259 $(DIRTMP)/firststeps_full.xml \ 
    260 $(DIRSRC)/html.xsl \ 
    261 $(DIRSRC)/style.css \ 
    262 $(DIRSRC)/$(PRODUCT).css 
    263         @xsltproc \ 
    264         --param html.stylesheet "'style.css $(PRODUCT).css'" \ 
    265         --param css.decoration 1 \ 
    266         --param section.autolabel 1 \ 
    267         --output $@ \ 
    268         $(DIRSRC)/html.xsl \ 
    269         $(DIRTMP)/firststeps_full.xml 
    270  
    271 $(DIRTMP)/firststeps_full.xml : \ 
    272 $(DIRSRC)/firststeps.xml 
    273         @xmllint \ 
    274         --xinclude \ 
    275         --encode utf-8 \ 
    276         --noent \ 
    277         --output $@ \ 
    278         $(DIRSRC)/firststeps.xml 
    279  
    280 $(DIRWIKI)/Mailing : \ 
    281 $(DIRSRC)/tracwiki.xsl \ 
    282 $(DIRTMP)/mailing_full.xml 
    283         @xsltproc \ 
    284         $(DIRSRC)/tracwiki.xsl \ 
    285         $(DIRTMP)/mailing_full.xml | \ 
    286         awk 'sub(/ @star@ $$/,""){printf(" * %s", $$0);next};1' | \ 
    287         sed -e "s+@star@+*+" \ 
    288         > $@ 
    289  
    290 $(DIRWWW)/html/mailing.html : \ 
    291 $(DIRTMP)/mailing_full.xml \ 
    292 $(DIRSRC)/html.xsl \ 
    293 $(DIRSRC)/style.css \ 
    294 $(DIRSRC)/$(PRODUCT).css 
    295         @xsltproc \ 
    296         --param html.stylesheet "'style.css $(PRODUCT).css'" \ 
    297         --param css.decoration 1 \ 
    298         --param section.autolabel 1 \ 
    299         --output $@ \ 
    300         $(DIRSRC)/html.xsl \ 
    301         $(DIRTMP)/mailing_full.xml 
    302  
    303 $(DIRTMP)/mailing_full.xml : \ 
    304 $(DIRSRC)/mailing.xml 
    305         @xmllint \ 
    306         --xinclude \ 
    307         --encode utf-8 \ 
    308         --noent \ 
    309         --output $@ \ 
    310         $(DIRSRC)/mailing.xml 
    311  
    312 $(DIRWIKI)/TipLink : \ 
    313 $(DIRSRC)/tracwiki.xsl \ 
    314 $(DIRTMP)/tiplink_full.xml 
    315         @xsltproc \ 
    316         $(DIRSRC)/tracwiki.xsl \ 
    317         $(DIRTMP)/tiplink_full.xml | \ 
    318         awk 'sub(/ @star@ $$/,""){printf(" * %s", $$0);next};1' | \ 
    319         sed -e "s+@star@+*+" \ 
    320         > $@ 
    321  
    322 $(DIRWWW)/html/tiplink.html : \ 
    323 $(DIRTMP)/tiplink_full.xml \ 
    324 $(DIRSRC)/html.xsl \ 
    325 $(DIRSRC)/style.css \ 
    326 $(DIRSRC)/$(PRODUCT).css 
    327         @xsltproc \ 
    328         --param html.stylesheet "'style.css $(PRODUCT).css'" \ 
    329         --param css.decoration 1 \ 
    330         --param section.autolabel 1 \ 
    331         --output $@ \ 
    332         $(DIRSRC)/html.xsl \ 
    333         $(DIRTMP)/tiplink_full.xml 
    334  
    335 $(DIRTMP)/tiplink_full.xml : \ 
    336 $(DIRSRC)/tiplink.xml 
    337         @xmllint \ 
    338         --xinclude \ 
    339         --encode utf-8 \ 
    340         --noent \ 
    341         --output $@ \ 
    342         $(DIRSRC)/tiplink.xml 
    343  
    344 $(DIRWIKI)/Whatis : \ 
    345 $(DIRSRC)/tracwiki.xsl \ 
    346 $(DIRTMP)/whatis_full.xml 
    347         @xsltproc \ 
    348         $(DIRSRC)/tracwiki.xsl \ 
    349         $(DIRTMP)/whatis_full.xml | \ 
    350         awk 'sub(/ @star@ $$/,""){printf(" * %s", $$0);next};1' | \ 
    351         sed -e "s+@star@+*+" \ 
    352         > $@ 
    353  
    354 $(DIRWWW)/html/whatis.html : \ 
    355 $(DIRTMP)/whatis_full.xml \ 
    356 $(DIRSRC)/html.xsl \ 
    357 $(DIRSRC)/style.css \ 
    358 $(DIRSRC)/$(PRODUCT).css 
    359         @xsltproc \ 
    360         --param html.stylesheet "'style.css $(PRODUCT).css'" \ 
    361         --param css.decoration 1 \ 
    362         --param section.autolabel 1 \ 
    363         --output $@ \ 
    364         $(DIRSRC)/html.xsl \ 
    365         $(DIRTMP)/whatis_full.xml 
    366  
    367 $(DIRTMP)/whatis_full.xml : \ 
    368 $(DIRSRC)/whatis.xml 
    369         @xmllint \ 
    370         --xinclude \ 
    371         --encode utf-8 \ 
    372         --noent \ 
    373         --output $@ \ 
    374         $(DIRSRC)/whatis.xml 
    375  
    376 $(DIRWIKI)/WhatsNew : \ 
    377 $(DIRSRC)/tracwiki.xsl \ 
    378 $(DIRTMP)/whatsnew_full.xml 
    379         @xsltproc \ 
    380         $(DIRSRC)/tracwiki.xsl \ 
    381         $(DIRTMP)/whatsnew_full.xml | \ 
    382         awk 'sub(/ @star@ $$/,""){printf(" * %s", $$0);next};1' | \ 
    383         sed -e "s+@star@+*+" \ 
    384         > $@ 
    385  
    386 $(DIRWWW)/html/whatsnew.html : \ 
    387 $(DIRTMP)/whatsnew_full.xml \ 
    388 $(DIRSRC)/html.xsl \ 
    389 $(DIRSRC)/style.css \ 
    390 $(DIRSRC)/$(PRODUCT).css 
    391         @xsltproc \ 
    392         --param html.stylesheet "'style.css $(PRODUCT).css'" \ 
    393         --param css.decoration 1 \ 
    394         --param section.autolabel 1 \ 
    395         --output $@ \ 
    396         $(DIRSRC)/html.xsl \ 
    397         $(DIRTMP)/whatsnew_full.xml 
    398          
    399 $(DIRTMP)/whatsnew_full.xml : \ 
    400 $(DIRSRC)/whatsnew.xml 
    401         @xmllint \ 
    402         --xinclude \ 
    403         --encode utf-8 \ 
    404         --noent \ 
    405         --output $@ \ 
    406         $(DIRSRC)/whatsnew.xml 
    407  
    408 $(DIRWIKI)/Update : \ 
    409 $(DIRSRC)/tracwiki.xsl \ 
    410 $(DIRTMP)/update_full.xml 
    411         @xsltproc \ 
    412         $(DIRSRC)/tracwiki.xsl \ 
    413         $(DIRTMP)/update_full.xml | \ 
    414         awk 'sub(/ @star@ $$/,""){printf(" * %s", $$0);next};1' | \ 
    415         sed -e "s+@star@+*+" \ 
    416         > $@ 
    417  
    418 $(DIRWWW)/html/update.html : \ 
    419 $(DIRTMP)/update_full.xml \ 
    420 $(DIRSRC)/html.xsl \ 
    421 $(DIRSRC)/style.css \ 
    422 $(DIRSRC)/$(PRODUCT).css 
    423         @xsltproc \ 
    424         --param html.stylesheet "'style.css $(PRODUCT).css'" \ 
    425         --param css.decoration 1 \ 
    426         --param section.autolabel 1 \ 
    427         --output $@ \ 
    428         $(DIRSRC)/html.xsl \ 
    429         $(DIRTMP)/update_full.xml 
    430          
    431 $(DIRTMP)/update_full.xml : \ 
    432 $(DIRSRC)/update.xml 
    433         @xmllint \ 
    434         --xinclude \ 
    435         --encode utf-8 \ 
    436         --noent \ 
    437         --output $@ \ 
    438         $(DIRSRC)/update.xml 
     331        $< 
     332 
     333$(DIRTMP)/logo2.bmp : 
     334        @convert -size 200x50 \ 
     335        xc:white -fill black -stroke transparent \ 
     336        -font Palatino-Roman -pointsize 40 -gravity center \ 
     337        -draw "text 0,0 'IRCAAM'" $@ 
     338 
  • trunk/adm/guides/web.xml

    r7 r65  
    11<?xml version="1.0" encoding="iso-8859-1"?> 
    2 <!DOCTYPE article [ 
     2<!DOCTYPE book [ 
    33<!ENTITY % isolat1 SYSTEM "http://www.w3.org/2003/entities/iso8879/isolat1.ent"> 
    44%isolat1; 
     
    1717 
    1818]> 
    19 <article version="5.0" 
     19<book version="5.0" 
    2020xmlns="http://docbook.org/ns/docbook" 
    2121xmlns:xl="http://www.w3.org/1999/xlink" 
     
    3838  </info> 
    3939 
    40 <sect1 xml:id="whatis"> 
     40<chapter xml:id="whatis"> 
    4141<title>Qu'est-ce que &project; ?</title> 
    4242<para> 
     
    4949Ces pages ne concernent que la partie <quote>LOCEAN</quote> de ce projet. 
    5050</para> 
    51 </sect1> 
     51</chapter> 
    5252 
    53 <sect1 xml:id="workon"> 
     53<chapter xml:id="workon"> 
    5454<title>Travailler sur &project;</title> 
    5555<para> 
    5656Naviguer dans <link xl:href="http://forge.ipsl.jussieu.fr/&project_svn;/"/> 
    5757</para> 
    58 </sect1> 
     58</chapter> 
    5959 
    60 <sect1 xml:id="notes"> 
     60<chapter xml:id="notes"> 
    6161<title> 
    6262Documentation sur le travail en cours 
     
    6565<link xl:href="file://locean-ipsl.upmc.fr/usr/temp/fplod/public_html/&project_svn;/notes/fr/one/&project_svn;.html"/> (notes de travail fp au LOCEAN) 
    6666</para> 
    67 </sect1> 
     67</chapter> 
    6868 
    69 <sect1 xml:id="contact"> 
     69<chapter xml:id="contact"> 
    7070<title>Contact</title> 
    7171<para> 
     
    7575Françoise Pinsard pour la gestion du projet sous trac et svn 
    7676</para> 
    77 </sect1> 
    78 </article> 
     77</chapter> 
     78</book> 
Note: See TracChangeset for help on using the changeset viewer.