8.0
Table Of Contents
- Overview
- New and enhanced features
- Getting started
- Functions
- Function overview
- Render types
- Content modifiers
- Render modifiers
- XML modify
- XML deconstruct and construct
- About XML deconstruct/construct
- xml
- construct
- Deconstructing a project
- Constructing a project
- Working with pages and spreads
- Working with layers
- Working with boxes
- Working with pictures
- Working with text
- Working with tables
- Working with Composition Zones
- Using server XSLT
- Working with lists
- Working with anchored boxes
- Working with placeholders
- Working with metadata
- Working with hidden text
- Administrative Request handlers
- The Modifier DTD
- Sample applications
- Contact Quark
- Legal notice
Example GET
URL
http://localhost:8080/sample.qxp?Story=abcdefghijklmnopqrstuvwxyz&clang=EL
where some Greek characters are flown into the text box named Story.
Example, Object
Model
Request Object Names : RequestSettings
sdk.QRequestContext rc = new sdk.QRequestContext();
if(!this.DocumentSettings1.documentName.Text.Equals(""))
rc.documentName = this.DocumentSettings1.documentName.Text;
//STEP 2(SPECIFIC TO REQUESTS):Create the RequestSettings renderer
request and embed it in request context
RequestSettings requestSetting = new RequestSettings();
requestSetting.clientLanguage = clientLanguageValue;
rc.request = requestSetting;
//Create the service and call it with QRequestContext object
QManagerSDKSvcService svc = new QManagerSDKSvcService();
sdk.QContentData qc = svc.processRequest(rc);
Notes
What languages are supported by the Unicode language feature of
QuarkXPress Server?
The Unicode languages supported by QuarkXPress Server are Finnish,
Portuguese, Brazilian Portuguese, Spanish, Slovakian, Hungarian, Polish,
Czech, Greek, Russian, Turkish, and Romanian. The Unicode character
set is supported.
Does the user interface change when QuarkXPress Server is launched
in a Unicode language OS?
There is no change in the user interface of QuarkXPress Server when it is
launched in a Unicode language. The user interface of QuarkXPress Server
remains in English.
What functionality is supported in the Unicode language feature?
You can specify content in text boxes and the document pool path in the
Unicode language. You can also import Unicode text in a text box. You
can specify Unicode text inside the TextModifier, DataImport, and
Modifier XML, and you can even provide file paths and box names in the
Unicode language in the following Server XTensions XML files:
ModifierXT and XML Import.
What happens if a document is created with Unicode text on one
platform and the document is uploaded to another platform? For
example, suppose the document is created on a Mac OS computer and
is uploaded to Windows.
When a document is uploaded to another platform, some Unicode text
may get changed and may not appear the same.
In what encoding format should I save a text file or XML file if it
contains Unicode text?
A file containing Unicode text must be saved in UTF-8 or UTF-16 format.
I have flowed some Unicode language text (using the BoxParam
XTensions) in a text box. But the text in the document looks different
Page 193