EPUB meta data editor 4th draft (creators and contributors)
git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@94 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
parent
4fc6052426
commit
e147126315
8 changed files with 327 additions and 26 deletions
|
@ -2,7 +2,9 @@ Changelog for Writer2LaTeX version 1.0 -> 1.2
|
|||
|
||||
---------- version 1.1.7 ----------
|
||||
|
||||
[w2x] Standard meta data as well as custom meta data can now be edited directly from the EPUB export dialog
|
||||
[w2x] Added opf:file-as attribute to EPUB metadata (creators and contributors)
|
||||
|
||||
[w2x] EPUB meta data can now be edited directly from the export dialog
|
||||
|
||||
[w2x] Revised the internal structure of EPUB files: Text files are named chapter<n>.xhtml, images are placed in the
|
||||
subdirectory images and name image<n>, styles are placed in the subdirectory styles and names styles.css (custom
|
||||
|
|
|
@ -0,0 +1,79 @@
|
|||
/************************************************************************
|
||||
*
|
||||
* SimpleDialog.java
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License version 2.1, as published by the Free Software Foundation.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||||
* MA 02111-1307 USA
|
||||
*
|
||||
* Copyright: 2002-2011 by Henrik Just
|
||||
*
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* Version 1.2 (2011-02-23)
|
||||
*
|
||||
*/
|
||||
|
||||
package org.openoffice.da.comp.w2lcommon.helper;
|
||||
|
||||
import com.sun.star.awt.XDialog;
|
||||
import com.sun.star.awt.XDialogProvider2;
|
||||
import com.sun.star.lang.XMultiComponentFactory;
|
||||
import com.sun.star.uno.UnoRuntime;
|
||||
import com.sun.star.uno.XComponentContext;
|
||||
|
||||
/** This is a simple helper class to display and access a dialog based on an
|
||||
* XML description (using the DialogProvider2 service).
|
||||
* Unlike DialogBase, this class creates a dialog <em>without</em> event handlers.
|
||||
*
|
||||
* TODO: Use this class in ConfigurationDialogBase
|
||||
*/
|
||||
public class SimpleDialog {
|
||||
private XDialog xDialog;
|
||||
private DialogAccess dialogAccess;
|
||||
|
||||
/** Create a new dialog
|
||||
*
|
||||
* @param xContext the component context from which to get the service manager
|
||||
* @param sDialogPath the path to the dialog
|
||||
*/
|
||||
public SimpleDialog(XComponentContext xContext, String sDialogPath) {
|
||||
XMultiComponentFactory xMCF = xContext.getServiceManager();
|
||||
try {
|
||||
Object provider = xMCF.createInstanceWithContext("com.sun.star.awt.DialogProvider2", xContext);
|
||||
XDialogProvider2 xDialogProvider = (XDialogProvider2) UnoRuntime.queryInterface(XDialogProvider2.class, provider);
|
||||
String sDialogUrl = "vnd.sun.star.script:"+sDialogPath+"?location=application";
|
||||
xDialog = xDialogProvider.createDialog(sDialogUrl);
|
||||
dialogAccess = new DialogAccess(xDialog);
|
||||
} catch (com.sun.star.uno.Exception e) {
|
||||
xDialog = null;
|
||||
dialogAccess = null;
|
||||
}
|
||||
}
|
||||
|
||||
/** Get the UNO dialog
|
||||
*
|
||||
* @return the dialog, or null if creation failed
|
||||
*/
|
||||
public XDialog getDialog() {
|
||||
return xDialog;
|
||||
}
|
||||
|
||||
/** Get access to the controls of the dialog
|
||||
*
|
||||
* @return the control access helper, or null if creation failed
|
||||
*/
|
||||
public DialogAccess getControls() {
|
||||
return dialogAccess;
|
||||
}
|
||||
}
|
|
@ -20,17 +20,21 @@
|
|||
*
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* Version 1.2 (2011-02-23)
|
||||
* Version 1.2 (2011-02-24)
|
||||
*
|
||||
*/
|
||||
|
||||
package org.openoffice.da.comp.writer2xhtml;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.HashSet;
|
||||
import java.util.Vector;
|
||||
|
||||
import org.openoffice.da.comp.w2lcommon.helper.DialogBase;
|
||||
import org.openoffice.da.comp.w2lcommon.helper.SimpleDialog;
|
||||
|
||||
import writer2latex.util.CSVList;
|
||||
import writer2latex.util.Misc;
|
||||
|
||||
import com.sun.star.awt.XDialog;
|
||||
import com.sun.star.beans.IllegalTypeException;
|
||||
|
@ -47,6 +51,7 @@ import com.sun.star.frame.XDesktop;
|
|||
import com.sun.star.lang.IllegalArgumentException;
|
||||
import com.sun.star.lang.WrappedTargetException;
|
||||
import com.sun.star.lang.XComponent;
|
||||
import com.sun.star.ui.dialogs.ExecutableDialogResults;
|
||||
import com.sun.star.uno.AnyConverter;
|
||||
import com.sun.star.uno.Exception;
|
||||
import com.sun.star.uno.UnoRuntime;
|
||||
|
@ -55,6 +60,13 @@ import com.sun.star.uno.XComponentContext;
|
|||
/** This class provides a UNO component which implements a custom metadata editor UI for the EPUB export
|
||||
*/
|
||||
public class EpubMetadataDialog extends DialogBase {
|
||||
// Author data
|
||||
private class AuthorInfo {
|
||||
String sName = "";
|
||||
boolean isCreator = true;
|
||||
String sRole = "";
|
||||
}
|
||||
|
||||
// All the user defined properties we handle
|
||||
private static final String IDENTIFIER="Identifier";
|
||||
private static final String CREATOR="Creator";
|
||||
|
@ -67,11 +79,25 @@ public class EpubMetadataDialog extends DialogBase {
|
|||
private static final String RELATION="Relation";
|
||||
private static final String COVERAGE="Coverage";
|
||||
private static final String RIGHTS="Rights";
|
||||
|
||||
|
||||
private static final String[] sRoles = {"", "adp", "ann", "arr", "art", "asn", "aut", "aqt", "aft", "aui", "ant", "bkp",
|
||||
"clb", "cmm", "dsr", "edt", "ill", "lyr", "mdc", "mus", "nrt", "oth", "pht", "prt", "red", "rev", "spn", "ths", "trc", "trl"};
|
||||
private static HashMap<String,Short> backRoles;
|
||||
static {
|
||||
backRoles = new HashMap<String,Short>();
|
||||
int nCount = sRoles.length;
|
||||
for (short i=0; i<nCount; i++) {
|
||||
backRoles.put(sRoles[i], i);
|
||||
}
|
||||
}
|
||||
|
||||
// Access to the document properties
|
||||
private XDocumentProperties xDocumentProperties=null;
|
||||
private XPropertyContainer xUserProperties=null;
|
||||
private XPropertySet xUserPropertySet=null;
|
||||
|
||||
// Author and date bookkeeping
|
||||
private Vector<AuthorInfo> authors = new Vector<AuthorInfo>();
|
||||
|
||||
public EpubMetadataDialog(XComponentContext xContext) {
|
||||
super(xContext);
|
||||
|
@ -145,27 +171,78 @@ public class EpubMetadataDialog extends DialogBase {
|
|||
}
|
||||
|
||||
private boolean authorAddclick() {
|
||||
System.out.println("AuthorAddClick");
|
||||
SimpleDialog dialog = new SimpleDialog(xContext,"W2XDialogs2.AuthorDialog");
|
||||
if (dialog.getDialog()!=null) {
|
||||
dialog.getControls().setListBoxSelectedItem("Type", (short) 0);
|
||||
dialog.getControls().setListBoxSelectedItem("Role", (short) 0);
|
||||
if (dialog.getDialog().execute()==ExecutableDialogResults.OK) {
|
||||
AuthorInfo author = new AuthorInfo();
|
||||
author.sName = dialog.getControls().getTextFieldText("Author");
|
||||
author.sRole = sRoles[dialog.getControls().getListBoxSelectedItem("Role")];
|
||||
author.isCreator = dialog.getControls().getListBoxSelectedItem("Type")==0;
|
||||
authors.add(author);
|
||||
updateAuthorList((short) (authors.size()-1));
|
||||
}
|
||||
dialog.getDialog().endExecute();
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
private boolean authorModifyclick() {
|
||||
System.out.println("AuthorModifyClick");
|
||||
short nIndex = getListBoxSelectedItem("Authors");
|
||||
AuthorInfo author = authors.get(nIndex);
|
||||
SimpleDialog dialog = new SimpleDialog(xContext,"W2XDialogs2.AuthorDialog");
|
||||
if (dialog.getDialog()!=null) {
|
||||
dialog.getControls().setTextFieldText("Author", author.sName);
|
||||
dialog.getControls().setListBoxSelectedItem("Type", author.isCreator ? (short)0 : (short) 1);
|
||||
dialog.getControls().setListBoxSelectedItem("Role", backRoles.containsKey(author.sRole)? backRoles.get(author.sRole) : (short)0);
|
||||
if (dialog.getDialog().execute()==ExecutableDialogResults.OK) {
|
||||
author.sName = dialog.getControls().getTextFieldText("Author");
|
||||
author.sRole = sRoles[dialog.getControls().getListBoxSelectedItem("Role")];
|
||||
author.isCreator = dialog.getControls().getListBoxSelectedItem("Type")==0;
|
||||
updateAuthorList(nIndex);
|
||||
}
|
||||
dialog.getDialog().endExecute();
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
private boolean authorDeleteclick() {
|
||||
System.out.println("AuthorDeleteClick");
|
||||
if (authors.size()>0) {
|
||||
SimpleDialog dialog = new SimpleDialog(xContext,"W2XDialogs2.DeleteDialog");
|
||||
if (dialog.getDialog()!=null) {
|
||||
short nIndex = getListBoxSelectedItem("Authors");
|
||||
String sLabel = dialog.getControls().getLabelText("DeleteLabel");
|
||||
sLabel = sLabel.replaceAll("%s", authors.get(nIndex).sName);
|
||||
dialog.getControls().setLabelText("DeleteLabel", sLabel);
|
||||
if (dialog.getDialog().execute()==ExecutableDialogResults.OK) {
|
||||
authors.remove(nIndex);
|
||||
updateAuthorList(nIndex<authors.size() ? (short) nIndex : (short) (nIndex-1));
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
private boolean authorUpclick() {
|
||||
System.out.println("AuthorUpClick");
|
||||
short nIndex = getListBoxSelectedItem("Authors");
|
||||
if (nIndex>0) {
|
||||
AuthorInfo author = authors.get(nIndex);
|
||||
authors.set(nIndex, authors.get(nIndex-1));
|
||||
authors.set(nIndex-1, author);
|
||||
updateAuthorList((short) (nIndex-1));
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
private boolean authorDownclick() {
|
||||
System.out.println("AuthorDownClick");
|
||||
short nIndex = getListBoxSelectedItem("Authors");
|
||||
if (nIndex+1<authors.size()) {
|
||||
AuthorInfo author = authors.get(nIndex);
|
||||
authors.set(nIndex, authors.get(nIndex+1));
|
||||
authors.set(nIndex+1, author);
|
||||
updateAuthorList((short) (nIndex+1));
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -212,10 +289,32 @@ public class EpubMetadataDialog extends DialogBase {
|
|||
useCustomIdentifierChange();
|
||||
if (sIdentifiers.length>0) { // Use the first if we have several...
|
||||
setTextFieldText("Identifier",getValue(sIdentifiers[0]));
|
||||
int nDot = sIdentifiers[0].indexOf(".");
|
||||
setTextFieldText("IdentifierType",nDot>-1 ? sIdentifiers[0].substring(nDot+1) : "");
|
||||
setTextFieldText("IdentifierType",getSuffix(sIdentifiers[0]));
|
||||
}
|
||||
|
||||
// Get the authors and set the list box
|
||||
String[] sCreators = getProperties(CREATOR,false);
|
||||
for (String sCreator : sCreators) {
|
||||
AuthorInfo creator = new AuthorInfo();
|
||||
creator.sName = getValue(sCreator);
|
||||
creator.sRole = getSuffix(sCreator);
|
||||
creator.isCreator = true;
|
||||
authors.add(creator);
|
||||
}
|
||||
String[] sContributors = getProperties(CONTRIBUTOR,false);
|
||||
for (String sContributor : sContributors) {
|
||||
AuthorInfo contributor = new AuthorInfo();
|
||||
contributor.sName = getValue(sContributor);
|
||||
contributor.sRole = getSuffix(sContributor);
|
||||
contributor.isCreator = false;
|
||||
authors.add(contributor);
|
||||
}
|
||||
updateAuthorList((short) 0);
|
||||
|
||||
// Get the dates and set the list box
|
||||
// TODO
|
||||
updateDateList((short) 0);
|
||||
|
||||
// Get the standard properties and set the text fields
|
||||
setTextFieldText("Title",xDocumentProperties.getTitle());
|
||||
setTextFieldText("Subject",xDocumentProperties.getSubject());
|
||||
|
@ -253,12 +352,34 @@ public class EpubMetadataDialog extends DialogBase {
|
|||
setValue(sName,getTextFieldText("Identifier"));
|
||||
}
|
||||
|
||||
// Set the authors from the list box
|
||||
String[] sCreators = getProperties(CREATOR,false);
|
||||
for (String sCreator : sCreators) { // remove old creators
|
||||
removeProperty(sCreator);
|
||||
}
|
||||
String[] sContributors = getProperties(CONTRIBUTOR,false);
|
||||
for (String sContributor : sContributors) { // remove old contributors
|
||||
removeProperty(sContributor);
|
||||
}
|
||||
int i=0;
|
||||
for (AuthorInfo author : authors) {
|
||||
String sName = (author.isCreator ? CREATOR : CONTRIBUTOR)+(++i);
|
||||
if (author.sRole.length()>0) {
|
||||
sName+="."+author.sRole;
|
||||
}
|
||||
addProperty(sName);
|
||||
setValue(sName,author.sName);
|
||||
}
|
||||
|
||||
// Set the dates from the list box
|
||||
// TODO
|
||||
|
||||
// Set the standard properties from the text fields
|
||||
xDocumentProperties.setTitle(getTextFieldText("Title"));
|
||||
xDocumentProperties.setSubject(getTextFieldText("Subject"));
|
||||
String[] sKeywords = getTextFieldText("Keywords").split(",");
|
||||
for (int i=0; i<sKeywords.length; i++) {
|
||||
sKeywords[i] = sKeywords[i].trim();
|
||||
for (int j=0; j<sKeywords.length; j++) {
|
||||
sKeywords[j] = sKeywords[j].trim();
|
||||
}
|
||||
xDocumentProperties.setKeywords(sKeywords);
|
||||
xDocumentProperties.setDescription(getTextFieldText("Description"));
|
||||
|
@ -272,6 +393,12 @@ public class EpubMetadataDialog extends DialogBase {
|
|||
writeSimpleProperty(COVERAGE);
|
||||
writeSimpleProperty(RIGHTS);
|
||||
}
|
||||
|
||||
// Get the suffix of a user defined property (portion after fist ., if any)
|
||||
private String getSuffix(String sPropertyName) {
|
||||
int nDot = sPropertyName.indexOf(".");
|
||||
return nDot>-1 ? sPropertyName.substring(nDot+1) : "";
|
||||
}
|
||||
|
||||
// Get all currently defined user properties with a specific name or prefix
|
||||
private String[] getProperties(String sPrefix, boolean bComplete) {
|
||||
|
@ -285,7 +412,7 @@ public class EpubMetadataDialog extends DialogBase {
|
|||
names.add(sName);
|
||||
}
|
||||
}
|
||||
return names.toArray(new String[names.size()]);
|
||||
return Misc.sortStringSet(names);
|
||||
}
|
||||
|
||||
// Add a user property
|
||||
|
@ -293,14 +420,8 @@ public class EpubMetadataDialog extends DialogBase {
|
|||
try {
|
||||
xUserProperties.addProperty(sName, (short) 128, ""); // 128 means removeable, last parameter is default value
|
||||
} catch (PropertyExistException e) {
|
||||
// TODO Auto-generated catch block
|
||||
e.printStackTrace();
|
||||
} catch (IllegalTypeException e) {
|
||||
// TODO Auto-generated catch block
|
||||
e.printStackTrace();
|
||||
} catch (IllegalArgumentException e) {
|
||||
// TODO Auto-generated catch block
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -309,11 +430,7 @@ public class EpubMetadataDialog extends DialogBase {
|
|||
try {
|
||||
xUserProperties.removeProperty(sName);
|
||||
} catch (UnknownPropertyException e) {
|
||||
// TODO Auto-generated catch block
|
||||
e.printStackTrace();
|
||||
} catch (NotRemoveableException e) {
|
||||
// TODO Auto-generated catch block
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -349,6 +466,31 @@ public class EpubMetadataDialog extends DialogBase {
|
|||
return null;
|
||||
}
|
||||
|
||||
private void updateAuthorList(short nItem) {
|
||||
int nCount = authors.size();
|
||||
String[] sAuthors = new String[nCount];
|
||||
for (int i=0; i<nCount; i++) {
|
||||
AuthorInfo author = authors.get(i);
|
||||
sAuthors[i] = author.sName
|
||||
+" ("
|
||||
+(author.isCreator ? "creator":"contributor")
|
||||
+(author.sRole.length()>0 ? ", "+author.sRole : "")
|
||||
+")";
|
||||
}
|
||||
setListBoxStringItemList("Authors", sAuthors);
|
||||
setListBoxSelectedItem("Authors",nItem);
|
||||
setControlEnabled("ModifyAuthorButton",nCount>0);
|
||||
setControlEnabled("DeleteAuthorButton",nCount>0);
|
||||
setControlEnabled("AuthorUpButton",nCount>1);
|
||||
setControlEnabled("AuthorDownButton",nCount>1);
|
||||
}
|
||||
|
||||
private void updateDateList(short nItem) {
|
||||
setControlEnabled("AddDateButton",false);
|
||||
setControlEnabled("ModifyDateButton",false);
|
||||
setControlEnabled("DeleteDateButton",false);
|
||||
}
|
||||
|
||||
private void readSimpleProperty(String sName) {
|
||||
String[] sNames = getProperties(sName,true);
|
||||
if (sNames.length>0) {
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
*
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* Version 1.2 (2011-02-23)
|
||||
* Version 1.2 (2011-02-24)
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -33,7 +33,7 @@ public class ConverterFactory {
|
|||
|
||||
// Version information
|
||||
private static final String VERSION = "1.1.7";
|
||||
private static final String DATE = "2011-02-23";
|
||||
private static final String DATE = "2011-02-24";
|
||||
|
||||
/** Return the Writer2LaTeX version in the form
|
||||
* (major version).(minor version).(patch level)<br/>
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
*
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* version 1.2 (2011-02-23)
|
||||
* version 1.2 (2011-02-24)
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -147,6 +147,7 @@ public class OPFWriter extends NewDOMDocument {
|
|||
}
|
||||
else if (sKey.startsWith("creator")) {
|
||||
Element creator = appendElement(contentDOM, metadata, "dc:creator", sValue);
|
||||
creator.setAttribute("opf:file-as", fileAs(sValue));
|
||||
if (sAttributeValue!=null) {
|
||||
creator.setAttribute("opf:role", sAttributeValue);
|
||||
}
|
||||
|
@ -154,6 +155,7 @@ public class OPFWriter extends NewDOMDocument {
|
|||
}
|
||||
else if (sKey.startsWith("contributor")) {
|
||||
Element contributor = appendElement(contentDOM, metadata, "dc:contributor", sValue);
|
||||
contributor.setAttribute("opf:file-as", fileAs(sValue));
|
||||
if (sAttributeValue!=null) {
|
||||
contributor.setAttribute("opf:role", sAttributeValue);
|
||||
}
|
||||
|
@ -270,6 +272,16 @@ public class OPFWriter extends NewDOMDocument {
|
|||
return sUID;
|
||||
}
|
||||
|
||||
private String fileAs(String sName) {
|
||||
int nSpace = sName.lastIndexOf(' ');
|
||||
if (nSpace>-1) {
|
||||
return sName.substring(nSpace+1).trim()+", "+sName.substring(0, nSpace).trim();
|
||||
}
|
||||
else {
|
||||
return sName.trim();
|
||||
}
|
||||
}
|
||||
|
||||
private Element appendElement(Document contentDOM, Element node, String sTagName, String sContent) {
|
||||
Element child = contentDOM.createElement(sTagName);
|
||||
node.appendChild(child);
|
||||
|
|
52
source/oxt/writer2xhtml/W2XDialogs2/AuthorDialog.xdl
Normal file
52
source/oxt/writer2xhtml/W2XDialogs2/AuthorDialog.xdl
Normal file
|
@ -0,0 +1,52 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE dlg:window PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "dialog.dtd">
|
||||
<dlg:window xmlns:dlg="http://openoffice.org/2000/dialog" xmlns:script="http://openoffice.org/2000/script" dlg:id="AuthorDialog" dlg:left="101" dlg:top="46" dlg:width="158" dlg:height="78" dlg:closeable="true" dlg:moveable="true" dlg:title="Author">
|
||||
<dlg:bulletinboard>
|
||||
<dlg:text dlg:id="RoleLabel" dlg:tab-index="4" dlg:left="5" dlg:top="36" dlg:width="60" dlg:height="12" dlg:value="Role"/>
|
||||
<dlg:menulist dlg:id="Type" dlg:tab-index="2" dlg:left="70" dlg:top="20" dlg:width="80" dlg:height="12" dlg:spin="true" dlg:linecount="2">
|
||||
<dlg:menupopup>
|
||||
<dlg:menuitem dlg:value="Creator"/>
|
||||
<dlg:menuitem dlg:value="Contributor"/>
|
||||
</dlg:menupopup>
|
||||
</dlg:menulist>
|
||||
<dlg:text dlg:id="TypeLabel" dlg:tab-index="0" dlg:left="5" dlg:top="21" dlg:width="60" dlg:height="12" dlg:value="Author type"/>
|
||||
<dlg:menulist dlg:id="Role" dlg:tab-index="3" dlg:left="70" dlg:top="34" dlg:width="80" dlg:height="12" dlg:spin="true" dlg:linecount="10" >
|
||||
<dlg:menupopup>
|
||||
<dlg:menuitem dlg:value="N/A"/>
|
||||
<dlg:menuitem dlg:value="Adapter [adp]"/>
|
||||
<dlg:menuitem dlg:value="Annotator [ann]"/>
|
||||
<dlg:menuitem dlg:value="Arranger [arr]"/>
|
||||
<dlg:menuitem dlg:value="Artist [art]"/>
|
||||
<dlg:menuitem dlg:value="Associated name [asn]"/>
|
||||
<dlg:menuitem dlg:value="Author [aut]"/>
|
||||
<dlg:menuitem dlg:value="Author in quotations or text extracts [aqt]"/>
|
||||
<dlg:menuitem dlg:value="Author of afterword, colophon, etc. [aft]"/>
|
||||
<dlg:menuitem dlg:value="Author of introduction, etc. [aui]"/>
|
||||
<dlg:menuitem dlg:value="Bibliographic antecedent [ant]"/>
|
||||
<dlg:menuitem dlg:value="Book producer [bkp]"/>
|
||||
<dlg:menuitem dlg:value="Collaborator [clb]"/>
|
||||
<dlg:menuitem dlg:value="Commentator [cmm]"/>
|
||||
<dlg:menuitem dlg:value="Designer [dsr]"/>
|
||||
<dlg:menuitem dlg:value="Editor [edt]"/>
|
||||
<dlg:menuitem dlg:value="Illustrator [ill]"/>
|
||||
<dlg:menuitem dlg:value="Lyricist [lyr]"/>
|
||||
<dlg:menuitem dlg:value="Metadata contact [mdc]"/>
|
||||
<dlg:menuitem dlg:value="Musician [mus]"/>
|
||||
<dlg:menuitem dlg:value="Narrator [nrt]"/>
|
||||
<dlg:menuitem dlg:value="Other [oth]"/>
|
||||
<dlg:menuitem dlg:value="Photographer [pht]"/>
|
||||
<dlg:menuitem dlg:value="Printer [prt]"/>
|
||||
<dlg:menuitem dlg:value="Redactor [red]"/>
|
||||
<dlg:menuitem dlg:value="Reviewer [rev]"/>
|
||||
<dlg:menuitem dlg:value="Sponsor [spn]"/>
|
||||
<dlg:menuitem dlg:value="Thesis advisor [ths]"/>
|
||||
<dlg:menuitem dlg:value="Transcriber [trc]"/>
|
||||
<dlg:menuitem dlg:value="Translator [trl]"/>
|
||||
</dlg:menupopup>
|
||||
</dlg:menulist>
|
||||
<dlg:text dlg:id="AuthorLabel" dlg:tab-index="5" dlg:left="5" dlg:top="7" dlg:width="60" dlg:height="12" dlg:value="Author"/>
|
||||
<dlg:textfield dlg:id="Author" dlg:tab-index="1" dlg:left="70" dlg:top="5" dlg:width="80" dlg:height="12"/>
|
||||
<dlg:button dlg:id="OKButton" dlg:tab-index="6" dlg:left="5" dlg:top="55" dlg:width="50" dlg:height="12" dlg:value="OK" dlg:button-type="ok"/>
|
||||
<dlg:button dlg:id="CancelButton" dlg:tab-index="7" dlg:left="61" dlg:top="55" dlg:width="50" dlg:height="12" dlg:value="Cancel" dlg:button-type="cancel"/>
|
||||
</dlg:bulletinboard>
|
||||
</dlg:window>
|
12
source/oxt/writer2xhtml/W2XDialogs2/DateDialog.xdl
Normal file
12
source/oxt/writer2xhtml/W2XDialogs2/DateDialog.xdl
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE dlg:window PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "dialog.dtd">
|
||||
<dlg:window xmlns:dlg="http://openoffice.org/2000/dialog" xmlns:script="http://openoffice.org/2000/script" dlg:id="DateDialog" dlg:left="173" dlg:top="73" dlg:width="158" dlg:height="62" dlg:closeable="true" dlg:moveable="true">
|
||||
<dlg:bulletinboard>
|
||||
<dlg:text dlg:id="DateLabel" dlg:tab-index="0" dlg:left="5" dlg:top="9" dlg:width="60" dlg:height="12" dlg:value="Date"/>
|
||||
<dlg:datefield dlg:id="Date" dlg:tab-index="1" dlg:left="70" dlg:top="6" dlg:width="80" dlg:height="12" dlg:strict-format="true" dlg:date-format="short_YYYYMMDD_DIN5008" dlg:spin="true"/>
|
||||
<dlg:text dlg:id="Eventlabel" dlg:tab-index="2" dlg:left="5" dlg:top="22" dlg:width="60" dlg:height="12" dlg:value="Event"/>
|
||||
<dlg:textfield dlg:id="Event" dlg:tab-index="3" dlg:left="70" dlg:top="21" dlg:width="80" dlg:height="12"/>
|
||||
<dlg:button dlg:id="OKButton" dlg:tab-index="4" dlg:left="5" dlg:top="43" dlg:width="50" dlg:height="12" dlg:value="OK" dlg:button-type="ok"/>
|
||||
<dlg:button dlg:id="CancelButton" dlg:tab-index="5" dlg:left="61" dlg:top="43" dlg:width="50" dlg:height="12" dlg:value="Cancel" dlg:button-type="cancel"/>
|
||||
</dlg:bulletinboard>
|
||||
</dlg:window>
|
|
@ -14,4 +14,6 @@
|
|||
<library:element library:name="LoadDefaults"/>
|
||||
<library:element library:name="EpubOptions"/>
|
||||
<library:element library:name="EpubMetadata"/>
|
||||
<library:element library:name="AuthorDialog"/>
|
||||
<library:element library:name="DateDialog"/>
|
||||
</library:library>
|
Loading…
Add table
Reference in a new issue