| Listing du fichier index.php  
00001     <?php     00002     error_reporting(E_ALL | E_NOTICE | E_STRICT) ;
 00003     include("std.php") ;
 00004     include("webrd_inc.php") ;
 00005
 00006     #   # (gH)   -_-  index.php  ;  TimeStamp (unix) : 22 Septembre 2014 vers 10:56
 00007
 00008     debutPageWrd() ;
 00009
 00010     ## -------------------------------------------------------------------------------------------
 00011
 00012     debutSection() ;
 00013     h2("Table des matières cliquable") ;
 00014     blockquote() ;
 00015
 00016     $nomsChapitres = array() ;
 00017     $chap = -1 ; # volontaire
 00018     $chap++ ; $nomsChapitres[$chap] = "Présentation des cours et des exercices ; références"  ;
 00019     $chap++ ; $nomsChapitres[$chap] = "Structuration XML"                        ;
 00020     $chap++ ; $nomsChapitres[$chap] = "Vérification et validation XML"           ;
 00021     $chap++ ; $nomsChapitres[$chap] = "Sélections XPATH et transformations XSL"  ;
 00022     $chap++ ; $nomsChapitres[$chap] = "Comment conclure sur XML ? "              ;
 00023     #$chap++ ; $nomsChapitres[$chap] = "Conversions et représentations"           ;
 00024
 00025     table(0,7) ;
 00026     for ($idc=0;$idc<=4;$idc++) {
 00027       tr() ;
 00028         if (($idc==0) or($idc==4)) {
 00029           td("L","",2) ;
 00030              h3(href("webrd0$idc.php"," ".$nomsChapitres[$idc]." ","bouton_fin vert_pastel nou")) ;
 00031           fintd() ;
 00032         } else {
 00033           td() ;
 00034              h3("$idc.") ; fintd() ;
 00035           td() ;
 00036           h3(href("webrd0$idc.php?solutions=0"," ".$nomsChapitres[$idc]." ","bouton_fin jaune_pastel nou")) ;
 00037           fintd() ;
 00038         } # fin si
 00039       fintr() ;
 00040     } ; # fin pour idc
 00041     fintable() ;
 00042
 00043     finblockquote() ;
 00044
 00045     h3(href("webrd_data.zip","Archive")." des données, programmes et scripts.") ;
 00046
 00047     $txt = "Sujets d'examens passés : " ;
 00048     $txt .=  href("m1info2012_1.pdf","2012")." ; " ;
 00049     $txt .=  href("m1info2013_1.zip","2013")." ; " ;
 00050     $txt .=  href("m1info2014_1.zip","2014_1") ;
 00051     $txt .=  " ; " ;
 00052     $txt .=  href("m1info2014_2.pdf","2014_2") ;
 00053     $txt .=  " ; " ;
 00054     $txt .=  href("m1xml2015_1.pdf","2015_1") ;
 00055     $txt .=  "." ;
 00056     h3($txt) ;
 00057
 00058     pvide() ;
 00059     h3("Informations pratiques") ;
 00060
 00061     blockquote() ;
 00062     p() ;
 00063     echo "Volume horaire :  à cause de découpages en blocs de 1 h 20 et 1 h 50 (sic), il y aura 4 cours de 2 h 50 et 3 TP de 2 h 50." ;
 00064     finp() ;
 00065     p() ;
 00066     # echo "Voir ".href("http://celcat.univ-angers.fr/sciences/g5483.html","celcat/g5483")." pour les emplois du temps." ;
 00067     echo "Voir ".href("http://celcat.univ-angers.fr/web/publi/etu/g141908.html","celcat/g141908")." pour les emplois du temps." ;
 00068
 00069     finp() ;
 00070     finblockquote() ;
 00071
 00072     p() ;
 00073     echo href("montresource.php?nomfic=index.php","Code-source de cette page","orange_stim nou")."." ;
 00074     finp() ;
 00075
 00076     finSection() ;
 00077
 00078     ## -------------------------------------------------------------------------------------------
 00079     finPage() ;
 00080     ?>
 
 |