IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

XSL/XSLT/XPATH XML Discussion :

Débutant XSLT, problème de balises multiples


Sujet :

XSL/XSLT/XPATH XML

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Nouveau candidat au Club
    Profil pro
    Inscrit en
    Juin 2007
    Messages
    2
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2007
    Messages : 2
    Par défaut Débutant XSLT, problème de balises multiples
    Bonjour à tous,

    Voilà, je suis nouveau en XML et XSLT et j'ai deux petits soucis :

    Le premier concerne la transformation d'un fichier contenant cette arborescence :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    <Solutions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
      xsi:noNamespaceSchemaLocation="Output_incons.xsd">
     
    <Solution>
        <Solution_id>1</Solution_id>
        <Solving_Constraints>
          <Constraint_To_Remove>k5</Constraint_To_Remove>
        </Solving_Constraints>
      </Solution>
      <Solution>
        <Solution_id>2</Solution_id>
        <Solving_Constraints>
          <Constraint_To_Remove>k10</Constraint_To_Remove>
          <Constraint_To_Remove>k6</Constraint_To_Remove>
          <Constraint_To_Remove>k7</Constraint_To_Remove>
        </Solving_Constraints>
      </Solution>
    </Solutions>
    Le souci est que je n'arrive pas a créer un tableau HTML avec d'un coté (solution_id) et de l'autre la liste des (constraints_to_remove) à chaque manipulation, ou il repasse toutes les constraints_to_remove ou alors il ne m'affiche que les remières de chaque solution. Je vous saurai vraiment super hyper mega gré de votre aide, parce que je suis une bille en info...

    Le second souci est un peu similaire, en fait dans un fichier j'ai plusieurs contraintes, donc j'aimerais faire une feuille de style (nom de la matrice, son numero etc.. et puis ailleurs, j'aimerais avoir le coefficient associé à chaque variable) par exemple pour la contrainte :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    <constraint>
          <num_constraint>1</num_constraint>
          <id_confidence>3</id_confidence>
          <RHS>61</RHS>
          <constraint_name>k1</constraint_name>
          <coeficients>
            <term>
              <id_variable>1</id_variable>
              <coeficient_variable>2</coeficient_variable>
            </term>
            <term>
              <id_variable>2</id_variable>
              <coeficient_variable>9</coeficient_variable>
            </term>
            <term>
              <id_variable>3</id_variable>
              <coeficient_variable>-1</coeficient_variable>
            </term>
            <term>
              <id_variable>4</id_variable>
              <coeficient_variable>9</coeficient_variable>
            </term>
            <term>
              <id_variable>5</id_variable>
              <coeficient_variable>76</coeficient_variable>
            </term>
          </coeficients>
        </constraint>
    j'aimerais avoir un truc du type :

    2x1 + 9x2 -1x3 + 9x4 + 76x5 <= 61 (<= peu importe la direction... et 61 représente le RHS).

    Je vous remercie d'avance de votre aide.

  2. #2
    Membre éclairé
    Profil pro
    Inscrit en
    Décembre 2004
    Messages
    331
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2004
    Messages : 331
    Par défaut
    Poste ton XSL, on pourra te le corriger, c'est plus simple.

  3. #3
    Nouveau candidat au Club
    Profil pro
    Inscrit en
    Juin 2007
    Messages
    2
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2007
    Messages : 2
    Par défaut
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    <?xml version="1.0" encoding="ISO-8859-1"?>
     
     
     
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
     
      <xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes"/>
     
     
     
      <xsl:template match="/">
     
        <html>
     
          <body>
     
            <h2>General matrix sample</h2>
     
     
     
            <table border="1" cellpadding="1">
     
              <tr bgcolor="#FF9900">
     
                <th>Solution</th>
     
                <th>Constraints to remove</th>
     
              </tr>
     
     
     
              <xsl:for-each select="Solutions/Solution">
     
                <tr>
     
                  <td><xsl:value-of select="Solution_id"/></td>
     
     
     
                  <td><xsl:for-each select="./Solving_Constraints"><xsl:value-of select="/child::Constraint_To_Remove"/></xsl:for-each></td>
     
     
     
                </tr>
     
              </xsl:for-each>
     
     
     
     
     
            </table>
     
     
     
     
     
          </body>
     
        </html>   
     
     
     
     
     
     
     
     
     
     </xsl:template>
     
    </xsl:stylesheet>

Discussions similaires

  1. [XSLT] Problème balise <a>
    Par Aurazed dans le forum XSL/XSLT/XPATH
    Réponses: 2
    Dernier message: 08/03/2007, 11h00
  2. [XSLT]problème d'appel de texte dans une balise à partir d'un attribut
    Par docteur chépère dans le forum XSL/XSLT/XPATH
    Réponses: 2
    Dernier message: 18/01/2007, 10h57
  3. [XSLT] problème contenu balise / text
    Par zelastwarrior dans le forum XSL/XSLT/XPATH
    Réponses: 1
    Dernier message: 18/12/2006, 11h25
  4. [XSLT] Problème de balise
    Par ploxien dans le forum XSL/XSLT/XPATH
    Réponses: 1
    Dernier message: 19/10/2006, 10h53
  5. Réponses: 1
    Dernier message: 07/07/2006, 14h27

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo