Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Removed translated content for 'de'
Sv translation
languageen

If you are setting up for MIS data retrieval, specific XSLT fields are required for different layout types such as step-and-repeat and die-based layouts. 

Note: All units are provided in points by default. You can set the units of ShopMap resources directly in the schema to inches (in.), millimeters (mm), or centimeters (cm). The units of other parameters must be manually converted by adding math operations to the XSLT file. For example, add *72 to convert from inches to points. 

You can use Stylus Studio software to create XLST files. Find the procedure here.

Required XSLT fields for unpopulated step-and-repeat jobs

An unpopulated step-and-repeat job must include the following fields:

  • Job/jobName
  • Job/jobType: can be hard-coded to the name of the layout ticket in the PLA software
  • Job/layoutName: can be hard-coded to Layout
  • Job/Shopmap/PressSheet/Width
  • Job/Shopmap/PressSheet/Height
  • Job/StepRepeatList/StepRepeat/cols
  • Job/StepRepeatList/StepRepeat/rows
  • Job/StepRepeatList/StepRepeat/name: hard-code to SR1
  • Job/StepRepeatList/StepRepeat/id: hard-code to 1
  • Job/StepRepeatList/StepRepeat/StepRepeatArtworkList/ StepRepeatArtwork/scaleX: hard-code to 1
  • Job/StepRepeatList/StepRepeat/StepRepeatArtworkList/StepRepeatArtwork/scaleY: hard-code to 1
  • Job/StepRepeatList/StepRepeat/StepRepeatArtworkList/StepRepeatArtwork/dummyWidth
  • Job/StepRepeatList/StepRepeat/StepRepeatArtworkList/StepRepeatArtwork/dummyHeight

Sample XML and XSLT files: unpopulated step and repeat

Start with an XML file such as the following:

<?xml version="1.0" encoding="UTF-8"?>
<Job xmlns:xsi=http://www.kodak.com
xsi:noNamespaceSchemaLocation="http://
www.kodak.com">
     <Info JobName="MIS-0001"/>
     <Prepress ArtworkWidth="19.125"
ArtworkHeight="15.5"/>
     <Stripping Around="1" Across="3"/>
     <Plate Width="57.375" Height="15.5"/>
</Job>

Create an XSLT file using XSLT editing software such as Stylus Studio:

< ?xml version='1.0'?>
<xsl:stylesheetversion="1.0"xmlns:xsl="http:
//www.w3.org/1999/XSL/
Transform">
  <xsl:templatematch="/">
    <JobjobType="Demo"layoutName="Layout">
      <xsl:attributename="jobName">
        <xsl:value-ofselect="Job/Info/
@JobName"/>
      </xsl:attribute>
      <StepRepeatList>
        <StepRepeatname="SR1"id="1">
          <xsl:attributename="cols">
            <xsl:value-ofselect="Job/
Stripping/@Across"/>
          </xsl:attribute>
          <xsl:attributename="rows">
            <xsl:value-ofselect="Job/
Stripping/@Around"/>
          </xsl:attribute>
          <StepRepeatArtworkList>
            <StepRepeatArtwork scaleX="1"
scaleY="1">

<xsl:attributename="dummyHeight">
                <xsl:value-ofselect="Job/
Prepress/@ArtworkHeight *72"/>
              </xsl:attribute>

<xsl:attributename="dummyWidth">
                <xsl:value-ofselect="Job/
Prepress/@ArtworkWidth*72"/>
              </xsl:attribute>
            </StepRepeatArtwork>
          </StepRepeatArtworkList>
        </StepRepeat>
     </StepRepeatList>
     <Shopmap>
       <PressSheetunit="in">
         <xsl:attributename="height">
           <xsl:value-ofselect="Job/Plate/
@Height"/>
         </xsl:attribute>
         <xsl:attributename="width">
           <xsl:value-ofselect="Job/Plate/
@Width"/>
         </xsl:attribute>
        </PressSheet>
      </Shopmap>
   </Job>
       </xsl:template>
 </xsl:stylesheet>

Required XSLT fields for populated step-and-repeat jobs

A populated step-and-repeat job must include the following fields:

  • Job/jobName
  • Job/jobType: can be hard-coded to the name of the layout ticket in the PLA software
  • Job/layoutName: can be hard-coded to Layout
  • Job/Shopmap/PressSheet/Width
  • Job/Shopmap/PressSheet/Height
  • Job/StepRepeatList/StepRepeat/cols
  • Job/StepRepeatList/StepRepeat/rows
  • Job/StepRepeatList/StepRepeat/name: hard-code to SR1
  • Job/StepRepeatList/StepRepeat/id: hard-code to 1
  • Job/StepRepeatList/StepRepeat/StepRepeatArtworkList/StepRepeatArtwork/ownerID: hard-code to 1
  • Job/StepRepeatList/StepRepeat/StepRepeatArtworkList/StepRepeatArtwork/scaleX: hard-code to 1

  • Job/StepRepeatList/StepRepeat/StepRepeatArtworkList/StepRepeatArtwork/scaleY: hard-code to 1

  • Job/ArtworkList/Artwork/Name

  • Job/ArtworkList/Artwork/id: hard-code to 2

  • Job/StepRepeatList/StepRepeat/StepRepeatArtworkList/StepRepeatArtwork/referenceId: hard-code to 2

Sample XML and XSLT files: populated step and repeat jobs

Start with an XML file such as the following:

<?xml version="1.0" encoding="UTF-8"?>
<Job xmlns:xsi=http://www.kodak.com
xsi:noNamespaceSchemaLocation="http://
www.kodak.com">
     <Info JobName="MIS-0002"/>
     <Prepress Artwork="\\PrinergyServer
\LayoutAutomationSample\

  Resources\Hungry Cat Label\Hungry Cat
Label 1.pdf"/>
     <Stripping Around="1" Across="3"/>
     <Plate Width="57.375" Height="15.5"/>
</Job>

Create an XSLT file using XSLT editing software such as Stylus Studio:

< ?xml version='1.0'?>
<xsl:stylesheetversion="1.0"xmlns:xsl="http:
//www.w3.org/1999/XSL/
Transform">
  <xsl:templatematch="/">
    <JobjobType="Demo"layoutName="Layout">
      <xsl:attributename="jobName">
        <xsl:value-ofselect="Job/Info/
@JobName"/>
      </xsl:attribute>
            <ArtworkList>
        <Artworkid="2">
          <Name>
            <xsl:value-ofselect="Job/
Prepress/@Artwork"/>
          </Name>
        </Artwork>
      </ArtworkList>
      <StepRepeatList>
        <StepRepeatid="1"name="SR1">
          <xsl:attributename="cols">
            <xsl:value-ofselect="Job/
Stripping/@Across"/>
          </xsl:attribute>
          <xsl:attributename="rows">
            <xsl:value-ofselect="Job/
Stripping/@Around"/>
          </xsl:attribute>
          <StepRepeatArtworkList>

<StepRepeatArtworkownerId="1"referenceId="2"
scaleX="1"
            scaleY="1"/>
          </StepRepeatArtworkList>
        </StepRepeat>
      </StepRepeatList>
      <Shopmap>
        <PressSheetunit="in">
          <xsl:attributename="height">
            <xsl:value-ofselect="Job/Plate/

@Height"/>
          </xsl:attribute>
          <xsl:attributename="width">
            <xsl:value-ofselect="Job/Plate/
@Width"/>
          </xsl:attribute>
        </PressSheet>
      </Shopmap>
    </Job>
  </xsl:template>
</xsl:stylesheet>

Required XSLT fields for a die-based layout

A die-based layout must include the following fields:

  • Job/jobName
  • Job/jobType: can be hard-coded to the name of the layout ticket in the PLA software
  • Job/layoutName: can be hard-coded to Layout
  • Job/Shopmap/PressSheet/Width
  • Job/Shopmap/PressSheet/Height
  • Job/ArtworkList/Artwork/Name

  • Job/Die/Name

Sample XML and XSLT files: die-based layout

Start with an XML file such as the following:

<?xml version="1.0" encoding="UTF-8"?>
<Job xmlns:xsi=http://www.kodak.com
xsi:noNamespaceSchemaLocation="http://
www.kodak.com">
     <Info JobName="MIS-0003"/>
     <Prepress Artwork="\\PrinergyServer
\LayoutAutomationSample\

  Resources\Hungry Cat Carton\Hungry Cat
Carton 1.pdf"/>
  <Die DieFile="\\PrinergyServer
\LayoutAutomationSample\Resources\
  Hungry Cat Carton\Hungry Cat Carton.CF2"/>
  <Plate Width="40" Height="30"/>
</Job>

Create an XSLT file using XSLT editing software such as Stylus Studio:

< ?xml version='1.0'?>
<xsl:stylesheetversion="1.0"xmlns:xsl="http:
//www.w3.org/1999/XSL/
Transform">
  <xsl:templatematch="/">
    <JobjobType="Demo"layoutName="Layout">
      <xsl:attributename="jobName">
        <xsl:value-ofselect="Job/Info/
@JobName"/>
      </xsl:attribute>
            <ArtworkList>
        <Artwork>
          <Name>
            <xsl:value-ofselect="Job/
Prepress/@Artwork"/>
          </Name>
        </Artwork>
      </ArtworkList>
      <Die>
        <Name>
          <xsl:value-ofselect="Job/Die/
@DieFile"/>
        </Name>
      </Die>
      <Shopmap>
        <PressSheetunit="in">
          <xsl:attributename="height">
            <xsl:value-ofselect="Job/Plate/
@Height"/>

          </xsl:attribute>
          <xsl:attributename="width">
            <xsl:value-ofselect="Job/Plate/
@Width"/>

          </xsl:attribute>
        </PressSheet>
      </Shopmap>
    </Job>
  </xsl:template>
</xsl:stylesheet>

Wenn Sie das System zum Abrufen von MIS-Daten einrichten, sind für verschiedene Layout-Typen, z. B. Step-and Repeat- und Matrizen-Layouts, spezielle XSLT-Felder erforderlich.

Hinweis: Alle Einheiten werden standardmäßig in Punkten angegeben. Die Einheiten von ShopMap-Ressourcen können Sie direkt im Schema in Zoll (in), Millimeter (mm) oder Zentimeter (cm) einstellen. Die Einheiten anderer Parameter müssen manuell umgerechnet werden, indem Sie in der XSLT-Datei entsprechende mathematische Operationen einfügen. Für die Umrechnung von Zoll in Punkt fügen Sie zum Beispiel *72 hinzu.

Sie können die Stylus Studio-Software für die Erstellung von XSLT-Dateien verwenden. Das entsprechende Verfahren finden Sie hier.

Erforderliche XSLT-Felder für Step-and-Repeat-Jobs ohne Inhalte

Ein Step-and-Repeat-Job ohne Inhalt muss die folgenden Felder beinhalten:

  • Job/jobName
  • Job/jobType: kann auf den Namen des Layout-Tickets in der PLA-Software hartcodiert werden
  • Job/layoutName: kann hartcodiert werden auf Layout
  • Job/Shopmap/PressSheet/Width
  • Job/Shopmap/PressSheet/Height
  • Job/StepRepeatList/StepRepeat/cols
  • Job/StepRepeatList/StepRepeat/rows
  • Job/StepRepeatList/StepRepeat/name: hartcodiert auf SR1
  • Job/StepRepeatList/StepRepeat/id: hartcodiert auf 1
  • Job/StepRepeatList/StepRepeat/StepRepeatArtworkList/ StepRepeatArtwork/scaleX: hartcodiert auf 1
  • Job/StepRepeatList/StepRepeat/StepRepeatArtworkList/StepRepeatArtwork/scaleY: hartcodiert auf 1
  • Job/StepRepeatList/StepRepeat/StepRepeatArtworkList/StepRepeatArtwork/dummyWidth
  • Job/StepRepeatList/StepRepeat/StepRepeatArtworkList/StepRepeatArtwork/dummyHeight

XML- und XSLT-Beispieldateien: Step-and-Repeat ohne Inhalte

Beginnen Sie mit einer XML-Datei wie beispielsweise der folgenden:

<?xml version="1.0" encoding="UTF-8"?>
<Job xmlns:xsi=http://www.kodak.com
xsi:noNamespaceSchemaLocation="http://
www.kodak.com">
<Info JobName="MIS-0001"/>
<Prepress ArtworkWidth="19.125"
ArtworkHeight="15.5"/>
<Stripping Around="1" Across="3"/>
<Plate Width="57.375" Height="15.5"/>
</Job>

Erstellen Sie mit Hilfe einer XSLT-Bearbeitungssoftware (wie z. B. Stylus Studio) eine XSLT-Datei:

< ?xml version='1.0'?>
<xsl:stylesheetversion="1.0"xmlns:xsl="http:
//www.w3.org/1999/XSL/
Transform">
<xsl:templatematch="/">
<JobjobType="Demo"layoutName="Layout">
<xsl:attributename="jobName">
<xsl:value-ofselect="Job/Info/
@JobName"/>
</xsl:attribute>
<StepRepeatList>
<StepRepeatname="SR1"id="1">
<xsl:attributename="cols">
<xsl:value-ofselect="Job/
Stripping/@Across"/>
</xsl:attribute>
<xsl:attributename="rows">
<xsl:value-ofselect="Job/
Stripping/@Around"/>
</xsl:attribute>
<StepRepeatArtworkList>
<StepRepeatArtwork scaleX="1"
scaleY="1">

<xsl:attributename="dummyHeight">
<xsl:value-ofselect="Job/
Prepress/@ArtworkHeight *72"/>
</xsl:attribute>
<xsl:attributename="dummyWidth">
<xsl:value-ofselect="Job/
Prepress/@ArtworkWidth*72"/>
</xsl:attribute>
</StepRepeatArtwork>
</StepRepeatArtworkList>
</StepRepeat>
</StepRepeatList>
<Shopmap>
<PressSheetunit="in">
<xsl:attributename="height">
<xsl:value-ofselect="Job/Plate/
@Height"/>
</xsl:attribute>
<xsl:attributename="width">
<xsl:value-ofselect="Job/Plate/
@Width"/>
</xsl:attribute>
</PressSheet>
</Shopmap>
</Job>
</xsl:template>
</xsl:stylesheet>

Erforderliche XSLT-Felder für Step-and-Repeat-Jobs mit Inhalt

Ein Step-and-Repeat-Job mit Inhalt muss die folgenden Felder beinhalten:

  • Job/jobName
  • Job/jobType: kann auf den Namen des Layout-Tickets in der PLA-Software hartcodiert werden
  • Job/layoutName: kann hartcodiert werden auf Layout
  • Job/Shopmap/PressSheet/Width
  • Job/Shopmap/PressSheet/Height
  • Job/StepRepeatList/StepRepeat/cols
  • Job/StepRepeatList/StepRepeat/rows
  • Job/StepRepeatList/StepRepeat/name: hartcodiert auf SR1
  • Job/StepRepeatList/StepRepeat/id: hartcodiert auf 1
  • Job/StepRepeatList/StepRepeat/StepRepeatArtworkList/StepRepeatArtwork/ownerID: : hartcodiert auf 1
  • Job/StepRepeatList/StepRepeat/StepRepeatArtworkList/StepRepeatArtwork/scaleX: hartcodiert auf 1

  • Job/StepRepeatList/StepRepeat/StepRepeatArtworkList/StepRepeatArtwork/scaleY: hartcodiert auf 1

  • Job/ArtworkList/Artwork/Name

  • Job/ArtworkList/Artwork/id: hartcodiert auf 2

  • Job/StepRepeatList/StepRepeat/StepRepeatArtworkList/StepRepeatArtwork/referenceId: hartcodiert auf 2

XML- und XSLT-Beispieldateien: Step-and-Repeat mit Inhalt

Beginnen Sie mit einer XML-Datei wie beispielsweise der folgenden:

<?xml version="1.0" encoding="UTF-8"?>
<Job xmlns:xsi=http://www.kodak.com
xsi:noNamespaceSchemaLocation="http://
www.kodak.com">
<Info JobName="MIS-0002"/>
<Prepress Artwork="\\PrinergyServer
\LayoutAutomationSample\

Resources\Hungry Cat Label\Hungry Cat
Label 1.pdf"/>
<Stripping Around="1" Across="3"/>
<Plate Width="57.375" Height="15.5"/>
</Job>

Erstellen Sie mit Hilfe einer XSLT-Bearbeitungssoftware (wie z. B. Stylus Studio) eine XSLT-Datei:

< ?xml version='1.0'?>
<xsl:stylesheetversion="1.0"xmlns:xsl="http:
//www.w3.org/1999/XSL/
Transform">
<xsl:templatematch="/">
<JobjobType="Demo"layoutName="Layout">
<xsl:attributename="jobName">
<xsl:value-ofselect="Job/Info/
@JobName"/>
</xsl:attribute>
<ArtworkList>
<Artworkid="2">
<Name>
<xsl:value-ofselect="Job/
Prepress/@Artwork"/>
</Name>
</Artwork>
</ArtworkList>
<StepRepeatList>
<StepRepeatid="1"name="SR1">
<xsl:attributename="cols">
<xsl:value-ofselect="Job/
Stripping/@Across"/>
</xsl:attribute>
<xsl:attributename="rows">
<xsl:value-ofselect="Job/
Stripping/@Around"/>
</xsl:attribute>
<StepRepeatArtworkList>

<StepRepeatArtworkownerId="1"referenceId="2"
scaleX="1"
scaleY="1"/>
</StepRepeatArtworkList>
</StepRepeat>
</StepRepeatList>
<Shopmap>
<PressSheetunit="in">
<xsl:attributename="height">
<xsl:value-ofselect="Job/Plate/

@Height"/>
</xsl:attribute>
<xsl:attributename="width">
<xsl:value-ofselect="Job/Plate/
@Width"/>
</xsl:attribute>
</PressSheet>
</Shopmap>
</Job>
</xsl:template>
</xsl:stylesheet>

Erforderliche XSLT-Felder für Matrizen-Layouts

Ein Matrizen-Layout muss die folgenden Felder umfassen:

  • Job/jobName
  • Job/jobType: kann auf den Namen des Layout-Tickets in der PLA-Software hartcodiert werden
  • Job/layoutName: kann hartcodiert werden auf Layout
  • Job/Shopmap/PressSheet/Width
  • Job/Shopmap/PressSheet/Height
  • Job/ArtworkList/Artwork/Name

  • Job/Die/Name

XML- und XSLT-Beispieldateien: Matrizen-Layout

Beginnen Sie mit einer XML-Datei wie beispielsweise der folgenden:

<?xml version="1.0" encoding="UTF-8"?>
<Job xmlns:xsi=http://www.kodak.com
xsi:noNamespaceSchemaLocation="http://
www.kodak.com">
<Info JobName="MIS-0003"/>
<Prepress Artwork="\\PrinergyServer
\LayoutAutomationSample\

Resources\Hungry Cat Carton\Hungry Cat
Carton 1.pdf"/>
<Die DieFile="\\PrinergyServer
\LayoutAutomationSample\Resources\
Hungry Cat Carton\Hungry Cat Carton.CF2"/>
<Plate Width="40" Height="30"/>
</Job>

Erstellen Sie mit Hilfe einer XSLT-Bearbeitungssoftware (wie z. B. Stylus Studio) eine XSLT-Datei:

< ?xml version='1.0'?>
<xsl:stylesheetversion="1.0"xmlns:xsl="http:
//www.w3.org/1999/XSL/
Transform">
<xsl:templatematch="/">
<JobjobType="Demo"layoutName="Layout">
<xsl:attributename="jobName">
<xsl:value-ofselect="Job/Info/
@JobName"/>
</xsl:attribute>
<ArtworkList>
<Artwork>
<Name>
<xsl:value-ofselect="Job/
Prepress/@Artwork"/>
</Name>
</Artwork>
</ArtworkList>
<Die>
<Name>
<xsl:value-ofselect="Job/Die/
@DieFile"/>
</Name>
</Die>
<Shopmap>
<PressSheetunit="in">
<xsl:attributename="height">
<xsl:value-ofselect="Job/Plate/
@Height"/>

</xsl:attribute>
<xsl:attributename="width">
<xsl:value-ofselect="Job/Plate/
@Width"/>

</xsl:attribute>
</PressSheet>
</Shopmap>
</Job>
</xsl:template>
</xsl:stylesheet>

Sv translation
languagede
Sv translation
languagefr

Si vous configurez le système pour la récupération de données MIS, des champs XSLT spécifiques sont requis pour différents types de mises en page, par exemple les mises en page de copie en répétition et les mises en page de découpe.

Remarque : par défaut, toutes les unités sont en points. Vous pouvez définir les unités des ressources ShopMap directement dans le schéma en pouces (po.), millimètres (mm) ou centimètres (cm). Les unités des autres paramètres doivent être converties manuellement par l'ajout d'opérations mathématiques au fichier XSLT. Par exemple, ajoutez *72 pour convertir des pouces en points.

Vous pouvez utiliser le logiciel Stylus Studio pour créer des fichiers XLST. Vous trouverez la procédure ici.

Champs XSLT obligatoires pour travaux de copie en répétition non remplis

Un travail de copie en répétition non rempli doit inclure les champs suivants :

  • Job/jobName
  • Job/jobType : peut être figé dans le code en nom de la fiche de mise en page dans le logiciel PLA.
  • Job/layoutName : peut être figé dans le code en Layout
  • Job/Shopmap/PressSheet/Width
  • Job/Shopmap/PressSheet/Height
  • Job/StepRepeatList/StepRepeat/cols
  • Job/StepRepeatList/StepRepeat/rows
  • Job/StepRepeatList/StepRepeat/name : figé dans le code en SR1
  • Job/StepRepeatList/StepRepeat/id : figé dans le code en 1
  • Job/StepRepeatList/StepRepeat/StepRepeatArtworkList/ StepRepeatArtwork/scaleX : figé dans le code en 1
  • Job/StepRepeatList/StepRepeat/StepRepeatArtworkList/StepRepeatArtwork/scaleY : figé dans le code en 1
  • Job/StepRepeatList/StepRepeat/StepRepeatArtworkList/StepRepeatArtwork/dummyWidth
  • Job/StepRepeatList/StepRepeat/StepRepeatArtworkList/StepRepeatArtwork/dummyHeight

Exemple de fichiers XML et XSLT : travail de copie en répétition non rempli

Commencez par un fichier XML, par exemple, le suivant :

<?xml version="1.0" encoding="UTF-8"?>
<Job xmlns:xsi=http://www.kodak.com
xsi:noNamespaceSchemaLocation="http://
www.kodak.com">
<Info JobName="MIS-0001"/>
<Prepress ArtworkWidth="19.125"
ArtworkHeight="15.5"/>
<Stripping Around="1" Across="3"/>
<Plate Width="57.375" Height="15.5"/>
</Job>

Créez un fichier XSLT à l'aide d'un programme d'édition XSLT, tel que Stylus Studio :

< ?xml version='1.0'?>
<xsl:stylesheetversion="1.0"xmlns:xsl="http:
//www.w3.org/1999/XSL/
Transform">
<xsl:templatematch="/">
<JobjobType="Demo"layoutName="Layout">
<xsl:attributename="jobName">
<xsl:value-ofselect="Job/Info/
@JobName"/>
</xsl:attribute>
<StepRepeatList>
<StepRepeatname="SR1"id="1">
<xsl:attributename="cols">
<xsl:value-ofselect="Job/
Stripping/@Across"/>
</xsl:attribute>
<xsl:attributename="rows">
<xsl:value-ofselect="Job/
Stripping/@Around"/>
</xsl:attribute>
<StepRepeatArtworkList>
<StepRepeatArtwork scaleX="1"
scaleY="1">

<xsl:attributename="dummyHeight">
<xsl:value-ofselect="Job/
Prepress/@ArtworkHeight *72"/>
</xsl:attribute>

<xsl:attributename="dummyWidth">
<xsl:value-ofselect="Job/
Prepress/@ArtworkWidth*72"/>
</xsl:attribute>
</StepRepeatArtwork>
</StepRepeatArtworkList>
</StepRepeat>
</StepRepeatList>
<Shopmap>
<PressSheetunit="in">
<xsl:attributename="height">
<xsl:value-ofselect="Job/Plate/
@Height"/>
</xsl:attribute>
<xsl:attributename="width">
<xsl:value-ofselect="Job/Plate/
@Width"/>
</xsl:attribute>
</PressSheet>
</Shopmap>
</Job>
</xsl:template>
</xsl:stylesheet>

Champs XSLT obligatoires pour un travail de copie en répétition non rempli

Un travail de copie en répétition rempli doit inclure les champs suivants :

  • Job/jobName
  • Job/jobType : peut être figé dans le code en nom de la fiche de mise en page dans le logiciel PLA.
  • Job/layoutName : peut être figé dans le code en Layout
  • Job/Shopmap/PressSheet/Width
  • Job/Shopmap/PressSheet/Height
  • Job/StepRepeatList/StepRepeat/cols
  • Job/StepRepeatList/StepRepeat/rows
  • Job/StepRepeatList/StepRepeat/name : figé dans le code en SR1
  • Job/StepRepeatList/StepRepeat/id : figé dans le code en 1
  • Job/StepRepeatList/StepRepeat/StepRepeatArtworkList/StepRepeatArtwork/ownerID: : figé dans le code en 1
  • Job/StepRepeatList/StepRepeat/StepRepeatArtworkList/StepRepeatArtwork/scaleX : figé dans le code en 1

  • Job/StepRepeatList/StepRepeat/StepRepeatArtworkList/StepRepeatArtwork/scaleY : figé dans le code en 1

  • Job/ArtworkList/Artwork/Name

  • Job/ArtworkList/Artwork/id : figé dans le code en 2

  • Job/StepRepeatList/StepRepeat/StepRepeatArtworkList/StepRepeatArtwork/referenceId : figé dans le code en 2

Exemple de fichiers XML et XSLT : travaux de copie en répétition rempli

Commencez par un fichier XML, par exemple, le suivant :

<?xml version="1.0" encoding="UTF-8"?>
<Job xmlns:xsi=http://www.kodak.com
xsi:noNamespaceSchemaLocation="http://
www.kodak.com">
<Info JobName="MIS-0002"/>
<Prepress Artwork="\\PrinergyServer
\LayoutAutomationSample\

Resources\Hungry Cat Label\Hungry Cat
Label 1.pdf"/>
<Stripping Around="1" Across="3"/>
<Plate Width="57.375" Height="15.5"/>
</Job>

Créez un fichier XSLT à l'aide d'un programme d'édition XSLT, tel que Stylus Studio :

< ?xml version='1.0'?>
<xsl:stylesheetversion="1.0"xmlns:xsl="http:
//www.w3.org/1999/XSL/
Transform">
<xsl:templatematch="/">
<JobjobType="Demo"layoutName="Layout">
<xsl:attributename="jobName">
<xsl:value-ofselect="Job/Info/
@JobName"/>
</xsl:attribute>
<ArtworkList>
<Artworkid="2">
<Name>
<xsl:value-ofselect="Job/
Prepress/@Artwork"/>
</Name>
</Artwork>
</ArtworkList>
<StepRepeatList>
<StepRepeatid="1"name="SR1">
<xsl:attributename="cols">
<xsl:value-ofselect="Job/
Stripping/@Across"/>
</xsl:attribute>
<xsl:attributename="rows">
<xsl:value-ofselect="Job/
Stripping/@Around"/>
</xsl:attribute>
<StepRepeatArtworkList>

<StepRepeatArtworkownerId="1"referenceId="2"
scaleX="1"
scaleY="1"/>
</StepRepeatArtworkList>
</StepRepeat>
</StepRepeatList>
<Shopmap>
<PressSheetunit="in">
<xsl:attributename="height">
<xsl:value-ofselect="Job/Plate/

@Height"/>
</xsl:attribute>
<xsl:attributename="width">
<xsl:value-ofselect="Job/Plate/
@Width"/>
</xsl:attribute>
</PressSheet>
</Shopmap>
</Job>
</xsl:template>
</xsl:stylesheet>

Champs XSLT obligatoires pour une mise en page de découpe

Une mise en page de découpe doit inclure les champs suivants :

  • Job/jobName
  • Job/jobType : peut être figé dans le code en nom de la fiche de mise en page dans le logiciel PLA.
  • Job/layoutName : peut être figé dans le code en Layout
  • Job/Shopmap/PressSheet/Width
  • Job/Shopmap/PressSheet/Height
  • Job/ArtworkList/Artwork/Name

  • Job/Die/Name

Exemple de fichiers XML et XSLT : mise en page de découpe

Commencez par un fichier XML, par exemple, le suivant :

<?xml version="1.0" encoding="UTF-8"?>
<Job xmlns:xsi=http://www.kodak.com
xsi:noNamespaceSchemaLocation="http://
www.kodak.com">
<Info JobName="MIS-0003"/>
<Prepress Artwork="\\PrinergyServer
\LayoutAutomationSample\

Resources\Hungry Cat Carton\Hungry Cat
Carton 1.pdf"/>
<Die DieFile="\\PrinergyServer
\LayoutAutomationSample\Resources\
Hungry Cat Carton\Hungry Cat Carton.CF2"/>
<Plate Width="40" Height="30"/>
</Job>

Créez un fichier XSLT à l'aide d'un programme d'édition XSLT, tel que Stylus Studio :

< ?xml version='1.0'?>
<xsl:stylesheetversion="1.0"xmlns:xsl="http:
//www.w3.org/1999/XSL/
Transform">
<xsl:templatematch="/">
<JobjobType="Demo"layoutName="Layout">
<xsl:attributename="jobName">
<xsl:value-ofselect="Job/Info/
@JobName"/>
</xsl:attribute>
<ArtworkList>
<Artwork>
<Name>
<xsl:value-ofselect="Job/
Prepress/@Artwork"/>
</Name>
</Artwork>
</ArtworkList>
<Die>
<Name>
<xsl:value-ofselect="Job/Die/
@DieFile"/>
</Name>
</Die>
<Shopmap>
<PressSheetunit="in">
<xsl:attributename="height">
<xsl:value-ofselect="Job/Plate/
@Height"/>

</xsl:attribute>
<xsl:attributename="width">
<xsl:value-ofselect="Job/Plate/
@Width"/>

</xsl:attribute>
</PressSheet>
</Shopmap>
</Job>
</xsl:template>
</xsl:stylesheet>

...