You can subscribe to this list here.
2003 |
Jan
|
Feb
(89) |
Mar
(219) |
Apr
(82) |
May
(33) |
Jun
(11) |
Jul
(129) |
Aug
(357) |
Sep
(34) |
Oct
(37) |
Nov
(42) |
Dec
(182) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(59) |
Feb
(74) |
Mar
(196) |
Apr
(205) |
May
(109) |
Jun
(268) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Frederic D. <de...@us...> - 2004-05-05 12:38:47
|
Update of /cvsroot/fudaa/fudaa_devel/dodico/src/org/fudaa/dodico/ef In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2626/src/org/fudaa/dodico/ef Modified Files: EfNodeMutable.java Log Message: Maj Index: EfNodeMutable.java =================================================================== RCS file: /cvsroot/fudaa/fudaa_devel/dodico/src/org/fudaa/dodico/ef/EfNodeMutable.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** EfNodeMutable.java 31 Mar 2004 08:14:31 -0000 1.2 --- EfNodeMutable.java 5 May 2004 12:38:37 -0000 1.3 *************** *** 14,21 **** */ public class EfNodeMutable extends EfNode { - - - - /** * --- 14,17 ---- *************** *** 42,45 **** --- 38,60 ---- /** + * @see org.fudaa.dodico.mnt.MNTPoint#setX(double) + */ + public void setX(double _x){ + x_=_x; + } + /** + * @see org.fudaa.dodico.mnt.MNTPoint#setY(double) + */ + public void setY(double _y){ + y_=_y; + } + /** + * @see org.fudaa.dodico.mnt.MNTPoint#setZ(double) + */ + public void setZ(double _z){ + z_=_z; + } + + /** * @see org.fudaa.dodico.mnt.MNTPoint#setXYZ(double, double, double) */ |
From: Frederic D. <de...@us...> - 2004-05-05 12:38:47
|
Update of /cvsroot/fudaa/fudaa_devel/dodico/src/org/fudaa/dodico/fichiers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2626/src/org/fudaa/dodico/fichiers Modified Files: FileOpReadCharSimpleAbstract.java Log Message: Maj Index: FileOpReadCharSimpleAbstract.java =================================================================== RCS file: /cvsroot/fudaa/fudaa_devel/dodico/src/org/fudaa/dodico/fichiers/FileOpReadCharSimpleAbstract.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** FileOpReadCharSimpleAbstract.java 30 Apr 2004 07:18:51 -0000 1.7 --- FileOpReadCharSimpleAbstract.java 5 May 2004 12:38:37 -0000 1.8 *************** *** 52,56 **** analyze_.addInfo( DodicoResource.getS("Ligne lue") + ": " + in_.getLine(), ! in_); } protected abstract Object _read(); --- 52,56 ---- analyze_.addInfo( DodicoResource.getS("Ligne lue") + ": " + in_.getLine(), ! in_.getLineNumber()); } protected abstract Object _read(); |
From: Frederic D. <de...@us...> - 2004-05-05 12:38:46
|
Update of /cvsroot/fudaa/fudaa_devel/dodico/src/org/fudaa/dodico/telemac/dico In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2626/src/org/fudaa/dodico/telemac/dico Modified Files: TelemacDicoFactory.java Log Message: Maj Index: TelemacDicoFactory.java =================================================================== RCS file: /cvsroot/fudaa/fudaa_devel/dodico/src/org/fudaa/dodico/telemac/dico/TelemacDicoFactory.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TelemacDicoFactory.java 25 Nov 2003 10:11:57 -0000 1.5 --- TelemacDicoFactory.java 5 May 2004 12:38:37 -0000 1.6 *************** *** 9,14 **** package org.fudaa.dodico.telemac.dico; import java.io.File; ! import javax.swing.JFileChooser; ! import javax.swing.filechooser.FileFilter; import org.fudaa.dodico.commun.DodicoAnalyze; import org.fudaa.dodico.dico.DicoFactory; --- 9,13 ---- package org.fudaa.dodico.telemac.dico; import java.io.File; ! import org.fudaa.dodico.commun.DodicoAnalyze; import org.fudaa.dodico.dico.DicoFactory; |
From: Frederic D. <de...@us...> - 2004-05-05 12:38:46
|
Update of /cvsroot/fudaa/fudaa_devel/dodico/src/org/fudaa/dodico/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2626/src/org/fudaa/dodico/test Modified Files: TestIO.java Log Message: Maj Index: TestIO.java =================================================================== RCS file: /cvsroot/fudaa/fudaa_devel/dodico/src/org/fudaa/dodico/test/TestIO.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** TestIO.java 31 Mar 2004 08:14:34 -0000 1.10 --- TestIO.java 5 May 2004 12:38:37 -0000 1.11 *************** *** 65,69 **** if (url == null) return null; ! File f=new File(FuLib.decode(url.getPath().substring(1))); return f; } --- 65,69 ---- if (url == null) return null; ! File f=new File(FuLib.decode(url.getPath())); return f; } |
From: Frederic D. <de...@us...> - 2004-05-05 12:38:45
|
Update of /cvsroot/fudaa/fudaa_devel/dodico/src/org/fudaa/dodico/ant In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2626/src/org/fudaa/dodico/ant Added Files: GenereUsine.java Removed Files: genereUsine.java Log Message: Maj --- NEW FILE: GenereUsine.java --- /** * @file GenereUsine.java * @creation 21 mars 2002 * @modification $Date: 2004/05/05 12:38:37 $ * @license GNU General Public License 2 * @copyright (c)1998-2001 CETMEF 2 bd Gambetta F-60231 Compiegne * @mail fud...@li... */ package org.fudaa.dodico.ant; import java.io.BufferedWriter; import java.io.File; import java.io.FileReader; import java.io.FileWriter; import java.io.LineNumberReader; import java.util.Arrays; import java.util.List; import java.util.StringTokenizer; import java.util.Vector; import org.apache.tools.ant.BuildException; import org.apache.tools.ant.DirectoryScanner; import org.apache.tools.ant.Project; import org.apache.tools.ant.Task; import org.apache.tools.ant.types.FileSet; import com.memoire.re.RE; /** * Generation automatique de l'usine. * * @author Frederic Deniger * @version $Id: GenereUsine.java,v 1.1 2004/05/05 12:38:37 deniger Exp $ */ public class GenereUsine extends Task { /** Liste des fichiers idl */ List idlFileSet_ = new Vector(); /** Les repertoire java */ List javaImplDir_ = new Vector(); /** Le fichier idl genere */ File idlDest_; /** Le buffer du fichier idl. */ StringBuffer idlBuffer_; /** Le fichier java genere */ File javaDest_; /** Le buffer du fichier java */ StringBuffer javaBuffer_; /** Le prefixe du package des classes java d'implentation */ String pkgPrefixImpl_; /** Le prefixe du package des classes java corba */ String pkgPrefixCorba_; /** Le prefixe des objet java 'D' pour DObjet */ String javaPrefix_; /** Le prefixe des objet corba 'I' pour IObjet */ String idlPrefix_; private final String etoile = ".*"; private final String lineSep_ = System.getProperty("line.separator"); /** Constructeur vide */ public GenereUsine() {} /** * Renvoie true, si le fichier java n'est pas une classe abstraite et possede un constructeur * publique sans argument. * * @param _javaFile * @param _className * @return true si valide */ private boolean isOk(File _javaFile, String _className) { try { RE abstractClass = new RE(".*abstract.*class *" + _className + etoile); RE privateClass = new RE(".*private.*class *" + _className + etoile); RE protectedClass = new RE(".*protected.*class *" + _className + etoile); RE protected2Class = new RE(" *class *" + _className + etoile); RE constructeur = new RE("public *" + _className + " *( *).*"); LineNumberReader in = new LineNumberReader(new FileReader(_javaFile)); String line = in.readLine(); boolean publicConstr = false; while (line != null) { line = line.trim(); if (line.length() > 8) { if (abstractClass.isMatch(line)) { log("classe abstraite " + _javaFile, Project.MSG_VERBOSE); return false; } if (privateClass.isMatch(line)) { log("classe privée " + _javaFile, Project.MSG_VERBOSE); return false; } if ((protectedClass.isMatch(line)) || (protected2Class.isMatch(line))) { log("classe protégée " + _javaFile, Project.MSG_VERBOSE); return false; } if (constructeur.isMatch(line)) { publicConstr = true; break; } } line = in.readLine(); } if (publicConstr) return true; else { log("Constructeur non trouve " + _javaFile, Project.MSG_VERBOSE); return false; } } catch (java.lang.Exception e) { log("erreur de lecture ou d'expression reguliere:" + e); throw new BuildException("fichier " + _javaFile); } } /** * A partir du buffer _f, cree le fichier _file. * * @param _f * @param _file */ private void writeFile(StringBuffer _f, File _file) { if ((_file == null) || (_f == null)) return; _file.delete(); _file.getParentFile().mkdirs(); try { BufferedWriter fw = new BufferedWriter(new FileWriter(_file)); char[] c = new char[_f.length()]; _f.getChars(0, _f.length(), c, 0); fw.write(c, 0, c.length); fw.close(); } catch (java.io.IOException e) { log("erreur lors de l'ecriture du fichier " + _file); } } /** * Ajoute _f+lineSep_ au buffer idlBuffer_. * * @param _f */ private void i(String _f) { if (_f == null) return; if (idlBuffer_ == null) idlBuffer_ = new StringBuffer(_f + lineSep_); else idlBuffer_.append(_f + lineSep_); } private void iNewLine() { i(lineSep_); } /** * Ajoute _f+lineSep_ au buffer javaBuffer_. * * @param _f */ private void j(String _f) { if (_f == null) return; if (javaBuffer_ == null) javaBuffer_ = new StringBuffer(_f + lineSep_); else javaBuffer_.append(_f + lineSep_); } private void jNewLine() { if (javaBuffer_ == null) javaBuffer_ = new StringBuffer(lineSep_); else javaBuffer_.append(lineSep_); } /** * Rempli les buffers des fichiers idl et java.Pour chaque repertoire de <code>javaImplDir_</code>: * recupere les fichiers java commencant par <code>javaPrefix_</code>, s'il est conforme (cf * isOk() ) , ajoute aux buffers idl et java les fonctions du suppression et de creation , de * l'objet corba. */ private void computeJavaFile() { DirectoryScanner javaScan = new DirectoryScanner(); javaScan.setCaseSensitive(true); javaScan.setIncludes(new String[] { javaPrefix_ + "*.java"}); for (int i = 0; i < javaImplDir_.size(); i++) { DirectoryScanner ds = ((FileSet) javaImplDir_.get(i)).getDirectoryScanner(project); String[] dir = ds.getIncludedDirectories(); Arrays.sort(dir); for (int iDir = 0; iDir < dir.length; iDir++) { String dossier = dir[iDir]; if (dossier.length() < 2) continue; String idlPackage = pkgPrefixCorba_ + "." + dossier.replace(File.separatorChar, '.'); String javaPackage = pkgPrefixImpl_ + "." + dossier.replace(File.separatorChar, '.'); String packageMaj = dossier; if (packageMaj.indexOf(File.separatorChar) > 0) packageMaj = packageMaj.substring(0, packageMaj.indexOf(File.separatorChar)); if (packageMaj.length() < 1) continue; packageMaj = packageMaj.substring(0, 1).toUpperCase() + packageMaj.substring(1); File base = new File(ds.getBasedir(), dossier); javaScan.setBasedir(base); javaScan.scan(); log(dossier); String[] javaFiles = javaScan.getIncludedFiles(); Arrays.sort(javaFiles); for (int iFile = 0; iFile < javaFiles.length; iFile++) { //Determination du nom de la classe en fonction du nom du fichier //Objet pour DObjet.java String className = javaFiles[iFile].substring(0, javaFiles[iFile].length() - 5); className = className.substring(1, 2).toUpperCase() + className.substring(2); log("traitement de " + javaFiles[iFile], Project.MSG_VERBOSE); if (isOk(new File(base, javaFiles[iFile]), javaPrefix_ + className)) { StringTokenizer tok = new StringTokenizer(dossier, File.separator); StringBuffer dossierBuffer = new StringBuffer(); while (tok.hasMoreTokens()) { dossierBuffer.append("::"); dossierBuffer.append(tok.nextToken()); } String idlObjet = dossierBuffer.toString() + "::" + idlPrefix_ + className; String dobjet = javaPackage + "." + javaPrefix_ + className; String iobjet = idlPackage + "." + idlPrefix_ + className; i(" " + idlObjet + " cree" + packageMaj + className + "();"); i(" rien supprime" + packageMaj + className + "(in " + idlObjet + " o);"); j(" public " + iobjet + " cree" + packageMaj + className + "()"); j(" {"); j(" " + dobjet + " o=new " + dobjet + "();"); j(" " + iobjet + " iobjet=null;"); j(" if(isUsineLocale_){iobjet=o;}"); j(" else{"); j(" " + iobjet + "_Tie" + " nouvTie=new " + iobjet + "_Tie(o,getPOA());"); j(" " + "try{iobjet=" + iobjet + "Helper.narrow(getPOA().servant_to_reference(nouvTie));}"); j(" " + "catch(Exception e){e.printStackTrace();return null;}"); j(" }"); j(" o.setTie(iobjet);"); // j(" nouvTie=" + iobjet + "Helper.narrow(o.tie());"); j(" fireObjetCree(\"" + className + "\", iobjet);"); j(" return iobjet;"); j(" }"); jNewLine(); j(" public void supprime" + packageMaj + className + "(" + iobjet + " o)"); j(" {"); j(" o._release();"); j(" o.dispose();"); j(" fireObjetSupprime(\"" + className + "\", o);"); j(" }"); jNewLine(); } else log(javaFiles[iFile] + " non traitee", Project.MSG_VERBOSE); } } } } /** * Ajoute une entete par defaut au buffer idl. Parcours les fichiers idl pour ajouter les * includes. * * @param _v vector contenant les fichiers idl a inclure. */ private void enteteIdl(Vector _v) { String[] tab = new String[_v.size()]; _v.toArray(tab); Arrays.sort(tab); i("#ifndef _USINE_IDL"); i("#define _USINE_IDL"); for (int i = 0; i < tab.length; i++) i("#include \"" + tab[i] + "\""); iNewLine(); i("module usine {"); i(" interface IUsine : ::objet::IObjet, ::evenement::IObjetEventSender {"); i(" rien fireObjetCree(in chaine msg, in ::objet::IObjet o);"); i(" rien fireObjetModifie(in chaine msg, in ::objet::IObjet o, in chaine champ);"); i(" rien fireObjetSupprime(in chaine msg, in ::objet::IObjet o);"); i(" rien setEventMuet(in booleen _b);"); i(" booleen getEventMuet();"); } /** * Ajoute une entete par defaut au buffer java. */ private void enteteJava() { j("package " + pkgPrefixImpl_ + ".usine;"); jNewLine(); j("public class DUsine extends " + pkgPrefixImpl_ + ".objet.DObjet implements " + pkgPrefixCorba_ + ".usine.IUsineOperations,"+ pkgPrefixCorba_ + ".usine.IUsine"); j("{"); j(" private " + pkgPrefixImpl_ + ".evenement.CObjetEventSenderSupport EVT_SUPPORT=new " + pkgPrefixImpl_ + ".evenement.CObjetEventSenderSupport();"); j(" private boolean isUsineLocale_=false;"); j(" private boolean muet_;"); jNewLine(); j(" public DUsine()"); j(" { this(false); }"); jNewLine(); j(" public DUsine(boolean b)"); j(" { isUsineLocale_=b; }"); jNewLine(); j(" public void addObjetEventListener(" + pkgPrefixCorba_ + ".evenement.IObjetEventListenerSupport l)"); j(" {"); j(" EVT_SUPPORT.addObjetEventListener(l);"); j(" }"); jNewLine(); j(" public void removeObjetEventListener(" + pkgPrefixCorba_ + ".evenement.IObjetEventListenerSupport l)"); j(" {"); j(" EVT_SUPPORT.removeObjetEventListener(l);"); j(" }"); jNewLine(); j(" public " + pkgPrefixCorba_ + ".collection.ITableau getObjetEventListeners()"); j(" {"); j(" return EVT_SUPPORT.getObjetEventListeners();"); j(" }"); jNewLine(); j(" public void fireObjetCree(java.lang.String msg, " + pkgPrefixCorba_ + ".objet.IObjet o)"); j(" {"); j(" if(muet_) return ;"); j(" " + pkgPrefixCorba_ + ".evenement.IObjetEvent e=_creeEvenementObjetEvent();"); j(" e.setMessage(msg);"); j(" e.setSource(o);"); j(" e.setChamp(\"\");"); j(" EVT_SUPPORT.fireObjetCree(e);"); j(" }"); jNewLine(); j(" public void fireObjetModifie(java.lang.String msg, " + pkgPrefixCorba_ + ".objet.IObjet o, java.lang.String champ){"); j(" if(muet_) return ;"); j(" " + pkgPrefixCorba_ + ".evenement.IObjetEvent e=_creeEvenementObjetEvent();"); j(" e.setMessage(msg);"); j(" e.setSource(o);"); j(" e.setChamp(champ);"); j(" EVT_SUPPORT.fireObjetModifie(e);"); j(" }"); jNewLine(); j(" public void fireObjetSupprime(java.lang.String msg, " + pkgPrefixCorba_ + ".objet.IObjet o){"); j(" if(muet_) return ;"); j(" " + pkgPrefixCorba_ + ".evenement.IObjetEvent e=_creeEvenementObjetEvent();"); j(" e.setMessage(msg);"); j(" e.setSource(o);"); j(" e.setChamp(\"\");"); j(" EVT_SUPPORT.fireObjetSupprime(e);"); j(" }"); jNewLine(); j(" public void setEventMuet(boolean _b){"); j(" muet_=_b;"); j(" }"); jNewLine(); j(" public boolean getEventMuet(){"); j(" return muet_;"); j(" }"); jNewLine(); j(" public org.omg.PortableServer.POA getPOA(){"); j(" return " + pkgPrefixImpl_ + ".objet." + "CDodico.getPOA();"); j(" }"); jNewLine(); j(" public org.omg.CORBA.ORB getORB(){"); j(" return " + pkgPrefixImpl_ + ".objet." + "CDodico.getORB();"); j(" }"); j(" private org.fudaa.dodico.corba.evenement.IObjetEvent _creeEvenementObjetEvent(){"); j(" org.fudaa.dodico.evenement.DObjetEvent o=new org.fudaa.dodico.evenement.DObjetEvent();"); j(" if(isUsineLocale_) return o;"); j(" org.fudaa.dodico.corba.evenement.IObjetEvent_Tie nouvTie=new org.fudaa.dodico.corba.evenement.IObjetEvent_Tie(o,getPOA());"); j(" org.fudaa.dodico.corba.evenement.IObjetEvent iobjet=null;"); j(" try{iobjet=org.fudaa.dodico.corba.evenement.IObjetEventHelper.narrow(getPOA().servant_to_reference(nouvTie));}"); j(" catch(Exception e){e.printStackTrace();return null;}"); j(" o.setTie(iobjet);"); j(" return iobjet;"); j(" }"); } /** * Ant: ajout du fichier de destination idl. * @param _f le fichier de destination. */ public void setIdlDest(File _f) { idlDest_ = _f; } /** * Ant: ajout du prefixe pour les packages d'implantation. * * @param _s */ public void setPkgPrefixImpl(String _s) { if (_s != null) pkgPrefixImpl_ = _s.trim(); } /** * Ant: ajout du prefixe pour les packages idl. * * @param _s */ public void setPkgPrefixCorba(String _s) { if (_s != null) pkgPrefixCorba_ = _s.trim(); } /** * Ant: ajout du fichier de destination java. * * @param _f */ public void setJavaDest(File _f) { javaDest_ = _f; } /** * Ant: ajout du prefixe pour les objets java (et les fichiers). * * @param _s */ public void setJavaPrefix(String _s) { if (_s != null) javaPrefix_ = _s.trim(); } /** * Ant: ajout du prefixe pour les objets corba. * * @param _s */ public void setIdlPrefix(String _s) { if (_s != null) idlPrefix_ = _s.trim(); } /** * Ant: fileset listant les repertoires. * * @param _set les nouveaux fichiers java */ public void addJavaImplDir(FileSet _set) { javaImplDir_.add(_set); } /** * @param _set les nouveaux fichiers idl */ public void addIdlFic(FileSet _set) { idlFileSet_.add(_set); } /** * @exception BuildException si erreur a l'exe */ public void execute() throws BuildException { Vector idlModule = new Vector(); if (idlDest_ == null) log("Fichier idl non créé"); if (javaDest_ == null) log("Fichier java non créé"); if ((idlDest_.exists()) && (javaDest_.exists())) { log("Les 2 fichiers de destination existent"); return; } else log("Mise a jour de l'usine"); for (int i = 0; i < idlFileSet_.size(); i++) { FileSet fs = (FileSet) idlFileSet_.get(i); DirectoryScanner ds = fs.getDirectoryScanner(project); String[] files = ds.getIncludedFiles(); for (int iFiles = 0; iFiles < files.length; iFiles++) { if (!idlDest_.getAbsolutePath().endsWith(files[iFiles])) idlModule.add(files[iFiles]); } } enteteIdl(idlModule); enteteJava(); computeJavaFile(); //Fin des fichiers j("}"); i(" };"); i("};"); iNewLine(); i("#endif"); writeFile(javaBuffer_, javaDest_); writeFile(idlBuffer_, idlDest_); } } --- genereUsine.java DELETED --- |
From: Frederic D. <de...@us...> - 2004-05-05 12:38:45
|
Update of /cvsroot/fudaa/fudaa_devel/dodico/src/org/fudaa/dodico/h2d/reflux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2626/src/org/fudaa/dodico/h2d/reflux Modified Files: H2dRefluxParameters.java H2dRefluxBcManager.java Log Message: Maj Index: H2dRefluxBcManager.java =================================================================== RCS file: /cvsroot/fudaa/fudaa_devel/dodico/src/org/fudaa/dodico/h2d/reflux/H2dRefluxBcManager.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** H2dRefluxBcManager.java 12 Feb 2004 15:32:45 -0000 1.7 --- H2dRefluxBcManager.java 5 May 2004 12:38:36 -0000 1.8 *************** *** 38,42 **** import org.fudaa.dodico.h2d.H2dBoundary; import org.fudaa.dodico.h2d.H2dBoundaryCondition; ! import org.fudaa.dodico.h2d.H2dResource; import org.fudaa.dodico.h2d.type.H2dBcType; import org.fudaa.dodico.h2d.type.H2dBoundaryType; --- 38,42 ---- import org.fudaa.dodico.h2d.H2dBoundary; import org.fudaa.dodico.h2d.H2dBoundaryCondition; ! import org.fudaa.dodico.h2d.resource.H2dResource; import org.fudaa.dodico.h2d.type.H2dBcType; import org.fudaa.dodico.h2d.type.H2dBoundaryType; Index: H2dRefluxParameters.java =================================================================== RCS file: /cvsroot/fudaa/fudaa_devel/dodico/src/org/fudaa/dodico/h2d/reflux/H2dRefluxParameters.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** H2dRefluxParameters.java 31 Mar 2004 08:14:29 -0000 1.8 --- H2dRefluxParameters.java 5 May 2004 12:38:36 -0000 1.9 *************** *** 27,32 **** import org.fudaa.dodico.h2d.H2dNodalPropertyMixte; import org.fudaa.dodico.h2d.H2dParameters; - import org.fudaa.dodico.h2d.H2dResource; import org.fudaa.dodico.h2d.H2dTimeStepGroup; import org.fudaa.dodico.h2d.type.H2dBcType; import org.fudaa.dodico.h2d.type.H2dProjetType; --- 27,32 ---- import org.fudaa.dodico.h2d.H2dNodalPropertyMixte; import org.fudaa.dodico.h2d.H2dParameters; import org.fudaa.dodico.h2d.H2dTimeStepGroup; + import org.fudaa.dodico.h2d.resource.H2dResource; import org.fudaa.dodico.h2d.type.H2dBcType; import org.fudaa.dodico.h2d.type.H2dProjetType; |
From: Frederic D. <de...@us...> - 2004-05-05 12:38:44
|
Update of /cvsroot/fudaa/fudaa_devel/dodico/idl/general In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2626/idl/general Removed Files: CosNaming.idl Log Message: Maj --- CosNaming.idl DELETED --- |
From: Frederic D. <de...@us...> - 2004-05-05 12:38:44
|
Update of /cvsroot/fudaa/fudaa_devel/dodico/src/org/fudaa/dodico/h2d/resource In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2626/src/org/fudaa/dodico/h2d/resource Added Files: H2dResource.java h2d_en.fr_txt Log Message: Maj --- NEW FILE: H2dResource.java --- /* * @file H2dResource.java * @creation 22 sept. 2003 * @modification $Date: 2004/05/05 12:38:35 $ * @license GNU General Public License 2 * @copyright (c)1998-2001 CETMEF 2 bd Gambetta F-60231 Compiegne * @mail de...@fu... */ package org.fudaa.dodico.h2d.resource; import com.memoire.bu.BuResource; import org.fudaa.dodico.commun.DodicoResource; /** * @author deniger * @version $Id: H2dResource.java,v 1.1 2004/05/05 12:38:35 deniger Exp $ */ public class H2dResource extends DodicoResource { public final static H2dResource H2D= new H2dResource(DodicoResource.DODICO); /** * @param _parent */ public H2dResource(BuResource _parent) { super(_parent); } /** * A "shortcut" to get i18n String (FudaaResource.FUDAA.getString) */ public static String getS(String _s) { return H2D.getString(_s); } /** * A "shortcut" to get i18n String (FudaaResource.FUDAA.getString) */ public static String getS(String _s, String _v0) { return H2D.getString(_s, _v0); } /** * A "shortcut" to get i18n String (FudaaResource.FUDAA.getString) */ public static String getS(String _s, String _v0, String _v1) { return H2D.getString(_s, _v0, _v1); } } --- NEW FILE: h2d_en.fr_txt --- (This appears to be a binary file; contents omitted.) |
From: Frederic D. <de...@us...> - 2004-05-05 12:38:11
|
Update of /cvsroot/fudaa/fudaa_devel/dodico/src/org/fudaa/dodico/h2d/resource In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2587/src/org/fudaa/dodico/h2d/resource Log Message: Directory /cvsroot/fudaa/fudaa_devel/dodico/src/org/fudaa/dodico/h2d/resource added to the repository |
From: Frederic D. <de...@us...> - 2004-05-05 12:37:16
|
Update of /cvsroot/fudaa/fudaa_scripts/dodico In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2416/dodico Modified Files: genere_uml.sh Log Message: maj Index: genere_uml.sh =================================================================== RCS file: /cvsroot/fudaa/fudaa_scripts/dodico/genere_uml.sh,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** genere_uml.sh 4 May 2004 11:54:03 -0000 1.5 --- genere_uml.sh 5 May 2004 12:37:08 -0000 1.6 *************** *** 242,245 **** --- 242,246 ---- finHtml $fichierListeInterface_html } + projet="dodico" if [ -e "../fudaa.conf" ] then *************** *** 254,263 **** UML_DIR="build/uml" fi ! dest="$UML_DIR/dodico" if [ -z "$ALMA_DIR" ] then ALMA_DIR="$HOME/alma/" fi ! projet="dodico" echo "destination= ""$dest" fichierTemp=$dest"/tmp.tmp" --- 255,264 ---- UML_DIR="build/uml" fi ! dest="$UML_DIR" if [ -z "$ALMA_DIR" ] then ALMA_DIR="$HOME/alma/" fi ! echo "destination= ""$dest" fichierTemp=$dest"/tmp.tmp" |
From: Frederic D. <de...@us...> - 2004-05-05 12:36:46
|
Update of /cvsroot/fudaa/fudaa_web/src/devel/ebli/documents In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1895/src/devel/ebli/documents Modified Files: index.xml architecture.xml news200311.xml actions.xml Log Message: Maj du site web Index: index.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/ebli/documents/index.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.xml 23 Jan 2004 12:13:44 -0000 1.1 --- index.xml 5 May 2004 12:36:05 -0000 1.2 *************** *** 1,4 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ <!ENTITY url "./../../../"> <!ENTITY lst SYSTEM "file.lst"> --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../ebli.dtd"[ <!ENTITY url "./../../../"> <!ENTITY lst SYSTEM "file.lst"> *************** *** 11,15 **** &lst; </div> ! <ul><li>&fleche;<a href="&url;/devel/documents/index.html">voir tous les documents</a> de &F;</li></ul> </document> --- 11,15 ---- &lst; </div> ! <ul><li>&fleche;<a href="&url;devel/documents/index.html">voir tous les documents</a> de &F;</li></ul> </document> Index: news200311.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/ebli/documents/news200311.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** news200311.xml 23 Jan 2004 12:13:44 -0000 1.1 --- news200311.xml 5 May 2004 12:36:05 -0000 1.2 *************** *** 1,4 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ <!ENTITY title "Ebli nouveautés Nov 2003"> <!ENTITY url "./../../../">]><!--$id$--> --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../ebli.dtd"[ <!ENTITY title "Ebli nouveautés Nov 2003"> <!ENTITY url "./../../../">]><!--$id$--> Index: architecture.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/ebli/documents/architecture.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** architecture.xml 23 Jan 2004 12:13:44 -0000 1.1 --- architecture.xml 5 May 2004 12:36:05 -0000 1.2 *************** *** 1,4 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ <!ENTITY url "./../../../">]><!--$id$--> <xhtml> --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../ebli.dtd"[ <!ENTITY url "./../../../">]><!--$id$--> <xhtml> Index: actions.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/ebli/documents/actions.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** actions.xml 23 Jan 2004 12:13:44 -0000 1.1 --- actions.xml 5 May 2004 12:36:05 -0000 1.2 *************** *** 1,4 **** <?xml version="1.0" encoding="iso-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ <!ENTITY url "./../../../">]> <xhtml> --- 1,4 ---- <?xml version="1.0" encoding="iso-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../ebli.dtd"[ <!ENTITY url "./../../../">]> <xhtml> |
From: Frederic D. <de...@us...> - 2004-05-05 12:36:46
|
Update of /cvsroot/fudaa/fudaa_web/src/applications In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1895/src/applications Modified Files: refonde.xml index.xml reflux.xml oasis.xml lido.xml vag.xml dimduc.xml Added Files: app.dtd Log Message: Maj du site web Index: index.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/applications/index.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.xml 23 Jan 2004 12:04:34 -0000 1.1 --- index.xml 5 May 2004 12:36:05 -0000 1.2 *************** *** 1,6 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../fudaa-org.dtd"[ ! <!ENTITY url "../"> ! ]> <xhtml> --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "app.dtd"> <xhtml> Index: dimduc.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/applications/dimduc.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** dimduc.xml 23 Jan 2004 12:04:16 -0000 1.1 --- dimduc.xml 5 May 2004 12:36:05 -0000 1.2 *************** *** 1,7 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../fudaa-org.dtd" [ ! <!ENTITY url "../"> ! ]> <!--$id$--><xhtml> --- 1,5 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "app.dtd"> <!--$id$--><xhtml> Index: oasis.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/applications/oasis.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** oasis.xml 23 Jan 2004 12:04:49 -0000 1.1 --- oasis.xml 5 May 2004 12:36:05 -0000 1.2 *************** *** 1,8 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../fudaa-org.dtd" [ ! <!ENTITY oasis SYSTEM "oasis.inc.xml"> ! <!ENTITY url "./../"> ! ]> <!--$id$--><xhtml> --- 1,5 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "app.dtd"> <!--$id$--><xhtml> Index: vag.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/applications/vag.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** vag.xml 5 Mar 2004 15:23:37 -0000 1.3 --- vag.xml 5 May 2004 12:36:05 -0000 1.4 *************** *** 1,7 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../fudaa-org.dtd" [ ! <!ENTITY url "./../"> ! ]> <!--$id$--><xhtml> --- 1,5 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "app.dtd"> <!--$id$--><xhtml> Index: reflux.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/applications/reflux.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** reflux.xml 23 Jan 2004 12:05:03 -0000 1.1 --- reflux.xml 5 May 2004 12:36:05 -0000 1.2 *************** *** 1,8 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../fudaa-org.dtd" [ ! <!ENTITY reflux SYSTEM "reflux.inc.xml"> ! <!ENTITY url "./../"> ! ]> <!--$id$--><xhtml> --- 1,5 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "app.dtd"> <!--$id$--><xhtml> Index: refonde.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/applications/refonde.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** refonde.xml 5 Mar 2004 15:23:40 -0000 1.3 --- refonde.xml 5 May 2004 12:36:05 -0000 1.4 *************** *** 1,8 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../fudaa-org.dtd" [ ! <!ENTITY url "./../"> ! <!ENTITY refonde SYSTEM "refonde.inc.xml"> ! ]> <!--$id$--><xhtml> --- 1,5 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "app.dtd"> <!--$id$--><xhtml> --- NEW FILE: app.dtd --- <!ENTITY % fudaa-org SYSTEM "../../fudaa-org.dtd" > <!ENTITY url "../"> <!ENTITY title "Applications"> <!ENTITY th-app-selected "selected"> <!ENTITY th-accueil-selected "th-accueil-selected"> %fudaa-org; Index: lido.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/applications/lido.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lido.xml 5 Mar 2004 15:23:40 -0000 1.2 --- lido.xml 5 May 2004 12:36:05 -0000 1.3 *************** *** 1,7 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../fudaa-org.dtd" [ ! <!ENTITY url "./../"> ! ]> <!--$id$--><xhtml> --- 1,5 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "app.dtd"> <!--$id$--><xhtml> |
From: Frederic D. <de...@us...> - 2004-05-05 12:36:45
|
Update of /cvsroot/fudaa/fudaa_web/src/devel/dodico/specifications In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1895/src/devel/dodico/specifications Modified Files: physique.xml nommage.xml primitifs.xml index.xml Log Message: Maj du site web Index: index.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/dodico/specifications/index.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.xml 23 Jan 2004 12:11:47 -0000 1.1 --- index.xml 5 May 2004 12:36:03 -0000 1.2 *************** *** 1,4 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ <!ENTITY url "./../../../"> <!ENTITY lst SYSTEM "file.lst"> --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../dodico.dtd"[ <!ENTITY url "./../../../"> <!ENTITY lst SYSTEM "file.lst"> *************** *** 11,15 **** &lst; </div> ! <ul><li>&fleche;<a href="&url;/devel/documents/index.html">voir toutes les spécifications</a> de &F;</li></ul> </document> --- 11,15 ---- &lst; </div> ! <ul><li>&fleche;<a href="&url;devel/documents/index.html">voir toutes les spécifications</a> de &F;</li></ul> </document> Index: primitifs.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/dodico/specifications/primitifs.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** primitifs.xml 23 Jan 2004 12:12:18 -0000 1.1 --- primitifs.xml 5 May 2004 12:36:03 -0000 1.2 *************** *** 1,4 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ <!ENTITY url "./../../../">]> <!--$id$--><xhtml> --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../dodico.dtd"[ <!ENTITY url "./../../../">]> <!--$id$--><xhtml> Index: nommage.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/dodico/specifications/nommage.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** nommage.xml 23 Jan 2004 12:11:48 -0000 1.1 --- nommage.xml 5 May 2004 12:36:03 -0000 1.2 *************** *** 1,40 **** ! <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ ! <!ENTITY url "./../../../">]> ! <!--$id$--><xhtml> &devel-default; <document> ! <auteur>Fred Deniger</auteur> ! <date>2002-12-11</date> ! <resume>L'organisation des fichiers et le nommage des entités CORBA/IDL.</resume> ! <h1>&d-ico;Organisation et Nommage</h1> ! <h2 class="d">IDL</h2> ! <h3>Organisation des dossiers</h3> ! <p> les fichiers <code>idl</code> doivent être placés dans un des 3 sous-répertoires de <code>dodico/idl</code>. Voici la description des sous-répertoires:</p> <div class="centerH"> ! <table class="noir"> ! <tr><th class="couleur">Dossier</th><th class="couleur">Commentaires</th></tr> ! <tr> ! <th>general</th> ! <td>Rassemble les modules de base utiles à tous les autres modules. Les modifications dans ce dossier sont rares.</td> ! </tr> ! <tr> ! <th>metier</th> ! <td>Les modules métiers. Ces modules décrivent un domaine et sont indépendants des codes de calculs.</td> ! </tr> ! <tr> ! <th>code</th> ! <td>Les interfaces de communications des codes de calcul sont écrits dans ce dossier. Ces modules sont composés des structures de données et des 3 interfaces ( <code>IParametres</code>, <code>IResultats</code> et <code>ICalcul</code>) utiles à l'utilisation du code. ! </td></tr> ! </table> </div> ! <p> Les noms des fichiers <code>idl</code> sont toujours en minuscules. Ils doivent être simples,expressifs et tous différents... --- 1,45 ---- ! <?xml version="1.0" encoding="ISO-8859-1"?> ! <!DOCTYPE xhtml SYSTEM "../dodico.dtd" [ ! <!ENTITY url "./../../../"> ! ]> ! <xhtml> &devel-default; <document> ! <auteur>Fred Deniger</auteur> ! <date>2004-04-28</date> ! <resume>L'organisation des fichiers et le nommage des entités CORBA/IDL.</resume> ! <h1>&d-ico;Organisation et Nommage</h1> ! <h2 class="d">IDL</h2> ! <h3>Organisation des dossiers</h3> ! <p> les fichiers <code>idl</code> doivent être placés dans un des 3 sous-répertoires de <code>dodico/idl</code>. Voici la description des sous-répertoires:</p> <div class="centerH"> ! <table class="noir"> ! <tr> ! <th class="couleur">Dossier</th> ! <th class="couleur">Commentaires</th> ! </tr> ! <tr> ! <th>general</th> ! <td>Rassemble les modules de base utiles à tous les autres modules. Les modifications dans ce dossier sont rares.</td> ! </tr> ! <tr> ! <th>metier</th> ! <td>Les modules métiers. Ces modules décrivent un domaine et sont indépendants des codes de calculs.</td> ! </tr> ! <tr> ! <th>code</th> ! <td>Les interfaces de communications des codes de calcul sont écrits dans ce dossier. Ces modules sont composés des structures de données et des 3 interfaces ( <code>IParametres</code>, <code>IResultats</code> et <code>ICalcul</code>) utiles à l'utilisation du code. ! </td> ! </tr> ! </table> </div> ! <p> Les noms des fichiers <code>idl</code> sont toujours en minuscules. Ils doivent être simples,expressifs et tous différents... *************** *** 42,47 **** fichier idl doit reprendre le nom du fichier. </p> ! <h3>Préfixes des entités</h3> ! <p>Toutes les entités <code>idl</code> vont générer des fichiers <code>java</code> dans le dossier <code>build/java_genere</code>. Ces fichiers doivent être compilés dans le package <code>org.fudaa.dodico.corba</code>. --- 47,52 ---- fichier idl doit reprendre le nom du fichier. </p> ! <h3>Préfixes des entités</h3> ! <p>Toutes les entités <code>idl</code> vont générer des fichiers <code>java</code> dans le dossier <code>build/java_genere</code>. Ces fichiers doivent être compilés dans le package <code>org.fudaa.dodico.corba</code>. *************** *** 51,73 **** <div class="centerH"> <table class="noir"> ! <tr> ! <th class="couleur">Préfixe</th> ! <th class="couleur">Signification</th> ! <th class="couleur">Corba</th> ! <th class="couleur">Java</th> ! <th class="couleur">Exemples</th> ! <th class="couleur">Commentaires</th> ! ! </tr> ! <tr> ! <th >L </th> ! <td >Liste (énumeration)</td> ! <td>enum </td> ! <td >Classe contenant un tableau statique des valeurs de l'énumération.</td> ! <td > <p class="important">idl:</p> <table class="large"> ! <tr><td class="code"> ! <pre class="code"> <span class="syntax8">enum</span> LGroupeNavireType <span class="syntax11">{</span> --- 56,78 ---- <div class="centerH"> <table class="noir"> ! <tr> ! <th class="couleur">Préfixe</th> ! <th class="couleur">Signification</th> ! <th class="couleur">Corba</th> ! <th class="couleur">Java</th> ! <th class="couleur">Exemples</th> ! <th class="couleur">Commentaires</th> ! </tr> ! <tr> ! <th>L </th> ! <td>Liste (énumeration)</td> ! <td>enum </td> ! <td>Classe contenant un tableau statique des valeurs de l'énumération.</td> ! <td> <p class="important">idl:</p> <table class="large"> ! <tr> ! <td class="code"> ! <pre class="code" xml:space="preserve"> <span class="syntax8">enum</span> LGroupeNavireType <span class="syntax11">{</span> *************** *** 79,101 **** <span class="syntax11">}</span>; </pre> ! </td></tr></table> <p class="important">java :</p> <table class="large"> ! <tr><td class="code"> LGroupeNavireType.PASSAGER ! </td></tr></table> </td> ! <td >Liste de valeurs alternatives</td> ! </tr> ! <tr> ! <th >S</th> ! <td >Structure</td> ! <td >struct</td> ! <td >Classe finale donnant accès aux données de la structure.</td> ! <td > <p class="important">idl:</p> <table class="large"> ! <tr><td class="code"> ! <pre class="code"> <span class="syntax8">struct</span> SPoint <span class="syntax11">{</span> --- 84,112 ---- <span class="syntax11">}</span>; </pre> ! </td> ! </tr> ! </table> <p class="important">java :</p> <table class="large"> ! <tr> ! <td class="code"> LGroupeNavireType.PASSAGER ! </td> ! </tr> ! </table> </td> ! <td>Liste de valeurs alternatives</td> ! </tr> ! <tr> ! <th>S</th> ! <td>Structure</td> ! <td>struct</td> ! <td>Classe finale donnant accès aux données de la structure.</td> ! <td> <p class="important">idl:</p> <table class="large"> ! <tr> ! <td class="code"> ! <pre class="code" xml:space="preserve"> <span class="syntax8">struct</span> SPoint <span class="syntax11">{</span> *************** *** 105,159 **** <span class="syntax11">}</span>; </pre> ! </td></tr></table> <p class="important">java :</p> <table class="large"> ! <tr><td class="code"> ! SPoint p<span class="syntax11">=</span><span class="syntax6">new</span> <span class="syntax9">SPoint</span>();<br /> ! p.x<span class="syntax11">=</span><span class="syntax12">5</span>;<br /> ! p.y<span class="syntax11">=</span><span class="syntax12">6</span>;<br /> ! p.z<span class="syntax11">=</span><span class="syntax12">7</span>;<br /> ! </td></tr></table> </td> ! <td ><p>Une structure permettant d'organiser les données.</p></td> ! </tr> ! <tr> ! <th >V</th> ! <td >Vecteur</td> ! <td >sequence</td> ! <td >tableau 1 dimension</td> ! <td > <p class="important">idl:</p> <table class="large"> ! <tr><td class="code"> ! <span class="syntax8">typedef</span> <span class="syntax8">sequence</span><SPoint> VSPoint;<br /> ! <br /> ! <span class="syntax8">struct</span> SPolyligne<br /> ! <span class="syntax11">{</span><br /> ! VSPoint points;<br /> ! <span class="syntax11">}</span>;<br /> ! </td></tr></table> <p class="important">java (création d'une polyligne):</p> <table class="large"> ! <tr><td class="code"> ! SPoint[] ligne<span class="syntax11">=</span><span class="syntax6">new</span> SPoint[<span class="syntax12">2</span>];<br /> ! ligne[<span class="syntax12">0</span>]<span class="syntax11">=</span>p0;<br /> ! ligne[<span class="syntax12">1</span>]<span class="syntax11">=</span>p1;<br /> ! SPolyligne poly<span class="syntax11">=</span><span class="syntax6">new</span> <span class="syntax9">SPolyligne</span>();<br /> ! poly.points<span class="syntax11">=</span>ligne;<br /> ! </td></tr></table> </td> ! <td ><p>Le nom est trompeur: les données ne sont pas gérées comme dans un vecteur. Vous devez utiliser une <code>ICollection</code> ou un <code>ITableau</code> pour manipuler des tableaux dynamiquement.</p></td> ! </tr> ! <tr> ! <th >I</th> ! <td >Interface</td> ! <td >interface</td> ! <td >interface </td> ! <td ><p class="important">idl:</p> <table class="large"> ! <tr><td class="code"> ! <pre class="code"> <span class="syntax6">interface</span> INavireType <span class="syntax11">:</span>iobjet <span class="syntax11">{</span> --- 116,182 ---- <span class="syntax11">}</span>; </pre> ! </td> ! </tr> ! </table> <p class="important">java :</p> <table class="large"> ! <tr> ! <td class="code"> ! SPoint p<span class="syntax11">=</span><span class="syntax6">new</span> <span class="syntax9">SPoint</span>();<br/> ! p.x<span class="syntax11">=</span><span class="syntax12">5</span>;<br/> ! p.y<span class="syntax11">=</span><span class="syntax12">6</span>;<br/> ! p.z<span class="syntax11">=</span><span class="syntax12">7</span>;<br/> </td> ! </tr> ! </table> ! </td> ! <td><p>Une structure permettant d'organiser les données.</p></td> ! </tr> ! <tr> ! <th>V</th> ! <td>Vecteur</td> ! <td>sequence</td> ! <td>tableau 1 dimension</td> ! <td> <p class="important">idl:</p> <table class="large"> ! <tr> ! <td class="code"> ! <span class="syntax8">typedef</span> <span class="syntax8">sequence</span><SPoint> VSPoint;<br/> ! <br/> ! <span class="syntax8">struct</span> SPolyligne<br/> ! <span class="syntax11">{</span><br/> ! VSPoint points;<br/> ! <span class="syntax11">}</span>;<br/> ! </td> ! </tr> ! </table> <p class="important">java (création d'une polyligne):</p> <table class="large"> ! <tr> ! <td class="code"> ! SPoint[] ligne<span class="syntax11">=</span><span class="syntax6">new</span> SPoint[<span class="syntax12">2</span>];<br/> ! ligne[<span class="syntax12">0</span>]<span class="syntax11">=</span>p0;<br/> ! ligne[<span class="syntax12">1</span>]<span class="syntax11">=</span>p1;<br/> ! SPolyligne poly<span class="syntax11">=</span><span class="syntax6">new</span> <span class="syntax9">SPolyligne</span>();<br/> ! poly.points<span class="syntax11">=</span>ligne;<br/> ! </td> ! </tr> ! </table> </td> ! <td><p>Le nom est trompeur: les données ne sont pas gérées comme dans un vecteur. Vous devez utiliser une <code>ICollection</code> ou un <code>ITableau</code> pour manipuler des tableaux dynamiquement.</p></td> ! </tr> ! <tr> ! <th>I</th> ! <td>Interface</td> ! <td>interface</td> ! <td>interface </td> ! <td><p class="important">idl:</p> <table class="large"> ! <tr> ! <td class="code"> ! <pre class="code" xml:space="preserve"> <span class="syntax6">interface</span> INavireType <span class="syntax11">:</span>iobjet <span class="syntax11">{</span> *************** *** 164,193 **** <span class="syntax11">}</span>; </pre> ! </td></tr></table> <p class="important">java :</p> <table class="large"> ! <tr><td class="code"> INavireType navire<span class="syntax11">=</span><br/> CDodico.<span class="syntax9">findUsine</span>().<span class="syntax9">creeNavireType</span>();<br/> navire.<span class="syntax9">longueur</span>(<span class="syntax12">5</span>);<br/> navire.<span class="syntax9">largueur</span>(<span class="syntax12">6</span>);<br/> ! navire.<span class="syntax9">type</span>(<span class="syntax3">"passagerV1"</span>);<br/> navire.<span class="syntax9">groupeNavire</span>(LGroupeNavireType.PASSAGER);<br/> - </td></tr></table> </td> ! <td ><p> L'interface générée à partir de l'idl doit être implantée en java.</p></td> ! </tr> ! </table> </div> ! <h3>Entête type</h3> ! <p>Vous trouverez ci-dessous une entête type pour les fichiers idl. L'exemple est pris pour le fichier geometrie.idl du dossier <code>general</code>. </p> <div class="centerH"> <table class="large"> ! <tr><td class="code"> ! <pre> ! <span class="syntax1">/*</span> <span class="syntax1"> * @file geometrie.idl</span> <span class="syntax1"> * @creation 1998-02-18</span> --- 187,222 ---- <span class="syntax11">}</span>; </pre> ! </td> ! </tr> ! </table> <p class="important">java :</p> <table class="large"> ! <tr> ! <td class="code"> INavireType navire<span class="syntax11">=</span><br/> CDodico.<span class="syntax9">findUsine</span>().<span class="syntax9">creeNavireType</span>();<br/> navire.<span class="syntax9">longueur</span>(<span class="syntax12">5</span>);<br/> navire.<span class="syntax9">largueur</span>(<span class="syntax12">6</span>);<br/> ! navire.<span class="syntax9">type</span>(<span class="syntax3">"passagerV1"</span>);<br/> navire.<span class="syntax9">groupeNavire</span>(LGroupeNavireType.PASSAGER);<br/> </td> ! </tr> ! </table> ! </td> ! <td><p> L'interface générée à partir de l'idl doit être implantée en java.</p></td> ! </tr> ! </table> </div> ! <h3>Entête type</h3> ! <p>Vous trouverez ci-dessous une entête type pour les fichiers idl. L'exemple est pris pour le fichier geometrie.idl du dossier <code>general</code>. </p> <div class="centerH"> <table class="large"> ! <tr> ! <td class="code"> ! <pre xml:space="preserve"> ! <span class="syntax1">/**</span> <span class="syntax1"> * @file geometrie.idl</span> <span class="syntax1"> * @creation 1998-02-18</span> *************** *** 195,221 **** <span class="syntax1"> * @license GNU General Public License 2</span> <span class="syntax1"> * @copyright (c)1998-2001 CETMEF 2 bd Gambetta F-60231 Compiegne</span> ! <span class="syntax1"> * @mail de...@fu...</span> <span class="syntax1"> */</span> </pre> ! </td><td class="comment">Seules les lignes @file et @creation seront modifiées.</td></tr> ! <tr><td class="code"> ! <pre> #ifndef _GEOMETRIE_IDL #define _GEOMETRIE_IDL </pre> ! </td><td class="comment">Cette commande C est utilisée pour éviter de redéfinir inutilement la méme entité. Il suffit d'adapter le terme <code>_GEOMETRIE_IDL</code> ! à votre cas.</td></tr> ! <tr><td class="code"> ! <pre> ! #include <span class="syntax3">"general/mathematiques.idl"</span> ! #include <span class="syntax3">"general/collection.idl"</span> </pre> ! </td><td class="comment">les commandes <code>#include</code> permettent d'utiliser les entités définies dans d'autres fichiers ( <code>mathématiques.idl</code> et <code>collection.idl</code> dans ce cas). ! </td></tr> ! <tr><td class="code"> ! <pre> <span class="syntax1">/**</span> <span class="syntax1"> * @version $Id$</span> --- 224,259 ---- <span class="syntax1"> * @license GNU General Public License 2</span> <span class="syntax1"> * @copyright (c)1998-2001 CETMEF 2 bd Gambetta F-60231 Compiegne</span> ! <span class="syntax1"> * @mail fud...@li...</span> <span class="syntax1"> */</span> </pre> ! </td> ! <td class="comment">Seules les lignes @file et @creation seront modifiées.</td> ! </tr> ! <tr> ! <td class="code"> ! <pre xml:space="preserve"> #ifndef _GEOMETRIE_IDL #define _GEOMETRIE_IDL </pre> ! </td> ! <td class="comment">Cette commande C est utilisée pour éviter de redéfinir inutilement la méme entité. Il suffit d'adapter le terme <code>_GEOMETRIE_IDL</code> ! à votre cas.</td> ! </tr> ! <tr> ! <td class="code"> ! <pre xml:space="preserve"> ! #include <span class="syntax3">"general/mathematiques.idl"</span> ! #include <span class="syntax3">"general/collection.idl"</span> </pre> ! </td> ! <td class="comment">les commandes <code>#include</code> permettent d'utiliser les entités définies dans d'autres fichiers ( <code>mathématiques.idl</code> et <code>collection.idl</code> dans ce cas). ! </td> ! </tr> ! <tr> ! <td class="code"> ! <pre xml:space="preserve"> <span class="syntax1">/**</span> <span class="syntax1"> * @version $Id$</span> *************** *** 223,297 **** <span class="syntax1"> */</span> </pre> ! </td><td class="comment">La ligne @version sera remplie automatiquement par CVS. Il reste à remplir ! la ligne @author et à ajouter d'éventuels commentaires.</td></tr> ! <tr><td class="code"> ! <pre> <span class="syntax6">module</span> geometrie <span class="syntax11">{</span> </pre> ! </td><td class="comment">Le début du module.</td></tr> ! </table> </div> ! ! ! <h2 class="d">Fichiers Java</h2> ! <h3>Dossiers et fichiers</h3> ! <p> Les fichiers java se trouvent tous dans le répertoire de base <code>dodico/src</code>. Les dossiers de chaque projet doit correspondre au module <code>idl</code> correspondant. Si vous créez un ! module dans <code>idl/code/monCode.idl</code>, le code d'implantation se trouvera dans le dossier ! <code>src/org/fudaa/dodico/monCode/</code>. </p> ! <h3>Préfixes des fichiers</h3> ! <p> <span class="important">En général</span>, les classes créées sont des implantations d'interfaces <code>idl</code> et sont des classes déléguées d'où le préfixe <code>D</code>. Pour l'intégration d'un code de calcul, 3 classes seront créées: ! <code>DParametresMonCode.java</code>, <code>DCalculMonCode.java</code> et ! <code>DResultatsMonCode.java</code>. </p> ! <p> Pour les objets métiers, il n'y a pas de préfixe à utiliser. Les noms des fichiers doivent être compréhensibles. </p> ! <p> <span class="important">Les classes "utilitaires" du dossier <code>objet</code>, commençant par <code>C</code>, sont très rarement modifiées</span>. </p> ! <h3>L'usine</h3> ! <p>L'usine (<code>general/usine.idl</code> et <code>usine/DUsine.java</code>) est générée à partir des fichiers idl (en partie) et des fichiers java. Seules les classes java publiques, non abstraites et ayant un constructeur publique sans argument seront ajoutées à l'usine.</p> ! <p>Afin de faciliter la génération, quelques règles doivent être suivies. Les déclarations de classe et de constructeur doivent tenir sur une seule ligne (cf l'exemple).</p> ! <p>&warn;<span class="important">Ne pas écrire</span> ( ces lignes seront mal interprétées ):</p> ! <table class="simple"> ! <tr><td class="code"> ! <span class="syntax6"> public</span> <span class="syntax8">class</span><br />DTache ! </td></tr></table> ! <p>&warn;<span class="important">Utiliser l'écriture suivante</span>:</p> ! <table class="simple"> ! <tr><td class="code"> <span class="syntax6">public</span> <span class="syntax8">class</span> DTache ! </td></tr></table> ! ! <h2 class="d">Intégration d'un code de calcul</h2> ! <p>Pourl'intégration d'un code de calcul <code>monCode</code>, voici les noms que vous devrez utiliser:</p> ! <ul> ! <li>&chevron;Créer le fichier <code>idl/code/monCode.idl,</code></li> ! <li>&chevron;Dans ce fichier: créer le module <code>monCode</code> et les structures nécessaires,</li> ! <li>&chevron;Ecrire également les 3 interfaces <code>IParametresMonCode</code>, ! <code>ICalculMonCode</code> et <code>IResultatMonCode</code>.</li> ! <li>&chevron;L'implantation java: Créer le dossier ! <code>src/org/fudaa/dodico/moncode/</code>.</li> ! <li>&chevron;Dans ce dossier: remplir les 3 fichiers ! <code>DParametresMonCode</code>,<code>DCalculMonCode</code> et ! <code>DResultatsMonCode</code>.</li> ! </ul> ! </document> </xhtml> --- 261,345 ---- <span class="syntax1"> */</span> </pre> ! </td> ! <td class="comment">La ligne @version sera remplie automatiquement par CVS. Il reste à remplir ! la ligne @author et à ajouter d'éventuels commentaires.</td> ! </tr> ! <tr> ! <td class="code"> ! <pre xml:space="preserve"> <span class="syntax6">module</span> geometrie <span class="syntax11">{</span> </pre> ! </td> ! <td class="comment">Le début du module.</td> ! </tr> ! </table> </div> ! <h2 class="d">Fichiers Java</h2> ! <h3>Dossiers et fichiers</h3> ! <p> Les fichiers java se trouvent tous dans le répertoire de base <code>dodico/src</code>. Les dossiers de chaque projet doit correspondre au module <code>idl</code> correspondant. Si vous créez un ! module dans <code>idl/code/exemple.idl</code>, le code d'implantation se trouvera dans le dossier ! <code>src/org/fudaa/dodico/exemple/</code>. </p> ! <h3>Préfixes des fichiers</h3> ! <p> <span class="important">En général</span>, les classes créées sont des implantations d'interfaces <code>idl</code> et sont des classes déléguées d'où le préfixe <code>D</code>. Pour l'intégration d'un code de calcul, 3 classes seront créées: ! <code>DParametresExemple.java</code>, <code>DCalculExemple.java</code> et ! <code>DResultatsExemple.java</code>. </p> ! <p>&warn; Seule la première lettre de exemple doit être en majuscule.</p> ! <p> Pour les objets métiers, il n'y a pas de préfixe à utiliser. Les noms des fichiers doivent être compréhensibles. </p> ! <p> <span class="important">Les classes "utilitaires" du dossier <code>objet</code>, commençant par <code>C</code>, sont très rarement modifiées</span>. </p> ! <h3>L'usine</h3> ! <p>L'usine (<code>general/usine.idl</code> et <code>usine/DUsine.java</code>) est générée à partir des fichiers idl (en partie) et des fichiers java. Seules les classes java publiques, non abstraites et ayant un constructeur publique sans argument seront ajoutées à l'usine.</p> ! <p>&warn;<span class="important">Vous devez toujours utiliser l'usine pour créer des objets corba</span></p> ! <p>Afin de faciliter la génération, quelques règles doivent être suivies. Les déclarations de classe et de constructeur doivent tenir sur une seule ligne (cf l'exemple).</p> ! <p>&warn;<span class="important">Ne pas écrire</span> ( ces lignes seront mal interprétées ):</p> ! <table class="simple"> ! <tr> ! <td class="code"> ! <span class="syntax6"> public</span> <span class="syntax8">class</span><br/>DTache ! </td> ! </tr> ! </table> ! <p>&warn;<span class="important">Utiliser l'écriture suivante</span>:</p> ! <table class="simple"> ! <tr> ! <td class="code"> <span class="syntax6">public</span> <span class="syntax8">class</span> DTache ! </td> ! </tr> ! </table> ! <h2 class="d">Intégration d'un code de calcul</h2> ! <p>Pourl'intégration d'un code de calcul <code>monCode</code>, voici les noms que vous devrez utiliser:</p> ! <ul> ! <li>&chevron;Créer le fichier <code>idl/exemple/exemple.idl,</code></li> ! <li>&chevron;Dans ce fichier: créer le module <code>exemple</code> et les structures nécessaires,</li> ! <li>&chevron;Ecrire également les 3 interfaces <code>IParametresExemple</code>, ! <code>ICalculExemple</code> et <code>IResultatExemple</code>.</li> ! <li>&chevron;L'implantation java: Créer le dossier ! <code>src/org/fudaa/dodico/exemple/</code>.</li> ! <li>&chevron;Dans ce dossier: remplir les 3 fichiers ! <code>DParametresExemple</code>,<code>DCalculExemple</code> et ! <code>DResultatsExemple</code>.</li> ! </ul> ! </document> </xhtml> Index: physique.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/dodico/specifications/physique.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** physique.xml 23 Jan 2004 12:12:18 -0000 1.1 --- physique.xml 5 May 2004 12:36:03 -0000 1.2 *************** *** 1,4 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ <!ENTITY url "./../../../">]> <!--$id$--><xhtml> --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../dodico.dtd"[ <!ENTITY url "./../../../">]> <!--$id$--><xhtml> |
From: Frederic D. <de...@us...> - 2004-05-05 12:36:45
|
Update of /cvsroot/fudaa/fudaa_web/src/style In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1895/src/style Modified Files: default.css Removed Files: accueil.css devel.css Log Message: Maj du site web --- devel.css DELETED --- --- accueil.css DELETED --- Index: default.css =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/style/default.css,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** default.css 5 Mar 2004 15:23:40 -0000 1.4 --- default.css 5 May 2004 12:36:05 -0000 1.5 *************** *** 1,124 **** body { ! background-color : #FFFFFF; ! color : #000000; ! font-size : 12px; ! font-family: "Times New Roman", serif; } /*La table principale contenant tous les elements*/ #body-table { ! width : 98%; ! background-color : #FFFFFF; ! color : #000000; } a:visited, a:link{ ! color : #0000FF; ! background-color : transparent; ! text-decoration : none; ! white-space:nowrap; } - a:hover { ! text-decoration : underline; ! } ! a img{ ! border : none; ! vertical-align :middle; ! text-align : center; } h1 { ! font-size: 16px; ! font-weight : bold; ! font-family:"Arial", sans-serif; ! color : #000000; ! text-align : center; ! margin-top : 15px; ! vertical-align : middle; } - h1 img { ! vertical-align : middle; ! margin-right : 3px; ! } ! ! h2 { ! clear : both; ! text-decoration : none; ! font-weight : bold; ! font-size : 14px; ! font-family:"Arial", sans-serif; ! color : #000000; ! background-color: #CCCCCC; ! margin-top : 30px; ! margin-left : 10px; ! vertical-align : middle; ! text-align : left; } ! ! h2.c,h2.d,h2.e,h2.f ! { ! background-color : #CCCCCC; } - span.c-txt,span.d-txt,span.e-txt,span.F-txt,span.fu-txt { ! font-weight : bold; } ! ! h2.c,span.c-txt { ! color : #CC9900; } ! ! h2.d,span.d-txt { ! color : #990000; } ! h2.e,span.e-txt { ! color : #669900; } ! h2.f,span.fu-txt { ! color : #3300FF; } - h2 img { ! vertical-align : middle; ! margin-right : 3px; } - h3 { ! font-size : 14px; ! font-weight : bold; ! text-decoration : underline; ! font-family:"Arial", sans-serif; ! color : #000000; ! margin-top : 20px; ! margin-left : 10px; ! margin-bottom :10px; ! vertical-align : middle; } - h4 { ! color : #000000; ! font-family:"Arial", sans-serif; ! font-weight : bold; ! margin-top : 20px; ! margin-left : 10px; ! margin-bottom :10px; ! vertical-align : middle; ! } table.centre { ! text-align : center; ! page-break-inside : avoid; } div.centre { ! text-align : center; ! margin : 2px; } p { ! text-align : justify; ! margin-top : 20px; ! margin-left : 20px; ! margin-right : 20px; } - p.note { text-align : justify; --- 1,93 ---- body { ! background-color : #FFFFFF; ! color : #000000; ! font-size : 9px; ! font-family: "Arial"; } /*La table principale contenant tous les elements*/ #body-table { ! width : 100%; ! background-color : #FFFFFF; ! color : #000000; } a:visited, a:link{ ! color : #085AAD; ! background-color : transparent; ! white-space:nowrap; } a:hover { ! text-decoration : none; } + a img { + border : none; + vertical-align :middle; + text-align : center; + } h1 { ! font-size: 14pt; ! font-weight : bold; ! font-family: "Arial", sans-serif; ! color : #085AAD; ! text-align : center; ! vertical-align : middle; } h1 img { ! vertical-align : middle; ! margin-right : 3px; } ! h2,h2.c,h2.d,h2.e,h2.f { ! font-weight: bold; ! font-size: 12pt; ! font-family: "Arial"; ! color: #6499CE; } span.c-txt,span.d-txt,span.e-txt,span.F-txt,span.fu-txt { ! font-weight : bold; } ! span.c-txt { ! color : #CC9900; } ! span.d-txt { ! color : #990000; } ! span.e-txt { ! color : #669900; } ! span.fu-txt { ! color : #3300FF; } h2 img { ! vertical-align : middle; ! margin-right : 3px; } h3 { ! font-size: 12pt; ! margin-bottom :10px; ! margin-left : 10px; } h4 { ! color : #000000; ! font-family:"Arial", sans-serif; ! font-weight : bold; ! margin-top : 20px; + margin-bottom :10px; + vertical-align : middle; + } table.centre { ! text-align : center; ! page-break-inside : avoid; } div.centre { ! text-align : center; ! margin : 2px; } p { ! text-align : justify; ! margin-top : 20px; ! margin-left : 20px; ! margin-right : 20px; } p.note { text-align : justify; *************** *** 135,139 **** .important { font-weight : bold; ! } p.important { font-weight : bold; --- 104,108 ---- .important { font-weight : bold; ! } p.important { font-weight : bold; *************** *** 142,146 **** margin-right : 20px; } - p.left { text-align : left; --- 111,114 ---- *************** *** 160,164 **** font-weight : bold; } - span.saut-page { background-color : transparent; --- 128,131 ---- *************** *** 166,174 **** } code,p.code { ! font-family: "Courier", monospace; font-style : normal; background-color : transparent; font-size : 12px; ! color : #333333; } p.code { --- 133,141 ---- } code,p.code { ! font-family: "Arial"; font-style : normal; background-color : transparent; font-size : 12px; ! color : #555555; } p.code { *************** *** 216,221 **** vertical-align : top; } ! table.left ! { margin-left: 30px; } --- 183,187 ---- vertical-align : top; } ! table.left { margin-left: 30px; } *************** *** 228,232 **** background-color : #000000; } ! table.noir{ text-align : left; vertical-align : top; --- 194,198 ---- background-color : #000000; } ! table.noir { text-align : left; vertical-align : top; *************** *** 238,249 **** width:95%; } ! table.noir td,table.noir th{ border: 1px solid #000000; } ! ! table.large{ width : 95%; } ! td,td.sep{ background-color : #FFFFFF; text-align : left; --- 204,214 ---- width:95%; } ! table.noir td,table.noir th { border: 1px solid #000000; } ! table.large { width : 95%; } ! td,td.sep { background-color : #FFFFFF; text-align : left; *************** *** 267,281 **** vertical-align : middle; } ! th{ background-color : #FFFFFF; text-align : left; vertical-align : top; ! padding: 4px; } ! div.centre img ! { padding : 5px; } - table.large-center { text-align : center; --- 232,244 ---- vertical-align : middle; } ! th { background-color : #FFFFFF; text-align : left; vertical-align : top; ! padding: 4px; } ! div.centre img { padding : 5px; } table.large-center { text-align : center; *************** *** 284,292 **** border : none; } - table.noir th,th.couleur, table.sommaire th,table.beige th { background-color : #FFFFFF; } - table.beige,table.sommaire { margin-top : 5px; --- 247,253 ---- *************** *** 294,298 **** border-collapse:collapse; } - table.sommaire { width : 95%; --- 255,258 ---- *************** *** 300,321 **** border : 2px solid #000000; } ! ! table.sommaire td,table.beige td,table.beige th,table.sommaire th{ border : 1px solid #000000; padding : 2px; } ! ! table.oneBorder{ border-collapse:collapse; border-spacing:0px; width:95%; } ! ! table.oneBorder td{ border-top:1px solid #000000; border-bottom:1px solid #000000; } - - th.espace { padding-top : 20px; --- 260,276 ---- border : 2px solid #000000; } ! table.sommaire td,table.beige td,table.beige th,table.sommaire th { border : 1px solid #000000; padding : 2px; } ! table.oneBorder { border-collapse:collapse; border-spacing:0px; width:95%; } ! table.oneBorder td { border-top:1px solid #000000; border-bottom:1px solid #000000; } th.espace { padding-top : 20px; *************** *** 324,335 **** display : none; } ! ! div.petit, div.petit span.c-txt,div.petit span.d-txt, div.petit span.e-txt, div.petit,div.petit-right span.f-txt ! { margin-top: 5px; font-size : smaller; font-weight : normal; } - div.petit-right{ text-align:right; --- 279,287 ---- display : none; } ! div.petit, div.petit span.c-txt,div.petit span.d-txt, div.petit span.e-txt, div.petit,div.petit-right span.f-txt { margin-top: 5px; font-size : smaller; font-weight : normal; } div.petit-right{ text-align:right; *************** *** 337,341 **** margin-right:2px; } - /******************************************************************************/ /*************** special ******************************************************/ --- 289,292 ---- *************** *** 349,353 **** color : #666666; } - td.note,span.note { text-align : justify; --- 300,303 ---- *************** *** 357,374 **** color : #666666; } ! ! td.note span.important{ font-size : 14px; } - - - - td.right { text-align:right; - } - - td.top-left { vertical-align : top; --- 307,316 ---- color : #666666; } ! td.note span.important { font-size : 14px; } td.right { text-align:right; } td.top-left { vertical-align : top; *************** *** 415,427 **** text-align : right; } - /*************** Header *******************************************************/ ! ! #table-header{ width:98%; padding:0px; margin:auto; text-align:center; - } /** La cellule contenante **/ --- 357,366 ---- text-align : right; } /*************** Header *******************************************************/ ! #table-header { width:98%; padding:0px; margin:auto; text-align:center; } /** La cellule contenante **/ *************** *** 437,442 **** #td-header-logo-fudaa { width : 66px; ! text-align : left; padding : 3px; } #table-header-titre { --- 376,382 ---- #td-header-logo-fudaa { width : 66px; ! text-align : center; padding : 3px; + margin-bottom:10px; } #table-header-titre { *************** *** 467,476 **** font-weight : bold; } - - /*************** Menu *********************************************************/ - - /** Le corps du menu **/ #left-td { vertical-align : top; --- 407,417 ---- font-weight : bold; } /*************** Menu *********************************************************/ /** Le corps du menu **/ + #selected,#selected a span,#selected a{ + background-color :#339900; + color : #F4F4F4; + font-weight : bold; + } #left-td { vertical-align : top; *************** *** 478,524 **** padding-right : 5px; } ! table.menu-projet { ! width : 100%; ! vertical-align : middle; ! font-family:"Arial", sans-serif; ! text-align : left; ! margin-bottom : 10px; ! border : 2px solid #000099; ! border-spacing:0px; ! border-collapse:collapse; ! } - table.menu-projet th,table.menu-projet th.seul{ ! background-color : #CCCCCC; margin: 1px; padding: 2px; padding-left:3px; ! border-bottom : 2px solid #000099; } ! ! table.menu-projet td ! { padding: 1px; padding-left:5px; } ! table.menu-projet th.seul ! { border-bottom : none; } - - /*************** Document *****************************************************/ - /** Le corps du document **/ #document-td { background-color : #FFFFFF; color : #000000; vertical-align : top; padding-bottom : 20px; } - - /*************** Document right ***********************************************/ #right-td { --- 419,459 ---- padding-right : 5px; } ! #left-td a{ ! text-decoration : none; ! } table.menu-projet { ! width : 100%; ! vertical-align : middle; ! font-family:"Arial", sans-serif; ! text-align : left; ! font-size : 9pt; ! margin-bottom : 10px; ! border : 2px solid #339900; ! border-spacing:0px; ! border-collapse:collapse; } table.menu-projet th,table.menu-projet th.seul{ ! background-color : #F4F4F4; margin: 1px; padding: 2px; padding-left:3px; ! border-bottom : 2px solid #339900; } ! table.menu-projet td { padding: 1px; padding-left:5px; } ! table.menu-projet th.seul { border-bottom : none; } /*************** Document *****************************************************/ /** Le corps du document **/ #document-td { background-color : #FFFFFF; color : #000000; + font-size : 9pt; vertical-align : top; padding-bottom : 20px; } /*************** Document right ***********************************************/ #right-td { *************** *** 529,535 **** text-align : right; font-size : 10px; } - - /*************** news *********************************************************/ table.news{ --- 464,469 ---- text-align : right; font-size : 10px; + vertical-align : middle; } /*************** news *********************************************************/ table.news{ *************** *** 538,544 **** color : #000000; border-spacing:3px; - } - table.news a{ font-weight : bold; --- 472,476 ---- *************** *** 551,565 **** margin-left : 4px; } - table.news th { ! background-color :#CCCCFF; margin : 4px; ! border : 2px solid #000000; } - table.news td{ border-bottom : 1px solid #000000; } - table.news-item-odd,table.news-item-even { color : #000000; --- 483,494 ---- margin-left : 4px; } table.news th { ! background-color :#FFD7AE; margin : 4px; ! border : 1px solid #000000; } table.news td{ border-bottom : 1px solid #000000; } table.news-item-odd,table.news-item-even { color : #000000; *************** *** 573,577 **** display : none; } - /*************** code ********************************************************/ table.simple { --- 502,505 ---- *************** *** 579,601 **** height:95%; } - td.code { ! background-color : #EEEEEE; ! text-align : left; ! padding :5px; ! font-family: "Courier", monospace; ! font-size : 10px; ! border: 1px solid #666666; } - td.comment { vertical-align : top; border: 1px solid #666666; } - td.comment p { margin : 5px; } - pre.code,td.code pre { text-align : left; --- 507,525 ---- height:95%; } td.code { ! background-color : #EEEEEE; ! text-align : left; ! padding :5px; ! font-family: "Courier", monospace; ! font-size : 10px; ! border: 1px solid #666666; } td.comment { vertical-align : top; border: 1px solid #666666; } td.comment p { margin : 5px; } pre.code,td.code pre { text-align : left; *************** *** 604,608 **** margin: 0px; } - .syntax0 { color: #000000; --- 528,531 ---- *************** *** 657,661 **** font-weight: bold; } - table.news{ width: 80%; --- 580,583 ---- *************** *** 666,680 **** text-align:center; } - .centerH table{ margin:auto; } - td.table-sommaire-date{ width:10%; } - td.table-sommaire-titre{ width:25%; ! } ! --- 588,599 ---- text-align:center; } .centerH table{ margin:auto; + font-size : 9pt; } td.table-sommaire-date{ width:10%; } td.table-sommaire-titre{ width:25%; ! } \ No newline at end of file |
From: Frederic D. <de...@us...> - 2004-05-05 12:36:43
|
Update of /cvsroot/fudaa/fudaa_web/src/devel/dodico In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1895/src/devel/dodico Modified Files: presentation.xml index.xml Added Files: dodico.dtd Log Message: Maj du site web Index: index.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/dodico/index.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.xml 23 Jan 2004 12:09:00 -0000 1.1 --- index.xml 5 May 2004 12:36:03 -0000 1.2 *************** *** 1,5 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../../fudaa-org.dtd"[ ! <!ENTITY url "./../../">]> <!--$id$--><xhtml> &devel-default; --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "dodico.dtd"> <!--$id$--><xhtml> &devel-default; --- NEW FILE: dodico.dtd --- <!ENTITY % devel-dtd SYSTEM "../devel.dtd" > <!ENTITY url "../../"> <!ENTITY title "Développement- dodico"> <!ENTITY th-devel-selected "th-devel-selected"> <!ENTITY th-dodico-selected "selected"> %devel-dtd; Index: presentation.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/dodico/presentation.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** presentation.xml 23 Jan 2004 12:09:02 -0000 1.1 --- presentation.xml 5 May 2004 12:36:03 -0000 1.2 *************** *** 1,5 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../../fudaa-org.dtd"[ ! <!ENTITY url "./../../">]> <!--$id$--><xhtml> &devel-default; --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "dodico.dtd"> <!--$id$--><xhtml> &devel-default; |
From: Frederic D. <de...@us...> - 2004-05-05 12:36:42
|
Update of /cvsroot/fudaa/fudaa_web/src/devel/dodico/documents In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1895/src/devel/dodico/documents Modified Files: index.xml integration.xml serveur.xml lectureFichierFortran.xml conseils.xml Added Files: usine.xml Log Message: Maj du site web Index: index.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/dodico/documents/index.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.xml 23 Jan 2004 12:09:31 -0000 1.1 --- index.xml 5 May 2004 12:36:02 -0000 1.2 *************** *** 1,4 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ <!ENTITY url "./../../../"> <!ENTITY lst SYSTEM "file.lst"> --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../dodico.dtd"[ <!ENTITY url "./../../../"> <!ENTITY lst SYSTEM "file.lst"> *************** *** 11,15 **** &lst; </div> ! <ul><li>&fleche;<a href="&url;/devel/documents/index.html">voir tous les documents</a> de &F;</li></ul> </document> --- 11,15 ---- &lst; </div> ! <ul><li>&fleche;<a href="&url;devel/documents/index.html">voir tous les documents</a> de &F;</li></ul> </document> --- NEW FILE: usine.xml --- <?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE xhtml SYSTEM "../dodico.dtd" [ <!ENTITY url "./../../../"> ]> <xhtml> &devel-default; <document> <auteur>@cvs@$Author: deniger $@cvs@</auteur> <date> 2004-04-30</date> <resume>Fonctionnement de CORBA, sauvegarde des objets métiers.</resume> <ordre value="3"/> <h1>&d-ico;Dodico et CORBA</h1> <note>Ce document décrit comment CORBA est utilisé dans le projet &d;</note> <h2>Les classes à utiliser</h2> <p>Les paquetages à considérer sont:</p> <ul> <li>-<code>org.fudaa.dodico.objet</code>: gestion du mode de fonctionnement et de l'usine: voir la classe <code>UsineLib</code></li> <li>-<code>org.fudaa.dodico.boony</code>: le projet boony qui permet de sauvegarder des objets métiers</li> </ul> <p>Dodico permet de choisir 2 modes d'utilisation pour CORBA :distant ou local. Ces modes modifient le comportement de l'usine (<code>usine.DUsine</code>), de <code>objet.UsineLib</code> et de <code>boony</code>.</p> <h2>Fonctionnement distant</h2> <p>Dans ce mode, les objets CORBA manipulés sont distants (ce sont en fait des stubs). Ce mode impose qu'une usine soit disponible (en lançant la classe <code>org.fudaa.dodico.usine.ServeurUsine</code>).</p> <p><span class="important">Note</span>: Le document <a href="serveur.@html@"> mise en place d'un serveur</a> explique comment créer une usine et préciser l'adresse IP du serveur de nom. </p> <p> Par défaut, &d; se trouve dans le mode distant. Pour n'utiliser que le mode distant, vous pouvez utiliser la méthode <code>dodico.objet.UsineLib.setOnlyDistant()</code>. Cette fonction est utilisée par la classe <code>ServeurUsine</code>. </p> <h2>Fonctionnement local</h2> <p>Ce mode permet de n'utiliser que des références locales. Cela permet d'"accélérer" les applications qui ne sont pas connectées à des serveurs distants.</p>. <p>Pour passer en mode local, il suffit d'utiliser la méthode <code>UsineLib.setAllLocal(true)</code>. Il est possible de passer du mode local au mode distant mais cela peut causer des exceptions: les références locales n'implantent pas toutes les méthodes CORBA ( normale! ) et une exception sera levée si un orb essaie d'utiliser ces références. </p> <h2>Boony: Sauvegarde des objets CORBA</h2> <p>Boony est un projet indépendant de dodico. Pour l'instant, ces sources sont rassemblées dans le paquetage <code>org.fudaa.dodico.boony</code>. Il permet de sauvegarder et restaurer des objets CORBA à partir de fichiers xml. Avant de l'utiliser, il faut l'initialiser en utilisant la méthode <code>setBoonyImpl(BoonyInterface _impl)</code>. La classe <code>Objet.DodicoBoonyLibImpl</code> est une implantation de l'interface BoonyImpl. Tout comme dodico, Boony prend en compte le mode local.</p> </document> </xhtml> Index: integration.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/dodico/documents/integration.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** integration.xml 23 Jan 2004 12:09:59 -0000 1.1 --- integration.xml 5 May 2004 12:36:03 -0000 1.2 *************** *** 1,25 **** ! <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ ! <!ENTITY url "./../../../">]> ! <!--$id$--><xhtml> &devel-default; <document> ! <auteur>@cvs@$Author$@cvs@</auteur> ! <date> 2002-10-12</date> ! <resume>Présentation des premières étapes à suivre pour intégrer un code de calcul dans un environnement objet distribué.</resume> [...1217 lines suppressed...] ! <td class="code"> ! <br/> System.out.<span class="syntax9">println</span>(<span class="syntax3">"calcul termine"</span>); ! <br/> <span class="syntax11">}</span> ! <br/> <span class="syntax6">catch</span>(Exception e) ! <br/> <span class="syntax11">{</span> ! <br/> System.out.<span class="syntax9">println</span>(e); ! <br/> <span class="syntax11">}</span> ! <br/> ! <br/> <span class="syntax11">}</span> ! <br/><span class="syntax11">}</span> </td> ! <td class="comment"> </td> ! </tr> ! </table> ! <p> ! &fleche;<span class="important">La partie &d; est terminée. La prochaine étape: <a href="./../../../devel/fudaa/documents/interface.html">construction de l'interface graphique</a></span> </p> ! </document> ! </xhtml> Index: lectureFichierFortran.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/dodico/documents/lectureFichierFortran.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lectureFichierFortran.xml 23 Jan 2004 12:10:20 -0000 1.1 --- lectureFichierFortran.xml 5 May 2004 12:36:03 -0000 1.2 *************** *** 1,4 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ <!ENTITY url "./../../../">]> <!--$id$--><xhtml> --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../dodico.dtd"[ <!ENTITY url "./../../../">]> <!--$id$--><xhtml> Index: conseils.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/dodico/documents/conseils.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** conseils.xml 23 Jan 2004 12:09:31 -0000 1.1 --- conseils.xml 5 May 2004 12:36:03 -0000 1.2 *************** *** 1,30 **** ! <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ ! <!ENTITY url "./../../../">]> ! <!--$id$--><xhtml> &devel-default; <document> ! <auteur>@cvs@$Author$@cvs@</auteur> ! <date> 2002-07-02</date> ! <resume>Quelques exemples d'utilisation d'entités idl en java. Cette fiche donne également quelques erreurs régulièrement rencontrées. </resume> ! <ordre value="2"/> ! <h1>&d-ico;Manipulations des objets CORBA</h1> ! <h2 class="d">Exemples simples</h2> ! <div class="centerH"> ! <table class="beige"> ! <tr> ! <th>Type</th> ! <th >IDL</th> ! <th >Java</th> ! </tr> ! <tr> ! <th class="blanc">Liste (énumeration)</th> ! <td> <div class="centerH"> ! <table> ! <tr><td class="code"> ! <pre class="code"> <span class="syntax8">enum</span> LGroupeNavireType <span class="syntax11">{</span> --- 1,32 ---- ! <?xml version="1.0" encoding="ISO-8859-1"?> ! <!DOCTYPE xhtml SYSTEM "../dodico.dtd" [ ! <!ENTITY url "./../../../"> ! ]> ! <xhtml> &devel-default; <document> ! <auteur>@cvs@$Author$@cvs@</auteur> ! <date> 2004-04-28</date> ! <resume>Quelques exemples d'utilisation d'entités idl en java. Cette fiche donne également quelques erreurs régulièrement rencontrées. </resume> ! <ordre value="2"/> ! <h1>&d-ico;Manipulations des objets CORBA</h1> ! <h2 class="d">Exemples simples</h2> <div class="centerH"> ! <table class="noir"> ! <tr> ! <th>Type</th> ! <th>IDL</th> ! <th>Java</th> ! </tr> ! <tr> ! <th class="blanc">Liste (énumeration)</th> ! <td> ! <div class="centerH"> ! <table class="simple"> ! <tr> ! <td class="code"> ! <pre class="code" xml:space="preserve"> <span class="syntax8">enum</span> LGroupeNavireType <span class="syntax11">{</span> *************** *** 36,53 **** <span class="syntax11">}</span>; </pre> ! </td></tr></table></div> ! </td><td> <table class="simple"> ! <tr><td class="code"> LGroupeNavireType.PASSAGER ! </td></tr></table> </td> ! </tr> ! <tr> ! <th class="blanc">Structure</th> ! <td> <table class="simple"> ! <tr><td class="code"> ! <pre class="code"> <span class="syntax8">struct</span> SPoint <span class="syntax11">{</span> --- 38,62 ---- <span class="syntax11">}</span>; </pre> ! </td> ! </tr> ! </table></div> ! </td> ! <td> <table class="simple"> ! <tr> ! <td class="code"> LGroupeNavireType.PASSAGER ! </td> ! </tr> ! </table> </td> ! </tr> ! <tr> ! <th class="blanc">Structure</th> ! <td> <table class="simple"> ! <tr> ! <td class="code"> ! <pre class="code" xml:space="preserve"> <span class="syntax8">struct</span> SPoint <span class="syntax11">{</span> *************** *** 57,100 **** <span class="syntax11">}</span>; </pre> - </td></tr></table> - </td><td> - <table class="simple" width="95%"> - <tr><td class="code"> - SPoint p<span class="syntax11">=</span><span class="syntax6">new</span> <span class="syntax9">SPoint</span>();<br /> - p.x<span class="syntax11">=</span><span class="syntax12">5</span>;<br /> - p.y<span class="syntax11">=</span><span class="syntax12">6</span>;<br /> - p.z<span class="syntax11">=</span><span class="syntax12">7</span>;<br /> - </td></tr></table> </td> ! </tr> ! <tr> ! <th class="blanc">Vecteur</th> ! <td> ! <table class="simple" width="95%"> ! <tr><td class="code"> ! <span class="syntax8">typedef</span> <span class="syntax8">sequence</span><SPoint> VSPoint;<br /> ! <br /> ! <span class="syntax8">struct</span> SPolyligne<br /> ! <span class="syntax11">{</span><br /> ! VSPoint points;<br /> ! <span class="syntax11">}</span>;<br /> ! </td></tr></table> ! </td><td> ! <table class="simple" width="95%"> ! <tr><td class="code"> ! SPoint[] ligne<span class="syntax11">=</span><span class="syntax6">new</span> SPoint[<span class="syntax12">2</span>];<br /> ! ligne[<span class="syntax12">0</span>]<span class="syntax11">=</span>p0;<br /> ! ligne[<span class="syntax12">1</span>]<span class="syntax11">=</span>p1;<br /> ! SPolyligne poly<span class="syntax11">=</span><span class="syntax6">new</span> <span class="syntax9">SPolyligne</span>();<br /> ! poly.points<span class="syntax11">=</span>ligne;<br /> ! </td></tr></table> </td> ! </tr> ! <tr> ! <th class="blanc">Interface</th> ! <td> <table class="simple"> ! <tr><td class="code"> ! <pre class="code"> <span class="syntax6">interface</span> INavireType <span class="syntax11">:</span>iobjet <span class="syntax11">{</span> --- 66,123 ---- <span class="syntax11">}</span>; </pre> </td> ! </tr> ! </table> ! </td> ! <td> ! <table class="simple"> ! <tr> ! <td class="code"> ! SPoint p<span class="syntax11">=</span><span class="syntax6">new</span> <span class="syntax9">SPoint</span>();<br/> ! p.x<span class="syntax11">=</span><span class="syntax12">5</span>;<br/> ! p.y<span class="syntax11">=</span><span class="syntax12">6</span>;<br/> ! p.z<span class="syntax11">=</span><span class="syntax12">7</span>;<br/> ! </td> ! </tr> ! </table> ! </td> ! </tr> ! <tr> ! <th class="blanc">Vecteur</th> ! <td> ! <table class="simple"> ! <tr> ! <td class="code"> ! <span class="syntax8">typedef</span> <span class="syntax8">sequence</span><SPoint> VSPoint;<br/> ! <br/> ! <span class="syntax8">struct</span> SPolyligne<br/> ! <span class="syntax11">{</span><br/> ! VSPoint points;<br/> ! <span class="syntax11">}</span>;<br/> ! </td> ! </tr> ! </table> ! </td> ! <td> ! <table class="simple"> ! <tr> ! <td class="code"> ! SPoint[] ligne<span class="syntax11">=</span><span class="syntax6">new</span> SPoint[<span class="syntax12">2</span>];<br/> ! ligne[<span class="syntax12">0</span>]<span class="syntax11">=</span>p0;<br/> ! ligne[<span class="syntax12">1</span>]<span class="syntax11">=</span>p1;<br/> ! SPolyligne poly<span class="syntax11">=</span><span class="syntax6">new</span> <span class="syntax9">SPolyligne</span>();<br/> ! poly.points<span class="syntax11">=</span>ligne;<br/> </td> ! </tr> ! </table> ! </td> ! </tr> ! <tr> ! <th class="blanc">Interface</th> ! <td> <table class="simple"> ! <tr> ! <td class="code"> ! <pre class="code" xml:space="preserve"> <span class="syntax6">interface</span> INavireType <span class="syntax11">:</span>iobjet <span class="syntax11">{</span> *************** *** 105,161 **** <span class="syntax11">}</span>; </pre> ! </td></tr></table> ! </td><td> <table class="simple"> ! <tr><td class="code"> INavireType navire<span class="syntax11">=</span><br/> CDodico.<span class="syntax9">findUsine</span>().<span class="syntax9">creeNavireType</span>();<br/> navire.<span class="syntax9">longueur</span>(<span class="syntax12">5</span>);<br/> navire.<span class="syntax9">largueur</span>(<span class="syntax12">6</span>);<br/> ! navire.<span class="syntax9">type</span>(<span class="syntax3">"passagerV1"</span>);<br/> navire.<span class="syntax9">groupeNavire</span>(LGroupeNavireType.PASSAGER);<br/> - </td></tr></table> </td> ! </tr> ! </table> </div> ! <h2 class="d">Erreurs fréquentes</h2> ! <h3>Créer une interface</h3> ! <p class="important"><span class="rouge">Erreur</span></p> ! <table cellspacing="1" cellpadding="5" class="simple" > ! <tr><td class="code"> ! IEcluse ecluse<span class="syntax11">=</span><span class="syntax6">new</span> <span class="syntax9">IEcluse</span>(); ! </td></tr></table> ! <p class="important"><span class="vert">Correction</span></p> ! <table class="simple" > ! <tr> ! <td class="code"> ! IEcluse ecluse<span class="syntax11">=</span>CDodico.<span class="syntax9">findUsine</span>().<span class="syntax9">creeNavigationEcluse</span>(); ! </td></tr></table> ! ! <p>La création d'une interface se fait toujours à partir du serveur. Il ! faut récupérer l'usine (<code>CDodico.findUsine()</code>), puis créer l'interface. De plus, <code>IEcluse</code> est une interface et ne peut être instanciée de cette ! manière ( un objet "tie" est en fait utilisé). Le constructeur de <code>DObjet</code>, ! donne un exemple de création d'une interface.</p> ! ! <h3>"Caster" un objet CORBA</h3> ! <p class="important"><span class="rouge">Erreur</span></p> ! <table class="simple" > ! <tr><td class="code"> IEcluseFuviale eclusefluviale<span class="syntax11">=</span>(IEcluseFluviale)tableau.<span class="syntax9">get</span>(i); ! </td></tr></table> ! <p class="important"><span class="vert">Correction</span></p> ! <table cellspacing="1" cellpadding="5" class="simple" > ! <tr> ! <td class="code"> IEcluseFuviale eclusefluviale<span class="syntax11">=</span>IEcluseFluvialeHelper.<span class="syntax9">narrow</span>(tableau.<span class="syntax9">get</span>(i)); ! </td></tr></table> ! <p>Le "cast" d'une interface ne peut pas se faire directement : il faut modifier également ses "représentants" du côté serveur et client. Pour cela, il suffit d'utiliser la méthode <code>narrow</code> fournie par la classe utilitaire <code>IEcluseFluvialeHelper</code>.</p> ! <!-- <h3>Tester une instance</h3> <p class="important"><span class="rouge">Erreur</span></p> <table class="simple" > --- 128,197 ---- <span class="syntax11">}</span>; </pre> ! </td> ! </tr> ! </table> ! </td> ! <td> <table class="simple"> ! <tr> ! <td class="code"> INavireType navire<span class="syntax11">=</span><br/> CDodico.<span class="syntax9">findUsine</span>().<span class="syntax9">creeNavireType</span>();<br/> navire.<span class="syntax9">longueur</span>(<span class="syntax12">5</span>);<br/> navire.<span class="syntax9">largueur</span>(<span class="syntax12">6</span>);<br/> ! navire.<span class="syntax9">type</span>(<span class="syntax3">"passagerV1"</span>);<br/> navire.<span class="syntax9">groupeNavire</span>(LGroupeNavireType.PASSAGER);<br/> </td> ! </tr> ! </table> ! </td> ! </tr> ! </table> </div> ! <h2 class="d">Erreurs fréquentes</h2> ! <h3>Créer une interface</h3> ! <p class="important"><span class="rouge">Erreur</span></p> ! <table cellpadding="5" cellspacing="1" class="simple"> ! <tr> ! <td class="code"> ! IEcluse ecluse<span class="syntax11">=</span><span class="syntax6">new</span> <span class="syntax9">DEcluse</span>(); ! </td> ! </tr> ! </table> ! <p class="important"><span class="vert">Correction</span></p> ! <table class="simple"> ! <tr> ! <td class="code"> ! IEcluse ecluse<span class="syntax11">=</span>UsineLib.<span class="syntax9">findUsine</span>().<span class="syntax9">creeNavigationEcluse</span>(); ! </td> ! </tr> ! </table> ! <p>La création d'une interface se fait toujours à partir du serveur. Il ! faut récupérer l'usine (<code>UsineLib.findUsine()</code>), puis créer l'interface. De plus, <code>IEcluse</code> est une interface et ne peut être instanciée de cette ! manière.</p> ! <h3>"Caster" un objet CORBA</h3> ! <p class="important"><span class="rouge">Erreur</span></p> ! <table class="simple"> ! <tr> ! <td class="code"> IEcluseFuviale eclusefluviale<span class="syntax11">=</span>(IEcluseFluviale)tableau.<span class="syntax9">get</span>(i); ! </td> ! </tr> ! </table> ! <p class="important"><span class="vert">Correction</span></p> ! <table cellpadding="5" cellspacing="1" class="simple"> ! <tr> ! <td class="code"> IEcluseFuviale eclusefluviale<span class="syntax11">=</span>IEcluseFluvialeHelper.<span class="syntax9">narrow</span>(tableau.<span class="syntax9">get</span>(i)); ! </td> ! </tr> ! </table> ! <p>Le "cast" d'une interface ne peut pas se faire directement : il faut modifier également ses "représentants" du côté serveur et client. Pour cela, il suffit d'utiliser la méthode <code>narrow</code> fournie par la classe utilitaire <code>IEcluseFluvialeHelper</code>.</p> ! <h3>Tester une instance</h3> <p class="important"><span class="rouge">Erreur</span></p> <table class="simple" > *************** *** 182,206 **** <span class="syntax11">}</span> </td></tr></table> ! <p>.....</p> ! <h3>Comparer des interfaces</h3> ! <p class="important"><span class="rouge">Erreur</span></p> ! <table class="simple" > ! <tr><td class="code"> ! IEcluse ecluse<span class="syntax11">=</span>ecluses.<span class="syntax9">get</span>(<span class="syntax12">1</span>); ! <br />IEcluse ecluse2<span class="syntax11">=</span>ecluses.<span class="syntax9">get</span>(<span class="syntax12">2</span>); ! <br /><span class="syntax6">if</span>(ecluse.<span class="syntax9">equals</span>(ecluse2) ) ! ... ! </td></tr></table> ! <p class="important"><span class="vert">Correction</span></p> ! <table cellspacing="1" cellpadding="5" class="simple" > ! <tr> ! <td class="code"> ! <span class="syntax6">if</span>(ecluse.<span class="syntax9">egale</span>(ecluse2) ) ! </td></tr></able> ! <p>La méthode "equals" est délicate à utiliser et des doutes subsistent sur ! l'implantation de cette méthode. Il est conseillé d'implanter la méthode ! <code>egale</code> de DObjet et de l'utiliser comme proposé dans la correction. ! <span class="important">Pour les mêmes raisons, la gestion d'interface par ! des listes java Vector, Hashtable,...) doit être évitée.</span></p> --> ! </document> </xhtml> --- 218,222 ---- <span class="syntax11">}</span> </td></tr></table> ! ! </document> </xhtml> Index: serveur.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/dodico/documents/serveur.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** serveur.xml 23 Jan 2004 12:10:43 -0000 1.1 --- serveur.xml 5 May 2004 12:36:03 -0000 1.2 *************** *** 1,4 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ <!ENTITY url "./../../../">]> <!--$id$--><xhtml> --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../dodico.dtd"[ <!ENTITY url "./../../../">]> <!--$id$--><xhtml> *************** *** 114,118 **** </ul> <p>L'usine étant connectée à l'ORB et au diffuseur, elle pourra être ! retrouvée ( <code>CDodico.findUsine()</code>) depuis n'importe quel client pouvant accéder au serveur.</p> --- 114,118 ---- </ul> <p>L'usine étant connectée à l'ORB et au diffuseur, elle pourra être ! retrouvée ( <code>UsineLib.findUsine()</code>) depuis n'importe quel client pouvant accéder au serveur.</p> *************** *** 141,145 **** que le port TCP ( le même que le serveur). Comme pour la partie serveur, vous pouvez utiliser le classe ! <code>org.fudaa.dodico.objet.DodicoPreferencesPanel</code> pour disposer d'une interface graphique conviviale. Vous pouvez également préciser l'adresse de diffusion des datagrammes UDP avec l'adresse IP de la machine cliente. --- 141,145 ---- que le port TCP ( le même que le serveur). Comme pour la partie serveur, vous pouvez utiliser le classe ! <code>org.fudaa.dodico.commun.DodicoPreferencesPanel</code> pour disposer d'une interface graphique conviviale. Vous pouvez également préciser l'adresse de diffusion des datagrammes UDP avec l'adresse IP de la machine cliente. |
From: Frederic D. <de...@us...> - 2004-05-05 12:36:41
|
Update of /cvsroot/fudaa/fudaa_web In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1895 Modified Files: build.xml fudaa-org.dtd Log Message: Maj du site web Index: fudaa-org.dtd =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/fudaa-org.dtd,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** fudaa-org.dtd 4 Mar 2004 18:19:06 -0000 1.2 --- fudaa-org.dtd 5 May 2004 12:36:02 -0000 1.3 *************** *** 25,28 **** --- 25,35 ---- <!ENTITY fu "<span class='fu-txt'>fudaa</span>"> <!ENTITY F "<span class='F-txt'>Fudaa</span>"> + <!ENTITY th-devel-selected "th-devel-selected"> + <!ENTITY th-ctulu-selected "th-ctulu-selected"> + <!ENTITY th-dodico-selected "th-dodico-selected"> + <!ENTITY th-ebli-selected "th-ebli-selected"> + <!ENTITY th-fudaa-selected "th-fudaa-selected"> + <!ENTITY th-accueil-selected "selected"> + <!ENTITY th-app-selected "th-app-selected"> <!--images utilisees--> <!ENTITY fleche "<img src='&url;images/fleche-violet.png' alt='-' width='12' height='8'/>"> Index: build.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/build.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** build.xml 5 Mar 2004 15:23:34 -0000 1.5 --- build.xml 5 May 2004 12:36:01 -0000 1.6 *************** *** 136,142 **** description="construit les archives du projet"> <mkdir dir="${dist.dir}"/> ! <tar tarfile="${dist.dir}/fudaa_web.tar.bz2" compression="bzip2"> ! <tarfileset dir="${build.dir}" prefix="fudaa_web"/> ! </tar> </target> --- 136,142 ---- description="construit les archives du projet"> <mkdir dir="${dist.dir}"/> ! <zip destfile="${dist.dir}/fudaa_web.zip" > ! <zipfileset dir="${build.dir}" prefix="fudaa_web"/> ! </zip> </target> |
From: Frederic D. <de...@us...> - 2004-05-05 12:36:40
|
Update of /cvsroot/fudaa/fudaa_web/src/devel/fudaa/documents In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1895/src/devel/fudaa/documents Modified Files: index.xml interface.xml Added Files: astuces.xml Log Message: Maj du site web Index: index.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/fudaa/documents/index.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.xml 23 Jan 2004 12:14:58 -0000 1.1 --- index.xml 5 May 2004 12:36:00 -0000 1.2 *************** *** 1,4 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ <!ENTITY url "./../../../"> <!ENTITY lst SYSTEM "file.lst"> --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../fudaa.dtd"[ <!ENTITY url "./../../../"> <!ENTITY lst SYSTEM "file.lst"> *************** *** 11,15 **** &lst; </div> ! <ul><li>&fleche;<a href="&url;/devel/documents/index.html">voir tous les documents</a> de &F;</li></ul> </document> --- 11,15 ---- &lst; </div> ! <ul><li>&fleche;<a href="&url;devel/documents/index.html">voir tous les documents</a> de &F;</li></ul> </document> Index: interface.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/fudaa/documents/interface.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** interface.xml 23 Jan 2004 12:15:13 -0000 1.1 --- interface.xml 5 May 2004 12:36:00 -0000 1.2 *************** *** 1,4 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ <!ENTITY url "./../../../">]> <!--$id$--><xhtml> --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../fudaa.dtd"[ <!ENTITY url "./../../../">]> <!--$id$--><xhtml> *************** *** 26,34 **** </p> <h3>Exemple.java</h3> ! <p>Cette classe est appelée en premier. Elle dérive de la classe ! <code>Fudaa</code> issue du package commun et permet de:</p> <ul> <li>&chevron;analyser les paramètres passés sur la ligne de commande,</li> ! <li>&chevron;lancer le terminal standard ( génère des fichiers de log),</li> <li>&chevron;appliquer le look and feel et le langage,</li> <li>&chevron;lancer l'écran d'accuel,</li> --- 26,34 ---- </p> <h3>Exemple.java</h3> ! <p>Cette classe est appelée en premier. Elle est relativement simple (2 lignes) et utilise la classe ! <code>Fudaa</code> du package commun. Les actions:</p> <ul> <li>&chevron;analyser les paramètres passés sur la ligne de commande,</li> ! <li>&chevron;générer ou non un fichier de log),</li> <li>&chevron;appliquer le look and feel et le langage,</li> <li>&chevron;lancer l'écran d'accuel,</li> *************** *** 61,70 **** <ul><li>Renvoie les informations de cette application.</li></ul> </li> - <li> - &chevron;<span class="syntax6">protected</span> <span class="syntax6">abstract</span> <span class="syntax8">void</span> <span class="syntax9">connecter</span>(); - <ul><li>Assure la connexion aux serveurs de calcul. - Il est prévu de remplacer cette méthode.</li></ul> - </li> </ul> <h3>ExemplePreferences.java</h3> <p>La classe ExemplePreferences définit uniquement un singleton afin de typer --- 61,66 ---- <ul><li>Renvoie les informations de cette application.</li></ul> </li> </ul> + <p>De plus, il faut redéfinir toutes les méthodes de connexions issues de FudaaImplementation ( cf VagImplementation et FudaaImplementation). Ces méthodes sont commentées.</p> <h3>ExemplePreferences.java</h3> <p>La classe ExemplePreferences définit uniquement un singleton afin de typer *************** *** 92,95 **** --- 88,96 ---- et <code>FudaaFilleGraphe</code> du package <code>org.fudaa.fudaa.commun</code>. </p> + <p>Les documents à lire</p> + <ul> + <li>&chevron;<a href="astuces.@html@">Recommendations pour fudaa</a></li> + <li>&chevron;<a href="../../dodico/documents/usine.@html@">Dodico et Corba</a></li> + </ul> </document> </xhtml> --- NEW FILE: astuces.xml --- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> <!DOCTYPE xhtml SYSTEM "../fudaa.dtd"[ <!ENTITY url "./../../../">]> <!--$id$--><xhtml> &devel-default; <document> <auteur>@cvs@$Author: deniger $@cvs@</auteur> <date> @cvs@$Date: 2004-04-30</date> <resume> Quelques "astuces" pour simplifier le code. </resume> <h1>&fu-ico;Astuces</h1> <note> Ce document décrit quelques méthodes des classes de bases du projet Fudaa. </note> <h2 class="f">Messages et avancement d'une tâche</h2> <p> Dans la partie inférieure de la fenêtre principale, deux zones sont réservées: la partie gauche pour afficher un message et la partie droite pour l'avancement. </p> <h3>Afficher du texte</h3> <p>Vous pouvez utiliser les méthodes <code>FudaaCommonImplementation.setMainMessage(String _s)</code> ou <code>setMainMessageAndClear(String _msg)</code>. Cette dernière méthode effacera automatiquement le message après 2 secondes. Pour effacer un message explicitement, utiliser la méthode <code>FudaaCommonImplementation.unsetMainMessage()</code>.</p> <h3>Afficher l'avancement</h3> <p> Les méthodes <code>setMainProgression</code> et <code>unsetMainProgression</code> permettent d'actualiser la barre de progression principale. En général, cette barre de progression ne doit être utilisée que pour les tâches lancées dans le fil ("thread") de swing. Si vous voulez lancer une tâche longue et suivre sa progression, vous devez utiliser les <code>BuTask</code> ou <code>BuTaskOperation</code> (lancement de la méthode par réflexion). </p> <h2 class="f">Boîtes de dialogues: messages, confirmations et erreurs</h2> <p>Pour afficher des messages d'erreurs, d'informations ou pour demander confirmation à l'utilisateur vous pouvez utiliser les méthodes <code>FudaaCommonImplementation.error</code>, <code>FudaaCommonImplementation.message</code> et <code>FudaaCommonImplementation.confirmation</code>. Pour toutes ces méthodes, il suffit de préciser le message et éventuellement le titre du message. La méthode "confirmation" renvoie 'true' si l'utilisateur a accepté.</p> <h2 class="f">Suivre le contenu d'un fichier</h2> <p>Pour cela, il suffit d'utiliser la méthode <code>FudaaCommonImplementation.openFileInLogFrame</code>. Cette méthode va ouvrir un "tail" en java qui affichera en temps réel les modifications apportées à un fichier.</p> <h2 class="f">Construire une boîte de dialogue avancée</h2> <p>La classe <code>ebli.dialog.EbliSimpleDialogPanel</code> offre des méthodes intéressantes pour construire une boite de dialogue. Il est possible d'ajouter un sélecteur de fichier, de réserver une place pour les éventuels messages d'erreur et d'interdire la fermeture du dialogue si la saisie est erronée. </p> <h2 class="f">Utiliser les méthodes de FudaaImplementation</h2> <p>Il est recommandé d'utiliser au maximum les méthodes de FudaaImplementation. Ainsi, si une amélioration ou une correction est apportée, elle sera automatique propagée à votre application ! </p> </document> </xhtml> |
From: Frederic D. <de...@us...> - 2004-05-05 12:36:38
|
Update of /cvsroot/fudaa/fudaa_web/src/devel/ctulu/produits In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1895/src/devel/ctulu/produits Modified Files: slaf.xml index.xml bu.xml vainstall.xml koml.xml jcalendar.xml re.xml fdcalc.xml dja.xml ts.xml higlayout.xml yapod.xml Log Message: Maj du site web Index: index.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/ctulu/produits/index.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.xml 23 Jan 2004 12:07:23 -0000 1.1 --- index.xml 5 May 2004 12:35:58 -0000 1.2 *************** *** 1,4 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ <!ENTITY url "./../../../"> <!ENTITY lst SYSTEM "file.lst"> --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../ctulu.dtd"[ <!ENTITY url "./../../../"> <!ENTITY lst SYSTEM "file.lst"> Index: jcalendar.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/ctulu/produits/jcalendar.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** jcalendar.xml 23 Jan 2004 12:07:23 -0000 1.1 --- jcalendar.xml 5 May 2004 12:35:59 -0000 1.2 *************** *** 1,4 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ <!ENTITY url "./../../../"> ]> --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../ctulu.dtd"[ <!ENTITY url "./../../../"> ]> Index: re.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/ctulu/produits/re.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** re.xml 23 Jan 2004 12:07:23 -0000 1.1 --- re.xml 5 May 2004 12:35:59 -0000 1.2 *************** *** 1,4 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ <!ENTITY url "./../../../"> ]> --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../ctulu.dtd"[ <!ENTITY url "./../../../"> ]> Index: dja.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/ctulu/produits/dja.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** dja.xml 23 Jan 2004 12:06:19 -0000 1.1 --- dja.xml 5 May 2004 12:35:59 -0000 1.2 *************** *** 1,4 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ <!ENTITY url "./../../../"> ]> --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../ctulu.dtd"[ <!ENTITY url "./../../../"> ]> Index: slaf.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/ctulu/produits/slaf.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** slaf.xml 23 Jan 2004 12:07:23 -0000 1.1 --- slaf.xml 5 May 2004 12:35:58 -0000 1.2 *************** *** 1,4 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ <!ENTITY url "./../../../"> ]> --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../ctulu.dtd"[ <!ENTITY url "./../../../"> ]> Index: ts.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/ctulu/produits/ts.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ts.xml 23 Jan 2004 12:07:50 -0000 1.1 --- ts.xml 5 May 2004 12:35:59 -0000 1.2 *************** *** 1,4 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ <!ENTITY url "./../../../"> ]> --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../ctulu.dtd"[ <!ENTITY url "./../../../"> ]> Index: yapod.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/ctulu/produits/yapod.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** yapod.xml 23 Jan 2004 12:08:02 -0000 1.1 --- yapod.xml 5 May 2004 12:35:59 -0000 1.2 *************** *** 1,4 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ <!ENTITY url "./../../../"> ]> --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../ctulu.dtd"[ <!ENTITY url "./../../../"> ]> Index: vainstall.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/ctulu/produits/vainstall.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** vainstall.xml 23 Jan 2004 12:08:02 -0000 1.1 --- vainstall.xml 5 May 2004 12:35:59 -0000 1.2 *************** *** 1,4 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ <!ENTITY url "./../../../"> ]> --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../ctulu.dtd"[ <!ENTITY url "./../../../"> ]> Index: higlayout.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/ctulu/produits/higlayout.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** higlayout.xml 23 Jan 2004 12:07:07 -0000 1.1 --- higlayout.xml 5 May 2004 12:35:59 -0000 1.2 *************** *** 1,4 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ <!ENTITY url "./../../../"> ]> --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../ctulu.dtd"[ <!ENTITY url "./../../../"> ]> Index: bu.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/ctulu/produits/bu.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** bu.xml 23 Jan 2004 12:06:13 -0000 1.1 --- bu.xml 5 May 2004 12:35:59 -0000 1.2 *************** *** 1,4 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ <!ENTITY url "./../../../"> ]> --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../ctulu.dtd"[ <!ENTITY url "./../../../"> ]> Index: koml.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/ctulu/produits/koml.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** koml.xml 23 Jan 2004 12:07:23 -0000 1.1 --- koml.xml 5 May 2004 12:35:59 -0000 1.2 *************** *** 1,4 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ <!ENTITY url "./../../../"> ]> --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../ctulu.dtd"[ <!ENTITY url "./../../../"> ]> Index: fdcalc.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/ctulu/produits/fdcalc.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fdcalc.xml 23 Jan 2004 12:06:47 -0000 1.1 --- fdcalc.xml 5 May 2004 12:35:59 -0000 1.2 *************** *** 1,4 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../../devel.dtd"[ <!ENTITY url "./../../../"> ]> --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../ctulu.dtd"[ <!ENTITY url "./../../../"> ]> |
From: Frederic D. <de...@us...> - 2004-05-05 12:36:16
|
Update of /cvsroot/fudaa/fudaa_web/src/devel/ebli In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1895/src/devel/ebli Modified Files: presentation.xml index.xml Added Files: ebli.dtd Log Message: Maj du site web Index: index.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/ebli/index.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.xml 23 Jan 2004 12:12:30 -0000 1.1 --- index.xml 5 May 2004 12:36:07 -0000 1.2 *************** *** 1,5 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../devel.dtd"[ ! <!ENTITY url "./../../">]> <!--$id$--><xhtml> &devel-default; --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "ebli.dtd"> <!--$id$--><xhtml> &devel-default; Index: presentation.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/ebli/presentation.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** presentation.xml 23 Jan 2004 12:12:30 -0000 1.1 --- presentation.xml 5 May 2004 12:36:07 -0000 1.2 *************** *** 1,5 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../devel.dtd"[ ! <!ENTITY url "./../../">]> <!--$id$--> <xhtml> --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "ebli.dtd"> <!--$id$--> <xhtml> --- NEW FILE: ebli.dtd --- <!ENTITY % devel-dtd SYSTEM "../devel.dtd" > <!ENTITY url "../../"> <!ENTITY title "Développement- ebli"> <!ENTITY th-devel-selected "th-devel-selected"> <!ENTITY th-ebli-selected "selected"> %devel-dtd; |
From: Frederic D. <de...@us...> - 2004-05-05 12:36:15
|
Update of /cvsroot/fudaa/fudaa_web/src/devel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1895/src/devel Modified Files: index.xml devel.dtd Log Message: Maj du site web Index: index.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/index.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.xml 23 Jan 2004 12:05:33 -0000 1.1 --- index.xml 5 May 2004 12:36:06 -0000 1.2 *************** *** 1,51 **** ! <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> <!DOCTYPE xhtml SYSTEM "devel.dtd"> - <!--$id$--> <xhtml> - &devel-default; - <document> ! <date> @cvs@$Date$@cvs@ </date> ! <h1>&F-ico; Développement</h1> ! <p>Les technologies utilisées pour le développement sont ! Java ( version 1.3 ) et Corba (version 2.1 ) .Le projet est géré à partir de &sf; ( bogues, support, CVS ). Pour participer au développement, vous devez nous contacter afin d'être ajouté à la liste des développeurs. </p> ! <p> Le projet &F; est décomposé en 4 sous-projets: &c;, &d;, &e; et &fu;: </p> ! <div class="centerH"> <table class="oneBorder"> ! <tr> ! <td> ! <a href="&url;devel/ctulu/">&c-ico;</a> </td> ! <td> ! <a href="&url;devel/ctulu/">&c;</a> est un projet indépendant des autres qui regroupe toutes les bibliothèques externes utilisées dans le projet &F;. Il regroupe des parsers xml, des composants graphiques (boutons, calendrier ), un installeur, un gestionnaire de 'look and feel', ... </td> ! </tr> ! <tr> ! <td> ! <a href="&url;devel/dodico/">&d-ico;</a> </td> ! <td align="left"> ! <a href="&url;devel/dodico/">&d;</a> (dictionnaire de Données ) est le projet qui permet d'intégrer de façon normalisée les codes de calcul dans un environnement objet distribué. C'est dans ce projet que sont définies, en IDL, les interfaces de communications des codes. </td> ! </tr> ! <tr> ! <td> ! <a href="&url;devel/ebli/">&e-ico;</a> </td> ! <td> ! <a href="&url;devel/ebli/">&e;</a> (Ensemble de Briques Logicielles Interactives ) est une bibliothèque de composants graphiques génériques. Ces composants permettent de créer facilement des tableaux ou des courbes. L'affichage cartographique 2D est géré avec un système --- 1,48 ---- ! <?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE xhtml SYSTEM "devel.dtd"> <xhtml> &devel-default; <document> ! <date> 2004-04-28</date> ! <h1>&F-ico; Développement</h1> ! <p>Les technologies utilisées pour le développement sont ! Java ( version 1.4 ) et Corba (version 2.3 ) .Le projet est géré à partir de &sf; ( bogues, support, CVS ). Pour participer au développement, vous devez nous contacter afin d'être ajouté à la liste des développeurs. </p> ! <p> Le projet &F; est décomposé en 4 sous-projets: &c;, &d;, &e; et &fu;: </p> ! <div class="centerH"> <table class="oneBorder"> ! <tr> ! <td> ! <a href="../devel/ctulu/">&c-ico;</a> </td> ! <td> ! <a href="../devel/ctulu/">&c;</a> est un projet indépendant des autres qui regroupe toutes les bibliothèques externes utilisées dans le projet &F;. Il regroupe des parsers xml, des composants graphiques (boutons, calendrier ), un installeur, un gestionnaire de 'look and feel', ... </td> ! </tr> ! <tr> ! <td> ! <a href="../devel/dodico/">&d-ico;</a> </td> ! <td align="left"> ! <a href="../devel/dodico/">&d;</a> (dictionnaire de Données ) est le projet qui permet d'intégrer de façon normalisée les codes de calcul dans un environnement objet distribué. C'est dans ce projet que sont définies, en IDL, les interfaces de communications des codes. </td> ! </tr> ! <tr> ! <td> ! <a href="../devel/ebli/">&e-ico;</a> </td> ! <td> ! <a href="../devel/ebli/">&e;</a> (Ensemble de Briques Logicielles Interactives ) est une bibliothèque de composants graphiques génériques. Ces composants permettent de créer facilement des tableaux ou des courbes. L'affichage cartographique 2D est géré avec un système *************** *** 53,71 **** visualisation 3D. </td> ! </tr> ! <tr> ! <td> ! <a href="&url;devel/fudaa/">&fu-ico;</a> </td> ! <td> ! <a href="&url;devel/fudaa/">&fu;</a> est la partie applicative. Ce sous-projet utilise tous les autres pour construire les applications finales. &fu; fournit également des composants "applicatifs" : gestion des sauvegardes, composants de connexion au serveur, Astuces, fenêtre de démarrage... </td> ! </tr> ! </table> </div> ! <p> Les projets &d; et &e; sont indépendants :ils utilisent seulement les bibliothèques de &c;. &fu; s'appuie sur les trois autres projets. --- 50,68 ---- visualisation 3D. </td> ! </tr> ! <tr> ! <td> ! <a href="../devel/fudaa/">&fu-ico;</a> </td> ! <td> ! <a href="../devel/fudaa/">&fu;</a> est la partie applicative. Ce sous-projet utilise tous les autres pour construire les applications finales. &fu; fournit également des composants "applicatifs" : gestion des sauvegardes, composants de connexion au serveur, Astuces, fenêtre de démarrage... </td> ! </tr> ! </table> </div> ! <p> Les projets &d; et &e; sont indépendants :ils utilisent seulement les bibliothèques de &c;. &fu; s'appuie sur les trois autres projets. *************** *** 74,90 **** </p> <div class="centerH"> ! <img class="zoom" ! src="&url;images/schema-fudaa.png" width="193px" height="193px" ! alt="schéma du projet fudaa" title="schéma du projet fudaa"/> </div> ! <p> Pour mettre en place le projet, vous pouvez lire le document ! d'<a href="&url;devel/documents/installation.html"> installation</a>. Avant de développer, il est conseillé de lire ! les <a ! href="&url;devel/specifications/index.html">spécifications</a> assurant la cohérence du projet. </p> </document> - </xhtml> --- 71,83 ---- </p> <div class="centerH"> ! <img alt="schéma du projet fudaa" class="zoom" height="193px" src="../images/schema-fudaa.png" title="schéma du projet fudaa" width="193px"/> </div> ! <p> Pour mettre en place le projet, vous pouvez lire le document ! d'<a href="../devel/documents/installation.html"> installation</a>. Avant de développer, il est conseillé de lire ! les <a href="../devel/specifications/index.html">spécifications</a> assurant la cohérence du projet. </p> </document> </xhtml> Index: devel.dtd =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/devel.dtd,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** devel.dtd 23 Jan 2004 12:05:33 -0000 1.1 --- devel.dtd 5 May 2004 12:36:06 -0000 1.2 *************** *** 1,5 **** <!ENTITY % fudaa-org SYSTEM "../../fudaa-org.dtd" > - <!ENTITY style "devel.css"> <!ENTITY url "../"> ! <!ENTITY title "- Développement"> %fudaa-org; \ No newline at end of file --- 1,6 ---- <!ENTITY % fudaa-org SYSTEM "../../fudaa-org.dtd" > <!ENTITY url "../"> ! <!ENTITY title "Développement"> ! <!ENTITY th-devel-selected "selected"> ! <!ENTITY th-accueil-selected "th-accueil-selected"> %fudaa-org; \ No newline at end of file |
From: Frederic D. <de...@us...> - 2004-05-05 12:36:15
|
Update of /cvsroot/fudaa/fudaa_web/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1895/src Modified Files: index.xml Log Message: Maj du site web Index: index.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/index.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** index.xml 5 Mar 2004 15:23:41 -0000 1.3 --- index.xml 5 May 2004 12:36:07 -0000 1.4 *************** *** 42,45 **** --- 42,70 ---- <tr> <th> + <a href="devel/fudaa/documents/astuces.@html@">[Doc] Astuces</a> + </th> + </tr> + <tr> + <td> + <p>[2004-04-30] + Quelques astuces pour simplifier le code + </p> + </td> + </tr> + + <tr> + <th> + <a href="devel/dodico/documents/usine.@html@">[Doc] CORBA et Boony</a> + </th> + </tr> + <tr> + <td> + <p>[2004-04-30] + L'utilisation de CORBA par Dodico. Boony: la sauvegarde des objets CORBA. + </p> + </td> + </tr> + <tr> + <th> <a href="http://fudaa.sf.net/check/">[Page web] Suivi du projet fudaa</a> </th> |
From: Frederic D. <de...@us...> - 2004-05-05 12:36:15
|
Update of /cvsroot/fudaa/fudaa_web/include_xml In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1895/include_xml Modified Files: devel.xml doc-header-footer.xml head.xml accueil.xml Log Message: Maj du site web Index: doc-header-footer.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/include_xml/doc-header-footer.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** doc-header-footer.xml 23 Jan 2004 12:00:04 -0000 1.1 --- doc-header-footer.xml 5 May 2004 12:36:06 -0000 1.2 *************** *** 1,39 **** ! <?xml version="1.0" encoding="iso-8859-1"?> ! <header> <table id="table-header"> ! <tr> ! <td id="td-header-logo-fudaa" rowspan="2"> ! <a href="&url;index.html" > ! <img src="&url;images/logos/fudaa-org.png" alt="fudaa.org" ! width="64px" height="64px" title="Retour a l'accueil"/> </a> </td> ! <td id="td-header-menu"> <table> ! <tr> ! <td class="header-menu-accueil"> ! <a href="&url;index.html">Accueil</a> </td> ! <td class="header-menu-devel"> ! <a href="&url;devel/index.html">Développement</a> </td> ! </tr> </table> </td> ! </tr> ! </table> ! </header> ! ! <footer> ©@year@ CETMEF Tous droits réservés </footer> - <left-header> </left-header> - <left-footer> &sf-ico; ! </left-footer> \ No newline at end of file --- 1,34 ---- ! <?xml version="1.0" encoding="ISO-8859-1"?> ! <!--<header> <table id="table-header"> ! <tr> ! <td id="td-header-logo-fudaa" rowspan="2"> ! <a href="&url;/index.html"> ! <img alt="fudaa.org" height="64px" src="&url;images/logos/fudaa-org.png" title="Retour a l'accueil" width="64px"/> </a> </td> ! <td id="td-header-menu"> <table> ! <tr> ! <td class="header-menu-accueil"> ! <a href="&url;index.html">Accueil</a> </td> ! <td class="header-menu-devel"> ! <a href="&url;devel/index.html">Développement</a> </td> ! </tr> </table> </td> ! </tr> ! </table> ! </header>--> <footer> ©@year@ CETMEF Tous droits réservés </footer> <left-header> </left-header> <left-footer> &sf-ico; ! </left-footer> Index: accueil.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/include_xml/accueil.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** accueil.xml 23 Jan 2004 11:59:58 -0000 1.1 --- accueil.xml 5 May 2004 12:36:06 -0000 1.2 *************** *** 5,9 **** <left> <table class="menu-projet"> ! <tr><th><a href="&url;index.@html@">Accueil</a></th></tr> <tr><td><a href="&url;projet/presentation.html" title="Présentation complète de Fudaa">Présentation --- 5,9 ---- <left> <table class="menu-projet"> ! <tr><th id="&th-accueil-selected;"><a href="&url;index.@html@">Accueil</a></th></tr> <tr><td><a href="&url;projet/presentation.html" title="Présentation complète de Fudaa">Présentation *************** *** 17,21 **** <table class="menu-projet"> ! <tr><th><a href="&url;applications/index.html" title="Les applications Fudaa du CETMEF " >Applications</a></th></tr> --- 17,21 ---- <table class="menu-projet"> ! <tr><th id="&th-app-selected;"><a href="&url;applications/index.html" title="Les applications Fudaa du CETMEF " >Applications</a></th></tr> Index: devel.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/include_xml/devel.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** devel.xml 5 Mar 2004 15:23:42 -0000 1.2 --- devel.xml 5 May 2004 12:36:05 -0000 1.3 *************** *** 4,11 **** <left> ! <table class="menu-projet"> ! <tr><th><a href="&url;devel/index.html">développement</a></th></tr> <tr><td><a href="&url;devel/documents/index.html">documents</a></td></tr> <tr><td><a href="&url;devel/specifications/index.html">spécifications</a></td></tr> --- 4,13 ---- <left> ! <table class="menu-projet"> ! <tr><th class="seul"><a href="&url;index.@html@">Accueil</a></th></tr> ! </table> <table class="menu-projet"> ! <tr><th id="&th-devel-selected;"><a href="&url;devel/index.html">développement</a></th></tr> <tr><td><a href="&url;devel/documents/index.html">documents</a></td></tr> <tr><td><a href="&url;devel/specifications/index.html">spécifications</a></td></tr> *************** *** 18,22 **** <table class="menu-projet"> ! <tr><th><a href="&url;devel/ctulu/index.html">&c;</a></th></tr> <tr><td><a href="&url;devel/ctulu/produits/index.html">produits</a></td></tr> <tr><td><a href="&fudaa-devel-cvs;/ctulu">CVS</a></td></tr> --- 20,24 ---- <table class="menu-projet"> ! <tr><th id="&th-ctulu-selected;"><a href="&url;devel/ctulu/index.html">&c;</a></th></tr> <tr><td><a href="&url;devel/ctulu/produits/index.html">produits</a></td></tr> <tr><td><a href="&fudaa-devel-cvs;/ctulu">CVS</a></td></tr> *************** *** 24,28 **** <table class="menu-projet"> ! <tr><th><a href="&url;devel/dodico/index.html">&d;</a></th></tr> <tr><td><a href="&url;devel/dodico/presentation.html">présentation</a></td></tr> <tr><td><a href="&url;devel/dodico/documents/index.html">documents</a></td></tr> --- 26,30 ---- <table class="menu-projet"> ! <tr><th id="&th-dodico-selected;"><a href="&url;devel/dodico/index.html">&d;</a></th></tr> <tr><td><a href="&url;devel/dodico/presentation.html">présentation</a></td></tr> <tr><td><a href="&url;devel/dodico/documents/index.html">documents</a></td></tr> *************** *** 32,36 **** <table class="menu-projet"> ! <tr><th><a href="&url;devel/ebli/index.html">&e;</a></th></tr> <tr><td><a href="&url;devel/ebli/presentation.html">présentation</a></td></tr> <tr><td><a href="&url;devel/ebli/documents/index.html">documents</a></td></tr> --- 34,38 ---- <table class="menu-projet"> ! <tr><th id="&th-ebli-selected;"><a href="&url;devel/ebli/index.html">&e;</a></th></tr> <tr><td><a href="&url;devel/ebli/presentation.html">présentation</a></td></tr> <tr><td><a href="&url;devel/ebli/documents/index.html">documents</a></td></tr> *************** *** 39,43 **** <table class="menu-projet"> ! <tr><th><a href="&url;devel/fudaa/index.html">&fu;</a></th></tr> <tr><td><a href="&url;devel/fudaa/documents/index.html">documents</a></td></tr> <tr><td><a href="&fudaa-devel-cvs;fudaa/">CVS</a></td></tr> --- 41,45 ---- <table class="menu-projet"> ! <tr><th id="&th-fudaa-selected;"><a href="&url;devel/fudaa/index.html">&fu;</a></th></tr> <tr><td><a href="&url;devel/fudaa/documents/index.html">documents</a></td></tr> <tr><td><a href="&fudaa-devel-cvs;fudaa/">CVS</a></td></tr> Index: head.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/include_xml/head.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** head.xml 23 Jan 2004 12:00:15 -0000 1.1 --- head.xml 5 May 2004 12:36:06 -0000 1.2 *************** *** 1,34 **** ! <?xml version="1.0" encoding="iso-8859-1"?> <head> ! <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/> ! <meta name="Author" content="Frederic Deniger"/> ! <meta name="robots" content="ALL"/> ! <meta name="rating" content="General"/> ! <meta name="copyright" content="CETMEF"/> ! <meta name="revisit-after" content="15 days"/> ! <meta name="description" ! content= ! "Fudaa est un projet d'intégration de codes de calcul dans des interfaces ! graphiques homogènes et communicantes. Cet outil permet de fournir un ! environnement convivial, commun et stable à des codes de calcul ! hétéroclites, indépendants et parfois peu conviviaux. Le ! modèle de données objet unique offert par Fudaa favorise les ! échanges entre modules autorisant ainsi les enchaînements et les ! couplages de codes. De plus, le caractère distribué du projet ! Fudaa offre la possibilité de lancer les codes à distance." ! /> ! <meta name="keywords" ! content= ! "codes de calcul,communication, intégration, pilotage, couplage, ! interface graphique,interface, graphique, composant générique, ! composant, générique,architecture, distribution, Java, Swing, ! corba, GPL, gratuit, libre, standard,interfaçage,développement, ! collaboration, partenariat, développement collaboratif" ! /> ! <link rel="icon" href="&url;favicon.ico" type="image/x-icon" /> ! <link rel="shortcut icon" href="&url;favicon.ico" type="image/x-icon" /> ! <link rel="stylesheet" href="&url;style/&style;" type="text/css"/> ! <link rel="stylesheet" href="&url;style/default.css" type="text/css"/> ! <link rel="stylesheet" href="&url;style/impression.css" type="text/css" media="print" /> <title>Fudaa &title;</title> ! </head> \ No newline at end of file --- 1,16 ---- ! <?xml version="1.0" encoding="ISO-8859-1"?> <head> ! <meta content="text/html;charset=iso-8859-1" http-equiv="Content-Type"/> ! <meta content="Frederic Deniger" name="Author"/> ! <meta content="ALL" name="robots"/> ! <meta content="General" name="rating"/> ! <meta content="CETMEF" name="copyright"/> ! <meta content="15 days" name="revisit-after"/> ! <meta content="Fudaa est un projet d'intégration de codes de calcul dans des interfaces graphiques homogènes et communicantes. Cet outil permet de fournir un environnement convivial, commun et stable à des codes de calcul hétéroclites, indépendants et parfois peu conviviaux. Le modèle de données objet unique offert par Fudaa favorise les échanges entre modules autorisant ainsi les enchaînements et les couplages de codes. De plus, le caractère distribué du projet Fudaa offre la possibilité de lancer les codes à distance." name="description"/> ! <meta content="codes de calcul,communication, intégration, pilotage, couplage, interface graphique,interface, graphique, composant générique, composant, générique,architecture, distribution, Java, Swing, corba, GPL, gratuit, libre, standard,interfaçage,développement, collaboration, partenariat, développement collaboratif" name="keywords"/> ! <link href="&url;favicon.ico" rel="icon" type="image/x-icon"/> ! <link href="&url;favicon.ico" rel="shortcut icon" type="image/x-icon"/> ! <link href="&url;style/default.css" rel="stylesheet" type="text/css"/> ! <link href="&url;style/impression.css" media="print" rel="stylesheet" type="text/css"/> <title>Fudaa &title;</title> ! </head> |
From: Frederic D. <de...@us...> - 2004-05-05 12:36:15
|
Update of /cvsroot/fudaa/fudaa_web/src/devel/ctulu In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1895/src/devel/ctulu Modified Files: index.xml Added Files: ctulu.dtd Log Message: Maj du site web Index: index.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/ctulu/index.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.xml 23 Jan 2004 12:05:48 -0000 1.1 --- index.xml 5 May 2004 12:36:06 -0000 1.2 *************** *** 1,6 **** <?xml version="1.0" encoding="iso-8859-1" ?> ! <!DOCTYPE xhtml SYSTEM "../devel.dtd"[ ! <!ENTITY url "./../../"> ! ]> <!--$id$--> <xhtml> --- 1,4 ---- <?xml version="1.0" encoding="iso-8859-1" ?> ! <!DOCTYPE xhtml SYSTEM "ctulu.dtd"> <!--$id$--> <xhtml> --- NEW FILE: ctulu.dtd --- <!ENTITY % devel-dtd SYSTEM "../devel.dtd" > <!ENTITY url "../../"> <!ENTITY title "Développement- ctulu"> <!ENTITY th-devel-selected "th-devel-selected"> <!ENTITY th-ctulu-selected "selected"> %devel-dtd; |
From: Frederic D. <de...@us...> - 2004-05-05 12:36:14
|
Update of /cvsroot/fudaa/fudaa_web/src/devel/fudaa In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1895/src/devel/fudaa Modified Files: index.xml Added Files: fudaa.dtd Log Message: Maj du site web Index: index.xml =================================================================== RCS file: /cvsroot/fudaa/fudaa_web/src/devel/fudaa/index.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.xml 23 Jan 2004 12:13:57 -0000 1.1 --- index.xml 5 May 2004 12:36:05 -0000 1.2 *************** *** 1,5 **** <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "../devel.dtd"[ ! <!ENTITY url "./../../">]> <!--$id$--><xhtml> &devel-default; --- 1,4 ---- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> ! <!DOCTYPE xhtml SYSTEM "fudaa.dtd"> <!--$id$--><xhtml> &devel-default; --- NEW FILE: fudaa.dtd --- <!ENTITY % devel-dtd SYSTEM "../devel.dtd" > <!ENTITY url "../../"> <!ENTITY title "Développement- fudaa"> <!ENTITY th-devel-selected "th-devel-selected"> <!ENTITY th-fudaa-selected "selected"> %devel-dtd; |