EP1265751A2 - Procede et dispositif pour realiser une maquette pour impression - Google Patents

Procede et dispositif pour realiser une maquette pour impression

Info

Publication number
EP1265751A2
EP1265751A2 EP01923521A EP01923521A EP1265751A2 EP 1265751 A2 EP1265751 A2 EP 1265751A2 EP 01923521 A EP01923521 A EP 01923521A EP 01923521 A EP01923521 A EP 01923521A EP 1265751 A2 EP1265751 A2 EP 1265751A2
Authority
EP
European Patent Office
Prior art keywords
template
parameterized
print
graphic
structural feature
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Granted
Application number
EP01923521A
Other languages
German (de)
English (en)
Other versions
EP1265751B1 (fr
Inventor
Herwart Schmidt-Joos
Marcel Peter Weiher
Ralph Zühlsdorf
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Cidentigo GmbH
Original Assignee
Cidentigo GmbH
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Cidentigo GmbH filed Critical Cidentigo GmbH
Publication of EP1265751A2 publication Critical patent/EP1265751A2/fr
Application granted granted Critical
Publication of EP1265751B1 publication Critical patent/EP1265751B1/fr
Anticipated expiration legal-status Critical
Expired - Lifetime legal-status Critical Current

Links

Classifications

    • BPERFORMING OPERATIONS; TRANSPORTING
    • B42BOOKBINDING; ALBUMS; FILES; SPECIAL PRINTED MATTER
    • B42DBOOKS; BOOK COVERS; LOOSE LEAVES; PRINTED MATTER CHARACTERISED BY IDENTIFICATION OR SECURITY FEATURES; PRINTED MATTER OF SPECIAL FORMAT OR STYLE NOT OTHERWISE PROVIDED FOR; DEVICES FOR USE THEREWITH AND NOT OTHERWISE PROVIDED FOR; MOVABLE-STRIP WRITING OR READING APPARATUS
    • B42D1/00Books or other bound products
    • B42D1/06Books or other bound products in which the fillings and covers are united by other means

Definitions

  • the present invention relates to a method for processing and creating electronic publication documents and the suitable device for this.
  • publication documents There are no restrictions on the publication documents for their later use.
  • print templates such as. B.
  • the object of the invention is to avoid the disadvantages described in the prior art and to propose a method, a device, and an “intelligent” document format and a computer program for the remote-controlled creation and processing of publication documents.
  • Content adjustments, through the rules contained in these intelligent publication documents ensures that no unwanted design changes can occur.
  • the economic purpose of the invention is the cost and time-saving, economic benefit compared to the processes comparable with the current state of the art. If the invention is used consistently, it can be expected that the production process in the classic publication creation will be greatly simplified and will create new, more effective working conditions.
  • the invention can be implemented as a software system for controlling the underlying template technology, the software system comprising: a device for creating and editing the templates on a remote computer system (server), with the template creation / processing taking place on the server and being remotely controlled via a local web browser, as used today as standard on the Internet; a facility for creating and editing the templates on a local computer is an additional possibility to create and edit these templates without a server; a device that enables remote control of content changes in publication documents on a server computer system and then recombine design and content in the templates, whereby the remote control input dialog can take place on the one hand via a standard web browser, for input control a preview of the changed publication document is provided to the initiating browser dialog and is also automatically supplied with new content via so-called batch interfaces to external processes.
  • a remote computer system server
  • the template creation / processing taking place on the server and being remotely controlled via a local web browser, as used today as standard on the Internet
  • a facility for creating and editing the templates on a local computer is an additional
  • the invention allows, for example, the difficult task of creating an appealing advertisement within the framework of the corporate design guidelines of a brand or campaign, Reduced to the much simpler task for the end user to choose between variants, the overall task has not become easier, but allows the complex part to be done once for all subsequent processes. It is not the kernel that decides exactly how the division is made, but rather the "intelligent" templates used with the kernel.
  • the invention can be used so that local advertisers (eg trading partners, branches, any person) can make changes to the content via the Internet with centrally specified design templates while maintaining a specified quality standard without destroying the design.
  • local advertisers eg trading partners, branches, any person
  • An agency commissioned by the trademark owner creates e.g. B. an advertisement that corresponds to its defined corporate design.
  • This display serves as a sample display.
  • the invention enables the local advertiser to modify or exchange individual "approved" text and image elements while maintaining all the features relevant to the corporate design via the Internet.
  • the local advertisers can adjust the sample display independently in a user-friendly browser window Regional agencies are no longer involved.
  • the centrally created sample display and the display elements to be adapted are read into a computer program for further processing.
  • This sample display and its replacement elements are such.
  • B. produced by layout experts of an advertising agency with standard publishing programs and e.g. provided as an EPS file. This ensures problem-free adaptation to the existing software environment.
  • Both the ad template and the ad elements that are available to the contracting parties for the modification of their local business ad can be created in the usual way.
  • the brand owner and the commissioned agency use the corporate design specifications to centrally determine which ad elements and which ad elements should be variable.
  • the replacement elements are also defined.
  • the contractual partners adjust the display in a browser window.
  • the template technology is based on fundamental mechanisms of computer science, which are combined in a new way. These mechanisms include variables and the binding of variables to values, partial evaluation, formal parameters etc.
  • Template objects are defined. Like normal objects in object-oriented programming, these template objects have a state that is defined by the assignment of their variables and "behavior" that is influenced by this assignment.
  • variables in template objects can also (still) be unoccupied [template currying]; they behave like the parameters of procedures.
  • the unassigned (free) variables are parameters of the template.
  • a template Objects "knows" which of its parameters are free and which are bound. Only free parameters can be influenced externally.
  • Template currying and defaults allow this to be made possible without the complexity for the end user.
  • a template object only becomes complete when it is combined with an assignment of all of its free variables.
  • An assignment is an assignment of variables (names) to values. They bind the free parameter variables of a template to specific values. Once they are bound, they are no longer available as parameters.
  • Template objects can also be combined with incomplete assignments, i.e. those in which not all free variables of the template object are bound to a value. This combination of template + bindings creates a new template object with the remaining free variables as parameters. This new object continues to refer to its constituents.
  • Bindings can also contain templates as values, these templates are then "sub-templates" of the template to which they are bound. This enables a hierarchy of templates to be built.
  • variable can also be bound to another variable. So their value depends on the value of this other variable.
  • Structural inheritance is a special type of dependent binding.
  • the value of a parameter variable is not linked to a specific other variable, but the value of a variable with the same name of a higher-level template is adopted.
  • Structural inheritance can also be defined differently: as a dependent binding with multiple outputs (i.e. push vs. pull). This avoids undefined states.
  • the value of a variable can also be bound to any procedure that calculates this value. (This results from (a) the fact that procedures are a special case of templates and (b) values can also be templates. Furthermore, it follows that parameters of the procedure may be inserted into the template / binding system again).
  • Relationships between variables can also be defined. These can be used to calculate valid variable bindings by the system or to determine that there is no valid assignment. These relationships can e.g. B. be arithmetic, logical, contain inequalities, etc. B. just a special case of relationships.
  • new templates with additional behavior and additional free variables can be generated from refinement.
  • Templates can be (again) created from concrete objects by replacing fixed attributes / objects with a parameter variable (the current value is thereby used) usually accepted as default). This is possible both for sub-objects and for attributes.
  • structures To enable data from unstructured file formats to be included in the template concept, structures must be recognized automatically or assisted.
  • the kernel together with the associated template technology, allows the complexity of problems in the creation of publication documents to be divided and parts to be treated separately.
  • the separation into the design objects and their processing is of great importance here.
  • the design objects are completely described by their respective templates and can be edited or evaluated via the kernel.
  • the templates are available for the different design variants for controlled variant modification.
  • the parameter binding described is only restricted to the permissible "wanted” design variations. Additional design rules can automatically generate “wanted” design variants as additional information.
  • All design variants are in the form of templates as electronic representation on a digital storage medium and can be processed, varied, duplicated and converted as direct electronic templates for downstream processes via the kernel. Suitable formats for downstream processes are currently z. B. EPS, TIFF, PDF, SVG, HTML and XML, but there is no limitation to this exemplary selection.
  • the kernel is an always expandable virtual machine for processing templates into template variants, ie derived templates. Expandable here means that the kernel can grow in thickness as required. Only the kernel contains the knowledge of how the templates and the rules contained therein are to be executed or implemented. It is the central device for creating and editing templates. Procedure for creating templates and template variants
  • the method for creating templates is preferably based on a computer program and can be carried out on both a local and a remote computer.
  • the execution can be remotely controlled by a natural person or by another computer program.
  • the remote-controlled process of creation and editing currently uses standard technologies such as B. Internet, Intranet and World Wide Web or WAP, however, is not limited to this.
  • the method for generating design variants is preferably also based on a computer program that can be executed on a local and a remote computer.
  • the execution can be remotely controlled by a natural person or by another computer program.
  • FIG. 1 shows a flow chart to explain the phases for creating a template according to an exemplary embodiment of the present invention
  • FIG. 2 shows a foot diagram for explaining the method steps for creating a design variant via the Internet according to an exemplary embodiment of the present invention
  • FIG. 3 shows a schematic illustration of a template according to an exemplary embodiment of the present invention
  • FIG. 4 shows a schematic representation of a completed design variant as a parameterized printable template
  • FIG. 5 is a schematic illustration of a preferred hardware configuration according to the invention.
  • a logically unstructured print template describes a document held in electronic form on a storage medium, which was created with a standard publishing program and structured graphically.
  • the unstructured print template contains all electronically coded information that is required for the visualization of the underlying document. There is no systematic
  • Distribution of logical visualization components such as B. columns of text, headings, images, logos etc., from which the document is composed. Rather, the pixels are individually controlled when displaying unstructured print templates.
  • Visualization components derived from coded visualization processes via their underlying program code are derived from coded visualization processes via their underlying program code.
  • a component structure denotes a systematic subdivision of the logical visualization components, such as B. columns of text, headings, images, logos etc., from which the document is composed mensite.
  • Parameterizable substitution elements denote logical visualization components, such as B. text columns, headings, images, logos etc., which by free or restricted parameter value ranges by z.
  • B. external, program-controlled intervention in content and form can be changed.
  • a parameterized template refers to a structured template, which is kept in electronic form on a storage medium, in addition to the printable template, its systematic division of the logical visualization components, such as. B. contains text columns, headings, images, logos etc.
  • the printable template is also available in electronic form in a known standard format such as. B. EPS, TIFF, PDF, SVG, HTML and XML, kept on a storage medium.
  • the storage location of the printable template does not necessarily have to match the storage location of the associated template. It is sufficient if there is a reference in the template, e.g. B. a URL common on the Internet, via which the exact location can be localized over the Internet.
  • a design variant refers to a parameterized template (template), which, for. B. was changed by external program-controlled intervention in content and form and keeps all components, including the printable template, in a data package (bundle) on an electronic memory.
  • template a parameterized template
  • B. was changed by external program-controlled intervention in content and form and keeps all components, including the printable template, in a data package (bundle) on an electronic memory.
  • Each completed design variant designates a template derived from the invention on the basis of the unstructured template, any number of design variants being able to be generated from each template.
  • This is preferably in electronic form and serves z. B. as advertising material, such as advertisements of all kinds, brochures, magazines, but also so-called commercial printed matter such as: letterheads, business cards, congratulation cards, mourning cards.
  • advertising material such as advertisements of all kinds, brochures, magazines, but also so-called commercial printed matter such as: letterheads, business cards, congratulation cards, mourning cards.
  • personalized publication documents are becoming increasingly important. These are particularly suitable for direct electronic output on digital printers, CTP systems and monitors via the Internet.
  • a completed design variant can be delivered to the customer as a shop product.
  • a shop product can also contain additional information such as: B. Include prices for certain quantities.
  • Figure 1 shows schematically the essential steps for creating a template according to the invention by the designer or template creator.
  • a logically unstructured print template is read into the computer program MetaAd Creator according to the invention for the creation of templates.
  • This unstructured print template was created e.g. B. created with a standard program and is in a print-ready format such. B. EPS, PS, PDF, SVG etc. and is then analyzed in method step 12 by the computer program MetaAd Creator according to the invention and examined for graphic structural features.
  • a logical component structure is built up from the essential structural features found.
  • the component structure may include fixed and / or variable logical components.
  • Parameterizable substitution elements that match the variable components are displayed to the designer or template creator as bound parameter names via the user interface in the MetaAd Creator.
  • the variable components of interest are assigned to substitution elements that can be parameterized as desired.
  • the designer or template creator can restrict the parameters to a set of values in their value range. It can e.g. B. a certain color palette or a defined group of advertising texts can be assigned as substitution elements. Sometimes, however, it makes sense not to restrict the stock of values. An example of this is if future users should be able to replace text components with any of their own texts.
  • the parameterized print or design template is created, which contains all variable or replacement Tongue components and / or rules contains. This design template is saved on a digital data carrier such as B.
  • MetaAd template Hard drive called MetaAd template and is immediately available as a template for generating any number of design or design variants.
  • a suitable archive system can also be connected in a program-controlled manner via a configurable archiving interface. This could be used to archive and manage MetaAd templates, design variants and also substitution elements.
  • Figure 2 shows schematically the essential steps for creating a design variant according to the invention by the customer or user.
  • step 21 the ordering party or user is dialed in. His authorization is then carried out in FIG. 22 by checking an individual password by the computer program MetaAd Web-Deploy according to the invention. After confirming his access authorization, he can remotely edit his MetaAd templates using MetaAd WebDeploy.
  • step 23 a design variant or template is selected by the customer or user.
  • design variants of the MetaAd templates are created by assigning the substitution elements to the variable parameters or components.
  • Design variants refer to all of the MetaAd templates that are created in this way from the original template originally created by the designer or template creator.
  • the original template has the same structure, but is not overwritten by the changes made.
  • substitution elements such.
  • B. Pictures or text elements of a fixed range of values can be replaced by customer or user selection.
  • the range of values for substitution elements does not necessarily have to be restricted, but can also be opened by the creator or designer for unrestricted change of parameter values. For example, this can be useful if you want to enable free text entry or the assignment of colors to texts or geometries.
  • substitution elements can also be provided as results of program calls.
  • the MetaAd Batch-Deploy module is used for automatic parameter binding by program generated values used.
  • MetaAd Batch-Deploy the entire customer or user dialog can also be omitted and all design variants can be determined through the program-controlled provision of substitution elements.
  • step 25 the print templates embedded in the MetaAd template are adapted to the current parameter position of the substitution elements. This completes the temporary design variant. If required, a preview image for review is generated in step 26, which is sent to the web browser of the customer or user for the visualization of the design variant. This enables an interactive way of working with immediate control through the visualization of all changes made to content and design in a design variant or the respective MetaAd original template.
  • this design variant is stored for archiving in the customer or user directory for the one design variant.
  • a suitable archive system can also be connected in a program-controlled manner via a configurable archiving interface. This could be used to archive and manage MetaAd templates, design variants and also substitution elements.
  • an ordering process is optionally initiated.
  • the customer has the option of starting a shopping cart function or other purchase and payment processes and placing a print order.
  • a print job is generated in a print shop facility using the MetaAd template.
  • the print job data can also be contained in the MetaAd template.
  • the complete processing of the placed print job including payment can be done via MetaAd Web-Deploy.
  • step 29 the printable template from the design variant is printed taking into account the print job data.
  • FIG. 3 shows a MetaAd template with fixed or static and variable or dynamic visualization components, the dynamic visualization components in the MetaAd Creater being linked as default values to parameters, which are then combined into one later replaced by substitution elements.
  • This replacement process takes place by using the programs MetaAd Web-Deploy, MetaAd Batch-Deploy, MetaAd GUI-Deploy or again MetaAd Creater on the MetaAd template.
  • the logol can e.g. B. be replaced by other logos that are suitable as substitution elements.
  • the static visualization components 32 and 33 are firmly bound to parameters and are not released for later replacement.
  • MetaAd application can be replaced by any text.
  • the font selection and font size are fixed in this example and only one change of content can be made.
  • other free parameters for this substitution element could also be used here, e.g. B. the font color, type, size, etc. can be kept variable.
  • Components 35 and 36 are dynamic visualization components of the type image.
  • the free parameters are initially assigned default values, which can then be replaced by a MetaAd application.
  • FIG. 4 shows a design variant which is structurally identical to the MetaAd original template from FIG. 3. It is essential with this figure that it represents a concrete design variant, which was created by the replacement mechanism of a MetaAd application on a MetaAd original template.
  • FIG. 5 shows a preferred hardware configuration for carrying out the invention.
  • Reference numeral 51 denotes the customer or user who is using a client computer in one
  • Reference numeral 52 denotes one or more designers or template creators who create templates on their local computer and transfer them to a central server via the Internet or intranet. However, you can also generate these directly on the Internet or intranet using a client computer in a standard web browser.
  • Reference numeral 53 denotes the connection between the customer, user, designer or template creator and application server via the Internet or intranet.
  • Reference numeral 54 denotes the application server on which the web application executes the instructions of the ordering party, user and designer or template creator, as was explained with reference to FIG. 2.
  • the print templates, substitution elements, etc. are provided in a suitable data storage 55.
  • the hardware configuration is not limited to a specific type of computer.

Landscapes

  • Business, Economics & Management (AREA)
  • Engineering & Computer Science (AREA)
  • Educational Administration (AREA)
  • Educational Technology (AREA)
  • Document Processing Apparatus (AREA)
  • Record Information Processing For Printing (AREA)
  • Processing Or Creating Images (AREA)
  • Printing Methods (AREA)
  • Manufacturing Of Printed Wiring (AREA)
  • Preparing Plates And Mask In Photomechanical Process (AREA)
  • Projection-Type Copiers In General (AREA)
  • Light Sources And Details Of Projection-Printing Devices (AREA)
EP01923521A 2000-03-17 2001-03-19 Procede et dispositif pour realiser une maquette pour impression Expired - Lifetime EP1265751B1 (fr)

Applications Claiming Priority (3)

Application Number Priority Date Filing Date Title
DE10013096A DE10013096A1 (de) 2000-03-17 2000-03-17 Vorrichtung und Verfahren zum Erstellen einer Druckvorlage
DE10013096 2000-03-17
PCT/DE2001/001051 WO2001068368A2 (fr) 2000-03-17 2001-03-19 Procede et dispositif pour realiser une maquette pour impression

Publications (2)

Publication Number Publication Date
EP1265751A2 true EP1265751A2 (fr) 2002-12-18
EP1265751B1 EP1265751B1 (fr) 2003-10-15

Family

ID=7635150

Family Applications (1)

Application Number Title Priority Date Filing Date
EP01923521A Expired - Lifetime EP1265751B1 (fr) 2000-03-17 2001-03-19 Procede et dispositif pour realiser une maquette pour impression

Country Status (7)

Country Link
US (1) US20030090723A1 (fr)
EP (1) EP1265751B1 (fr)
JP (1) JP2003526862A (fr)
AT (1) ATE252252T1 (fr)
AU (1) AU2001250280A1 (fr)
DE (2) DE10013096A1 (fr)
WO (1) WO2001068368A2 (fr)

Families Citing this family (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8179555B2 (en) * 2002-03-08 2012-05-15 Hewlett-Packard Development Company, L.P. Printing and finishing capability for customized document production system and method
JP4761535B2 (ja) * 2005-02-23 2011-08-31 キヤノン株式会社 文書管理装置及び方法、プログラム
ES2805788T3 (es) * 2012-01-13 2021-02-15 Zagg Inc Producción bajo demanda de accesorios para dispositivos electrónicos
DE102015003874A1 (de) 2015-03-20 2016-09-22 SCHÜTZ BRANDCOM Agentur für Markenkommunikation GmbH Verfahren zur Erstellung von Unternehmenspräsentationen

Family Cites Families (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP2554395B2 (ja) * 1990-11-30 1996-11-13 株式会社日立製作所 印刷書式管理システム
US5796930A (en) * 1995-11-13 1998-08-18 Varis Corporation System architecture for processing and transporting page-map or bit-map data to a raster print engine
CA2215094A1 (fr) * 1996-10-16 1998-04-16 Brian F. Hern Methode de creation de configurations complexes a donnees variables pour les systemes d'impression a grande vitesse a configurations multiples

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
See references of WO0168368A2 *

Also Published As

Publication number Publication date
US20030090723A1 (en) 2003-05-15
AU2001250280A1 (en) 2001-09-24
JP2003526862A (ja) 2003-09-09
ATE252252T1 (de) 2003-11-15
DE50100802D1 (de) 2003-11-20
DE10013096A1 (de) 2001-09-20
EP1265751B1 (fr) 2003-10-15
WO2001068368A3 (fr) 2002-05-02
WO2001068368A2 (fr) 2001-09-20

Similar Documents

Publication Publication Date Title
DE60112188T2 (de) Methode und system zur erzeugung strukturierter dokumente für verschiedene darstellungsweisen
DE69427105T2 (de) System und Verfahren zum Entwurf und zur Herstellung von Grafik
EP1215589A2 (fr) Provision de données de projets dans un format d'une meta-langue standardisée
EP1573505A2 (fr) Procede, ensemble et logiciel informatique pour imprimer un intercalaire a l'aide d'une imprimante ou d'un copieur electrophotographique
DE69405622T2 (de) Vorrichtung zur Anpassung einer Benutzerschnittstelle
DE10150387A1 (de) CAD-Datenmodell mit Entwurfsnotizen
EP1161731B1 (fr) Procede, produit programme d'ordinateur et systeme permettant le transfert de donnees informatiques a un appareil de sortie
DE10252797B4 (de) Verfahren und System zum Erstellen von Dokumentenvorlagen mit Ressourcenverwaltung
EP2565816B1 (fr) Procédé et dispositif de production d'un code-barre sur un substrat
EP1265751B1 (fr) Procede et dispositif pour realiser une maquette pour impression
DE102017212581A1 (de) Verfahren zur dynamischen Erweiterung einer domänenspezifischen Sprache eines graphischen Modellierungswerkzeugs
EP1662381A1 (fr) Système d'ingénerie avec la génération automatique de modèles d'instances
DE10335124B4 (de) Drucksystem, Druckdatenerzeugungsvorrichtung des Drucksystems, Druckverfahren, Programm zum Betreiben der Druckdatenerzeugungsvorrichtung
DE4308291C2 (de) Verfahren und Vorrichtung zur vorgangsbezogenen Erstellung und Bearbeitung von Dokumenten
EP1328865A2 (fr) Commande d'affichage avec des documents hypertextes actifs
DE10257436A1 (de) Bedarfspunktgerechtes Dokumenterzeugungssystem und -verfahren
EP1387260A1 (fr) Procédé et dispositif pour la génération des logiciels
DE69925108T2 (de) Ableitung einer objektklasse durch vererbung, instanzierung oder klonierung
EP1170672A1 (fr) Génération automatique de documents à publier sur l'internet
DE10138533A1 (de) Bereitstellung von Projekt- und/oder Projektierungsdaten eines Automatisierungsprojekts in einem durch eine standardisierte Meta-Sprache, insbesondere XML, definiertem Format
DE10233971A1 (de) Verfahren und Vorrichtung zur Erzeugung von Software
EP2164000A1 (fr) Procédé de conversion d'informations textuelles dans un document au format pdf
EP2163983A1 (fr) Procédé de production de fichier d'impression à partir d'objets de données d'une mémoire
EP1282867A2 (fr) Procede pour etablir un document de sortie dans un systeme informatique
EP1163574B1 (fr) Procede, produit programme d'ordinateur et systeme permettant le transfert de donnees informatiques a un appareil de sortie

Legal Events

Date Code Title Description
PUAI Public reference made under article 153(3) epc to a published international application that has entered the european phase

Free format text: ORIGINAL CODE: 0009012

17P Request for examination filed

Effective date: 20021015

AK Designated contracting states

Kind code of ref document: A2

Designated state(s): AT BE CH CY DE DK ES FI FR GB GR IE IT LI LU MC NL PT SE TR

AX Request for extension of the european patent

Free format text: AL;LT;LV;MK;RO;SI

GRAH Despatch of communication of intention to grant a patent

Free format text: ORIGINAL CODE: EPIDOS IGRA

RIC1 Information provided on ipc code assigned before grant

Ipc: 7G 06F 17/30 A

Ipc: 7B 41C 1/00 B

RIC1 Information provided on ipc code assigned before grant

Ipc: 7G 06F 17/30 A

Ipc: 7B 41C 1/00 B

GRAS Grant fee paid

Free format text: ORIGINAL CODE: EPIDOSNIGR3

GRAA (expected) grant

Free format text: ORIGINAL CODE: 0009210

AK Designated contracting states

Kind code of ref document: B1

Designated state(s): AT BE CH CY DE DK ES FI FR GB GR IE IT LI LU MC NL PT SE TR

PG25 Lapsed in a contracting state [announced via postgrant information from national office to epo]

Ref country code: CY

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20031015

Ref country code: ES

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20031015

Ref country code: NL

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20031015

Ref country code: TR

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20031015

Ref country code: FI

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20031015

Ref country code: IE

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20031015

Ref country code: IT

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT;WARNING: LAPSES OF ITALIAN PATENTS WITH EFFECTIVE DATE BEFORE 2007 MAY HAVE OCCURRED AT ANY TIME BEFORE 2007. THE CORRECT EFFECTIVE DATE MAY BE DIFFERENT FROM THE ONE RECORDED.

Effective date: 20031015

REG Reference to a national code

Ref country code: GB

Ref legal event code: FG4D

Free format text: NOT ENGLISH

Ref country code: CH

Ref legal event code: EP

GBT Gb: translation of ep patent filed (gb section 77(6)(a)/1977)

Effective date: 20031015

REG Reference to a national code

Ref country code: IE

Ref legal event code: FG4D

Free format text: GERMAN

REF Corresponds to:

Ref document number: 50100802

Country of ref document: DE

Date of ref document: 20031120

Kind code of ref document: P

PG25 Lapsed in a contracting state [announced via postgrant information from national office to epo]

Ref country code: GR

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20040115

Ref country code: DK

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20040115

Ref country code: SE

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20040115

PG25 Lapsed in a contracting state [announced via postgrant information from national office to epo]

Ref country code: AT

Free format text: LAPSE BECAUSE OF NON-PAYMENT OF DUE FEES

Effective date: 20040319

Ref country code: LU

Free format text: LAPSE BECAUSE OF NON-PAYMENT OF DUE FEES

Effective date: 20040319

LTIE Lt: invalidation of european patent or patent extension

Effective date: 20031015

PG25 Lapsed in a contracting state [announced via postgrant information from national office to epo]

Ref country code: MC

Free format text: LAPSE BECAUSE OF NON-PAYMENT OF DUE FEES

Effective date: 20040331

Ref country code: BE

Free format text: LAPSE BECAUSE OF NON-PAYMENT OF DUE FEES

Effective date: 20040331

NLV1 Nl: lapsed or annulled due to failure to fulfill the requirements of art. 29p and 29m of the patents act
REG Reference to a national code

Ref country code: IE

Ref legal event code: FD4D

ET Fr: translation filed
PLBE No opposition filed within time limit

Free format text: ORIGINAL CODE: 0009261

STAA Information on the status of an ep patent application or granted ep patent

Free format text: STATUS: NO OPPOSITION FILED WITHIN TIME LIMIT

BERE Be: lapsed

Owner name: *CIDENTIGO G.M.B.H.

Effective date: 20040331

26N No opposition filed

Effective date: 20040716

PG25 Lapsed in a contracting state [announced via postgrant information from national office to epo]

Ref country code: LI

Free format text: LAPSE BECAUSE OF NON-PAYMENT OF DUE FEES

Effective date: 20050331

Ref country code: CH

Free format text: LAPSE BECAUSE OF NON-PAYMENT OF DUE FEES

Effective date: 20050331

REG Reference to a national code

Ref country code: CH

Ref legal event code: PL

PG25 Lapsed in a contracting state [announced via postgrant information from national office to epo]

Ref country code: PT

Free format text: LAPSE BECAUSE OF NON-PAYMENT OF DUE FEES

Effective date: 20040315

PGFP Annual fee paid to national office [announced via postgrant information from national office to epo]

Ref country code: GB

Payment date: 20100324

Year of fee payment: 10

PGFP Annual fee paid to national office [announced via postgrant information from national office to epo]

Ref country code: FR

Payment date: 20100415

Year of fee payment: 10

PGFP Annual fee paid to national office [announced via postgrant information from national office to epo]

Ref country code: DE

Payment date: 20100325

Year of fee payment: 10

GBPC Gb: european patent ceased through non-payment of renewal fee

Effective date: 20110319

REG Reference to a national code

Ref country code: FR

Ref legal event code: ST

Effective date: 20111130

PG25 Lapsed in a contracting state [announced via postgrant information from national office to epo]

Ref country code: FR

Free format text: LAPSE BECAUSE OF NON-PAYMENT OF DUE FEES

Effective date: 20110331

Ref country code: DE

Free format text: LAPSE BECAUSE OF NON-PAYMENT OF DUE FEES

Effective date: 20111001

REG Reference to a national code

Ref country code: DE

Ref legal event code: R119

Ref document number: 50100802

Country of ref document: DE

Effective date: 20111001

PG25 Lapsed in a contracting state [announced via postgrant information from national office to epo]

Ref country code: GB

Free format text: LAPSE BECAUSE OF NON-PAYMENT OF DUE FEES

Effective date: 20110319