Skip to content

Import List Files


You can import repro list files and csv files for printing via SEAL operator. To enable repro list processing, refer to Repro List Processing on Windows or Repro List Processing on Linux respectively.


Import Repro List Files


You can import Repro List Files either via Drag & Drop or via URL parameter.


Via Drag & Drop

In SEAL Print Client, drag & drop the repro list file to the list panel (My Lists) or any PLOSSYS panel.


Via Web Server

To import a repro list to SEAL Operator, you can use a Web server which provides the repro list. Add the URL of the repro list as parameter to the URL when calling the PLOSSYS 4 Panel in your web browser:

https://<operator_server>:3000/import?open-panel=operator-p4&list=<repro_list_url>

Example - import via Web server

https://my-operator-host.sealsystems.de:3000/import?open-panel=operator-p4&list=http:%2F%2Fmy-repro-host.sealsystems.de:9125%2Ftest.rli

Hint - Content-Type application/rli

Ensure that the Web server which provides the repro list sets Content-Type to application/rli in the response header!


Logging

Messages concerning the list import are logged into the following log files:

  • Windows: %PROGRAMDATA%\SEAL Systems\log\seal-operator-server.log

  • Linux: /var/log/seal/seal-operator-server.log


Example of a Repro List

Example - repro list referring local files for PDM

[PROGRAM]
    VERSION             "01.00"
    PLOT_DIREKT         "Y"
    LOG_LEVEL           "diag"

[PROCESSING]
    PROCESS_GOOD        "pass"
    PROCESS_MISSING     "pass"
    PROCESS_UNKNOWN     "pass"

[JOBINFO]
    JOBID               "Project X, Job 0000001"
    PLOTTER             "LaserJet"
    FORMAT              A3
    MEDIUM              PA
    COPIES              1
    SET_COPIES          1
    STAMP_0             "Only for information"hi
    COVER_MESSAGE_1     "Local documents for project X. This is only for information. Documents are not released yet."
    COVER_MESSAGE_2     "Due-date: 26.12.2019"
    COVER_MESSAGE_4     "!!! Only for internal use !!!"

[SENDER]
    USER                "johndoe"
    CREATOR             "johndoe"
    REALUSER            "johndoe"
    CREATENODE          "SERVER1"
    FULLNAME            "John Doe"
    DESCRIPTION         "Lead developer"
    EMAIL_DIS           "john.doe@sealsystems.de"
    ADDR_DIS_1          "%FULLNAME%"
    ADDR_DIS_2          "Development"
    ADDR_DIS_3          "%EMAIL_DIS%"
    ADDR_DIS_4          ""

[RECEIVER]
    janedoe

[janedoe]
    PRINT_COVER         "Y"
    PRINT_RECEIPT       "Y"
    PRINT_TRAILER       "Y"
    DRAWLIST            "Y"
    PRINT_DRAWING       "Y"
    DEPARTMENT          "Manufactoring"
    EMAIL_REC           "Jane.Doe@sealsystems.de"
    ADDR_REC_1          "Jane Doe"

[jackdoe]
    PRINT_COVER         "Y"
    PRINT_RECEIPT       "Y"
    PRINT_TRAILER       "Y"
    DRAWLIST            "Y"
    PRINT_DRAWING       "Y"
    DEPARTMENT          "Sales and Distribution"
    EMAIL_REC           "Jack.Doe@sealsystems.de"
    ADDR_REC_1          "Jack Doe"

[REPRO_LIST_FORMAT]
    RECEIVER            #0
    Nummer              #1
    Blatt               #2
    Index               #3
    Status              #4
    Titel               #5
    PLOTTYPE            #6
    LOCALFILE           #7

[REPRO_LIST]
##10000001#001#01#test#Overview#PDF#pdmtest_local.pdf
##20000002#002#02#test#Statistics#PDF#pdmtest_local.pdf
##30000003#003#03#test#Roadmap#PDF#pdmtest_local.pdf

Hint - HREF value

When using repro lists with a PLOSSYS 5 backend system LOCALFILE reference isn't needed. Instead the list needs to contain HREF file locations. For example

...
    [REPRO_LIST_FORMAT]
    RECEIVER            #0
    Nummer              #1
    Blatt               #2
    Index               #3
    Status              #4
    Titel               #5
    PLOTTYPE            #6
    LOCALFILE           #7
    HREF                #8
...

Import CSV Files


The import of CSV files is only supported via drag & drop. To do so, drag & drop the CSV file to the list panel (My Lists) or any PLOSSYS panel.


Content of the CSV File

The first line of the CSV file should contain the key names whereby the following rules apply:

Key Description
list.name List name displayed in the user interface
list.metadata.<item> Any metadata items of the list
item.href Hypertext reference for a list item
item.metadata.name Metadata item name displayed in the user interface
item.metadata.<list_item> Any metadata items of a list item

Hint - minimum keys and separator

  • At least, the list.name, item.href and item.metadata.name keys should be specified!

  • Only , (comma) is supported as separator.


Example of a CSV File

Example - CSV file

list.name,item.href,item.metadata.name,item.metadata.Color,item.metadata.Printer,item.metadata.Copies
Karl Martell,/v1/services/operator-fileupload/repo/1d431501-f5e3-480b-8ad2-bc31a09338f8,Arnulf.ps,color,Hugo,1
Karl Martell,https://www.blubber.com/documents/mydoc.ps,Ansegisel.ps,gray,hpm402,2
Karl Martell,http://google.de/karl/yourdoc.ps,Pippin.ps,color,pdfout,3

Back to top