CWCM. CWCM: XSL Migration. Version /07/ of 9

Size: px
Start display at page:

Download "CWCM. CWCM: XSL Migration. Version /07/ of 9"

Transcription

1 CWCM CWCM: XSL Migration Version /07/ of 9

2 DOCUMENT HISTORY Version Date Author Description Action (*) Confidentiality Pages /04/2010 IDS Creation C High /12/2010 IDS Aligned version history U High /07/2012 IDS Changed to template EC 2012 U High NA (*) Action: C= Creation, I=Insert, U=Update, R=Replace, D=Delete 2 of 9

3 TABLE OF CONTENTS 1. Description 4 2. The new implementation of the crumbtrails Context Introduction Impact of the new object model Adapting your XSL files to the new implementation of the crumbtrails Cases 1 and 2: XSL templates and Java methods Case 3: using your own DQL queries Conclusion 7 3. The category external IDs Context Adapting your XSL files 8 4. Annex 1: excerpts from UM.custom.xslbestpractices 9 3 of 9

4 1. DESCRIPTION This document has two objectives. The first one is to describe how and when to migrate your XSL files in order to take into account the modification of the implementation of the crumbtrails. The second one is to include recommendations for the migration of category r_object_id s which are hard coded in your XSL files, to category external IDs. 4 of 9

5 2. THE NEW IMPLEMENTATION OF THE CRUMBTRAILS 2.1 Context Introduction In order to accommodate the addition of new languages to the CWCM system by the data center, the CWCM object model was updated. These modifications were performed in the context of the work package 70 ( Data Model Migration ). Before the implementation of this new object model the crumb trail for language XX was stored in attribute crumb_xx. As many attributes crumb_xx exist as languages. In the new object model two new repeating attributes are available on the eu_subsite objects: eu_crumbtrail_lang: contains a list of languages. eu_crumbtrail: contains the crumb trails. The language of the crumb trail on position j is stored in the attribute eu_crumbtrail_lang on position j. When the crumb trails on a subsite are updated the attributes crumb_xx, eu_crumbtrail_lang and eu_crumbtrail are updated in order to keep the values synchronized between the old and new attributes: when a crumbtrail is added, modified or removed (in the new implementation), its counterpart in the old implementation is also added, modified or removed when it is possible to do so Impact of the new object model With the introduction of CWCM V3 the old attributes are discarded, and it will be no longer possible to use them. Until then, the old and the new attributes will co-exist in the object model. Therefore, you should adapt your XSL files to remove the dependencies on the old object model, i.e. explicit DQL queries on the crumb_xx attributes of eu_subsite. In the next section we will explain if you have to adapt your XSL files and how to adapt them, if necessary. 2.2 Adapting your XSL files to the new implementation of the crumbtrails The breadcrumb for an XML document is displayed in the way specified in its associated XSL file. There are basically three ways to display the bread crumb: 1. with one of the XSL templates that display the breadcrumb, like the XSL template crumbtrail. Refer to the UM.custom.xslbestpractices manual for more information; 2. with your own XSL template that calls one of the crumbtrail Java methods, like getcrumbtrailxml and getsubsiteattributesxml. Refer to the UM.custom.xslbestpractices manual for more information; 3. with your own XSL template that uses one or several DQL queries to fetch the crumbtrails information. You must adapt you XSL files if the crumbtrail information is retrieved with a DQL query. 5 of 9

6 2.2.1 Cases 1 and 2: XSL templates and Java methods In this section we will list the crumbtrail related Java methods which you can continue to use for the retrieval of crumb trail information. We will also mention in which XSL template and in which common XSL file these methods are located. Please note we will mention only the location of the methods in the common XSL files at the root of the domains (unless explicitly stated otherwise). If you are only using the Java methods or XSL templates listed in this section to retrieve the crumb trail information you can continue to use your XSL files and no migration is required getcrumbtrailxml methods The method getcrumbtrailxml and its variants are safe to use: getcrumbtrailxml($eu_document_proxy, maxdepth, maxlength) getcrumbtrailxml($eu_document_proxy, maxdepth, maxlength, validateindex) where validateindex is a Boolean value (true or false) getcrumbtrailxml(($eu_document_proxy, maxdepth, maxlength, testmode) where testmode is a string. These methods are used in the following XSL templates which are also safe to use: the XSL template "crumbtrail" in /xsl-common/ec.europa.eu/header_footer_europa.xsl the XSL template "crumbtrail" in /xsl-common/europa.eu/header_footer_europa.xsl the XSL template "crumbtrail" in /xsl-common/publications.europa.eu/header_footer_europa.xsl the XSL template "crumbtrail" in /xsl-common/ the XSL template "crumbtrail" in /xsl-common/ the XSL template "crumbtrail" in /xsl-common/header_footer_europa.xsl getcrumbtrail methods The method getcrumbtrail and its variants are safe to use: java:com.fujitsu.eu.wcm.presentation. CrumbTrail.getCrumbTrail($CRUMB, themaxdepth, themaxlength, thecurrentdocid, thedoclanguage, thesessionid) and 6 of 9

7 java:com.fujitsu.eu.wcm.presentation. CrumbTrail.getCrumbTrail($CRUMB, currentdocid, doclanguage, sessionid) $CRUMB is an instance of the class com.fujitsu.eu.wcm.presentation.crumbtrail These methods are used in the following XSL templates which are also safe to use: the XSL template "breadcrumb" in /xsl-common/ buildsubsiteattributes method The method buildsubsiteattributes and its variants are safe to use: getsubsiteattributesxml($eu_document_proxy) and getsubsiteattributesxml($eu_document_proxy, folderpath) The method and its variants are not explicitly used in one of the common XSL files Case 3: using your own DQL queries If your XSL templates are fetching the crumb trail information with some DQL or XDQL queries on the crumb_xx attributes for one or several languages, you must adapt your XSL files. If you don t adapt your XSL files your web site will probably stop working when CWCM V3 is rolled out. Eventually, no HTML renditions or wrong HTML renditions are generated and published. To migrate your XSL files you should replace all DQL or XDQL queries on the crumb_xx attributes of eu_subsite in your XSL files by one of the Java methods or XSL templates in section Cases 1 and 2: XSL templates and Java methods on page 6. The amount of migration work depends on the way how your XSL files process the results of the DQL or XDQL query. 2.3 Conclusion In practice, you should adapt your XSL files only in the following case: One or several XSL templates uses one or several DQL or XDQL queries to retrieve the crumb_xx attributes of your subsites. 7 of 9

8 3. THE CATEGORY EXTERNAL IDS 3.1 Context In some situations it is necessary to hard code a category s r_object_id in your XSL style sheets. For instance, consider the following example, which defines an XSL variable for the category s r_object_id: <!-- ID of category FOCUS --> <xsl:variable name="category_id_focus "> cef</xsl:variable> The use of the hard-coded category r_object_id makes the portability of the XSL style sheets between docbases difficult. As the Documentum repository assigns the r_object_id automatically and implicitly, the r_object_id of the category in the target docbase will certainly differ. As an implication, the XSL style sheet must be updated to reflect the new category s r_object_id, when the XSL is copied to another docbase, like a copy from the wcmplay docbase to the wcmcom docbase. The CWCM supports the encoding of a so-called external ID for a category, which is a string representing a logical identifier for the category and which you can provide. The CWCM system will check whether the external IDs of categories are unique inside one category linkgroup. Instead of using the category s r_object_id to refer to a category you should use the category s external ID to reference the category. We will explain the migration steps in the next paragraph. 3.2 Adapting your XSL files To use the external ID of a category instead of encoding directly the r_object_id, a new XSL method is provided; getlinkobjectids. It will retrieve the r_object_id of the category from its external ID. If we provide for the category in the previous example the external EXTID_FOCUS, and assume that the linkgroup lg_id of this category is 12345, we replace the definition of the variable category_id_focus with the following construction: <! Use the EXTERNAL ID category FOCUS to retrieve its r_object_id --> <xsl:variable name=" category_id_focus " select="java:getlinkobjectids($eu_document_proxy, 12345:EXTID_FOCUS )"/> The parameter of this java extension function represents the identifier of the category: the lg_id ( in this example) and the external id ( EXTID_FOCUS ) of the requested category separated by colon :. For more details related to the usage of the getlinkobjectids java extension function, see its description in the manual UM.custom.xslbestpractices. 8 of 9

9 4. ANNEX 1: EXCERPTS FROM UM.CUSTOM.XSLBESTPRACTICES The document UM.custom.xslbestpractices contains several XSL templates and methods related to crumbtrails: The template crumbtrail The method getcrumbtrailxml The method getsubsiteattributesxml 9 of 9

CWCM. Migrating to XSL template Version /04/ of 18

CWCM. Migrating to XSL template Version /04/ of 18 CWCM Migrating to XSL template 2013 Version 1.0 03/04/2013 1 of 18 DOCUMENT HISTORY Version Date Author Description Action (*) Confidentiality Pages 1.0 03/04/2013 Acsone Creation C Normal 17 (*) Action:

More information

CWCM Webmaster Training. Denis Bacquelaine, Technical Consultant I.R.I.S. Solutions & Experts S.A.

CWCM Webmaster Training. Denis Bacquelaine, Technical Consultant I.R.I.S. Solutions & Experts S.A. CWCM Webmaster Training Denis Bacquelaine, Technical Consultant I.R.I.S. Solutions & Experts S.A. Prerequisite: Content Contributors course of CWCM V3 Webmaster basic Knowledge Agenda Training objectives

More information

CWCM Webmaster Training. Denis Bacquelaine, Technical Consultant I.R.I.S. Solutions & Experts S.A.

CWCM Webmaster Training. Denis Bacquelaine, Technical Consultant I.R.I.S. Solutions & Experts S.A. CWCM Webmaster Training Denis Bacquelaine, Technical Consultant I.R.I.S. Solutions & Experts S.A. Prerequisite: Content Contributors course of CWCM V3 Webmaster basic Knowledge Training organisation Time

More information

CWCM. XSL Template Version /04/ of 37

CWCM. XSL Template Version /04/ of 37 CWCM XSL Template 2013 Version 1.0 03/04/2013 1 of 37 DOCUMENT HISTORY Version Date Author Description Action (*) Confidentiality Pages 1.0 03/04/2013 Acsone Creation C Normal 34 (*) Action: C= Creation,

More information

myinsight for Documentum User Guide Documentum Administrator, Webtop, Taskspace

myinsight for Documentum User Guide Documentum Administrator, Webtop, Taskspace myinsight for Documentum User Guide Documentum Administrator, Webtop, Taskspace Contents 1. Version History... 4 2. Product Description... 5 3. Introduction...7 3.1. 3.2. 3.3. 3.4. 3.5. Roles...7 Reports...

More information

ECM Extensions xcp 2.2 xcelerator Abstract

ECM Extensions xcp 2.2 xcelerator Abstract ECM Extensions xcp 2.2 xcelerator Abstract These release notes outline how to install and use the ECM Extensions xcelerator. October 2015 Version 1.0 Copyright 2015 EMC Corporation. All Rights Reserved.

More information

EMC Documentum Dump and Load Technical Details and Troubleshooting

EMC Documentum Dump and Load Technical Details and Troubleshooting EMC Documentum Dump and Load Technical Details and Troubleshooting A Detailed Review Abstract This white paper is intended to help users understand the EMC Documentum dump and load utility and troubleshoot

More information

"'' zoo 250. MYINSIGHT Dosh boards & Reports. User Guide D2 4.x

'' zoo 250. MYINSIGHT Dosh boards & Reports. User Guide D2 4.x 300 250. "'' zoo 150 10 974 575 645 941 802 715 557 MYINSIGHT Dosh boards & Reports User Guide D2 4.x Chapter1 1 VERSION HISTORY Date Changes Version number 7-12-2015 Transformation to DITA. Update for

More information

CWCM Contributor Training. Denis Bacquelaine, Technical Consultant I.R.I.S. Solutions & Experts S.A.

CWCM Contributor Training. Denis Bacquelaine, Technical Consultant I.R.I.S. Solutions & Experts S.A. CWCM Contributor Training Denis Bacquelaine, Technical Consultant I.R.I.S. Solutions & Experts S.A. Agenda Training objectives Training organisation Introduction to CWCM Objectives of the CWCM system Benefits

More information

myinsight for Documentum User Guide Widgets

myinsight for Documentum User Guide Widgets myinsight for Documentum User Guide Widgets Contents 1. Version History... 4 2. Product Description... 5 3. Introduction...7 3.1. 3.2. 3.3. 3.4. 3.5. Roles...7 Reports... 8 Report Definitions... 8 Report

More information

EMC Documentum Forms Builder

EMC Documentum Forms Builder EMC Documentum Forms Builder Version 6 User Guide P/N 300-005-243 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 1994-2007 EMC Corporation. All rights

More information

,,..,,, $::. % 'c0s ts l:j(or::k. '"'e 250. iii/ ,,. OS 10 LJ JAN 'SO FE8. MYINSIGHT Doshboords & Reports. User Guide D2 Client

,,..,,, $::. % 'c0s ts l:j(or::k. ''e 250. iii/ ,,. OS 10 LJ JAN 'SO FE8. MYINSIGHT Doshboords & Reports. User Guide D2 Client ,,..,,, / 'c0s ts l:j(or::k 350 300 $::. % i,,. '"'e 250. iii/ 150 OS 10 'SO 0 LJ JAN FE8 Av MYINSIGHT Doshboords & Reports User Guide D2 Client 1Chapter 1 VERSION HISTORY Date Changes Version number 7-12-2015

More information

What Is SharePoint Server 2007? SharePoint Server 2007 Sites. SharePoint How To s / Collaboration 1of 5

What Is SharePoint Server 2007? SharePoint Server 2007 Sites. SharePoint How To s / Collaboration 1of 5 SharePoint How To s / Collaboration 1of 5 SharePoint Server 2007 is an integrated suite of server applications that helps people and teams work together. At Microsoft, these sites are most commonly used

More information

EMC InfoArchive Documentum Connector

EMC InfoArchive Documentum Connector EMC InfoArchive Documentum Connector Version 3.0 User Guide EMC Corporation Corporate Headquarters Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Legal Notice Copyright 2014 EMC Corporation. All Rights

More information

"'' zoo 250. MYINSIGHT Dosh boards & Reports. Release Notes

'' zoo 250. MYINSIGHT Dosh boards & Reports. Release Notes 300 250. "'' zoo 150 10 974 575 645 941 802 715 557 MYINSIGHT Dosh boards & Reports Release Notes 1Chapter 1 VERSION HISTORY Date Changes Version number 7-12-2015 Transformation to DITA. Update for myinsight

More information

CWCMS (Corporate Web Content Management System) Workbook CWCMS Workflows Version 1.0

CWCMS (Corporate Web Content Management System) Workbook CWCMS Workflows Version 1.0 CWCMS (Corporate Web Content Management System) Workbook CWCMS Workflows Version 1.0 CWCMS WORKFLOW TRAINING 1 Exercise: start and execute 1 stage approval workflow... 3 1.1 Goal... 3 1.2 Setup... 3 1.3

More information

Chapter 1 True/False Instructions: Circle T if the statement is true or F if the statement is false.

Chapter 1 True/False Instructions: Circle T if the statement is true or F if the statement is false. Name Date Chapter 1 True/False Instructions: Circle T if the statement is true or F if the statement is false. T F 1. WYSIWYG stands for What You See Is What You Get. T F 2. The menu bar shows the application

More information

myinsight for Documentum User Guide Mobile

myinsight for Documentum User Guide Mobile myinsight for Documentum User Guide Mobile 1. Version History Date Changes Version number 2-June-2016 First publication of the documentation of the new mobile application. 1.0 21- Update for myinsight

More information

s i m p l y w o r k s

s i m p l y w o r k s CARA is an ergonomically designed, fast, web user interface and business rules engine, currently released for the following platforms: Documentum (alternative to Webtop or D2) Oracle WebCenter Alfresco

More information

XML Wrap-up. CS 431 March 1, 2006 Carl Lagoze Cornell University

XML Wrap-up. CS 431 March 1, 2006 Carl Lagoze Cornell University XML Wrap-up CS 431 March 1, 2006 Carl Lagoze Cornell University XSLT Processing Model Input XSL doc parse Input XML doc parse Parsed tree serialize Input XML doc Parsed tree Xformed tree Output doc (xml,

More information

myinsight for Documentum Release Notes

myinsight for Documentum Release Notes myinsight for Documentum Release Notes Contents 1. Version History... 3 2. Product... 4 3. Environment and System Requirements... 6 3.1. Webservice Environment and System Requirements... 6 4. What's New...

More information

Ajith s Documentum Security Notes

Ajith s Documentum Security Notes 1 Ajith s Documentum Security Notes Ajith s Documentum Security Notes...1 User Privileges...1 Basic privileges...2 Extended User Privileges...2 Object Level Permissions...3 Base Object- Level Permissions...3

More information

EMC Documentum Process Integrator

EMC Documentum Process Integrator EMC Documentum Process Integrator Version 6.5 Development Guide P/N 300-007-254-A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2004-2008 EMC Corporation.

More information

Repository In a Box (RIB)

Repository In a Box (RIB) Repository In a Box (RIB) Presented by: Yuanlei Zhang August 22, 2005 Outline» Brief overview of RIB» Release of RIB 3.0» Migration from RIB 2.2 to RIB 3.0» Improvements to RIB 3.0» Integration of RIB

More information

EMC InfoArchive Documentum Connector

EMC InfoArchive Documentum Connector EMC InfoArchive Documentum Connector Version 3.2 User Guide EMC Corporation Corporate Headquarters Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Legal Notice Copyright 2015 EMC Corporation. All Rights

More information

Pair projects due Thursday I do not anticipate giving any extensions for this assignment. 3/2/ Larry Snyder, CSE 1

Pair projects due Thursday I do not anticipate giving any extensions for this assignment. 3/2/ Larry Snyder, CSE 1 Pair projects due Thursday I do not anticipate giving any extensions for this assignment 3/2/15 2011 Larry Snyder, CSE 1 XML is essential for huge corporate systems. and for us Lawrence Snyder University

More information

EMC Documentum Connector for Microsoft SharePoint Farm Solution

EMC Documentum Connector for Microsoft SharePoint Farm Solution EMC Documentum Connector for Microsoft SharePoint Farm Solution Version 7.2 Content Management Guide EMC Corporation Corporate Headquarters Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Legal Notice

More information

Chapter 3. Architecture and Design

Chapter 3. Architecture and Design Chapter 3. Architecture and Design Design decisions and functional architecture of the Semi automatic generation of warehouse schema has been explained in this section. 3.1. Technical Architecture System

More information

Multi-Channel Publishing for AllFusion Gen

Multi-Channel Publishing for AllFusion Gen QA TECHNOLOGIES Multi-Channel Publishing for AllFusion Gen Questions Answered. Solutions Provided. Common Questions What exactly is QAT Publisher? Advanced plug-in for AllFusion Gen Multi-Channel publishing

More information

Web Publisher Development Guide. Version SP2 July 2004 Windows, UNIX, HP-UX, AIX, Linux

Web Publisher Development Guide. Version SP2 July 2004 Windows, UNIX, HP-UX, AIX, Linux Web Publisher Development Guide Version 5.2.5 SP2 July 2004 Windows, UNIX, HP-UX, AIX, Linux Copyright 1994-2004 Documentum, a division of EMC. All Rights Reserved. DOCUMENTUM, NOW YOU KNOW, UNITING THE

More information

Annex A to the Tender Specifications: Price schedules and price scenarios. - using the unit price schedule and the price scenario tables in annex.

Annex A to the Tender Specifications: Price schedules and price scenarios. - using the unit price schedule and the price scenario tables in annex. Annex A to the Tender Specifications: Price schedules and price scenarios The prices for the tender must be tendered: - in EUR (the EUR is to be privileged. Only if contracts in EUR are not allowed by

More information

AIM. 10 September

AIM. 10 September AIM These two courses are aimed at introducing you to the World of Web Programming. These courses does NOT make you Master all the skills of a Web Programmer. You must learn and work MORE in this area

More information

EMC EXAM - E Content Management System Administration. Buy Full Product.

EMC EXAM - E Content Management System Administration. Buy Full Product. EMC EXAM - E20-465 Content Management System Administration Buy Full Product http://www.examskey.com/e20-465.html Examskey EMC E20-465 exam demo product is here for you to test the quality of the product.

More information

XML: Introduction. !important Declaration... 9:11 #FIXED... 7:5 #IMPLIED... 7:5 #REQUIRED... Directive... 9:11

XML: Introduction. !important Declaration... 9:11 #FIXED... 7:5 #IMPLIED... 7:5 #REQUIRED... Directive... 9:11 !important Declaration... 9:11 #FIXED... 7:5 #IMPLIED... 7:5 #REQUIRED... 7:4 @import Directive... 9:11 A Absolute Units of Length... 9:14 Addressing the First Line... 9:6 Assigning Meaning to XML Tags...

More information

TRANSFORMATION GATEWAY

TRANSFORMATION GATEWAY TRANSFORMATION GATEWAY Optimizing EMC Documentum: Performance and Scalability Ed Bueché EMC Distinguished Engineer TRANSFORMATION GATEWAY Agenda: Top xplore Performance Tips Tip #1: Leverage Sizing tools

More information

myinsight for Documentum myinsight Web Services User Guide

myinsight for Documentum myinsight Web Services User Guide myinsight for Documentum myinsight Web Services User Guide Contents 1. Version History... 3 2. Product... 4 3. Webservice Introduction... 6 3.1. REST End Points... 6 3.2. SOAP End Points...6 4. Authorization...

More information

INDEX COPYRIGHTED MATERIAL

INDEX COPYRIGHTED MATERIAL INDEX $SPUrl, 267 8-bit colors, 307 960 Grid, 352 356, 365 About.com, 163 A Add a Page menu, 273, 335 Add an App menu, 16, 24 adjacent sibling selector, CSS, 155 AjaxDelta controls, 209 210, 217 alternate

More information

IDOL. Software Version Document Security Administration Guide

IDOL. Software Version Document Security Administration Guide IDOL Software Version 12.0 Document Security Administration Guide Document Release Date: June 2018 Software Release Date: June 2018 Legal notices Copyright notice Copyright 2018 Micro Focus or one of its

More information

Fondamenti della Programmazione: Metodi Evoluti. Lezione 7: References and Assignment

Fondamenti della Programmazione: Metodi Evoluti. Lezione 7: References and Assignment Fondamenti della Programmazione: Metodi Evoluti Prof. Enrico Nardelli Lezione 7: References and Assignment versione originale: http://touch.ethz.ch Program for today How are objects made? How do we modify

More information

What s New In DFC. Quick Review. Agenda. Quick Review Release 5.3 Q&A Post 5.3 plans. David Folk Product Manager

What s New In DFC. Quick Review. Agenda. Quick Review Release 5.3 Q&A Post 5.3 plans. David Folk Product Manager What s New In DFC David Folk Product Manager 1 Agenda Quick Review Release 5.3 Q&A Post 5.3 plans 2 Quick Review 3 1 Everyone should know: DFC Documentum Foundation Classes Primary client API for platform

More information

2 Document Manager Lite v5.2 User Guide

2 Document Manager Lite v5.2 User Guide This document was produced by Voloper Creations Inc. 2000 2009 Voloper Creations Inc. All Rights Reserved Brands or product names are trademarks or registered trademarks of their respective holders. The

More information

TeamSite Component Development

TeamSite Component Development 4-7525 TeamSite Component Development Course Outline Overview This course is intended for TeamSite developers and project managers. This two-day class covers the skills and knowledge needed to construct

More information

Oracle Financial Consolidation and Close Cloud. What s New in the November Update (16.11)

Oracle Financial Consolidation and Close Cloud. What s New in the November Update (16.11) Oracle Financial Consolidation and Close Cloud What s New in the November Update (16.11) November 2016 TABLE OF CONTENTS REVISION HISTORY... 3 ORACLE FINANCIAL CONSOLIDATION AND CLOSE CLOUD, NOVEMBER UPDATE...

More information

Cheiron Web Site: To Do and Done

Cheiron Web Site: To Do and Done Cheiron Web Site: To Do and Done Last update: July 3, 2018 To Do: Done: Need to add captions to remaining photo pages of past meetings (1995, 1993, 1992, 1990, 1989, 1988) o Make height of any portrait

More information

Non conventional attacks Some things your security scanner won t find OWASP 23/05/2011. The OWASP Foundation.

Non conventional attacks Some things your security scanner won t find OWASP 23/05/2011. The OWASP Foundation. Non conventional attacks Some things your security scanner won t find 23/05/2011 Tom Van der Mussele Security Analyst Verizon Business Security Solutions tom.vandermussele@verizonbusiness.com +352691191974

More information

Chapter 13: Introduction to XML. Informatics Practices Class XII. By- Deepak Bhinde

Chapter 13: Introduction to XML. Informatics Practices Class XII. By- Deepak Bhinde Chapter 13: Introduction to XML Informatics Practices Class XII By- Deepak Bhinde PGT (Comp.Sc.) What is XML? extensible Markup Language (XML) is a text-based mark-up language which allows to create application

More information

CARA v3.3 Major new features. Set your users free

CARA v3.3 Major new features. Set your users free CARA v3.3 Major new features Set your users free What is CARA CARA is an ergonomically designed, fast, web user interface to connect individually or simultaneously to multiple content management systems.

More information

BRA BIHAR UNIVERSITY, MUZAFFARPUR DIRECTORATE OF DISTANCE EDUCATION

BRA BIHAR UNIVERSITY, MUZAFFARPUR DIRECTORATE OF DISTANCE EDUCATION BSCIT/3 RD /BIT13-OOPS with Java Q. 1. What do you mean by Java Virtual Machine? Q. 2. Define Bytecode. Write different features of Java. Q. 3. How do you compile and execute a Java program? Q. 4. Discuss

More information

D71 THUMBNAIL SERVER SETUP ON DISTRIBUTED CONTENT SERVER ENVIRONMENT

D71 THUMBNAIL SERVER SETUP ON DISTRIBUTED CONTENT SERVER ENVIRONMENT D71 THUMBNAIL SERVER SETUP ON DISTRIBUTED CONTENT SERVER ENVIRONMENT ABSTRACT This white paper explains about how to install and setup the D71 thumbnail server on a distributed content server environment.

More information

Question No: 1 Which xcp component is responsible for providing page serving and managing annotations on documents?

Question No: 1 Which xcp component is responsible for providing page serving and managing annotations on documents? Volume: 182 Questions Question No: 1 Which xcp component is responsible for providing page serving and managing annotations on documents? A. Documentum Collaboration Services B. Documentum PDF Annotation

More information

Creating an FTS Search Form

Creating an FTS Search Form Harvard University Library Office for Information Systems Creating an FTS Search Form This document describes how to create a web form that can be used to search digitized texts indexed by the Full Text

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6.5 SP2 User Guide P/N 300-009-462 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2008 2009 EMC Corporation. All

More information

Voluntary Product Accessibility Template

Voluntary Product Accessibility Template Date: February 29, 2016 Name of Product: Alfresco Share 5.1 Contact for more Information: John.Iball@Alfresco.com Voluntary Product Accessibility Template Version 1.7 Product description: Alfresco Share

More information

Understanding the Web Design Environment. Principles of Web Design, Third Edition

Understanding the Web Design Environment. Principles of Web Design, Third Edition Understanding the Web Design Environment Principles of Web Design, Third Edition HTML: Then and Now HTML is an application of the Standard Generalized Markup Language Intended to represent simple document

More information

Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Chapter 7 XML

Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Chapter 7 XML Chapter 7 XML 7.1 Introduction extensible Markup Language Developed from SGML A meta-markup language Deficiencies of HTML and SGML Lax syntactical rules Many complex features that are rarely used HTML

More information

EMC Documentum Search

EMC Documentum Search EMC Documentum Search Version 6.5 Development Guide P/N 300 007 443 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2006 2008 EMC Corporation.

More information

djangotribune Documentation

djangotribune Documentation djangotribune Documentation Release 0.7.9 David THENON Nov 05, 2017 Contents 1 Features 3 2 Links 5 2.1 Contents................................................. 5 2.1.1 Install..............................................

More information

NEOGRID USER MANUAL (VERSION )

NEOGRID USER MANUAL (VERSION ) USER MANUAL (VERSION 1.0.2.5) NEOGRID Contents I. What is NeoGrid?... 2 II. How to Obtain the CRM Solution... 2 III. How to Install the CRM Solution... 3 IV. How to Create a New Editable Grid... 3 Quickly

More information

All Adobe Digital Design Vocabulary Absolute Div Tag Allows you to place any page element exactly where you want it Absolute Link Includes the

All Adobe Digital Design Vocabulary Absolute Div Tag Allows you to place any page element exactly where you want it Absolute Link Includes the All Adobe Digital Design Vocabulary Absolute Div Tag Allows you to place any page element exactly where you want it Absolute Link Includes the complete URL of the linked document, including the domain

More information

Configuration Guide. SharePoint App for Documentum (SPA4D) Informed Consulting Publication date Version 1.2 Project name SPA4D

Configuration Guide. SharePoint App for Documentum (SPA4D) Informed Consulting Publication date Version 1.2 Project name SPA4D Configuration Guide SharePoint App for Documentum (SPA4D) Author Informed Consulting Publication date 24-10-2014 Status Final Version 1.2 Project name SPA4D Legal Notice Copyright 2014 Informed Consulting

More information

Introducing Cascading Style Sheets. Cascading Style Sheet Basics Creating Styles Using Styles Manipulating Styles Text Formatting with CSS

Introducing Cascading Style Sheets. Cascading Style Sheet Basics Creating Styles Using Styles Manipulating Styles Text Formatting with CSS Introducing Cascading Style Sheets Cascading Style Sheet Basics Creating Styles Using Styles Manipulating Styles Text Formatting with CSS Cascading Style Sheet Basics CSS has many benefits: The pages look

More information

Seminar 1, HTML and CSS

Seminar 1, HTML and CSS Internet Applications, ID1354 1 Goal Learn HTML and CSS. Learn basic heuristics for user interface design. Learn responsive web design. Learn techniques for web accessibility. 2 Grading The grading is

More information

Frequently Asked Questions. Fulltext Indexing on Large Documentum Repositories For Content Server Versions up to 5.2.x

Frequently Asked Questions. Fulltext Indexing on Large Documentum Repositories For Content Server Versions up to 5.2.x Frequently Asked Questions Fulltext Indexing on Large Documentum Repositories For Content Server Versions up to 5.2.x FAQ Version 1.0 Performance Engineering Page 1 of 8 FAQ1. Q. How will my Hardware requirements

More information

Cisco XML Router Configuration and Management

Cisco XML Router Configuration and Management CHAPTER 2 Cisco XML Router Configuration and Management This chapter reviews the basic extensible markup language (XML) requests and responses used to configure and manage the router The use of XML to

More information

Jumpstarting the Semantic Web

Jumpstarting the Semantic Web Jumpstarting the Semantic Web Mark Watson. Copyright 2003, 2004 Version 0.3 January 14, 2005 This work is licensed under the Creative Commons Attribution-NoDerivs-NonCommercial License. To view a copy

More information

Database Systems: Design, Implementation, and Management Tenth Edition. Chapter 14 Database Connectivity and Web Technologies

Database Systems: Design, Implementation, and Management Tenth Edition. Chapter 14 Database Connectivity and Web Technologies Database Systems: Design, Implementation, and Management Tenth Edition Chapter 14 Database Connectivity and Web Technologies Database Connectivity Mechanisms by which application programs connect and communicate

More information

Advanced XSLT editing: Content query web part (CQWP) Dolev Raz SharePoint top soft Soft.co.il

Advanced XSLT editing: Content query web part (CQWP) Dolev Raz SharePoint top soft Soft.co.il Advanced XSLT editing: Content query web part (CQWP) Dolev Raz SharePoint Implementer @ top soft dolev_r@top- Soft.co.il About Me Dolev Raz 22 years-old Live in Qiriyat Ono Works in Logic trough Top Soft

More information

How to monitor Documentum with Steel Central AppInternals? Yaroslav Kiselev (Croc) Andrej Serebrjakov (Riverbed)

How to monitor Documentum with Steel Central AppInternals? Yaroslav Kiselev (Croc) Andrej Serebrjakov (Riverbed) How to monitor Documentum with Steel Central AppInternals? Yaroslav Kiselev (Croc) Andrej Serebrjakov (Riverbed) Agenda Quick Introduction Documentum Environment Challenges & Requirements Technical Configuration

More information

Functions in Scheme. From Scheme to Java. Functions in Java. Functions in Java. method that is in the class // Determines whether it s < n lbs

Functions in Scheme. From Scheme to Java. Functions in Java. Functions in Java. method that is in the class // Determines whether it s < n lbs From Scheme to Java So far, we ve translated data definitions: ; A snake is ; (make-snake sym num sym) (define-struct snake (name weight food)) class Snake { String name; double weight; String food; Snake(String

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6.0 SP1.5 User Guide P/N 300 005 253 A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2008 EMC Corporation. All

More information

7.1 Introduction. extensible Markup Language Developed from SGML A meta-markup language Deficiencies of HTML and SGML

7.1 Introduction. extensible Markup Language Developed from SGML A meta-markup language Deficiencies of HTML and SGML 7.1 Introduction extensible Markup Language Developed from SGML A meta-markup language Deficiencies of HTML and SGML Lax syntactical rules Many complex features that are rarely used HTML is a markup language,

More information

XML. Objectives. Duration. Audience. Pre-Requisites

XML. Objectives. Duration. Audience. Pre-Requisites XML XML - extensible Markup Language is a family of standardized data formats. XML is used for data transmission and storage. Common applications of XML include business to business transactions, web services

More information

XML Metadata Standards and Topic Maps

XML Metadata Standards and Topic Maps XML Metadata Standards and Topic Maps Erik Wilde 16.7.2001 XML Metadata Standards and Topic Maps 1 Outline what is XML? a syntax (not a data model!) what is the data model behind XML? XML Information Set

More information

OO Frameworks. Introduction. Using Frameworks

OO Frameworks. Introduction. Using Frameworks OO Frameworks Jonathan I. Maletic, Ph.D. Department of Computer Science Kent State University Introduction Frameworks support reuse of detailed designs and architectures An integrated set of components

More information

For more information, please contact your Account Manager or the European Transform product team at

For more information, please contact your Account Manager or the European Transform product team at For more information, please contact your Account Manager or the European product team at Business to Migration Page 1 of 7 Why Migrate from Business Edition? Below you will find a comprehensive compassion

More information

Release notes for version 3.7.2

Release notes for version 3.7.2 Release notes for version 3.7.2 Important! Create a backup copy of your projects before updating to the new version. Projects saved in the new version can t be opened in versions earlier than 3.7. Breaking

More information

Adobe Experience Manager 6.0 Voluntary Product Accessibility Template

Adobe Experience Manager 6.0 Voluntary Product Accessibility Template Adobe Experience Manager 6.0 Voluntary Product Accessibility Template The purpose of the Voluntary Product Accessibility Template is to assist Federal contracting officials in making preliminary assessments

More information

Tzunami Deployer Documentum Exporter Guide

Tzunami Deployer Documentum Exporter Guide Tzunami Deployer Documentum Exporter Guide Supports migration of EMC Documentum content repositories into Microsoft SharePoint using Tzunami Deployer Version 3.2 Table of Contents PREFACE... II INTENDED

More information

Editing XML Data in Microsoft Office Word 2003

Editing XML Data in Microsoft Office Word 2003 Page 1 of 8 Notice: The file does not open properly in Excel 2002 for the State of Michigan. Therefore Excel 2003 should be used instead. 2009 Microsoft Corporation. All rights reserved. Microsoft Office

More information

High Volume Server Tuning Guide

High Volume Server Tuning Guide High Volume Server Tuning Guide This document provides guidance on High Volume Server. The High Volume Server is part of the Documentum 6,5 Architecture. The Documentum High Volume Server is an extension

More information

EMC Documentum Process Builder

EMC Documentum Process Builder EMC Documentum Process Builder Version 6.5 SP2 Development Guide P/N 300-009-322 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2004-200 9 EMC

More information

The Adobe XML Architecture

The Adobe XML Architecture TECHNOLOGY BRIEF The Adobe XML Architecture Introduction As enterprises struggle to balance the need to respond to continually changing business priorities against ever-shrinking budgets, IT managers are

More information

From Scheme to Java. So far, we ve translated data definitions: ; A snake is ; (make-snake sym num sym) (define-struct snake (name weight food))

From Scheme to Java. So far, we ve translated data definitions: ; A snake is ; (make-snake sym num sym) (define-struct snake (name weight food)) From Scheme to Java So far, we ve translated data definitions: ; A snake is ; (make-snake sym num sym) (define-struct snake (name weight food)) class Snake { String name; double weight; String food; Snake(String

More information

J2EE AntiPatterns. Bill Dudney. Object Systems Group Copyright 2003, Object Systems Group

J2EE AntiPatterns. Bill Dudney. Object Systems Group Copyright 2003, Object Systems Group J2EE AntiPatterns Bill Dudney Object Systems Group bill@dudney.net Bill Dudney J2EE AntiPatterns Page 1 Agenda What is an AntiPattern? What is a Refactoring? AntiPatterns & Refactorings Persistence Service

More information

EMC Documentum Capital Projects Connector for EMC Supplier Exchange

EMC Documentum Capital Projects Connector for EMC Supplier Exchange EMC Documentum Capital Projects Connector for EMC Supplier Exchange Version 1.9, 1.10, 2.0 Installation and Configuration Guide EMC Corporation Corporate Headquarters Hopkinton, MA 01748-9103 1-508-435-1000

More information

EMC Documentum Content Services for SAP Document Controllers

EMC Documentum Content Services for SAP Document Controllers EMC Documentum Content Services for SAP Document Controllers Version 6.5 User Guide P/N 300 006 307 Rev A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright

More information

Modern Requirements4TFS 2018 Release Notes

Modern Requirements4TFS 2018 Release Notes Modern Requirements4TFS 2018 Release Notes Modern Requirements 3/7/2018 Table of Contents 1. INTRODUCTION... 3 2. SYSTEM REQUIREMENTS... 3 3. APPLICATION SETUP... 3 GENERAL... 4 1. FEATURES... 4 2. ENHANCEMENT...

More information

Drawing Manager 2.5.1

Drawing Manager 2.5.1 www.mclarensoftware.com Drawing Manager 2.5.1 Installation Guide May 2004 Drawing Manager Installation Guide Product Version: 2.5.1 Guide Version: 1.0 McLaren Software 2004. All rights reserved. Information

More information

JOB SCHEDULER JOB DOCUMENTATION EDITOR

JOB SCHEDULER JOB DOCUMENTATION EDITOR Job Scheduler - Job Documentation Editor JOB SCHEDULER JOB DOCUMENTATION EDITOR Instructions for Creating Job Documentation August 2006 Software- und Organisations-Service GmbH Giesebrechtstr. 15 D-10629

More information

Migrating from FAST to EMC Documentum xplore: What To Do and Why You'll Love It. Ed Bueché EMC Distinguished Engineer and xplore Architect

Migrating from FAST to EMC Documentum xplore: What To Do and Why You'll Love It. Ed Bueché EMC Distinguished Engineer and xplore Architect Migrating from FAST to EMC Documentum xplore: What To Do and Why You'll Love It Ed Bueché EMC Distinguished Engineer and xplore Architect Agenda Introduction to xplore xplore 1.2 new capabilities FAST-to-xPlore

More information

BE Share. Microsoft Office SharePoint Server 2010 Basic Training Guide

BE Share. Microsoft Office SharePoint Server 2010 Basic Training Guide BE Share Microsoft Office SharePoint Server 2010 Basic Training Guide Site Contributor Table of Contents Table of Contents Connecting From Home... 2 Introduction to BE Share Sites... 3 Navigating SharePoint

More information

Web Publisher User Guide

Web Publisher User Guide Web Publisher User Guide Version 5.3 SP4 December 2006 Copyright 1994-2006 EMC Corporation. All rights reserved. Table of Contents Preface... 15 Chapter 1 Introduction... 17 What is Web Publisher?... 17

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6 SP1 User Guide P/N 300 005 253 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2008 EMC Corporation. All rights

More information

import os import ctypes import sys, traceback

import os import ctypes import sys, traceback 05/11/2018 DctmAPI.py 1 This module is a python - Documentum binding based on ctypes; requires libdmcl40.so/libdmcl.so to be reachable through LD_LIBRARY_PATH; C. Cervini - dbi-services.com The binding

More information

1 Copyright 2013, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2013, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2013, Oracle and/or its affiliates. All rights Creating Custom PDF reports with APEX 4.2.2 Marc Sewtz Senior Software Development Manager Oracle USA Inc. New York, NY 2 Copyright 2013, Oracle

More information

Case Study Don t Guess Where Your Performance Problem Is

Case Study Don t Guess Where Your Performance Problem Is Case Study Don t Guess Where Your Performance Problem Is Xense Limited The Problem This case study examines a performance problem that a client had with a custom Documentum job. The particular process

More information

EMC Documentum Process Builder

EMC Documentum Process Builder EMC Documentum Process Builder Version 6.5 Development Guide P/N 300-007-248 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2004-2008 EMC Corporation.

More information

The XQuery Data Model

The XQuery Data Model The XQuery Data Model 9. XQuery Data Model XQuery Type System Like for any other database query language, before we talk about the operators of the language, we have to specify exactly what it is that

More information

Voluntary Product Accessibility Template (VPAT )

Voluntary Product Accessibility Template (VPAT ) Voluntary Product Accessibility Template (VPAT ) Name of Product: McAfee Vulnerability Manager (MVM) 7.0 Since there have been no changes in the user interface that impact Sect. 508 compliance, this VPAT

More information

A BRIEF INSIGHT INTO MESSAGINGAPP THE PROCESSING COMPONENT IN EMC DOCUMENTUM CONTENT SERVER

A BRIEF INSIGHT INTO MESSAGINGAPP THE  PROCESSING COMPONENT IN EMC DOCUMENTUM CONTENT SERVER White Paper A BRIEF INSIGHT INTO MESSAGINGAPP THE EMAIL PROCESSING COMPONENT IN EMC DOCUMENTUM CONTENT SERVER Abstract This white paper provides a general overview of the MessagingApp component of Content

More information