Merge branch 'dev' into feature/build_gui
This commit is contained in:
@@ -14,7 +14,7 @@ jobs:
|
|||||||
testLinux:
|
testLinux:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
|
python-version: ["3.8", "3.9", "3.10", "3.11"]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Python Setup
|
- name: Python Setup
|
||||||
|
|||||||
@@ -40,7 +40,6 @@ The following libraries are dependencies of novelWriter:
|
|||||||
|
|
||||||
* [Qt5](https://www.qt.io) by Qt Company
|
* [Qt5](https://www.qt.io) by Qt Company
|
||||||
* [PyQt5](https://www.riverbankcomputing.com/software/pyqt) by Riverbank Computing
|
* [PyQt5](https://www.riverbankcomputing.com/software/pyqt) by Riverbank Computing
|
||||||
* [lxml](https://lxml.de) by Martijn Faassen
|
|
||||||
* [Enchant](https://abiword.github.io/enchant) by Dom Lachowicz
|
* [Enchant](https://abiword.github.io/enchant) by Dom Lachowicz
|
||||||
* [PyEnchant](https://pyenchant.github.io/pyenchant) by Dimitri Merejkowsky
|
* [PyEnchant](https://pyenchant.github.io/pyenchant) by Dimitri Merejkowsky
|
||||||
|
|
||||||
|
|||||||
@@ -46,13 +46,10 @@ format of the main project file. Everything else is handled with standard Python
|
|||||||
The following Python packages are needed to run novelWriter:
|
The following Python packages are needed to run novelWriter:
|
||||||
|
|
||||||
* ``PyQt5`` – needed for connecting with the Qt5 libraries.
|
* ``PyQt5`` – needed for connecting with the Qt5 libraries.
|
||||||
* ``lxml`` – needed for full XML support.
|
|
||||||
* ``PyEnchant`` – needed for spell checking (optional).
|
* ``PyEnchant`` – needed for spell checking (optional).
|
||||||
|
|
||||||
PyQt/Qt should be at least 5.10, but ideally 5.13 or higher for all features to work. For instance,
|
PyQt/Qt should be at least 5.10, but ideally 5.13 or higher for all features to work. For instance,
|
||||||
searching using regular expressions with full Unicode support requires 5.13. There is no known
|
searching using regular expressions with full Unicode support requires 5.13.
|
||||||
minimum version requirement for package ``lxml``, but the code was originally written with 4.2,
|
|
||||||
which is therefore set as the minimum. It may work on lower versions. You have to test it.
|
|
||||||
|
|
||||||
If you want spell checking, you must install the ``PyEnchant`` package. The spell check library
|
If you want spell checking, you must install the ``PyEnchant`` package. The spell check library
|
||||||
must be at least 3.0 to work with Windows. On Linux, 2.0 also works fine.
|
must be at least 3.0 to work with Windows. On Linux, 2.0 also works fine.
|
||||||
|
|||||||
@@ -185,12 +185,6 @@ def main(sysArgs=None):
|
|||||||
)
|
)
|
||||||
errorCode |= 0x10
|
errorCode |= 0x10
|
||||||
|
|
||||||
try:
|
|
||||||
import lxml # noqa: F401
|
|
||||||
except ImportError:
|
|
||||||
errorData.append("Python module 'lxml' is missing")
|
|
||||||
errorCode |= 0x20
|
|
||||||
|
|
||||||
if errorData:
|
if errorData:
|
||||||
errApp = QApplication([])
|
errApp = QApplication([])
|
||||||
errDlg = QErrorMessage()
|
errDlg = QErrorMessage()
|
||||||
|
|||||||
@@ -47,7 +47,6 @@ more contributions are listed on the project's <a href="https://crowdin.com/proj
|
|||||||
<p>
|
<p>
|
||||||
<a href="https://www.qt.io">Qt5</a> by Qt Company<br>
|
<a href="https://www.qt.io">Qt5</a> by Qt Company<br>
|
||||||
<a href="https://www.riverbankcomputing.com/software/pyqt">PyQt5</a> by Riverbank Computing<br>
|
<a href="https://www.riverbankcomputing.com/software/pyqt">PyQt5</a> by Riverbank Computing<br>
|
||||||
<a href="https://lxml.de">lxml</a> by Martijn Faassen<br>
|
|
||||||
<a href="https://abiword.github.io/enchant">Enchant</a> by Dom Lachowicz<br>
|
<a href="https://abiword.github.io/enchant">Enchant</a> by Dom Lachowicz<br>
|
||||||
<a href="https://pyenchant.github.io/pyenchant">PyEnchant</a> by Dimitri Merejkowsky
|
<a href="https://pyenchant.github.io/pyenchant">PyEnchant</a> by Dimitri Merejkowsky
|
||||||
</p>
|
</p>
|
||||||
|
|||||||
@@ -23,10 +23,13 @@ You should have received a copy of the GNU General Public License
|
|||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
import json
|
import json
|
||||||
import uuid
|
import uuid
|
||||||
import hashlib
|
import hashlib
|
||||||
import logging
|
import logging
|
||||||
|
import xml.etree.ElementTree as ET
|
||||||
|
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
@@ -435,6 +438,45 @@ def jsonEncode(data, n=0, nmax=0):
|
|||||||
return "".join(buffer)
|
return "".join(buffer)
|
||||||
|
|
||||||
|
|
||||||
|
def xmlIndent(tree: ET.Element | ET.ElementTree):
|
||||||
|
"""A modified version of the XML indent function in the standard
|
||||||
|
library. It behaves more closely to how the one from lxml does.
|
||||||
|
"""
|
||||||
|
if isinstance(tree, ET.ElementTree):
|
||||||
|
tree = tree.getroot()
|
||||||
|
|
||||||
|
indentations = ["\n"]
|
||||||
|
|
||||||
|
def indentChildren(elem, level):
|
||||||
|
chLevel = level + 1
|
||||||
|
try:
|
||||||
|
chIndent = indentations[chLevel]
|
||||||
|
except IndexError:
|
||||||
|
chIndent = indentations[level] + " "
|
||||||
|
indentations.append(chIndent)
|
||||||
|
|
||||||
|
if elem.text is None:
|
||||||
|
elem.text = chIndent
|
||||||
|
|
||||||
|
last = None
|
||||||
|
for child in elem:
|
||||||
|
if len(child):
|
||||||
|
indentChildren(child, chLevel)
|
||||||
|
if child.tail is None:
|
||||||
|
child.tail = chIndent
|
||||||
|
last = child
|
||||||
|
|
||||||
|
# Dedent the last child
|
||||||
|
if last is not None:
|
||||||
|
last.tail = indentations[level]
|
||||||
|
|
||||||
|
if len(tree):
|
||||||
|
indentChildren(tree, 0)
|
||||||
|
tree.tail = "\n"
|
||||||
|
|
||||||
|
return
|
||||||
|
|
||||||
|
|
||||||
# =============================================================================================== #
|
# =============================================================================================== #
|
||||||
# File and File System Functions
|
# File and File System Functions
|
||||||
# =============================================================================================== #
|
# =============================================================================================== #
|
||||||
|
|||||||
@@ -196,7 +196,6 @@ class Config:
|
|||||||
|
|
||||||
# Check Python Version
|
# Check Python Version
|
||||||
self.verPyString = sys.version.split()[0]
|
self.verPyString = sys.version.split()[0]
|
||||||
self.verPyHexVal = sys.hexversion
|
|
||||||
|
|
||||||
# Check OS Type
|
# Check OS Type
|
||||||
self.osType = sys.platform
|
self.osType = sys.platform
|
||||||
|
|||||||
@@ -26,16 +26,16 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
|
import xml.etree.ElementTree as ET
|
||||||
|
|
||||||
from enum import Enum
|
from enum import Enum
|
||||||
from lxml import etree
|
|
||||||
from time import time
|
from time import time
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
from novelwriter import __version__, __hexversion__
|
from novelwriter import __version__, __hexversion__
|
||||||
from novelwriter.common import (
|
from novelwriter.common import (
|
||||||
checkBool, checkInt, checkString, checkStringNone, formatTimeStamp,
|
checkBool, checkInt, checkString, checkStringNone, formatTimeStamp,
|
||||||
hexToInt, simplified, yesNo
|
hexToInt, simplified, xmlIndent, yesNo
|
||||||
)
|
)
|
||||||
from novelwriter.constants import nwFiles
|
from novelwriter.constants import nwFiles
|
||||||
|
|
||||||
@@ -163,7 +163,7 @@ class ProjectXMLReader:
|
|||||||
logger.debug("Reading project XML")
|
logger.debug("Reading project XML")
|
||||||
|
|
||||||
try:
|
try:
|
||||||
xml = etree.parse(str(self._path))
|
xml = ET.parse(str(self._path))
|
||||||
self._state = XMLReadState.NO_ERROR
|
self._state = XMLReadState.NO_ERROR
|
||||||
|
|
||||||
except Exception as exc:
|
except Exception as exc:
|
||||||
@@ -174,7 +174,7 @@ class ProjectXMLReader:
|
|||||||
backFile = self._path.with_suffix(".bak")
|
backFile = self._path.with_suffix(".bak")
|
||||||
if backFile.is_file():
|
if backFile.is_file():
|
||||||
try:
|
try:
|
||||||
xml = etree.parse(str(backFile))
|
xml = ET.parse(str(backFile))
|
||||||
self._state = XMLReadState.PARSED_BACKUP
|
self._state = XMLReadState.PARSED_BACKUP
|
||||||
logger.info("Backup project file parsed")
|
logger.info("Backup project file parsed")
|
||||||
except Exception as exc:
|
except Exception as exc:
|
||||||
@@ -500,7 +500,7 @@ class ProjectXMLWriter:
|
|||||||
tStart = time()
|
tStart = time()
|
||||||
logger.debug("Writing project XML")
|
logger.debug("Writing project XML")
|
||||||
|
|
||||||
xRoot = etree.Element("novelWriterXML", attrib={
|
xRoot = ET.Element("novelWriterXML", attrib={
|
||||||
"appVersion": str(__version__),
|
"appVersion": str(__version__),
|
||||||
"hexVersion": str(__hexversion__),
|
"hexVersion": str(__hexversion__),
|
||||||
"fileVersion": FILE_VERSION,
|
"fileVersion": FILE_VERSION,
|
||||||
@@ -515,13 +515,13 @@ class ProjectXMLWriter:
|
|||||||
"editTime": str(editTime),
|
"editTime": str(editTime),
|
||||||
}
|
}
|
||||||
|
|
||||||
xProject = etree.SubElement(xRoot, "project", attrib=projAttr)
|
xProject = ET.SubElement(xRoot, "project", attrib=projAttr)
|
||||||
self._packSingleValue(xProject, "name", projData.name)
|
self._packSingleValue(xProject, "name", projData.name)
|
||||||
self._packSingleValue(xProject, "title", projData.title)
|
self._packSingleValue(xProject, "title", projData.title)
|
||||||
self._packSingleValue(xProject, "author", projData.author)
|
self._packSingleValue(xProject, "author", projData.author)
|
||||||
|
|
||||||
# Save Project Settings
|
# Save Project Settings
|
||||||
xSettings = etree.SubElement(xRoot, "settings")
|
xSettings = ET.SubElement(xRoot, "settings")
|
||||||
self._packSingleValue(xSettings, "doBackup", yesNo(projData.doBackup))
|
self._packSingleValue(xSettings, "doBackup", yesNo(projData.doBackup))
|
||||||
self._packSingleValue(xSettings, "language", projData.language)
|
self._packSingleValue(xSettings, "language", projData.language)
|
||||||
self._packSingleValue(xSettings, "spellChecking", projData.spellLang, attrib={
|
self._packSingleValue(xSettings, "spellChecking", projData.spellLang, attrib={
|
||||||
@@ -532,11 +532,11 @@ class ProjectXMLWriter:
|
|||||||
self._packDictKeyValue(xSettings, "titleFormat", projData.titleFormat)
|
self._packDictKeyValue(xSettings, "titleFormat", projData.titleFormat)
|
||||||
|
|
||||||
# Save Status/Importance
|
# Save Status/Importance
|
||||||
xStatus = etree.SubElement(xSettings, "status")
|
xStatus = ET.SubElement(xSettings, "status")
|
||||||
for label, attrib in projData.itemStatus.pack():
|
for label, attrib in projData.itemStatus.pack():
|
||||||
self._packSingleValue(xStatus, "entry", label, attrib=attrib)
|
self._packSingleValue(xStatus, "entry", label, attrib=attrib)
|
||||||
|
|
||||||
xImport = etree.SubElement(xSettings, "importance")
|
xImport = ET.SubElement(xSettings, "importance")
|
||||||
for label, attrib in projData.itemImport.pack():
|
for label, attrib in projData.itemImport.pack():
|
||||||
self._packSingleValue(xImport, "entry", label, attrib=attrib)
|
self._packSingleValue(xImport, "entry", label, attrib=attrib)
|
||||||
|
|
||||||
@@ -547,11 +547,11 @@ class ProjectXMLWriter:
|
|||||||
"notesWords": str(projData.currCounts[1]),
|
"notesWords": str(projData.currCounts[1]),
|
||||||
}
|
}
|
||||||
|
|
||||||
xContent = etree.SubElement(xRoot, "content", attrib=contAttr)
|
xContent = ET.SubElement(xRoot, "content", attrib=contAttr)
|
||||||
for item in projContent:
|
for item in projContent:
|
||||||
xItem = etree.SubElement(xContent, "item", attrib=item.get("itemAttr", {}))
|
xItem = ET.SubElement(xContent, "item", attrib=item.get("itemAttr", {}))
|
||||||
etree.SubElement(xItem, "meta", attrib=item.get("metaAttr", {}))
|
ET.SubElement(xItem, "meta", attrib=item.get("metaAttr", {}))
|
||||||
xName = etree.SubElement(xItem, "name", attrib=item.get("nameAttr", {}))
|
xName = ET.SubElement(xItem, "name", attrib=item.get("nameAttr", {}))
|
||||||
xName.text = item["name"]
|
xName.text = item["name"]
|
||||||
|
|
||||||
# Write the XML tree to file
|
# Write the XML tree to file
|
||||||
@@ -559,9 +559,9 @@ class ProjectXMLWriter:
|
|||||||
tempFile = saveFile.with_suffix(".tmp")
|
tempFile = saveFile.with_suffix(".tmp")
|
||||||
backFile = saveFile.with_suffix(".bak")
|
backFile = saveFile.with_suffix(".bak")
|
||||||
try:
|
try:
|
||||||
tempFile.write_bytes(etree.tostring(
|
xml = ET.ElementTree(xRoot)
|
||||||
xRoot, pretty_print=True, encoding="utf-8", xml_declaration=True
|
xmlIndent(xml)
|
||||||
))
|
xml.write(tempFile, encoding="utf-8", xml_declaration=True)
|
||||||
except Exception as exc:
|
except Exception as exc:
|
||||||
self._error = exc
|
self._error = exc
|
||||||
return False
|
return False
|
||||||
@@ -587,17 +587,17 @@ class ProjectXMLWriter:
|
|||||||
def _packSingleValue(self, xParent, name, value, attrib=None):
|
def _packSingleValue(self, xParent, name, value, attrib=None):
|
||||||
"""Pack a single value into an XML element.
|
"""Pack a single value into an XML element.
|
||||||
"""
|
"""
|
||||||
xItem = etree.SubElement(xParent, name, attrib=attrib)
|
xItem = ET.SubElement(xParent, name, attrib=attrib or {})
|
||||||
xItem.text = str(value) or ""
|
xItem.text = str(value) or ""
|
||||||
return
|
return
|
||||||
|
|
||||||
def _packDictKeyValue(self, xParent, name, data):
|
def _packDictKeyValue(self, xParent, name, data):
|
||||||
"""Pack the entries of a dictionary into an XML element.
|
"""Pack the entries of a dictionary into an XML element.
|
||||||
"""
|
"""
|
||||||
xItem = etree.SubElement(xParent, name)
|
xItem = ET.SubElement(xParent, name)
|
||||||
for key, value in data.items():
|
for key, value in data.items():
|
||||||
if len(key) > 0:
|
if len(key) > 0:
|
||||||
xEntry = etree.SubElement(xItem, "entry", attrib={"key": key})
|
xEntry = ET.SubElement(xItem, "entry", attrib={"key": key})
|
||||||
xEntry.text = str(value) or ""
|
xEntry.text = str(value) or ""
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|||||||
+129
-140
@@ -27,13 +27,14 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
|
import xml.etree.ElementTree as ET
|
||||||
|
|
||||||
from lxml import etree
|
|
||||||
from hashlib import sha256
|
from hashlib import sha256
|
||||||
from zipfile import ZipFile
|
from zipfile import ZipFile
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
|
|
||||||
from novelwriter import __version__
|
from novelwriter import __version__
|
||||||
|
from novelwriter.common import xmlIndent
|
||||||
from novelwriter.constants import nwKeyWords, nwLabels
|
from novelwriter.constants import nwKeyWords, nwLabels
|
||||||
from novelwriter.core.tokenizer import Tokenizer, stripEscape
|
from novelwriter.core.tokenizer import Tokenizer, stripEscape
|
||||||
|
|
||||||
@@ -41,30 +42,27 @@ logger = logging.getLogger(__name__)
|
|||||||
|
|
||||||
# Main XML NameSpaces
|
# Main XML NameSpaces
|
||||||
XML_NS = {
|
XML_NS = {
|
||||||
"office": "urn:oasis:names:tc:opendocument:xmlns:office:1.0",
|
"manifest": "urn:oasis:names:tc:opendocument:xmlns:manifest:1.0",
|
||||||
"style": "urn:oasis:names:tc:opendocument:xmlns:style:1.0",
|
"office": "urn:oasis:names:tc:opendocument:xmlns:office:1.0",
|
||||||
"loext": "urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0",
|
"style": "urn:oasis:names:tc:opendocument:xmlns:style:1.0",
|
||||||
"text": "urn:oasis:names:tc:opendocument:xmlns:text:1.0",
|
"loext": "urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0",
|
||||||
"meta": "urn:oasis:names:tc:opendocument:xmlns:meta:1.0",
|
"text": "urn:oasis:names:tc:opendocument:xmlns:text:1.0",
|
||||||
"fo": "urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0",
|
"meta": "urn:oasis:names:tc:opendocument:xmlns:meta:1.0",
|
||||||
"dc": "http://purl.org/dc/elements/1.1/",
|
"fo": "urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0",
|
||||||
}
|
"dc": "http://purl.org/dc/elements/1.1/",
|
||||||
MANI_NS = {
|
|
||||||
"manifest": "urn:oasis:names:tc:opendocument:xmlns:manifest:1.0"
|
|
||||||
}
|
|
||||||
OFFICE_NS = {
|
|
||||||
"office": "urn:oasis:names:tc:opendocument:xmlns:office:1.0",
|
|
||||||
}
|
}
|
||||||
|
for ns, uri in XML_NS.items():
|
||||||
|
ET.register_namespace(ns, uri)
|
||||||
|
|
||||||
|
|
||||||
def _mkTag(nsName, tagName, nsMap=XML_NS):
|
def _mkTag(ns, tag):
|
||||||
"""Assemble namespace and tag name.
|
"""Assemble namespace and tag name.
|
||||||
"""
|
"""
|
||||||
theNS = nsMap.get(nsName, "")
|
uri = XML_NS.get(ns, "")
|
||||||
if theNS:
|
if uri:
|
||||||
return f"{{{theNS}}}{tagName}"
|
return f"{{{uri}}}{tag}"
|
||||||
logger.warning("Missing xml namespace '%s'", nsName)
|
logger.warning("Missing xml namespace '%s'", ns)
|
||||||
return tagName
|
return tag
|
||||||
|
|
||||||
|
|
||||||
# Mimetype and Version
|
# Mimetype and Version
|
||||||
@@ -97,20 +95,20 @@ class ToOdt(Tokenizer):
|
|||||||
|
|
||||||
self._isFlat = isFlat # Flat: .fodt, otherwise .odt
|
self._isFlat = isFlat # Flat: .fodt, otherwise .odt
|
||||||
|
|
||||||
self._dFlat = None # FODT file XML root
|
self._dFlat = ET.Element("") # FODT file XML root
|
||||||
self._dCont = None # ODT content.xml root
|
self._dCont = ET.Element("") # ODT content.xml root
|
||||||
self._dMeta = None # ODT meta.xml root
|
self._dMeta = ET.Element("") # ODT meta.xml root
|
||||||
self._dStyl = None # ODT styles.xml root
|
self._dStyl = ET.Element("") # ODT styles.xml root
|
||||||
|
|
||||||
self._xMeta = None # Office meta root
|
self._xMeta = ET.Element("") # Office meta root
|
||||||
self._xFont = None # Office font face declaration
|
self._xFont = ET.Element("") # Office font face declaration
|
||||||
self._xFnt2 = None # Office font face declaration, secondary
|
self._xFnt2 = ET.Element("") # Office font face declaration, secondary
|
||||||
self._xStyl = None # Office styles root
|
self._xStyl = ET.Element("") # Office styles root
|
||||||
self._xAuto = None # Office auto-styles root
|
self._xAuto = ET.Element("") # Office auto-styles root
|
||||||
self._xAut2 = None # Office auto-styles root, secondary
|
self._xAut2 = ET.Element("") # Office auto-styles root, secondary
|
||||||
self._xMast = None # Office master-styles root
|
self._xMast = ET.Element("") # Office master-styles root
|
||||||
self._xBody = None # Office body root
|
self._xBody = ET.Element("") # Office body root
|
||||||
self._xText = None # Office text root
|
self._xText = ET.Element("") # Office text root
|
||||||
|
|
||||||
self._mainPara = {} # User-accessible paragraph styles
|
self._mainPara = {} # User-accessible paragraph styles
|
||||||
self._autoPara = {} # Auto-generated paragraph styles
|
self._autoPara = {} # Auto-generated paragraph styles
|
||||||
@@ -287,16 +285,16 @@ class ToOdt(Tokenizer):
|
|||||||
tAttr[_mkTag("office", "mimetype")] = X_MIME
|
tAttr[_mkTag("office", "mimetype")] = X_MIME
|
||||||
|
|
||||||
tFlat = _mkTag("office", "document")
|
tFlat = _mkTag("office", "document")
|
||||||
self._dFlat = etree.Element(tFlat, attrib=tAttr, nsmap=XML_NS)
|
self._dFlat = ET.Element(tFlat, attrib=tAttr)
|
||||||
|
|
||||||
self._xMeta = etree.SubElement(self._dFlat, _mkTag("office", "meta"))
|
self._xMeta = ET.SubElement(self._dFlat, _mkTag("office", "meta"))
|
||||||
self._xFont = etree.SubElement(self._dFlat, _mkTag("office", "font-face-decls"))
|
self._xFont = ET.SubElement(self._dFlat, _mkTag("office", "font-face-decls"))
|
||||||
self._xStyl = etree.SubElement(self._dFlat, _mkTag("office", "styles"))
|
self._xStyl = ET.SubElement(self._dFlat, _mkTag("office", "styles"))
|
||||||
self._xAuto = etree.SubElement(self._dFlat, _mkTag("office", "automatic-styles"))
|
self._xAuto = ET.SubElement(self._dFlat, _mkTag("office", "automatic-styles"))
|
||||||
self._xMast = etree.SubElement(self._dFlat, _mkTag("office", "master-styles"))
|
self._xMast = ET.SubElement(self._dFlat, _mkTag("office", "master-styles"))
|
||||||
self._xBody = etree.SubElement(self._dFlat, _mkTag("office", "body"))
|
self._xBody = ET.SubElement(self._dFlat, _mkTag("office", "body"))
|
||||||
|
|
||||||
etree.SubElement(self._xFont, _mkTag("style", "font-face"), attrib=fAttr)
|
ET.SubElement(self._xFont, _mkTag("style", "font-face"), attrib=fAttr)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
|
||||||
@@ -308,59 +306,59 @@ class ToOdt(Tokenizer):
|
|||||||
tStyl = _mkTag("office", "document-styles")
|
tStyl = _mkTag("office", "document-styles")
|
||||||
|
|
||||||
# content.xml
|
# content.xml
|
||||||
self._dCont = etree.Element(tCont, attrib=tAttr, nsmap=XML_NS)
|
self._dCont = ET.Element(tCont, attrib=tAttr)
|
||||||
self._xFont = etree.SubElement(self._dCont, _mkTag("office", "font-face-decls"))
|
self._xFont = ET.SubElement(self._dCont, _mkTag("office", "font-face-decls"))
|
||||||
self._xAuto = etree.SubElement(self._dCont, _mkTag("office", "automatic-styles"))
|
self._xAuto = ET.SubElement(self._dCont, _mkTag("office", "automatic-styles"))
|
||||||
self._xBody = etree.SubElement(self._dCont, _mkTag("office", "body"))
|
self._xBody = ET.SubElement(self._dCont, _mkTag("office", "body"))
|
||||||
|
|
||||||
# meta.xml
|
# meta.xml
|
||||||
self._dMeta = etree.Element(tMeta, attrib=tAttr, nsmap=XML_NS)
|
self._dMeta = ET.Element(tMeta, attrib=tAttr)
|
||||||
self._xMeta = etree.SubElement(self._dMeta, _mkTag("office", "meta"))
|
self._xMeta = ET.SubElement(self._dMeta, _mkTag("office", "meta"))
|
||||||
|
|
||||||
# styles.xml
|
# styles.xml
|
||||||
self._dStyl = etree.Element(tStyl, attrib=tAttr, nsmap=XML_NS)
|
self._dStyl = ET.Element(tStyl, attrib=tAttr)
|
||||||
self._xFnt2 = etree.SubElement(self._dStyl, _mkTag("office", "font-face-decls"))
|
self._xFnt2 = ET.SubElement(self._dStyl, _mkTag("office", "font-face-decls"))
|
||||||
self._xStyl = etree.SubElement(self._dStyl, _mkTag("office", "styles"))
|
self._xStyl = ET.SubElement(self._dStyl, _mkTag("office", "styles"))
|
||||||
self._xAut2 = etree.SubElement(self._dStyl, _mkTag("office", "automatic-styles"))
|
self._xAut2 = ET.SubElement(self._dStyl, _mkTag("office", "automatic-styles"))
|
||||||
self._xMast = etree.SubElement(self._dStyl, _mkTag("office", "master-styles"))
|
self._xMast = ET.SubElement(self._dStyl, _mkTag("office", "master-styles"))
|
||||||
|
|
||||||
etree.SubElement(self._xFont, _mkTag("style", "font-face"), attrib=fAttr)
|
ET.SubElement(self._xFont, _mkTag("style", "font-face"), attrib=fAttr)
|
||||||
etree.SubElement(self._xFnt2, _mkTag("style", "font-face"), attrib=fAttr)
|
ET.SubElement(self._xFnt2, _mkTag("style", "font-face"), attrib=fAttr)
|
||||||
|
|
||||||
# Finalise
|
# Finalise
|
||||||
# ========
|
# ========
|
||||||
|
|
||||||
self._xText = etree.SubElement(self._xBody, _mkTag("office", "text"))
|
self._xText = ET.SubElement(self._xBody, _mkTag("office", "text"))
|
||||||
|
|
||||||
timeStamp = datetime.now().isoformat(sep="T", timespec="seconds")
|
timeStamp = datetime.now().isoformat(sep="T", timespec="seconds")
|
||||||
|
|
||||||
# Office Meta Data
|
# Office Meta Data
|
||||||
xMeta = etree.SubElement(self._xMeta, _mkTag("meta", "creation-date"))
|
xMeta = ET.SubElement(self._xMeta, _mkTag("meta", "creation-date"))
|
||||||
xMeta.text = timeStamp
|
xMeta.text = timeStamp
|
||||||
|
|
||||||
xMeta = etree.SubElement(self._xMeta, _mkTag("meta", "generator"))
|
xMeta = ET.SubElement(self._xMeta, _mkTag("meta", "generator"))
|
||||||
xMeta.text = f"novelWriter/{__version__}"
|
xMeta.text = f"novelWriter/{__version__}"
|
||||||
|
|
||||||
xMeta = etree.SubElement(self._xMeta, _mkTag("meta", "initial-creator"))
|
xMeta = ET.SubElement(self._xMeta, _mkTag("meta", "initial-creator"))
|
||||||
xMeta.text = self.theProject.data.author
|
xMeta.text = self.theProject.data.author
|
||||||
|
|
||||||
xMeta = etree.SubElement(self._xMeta, _mkTag("meta", "editing-cycles"))
|
xMeta = ET.SubElement(self._xMeta, _mkTag("meta", "editing-cycles"))
|
||||||
xMeta.text = str(self.theProject.data.saveCount)
|
xMeta.text = str(self.theProject.data.saveCount)
|
||||||
|
|
||||||
# Format is: PnYnMnDTnHnMnS
|
# Format is: PnYnMnDTnHnMnS
|
||||||
# https://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#duration
|
# https://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#duration
|
||||||
eT = self.theProject.data.editTime
|
eT = self.theProject.data.editTime
|
||||||
xMeta = etree.SubElement(self._xMeta, _mkTag("meta", "editing-duration"))
|
xMeta = ET.SubElement(self._xMeta, _mkTag("meta", "editing-duration"))
|
||||||
xMeta.text = f"P{eT//86400:d}DT{eT%86400//3600:d}H{eT%3600//60:d}M{eT%60:d}S"
|
xMeta.text = f"P{eT//86400:d}DT{eT%86400//3600:d}H{eT%3600//60:d}M{eT%60:d}S"
|
||||||
|
|
||||||
# Dublin Core Meta Data
|
# Dublin Core Meta Data
|
||||||
xMeta = etree.SubElement(self._xMeta, _mkTag("dc", "title"))
|
xMeta = ET.SubElement(self._xMeta, _mkTag("dc", "title"))
|
||||||
xMeta.text = self.theProject.data.title or self.theProject.data.name
|
xMeta.text = self.theProject.data.title or self.theProject.data.name
|
||||||
|
|
||||||
xMeta = etree.SubElement(self._xMeta, _mkTag("dc", "date"))
|
xMeta = ET.SubElement(self._xMeta, _mkTag("dc", "date"))
|
||||||
xMeta.text = timeStamp
|
xMeta.text = timeStamp
|
||||||
|
|
||||||
xMeta = etree.SubElement(self._xMeta, _mkTag("dc", "creator"))
|
xMeta = ET.SubElement(self._xMeta, _mkTag("dc", "creator"))
|
||||||
xMeta.text = self.theProject.data.author
|
xMeta.text = self.theProject.data.author
|
||||||
|
|
||||||
self._pageStyles()
|
self._pageStyles()
|
||||||
@@ -506,51 +504,43 @@ class ToOdt(Tokenizer):
|
|||||||
"""Save the data to an .fodt file.
|
"""Save the data to an .fodt file.
|
||||||
"""
|
"""
|
||||||
with open(savePath, mode="wb") as outFile:
|
with open(savePath, mode="wb") as outFile:
|
||||||
outFile.write(etree.tostring(
|
xml = ET.ElementTree(self._dFlat)
|
||||||
self._dFlat,
|
xmlIndent(xml)
|
||||||
pretty_print=True,
|
xml.write(outFile, encoding="utf-8", xml_declaration=True)
|
||||||
encoding="utf-8",
|
|
||||||
xml_declaration=True
|
|
||||||
))
|
|
||||||
return
|
return
|
||||||
|
|
||||||
def saveOpenDocText(self, savePath):
|
def saveOpenDocText(self, savePath):
|
||||||
"""Save the data to an .odt file.
|
"""Save the data to an .odt file.
|
||||||
"""
|
"""
|
||||||
mMani = _mkTag("manifest", "manifest", nsMap=MANI_NS)
|
mMani = _mkTag("manifest", "manifest")
|
||||||
mVers = _mkTag("manifest", "version", nsMap=MANI_NS)
|
mVers = _mkTag("manifest", "version")
|
||||||
mPath = _mkTag("manifest", "full-path", nsMap=MANI_NS)
|
mPath = _mkTag("manifest", "full-path")
|
||||||
mType = _mkTag("manifest", "media-type", nsMap=MANI_NS)
|
mType = _mkTag("manifest", "media-type")
|
||||||
mFile = _mkTag("manifest", "file-entry", nsMap=MANI_NS)
|
mFile = _mkTag("manifest", "file-entry")
|
||||||
|
|
||||||
xMani = etree.Element(mMani, attrib={mVers: X_VERS}, nsmap=MANI_NS)
|
xMani = ET.Element(mMani, attrib={mVers: X_VERS})
|
||||||
etree.SubElement(xMani, mFile, attrib={mPath: "/", mVers: X_VERS, mType: X_MIME})
|
ET.SubElement(xMani, mFile, attrib={mPath: "/", mVers: X_VERS, mType: X_MIME})
|
||||||
etree.SubElement(xMani, mFile, attrib={mPath: "settings.xml", mType: "text/xml"})
|
ET.SubElement(xMani, mFile, attrib={mPath: "settings.xml", mType: "text/xml"})
|
||||||
etree.SubElement(xMani, mFile, attrib={mPath: "content.xml", mType: "text/xml"})
|
ET.SubElement(xMani, mFile, attrib={mPath: "content.xml", mType: "text/xml"})
|
||||||
etree.SubElement(xMani, mFile, attrib={mPath: "meta.xml", mType: "text/xml"})
|
ET.SubElement(xMani, mFile, attrib={mPath: "meta.xml", mType: "text/xml"})
|
||||||
etree.SubElement(xMani, mFile, attrib={mPath: "styles.xml", mType: "text/xml"})
|
ET.SubElement(xMani, mFile, attrib={mPath: "styles.xml", mType: "text/xml"})
|
||||||
|
|
||||||
oRoot = _mkTag("office", "document-settings", nsMap=OFFICE_NS)
|
oRoot = _mkTag("office", "document-settings")
|
||||||
oVers = _mkTag("office", "version", nsMap=OFFICE_NS)
|
oVers = _mkTag("office", "version")
|
||||||
xSett = etree.Element(oRoot, nsmap=OFFICE_NS, attrib={oVers: X_VERS})
|
xSett = ET.Element(oRoot, attrib={oVers: X_VERS})
|
||||||
|
|
||||||
with ZipFile(savePath, mode="w") as outFile:
|
def putInZip(name, xObj, zipObj):
|
||||||
outFile.writestr("mimetype", X_MIME)
|
with zipObj.open(name, mode="w") as fObj:
|
||||||
outFile.writestr("META-INF/manifest.xml", etree.tostring(
|
xml = ET.ElementTree(xObj)
|
||||||
xMani, pretty_print=False, encoding="utf-8", xml_declaration=True
|
xml.write(fObj, encoding="utf-8", xml_declaration=True)
|
||||||
))
|
|
||||||
outFile.writestr("settings.xml", etree.tostring(
|
with ZipFile(savePath, mode="w") as outZip:
|
||||||
xSett, pretty_print=False, encoding="utf-8", xml_declaration=True
|
outZip.writestr("mimetype", X_MIME)
|
||||||
))
|
putInZip("META-INF/manifest.xml", xMani, outZip)
|
||||||
outFile.writestr("content.xml", etree.tostring(
|
putInZip("settings.xml", xSett, outZip)
|
||||||
self._dCont, pretty_print=False, encoding="utf-8", xml_declaration=True
|
putInZip("content.xml", self._dCont, outZip)
|
||||||
))
|
putInZip("meta.xml", self._dMeta, outZip)
|
||||||
outFile.writestr("meta.xml", etree.tostring(
|
putInZip("styles.xml", self._dStyl, outZip)
|
||||||
self._dMeta, pretty_print=False, encoding="utf-8", xml_declaration=True
|
|
||||||
))
|
|
||||||
outFile.writestr("styles.xml", etree.tostring(
|
|
||||||
self._dStyl, pretty_print=False, encoding="utf-8", xml_declaration=True
|
|
||||||
))
|
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|
||||||
@@ -607,10 +597,10 @@ class ToOdt(Tokenizer):
|
|||||||
tAttr[_mkTag("text", "outline-level")] = oLevel
|
tAttr[_mkTag("text", "outline-level")] = oLevel
|
||||||
|
|
||||||
pTag = "h" if isHead else "p"
|
pTag = "h" if isHead else "p"
|
||||||
xElem = etree.SubElement(self._xText, _mkTag("text", pTag), attrib=tAttr)
|
xElem = ET.SubElement(self._xText, _mkTag("text", pTag), attrib=tAttr)
|
||||||
|
|
||||||
# It's important to set the initial text field to empty, otherwise
|
# It's important to set the initial text field to empty, otherwise
|
||||||
# lxml will add a line break if the first subelement is a span.
|
# xmlIndent will add a line break if the first subelement is a span.
|
||||||
xElem.text = ""
|
xElem.text = ""
|
||||||
|
|
||||||
if not theText:
|
if not theText:
|
||||||
@@ -735,25 +725,25 @@ class ToOdt(Tokenizer):
|
|||||||
theAttr = {}
|
theAttr = {}
|
||||||
theAttr[_mkTag("style", "name")] = "PM1"
|
theAttr[_mkTag("style", "name")] = "PM1"
|
||||||
if self._isFlat:
|
if self._isFlat:
|
||||||
xPage = etree.SubElement(self._xAuto, _mkTag("style", "page-layout"), attrib=theAttr)
|
xPage = ET.SubElement(self._xAuto, _mkTag("style", "page-layout"), attrib=theAttr)
|
||||||
else:
|
else:
|
||||||
xPage = etree.SubElement(self._xAut2, _mkTag("style", "page-layout"), attrib=theAttr)
|
xPage = ET.SubElement(self._xAut2, _mkTag("style", "page-layout"), attrib=theAttr)
|
||||||
|
|
||||||
theAttr = {}
|
theAttr = {}
|
||||||
theAttr[_mkTag("fo", "margin-top")] = self._mDocTop
|
theAttr[_mkTag("fo", "margin-top")] = self._mDocTop
|
||||||
theAttr[_mkTag("fo", "margin-bottom")] = self._mDocBtm
|
theAttr[_mkTag("fo", "margin-bottom")] = self._mDocBtm
|
||||||
theAttr[_mkTag("fo", "margin-left")] = self._mDocLeft
|
theAttr[_mkTag("fo", "margin-left")] = self._mDocLeft
|
||||||
theAttr[_mkTag("fo", "margin-right")] = self._mDocRight
|
theAttr[_mkTag("fo", "margin-right")] = self._mDocRight
|
||||||
etree.SubElement(xPage, _mkTag("style", "page-layout-properties"), attrib=theAttr)
|
ET.SubElement(xPage, _mkTag("style", "page-layout-properties"), attrib=theAttr)
|
||||||
|
|
||||||
xHead = etree.SubElement(xPage, _mkTag("style", "header-style"))
|
xHead = ET.SubElement(xPage, _mkTag("style", "header-style"))
|
||||||
|
|
||||||
theAttr = {}
|
theAttr = {}
|
||||||
theAttr[_mkTag("fo", "min-height")] = "0.600cm"
|
theAttr[_mkTag("fo", "min-height")] = "0.600cm"
|
||||||
theAttr[_mkTag("fo", "margin-left")] = "0.000cm"
|
theAttr[_mkTag("fo", "margin-left")] = "0.000cm"
|
||||||
theAttr[_mkTag("fo", "margin-right")] = "0.000cm"
|
theAttr[_mkTag("fo", "margin-right")] = "0.000cm"
|
||||||
theAttr[_mkTag("fo", "margin-bottom")] = "0.500cm"
|
theAttr[_mkTag("fo", "margin-bottom")] = "0.500cm"
|
||||||
etree.SubElement(xHead, _mkTag("style", "header-footer-properties"), attrib=theAttr)
|
ET.SubElement(xHead, _mkTag("style", "header-footer-properties"), attrib=theAttr)
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|
||||||
@@ -765,13 +755,13 @@ class ToOdt(Tokenizer):
|
|||||||
|
|
||||||
theAttr = {}
|
theAttr = {}
|
||||||
theAttr[_mkTag("style", "family")] = "paragraph"
|
theAttr[_mkTag("style", "family")] = "paragraph"
|
||||||
xStyl = etree.SubElement(self._xStyl, _mkTag("style", "default-style"), attrib=theAttr)
|
xStyl = ET.SubElement(self._xStyl, _mkTag("style", "default-style"), attrib=theAttr)
|
||||||
|
|
||||||
theAttr = {}
|
theAttr = {}
|
||||||
theAttr[_mkTag("style", "line-break")] = "strict"
|
theAttr[_mkTag("style", "line-break")] = "strict"
|
||||||
theAttr[_mkTag("style", "tab-stop-distance")] = "1.251cm"
|
theAttr[_mkTag("style", "tab-stop-distance")] = "1.251cm"
|
||||||
theAttr[_mkTag("style", "writing-mode")] = "page"
|
theAttr[_mkTag("style", "writing-mode")] = "page"
|
||||||
etree.SubElement(xStyl, _mkTag("style", "paragraph-properties"), attrib=theAttr)
|
ET.SubElement(xStyl, _mkTag("style", "paragraph-properties"), attrib=theAttr)
|
||||||
|
|
||||||
theAttr = {}
|
theAttr = {}
|
||||||
theAttr[_mkTag("style", "font-name")] = self._textFont
|
theAttr[_mkTag("style", "font-name")] = self._textFont
|
||||||
@@ -779,7 +769,7 @@ class ToOdt(Tokenizer):
|
|||||||
theAttr[_mkTag("fo", "font-size")] = self._fSizeText
|
theAttr[_mkTag("fo", "font-size")] = self._fSizeText
|
||||||
theAttr[_mkTag("fo", "language")] = self._dLanguage
|
theAttr[_mkTag("fo", "language")] = self._dLanguage
|
||||||
theAttr[_mkTag("fo", "country")] = self._dCountry
|
theAttr[_mkTag("fo", "country")] = self._dCountry
|
||||||
etree.SubElement(xStyl, _mkTag("style", "text-properties"), attrib=theAttr)
|
ET.SubElement(xStyl, _mkTag("style", "text-properties"), attrib=theAttr)
|
||||||
|
|
||||||
# Add Standard Paragraph Style
|
# Add Standard Paragraph Style
|
||||||
# ============================
|
# ============================
|
||||||
@@ -788,13 +778,13 @@ class ToOdt(Tokenizer):
|
|||||||
theAttr[_mkTag("style", "name")] = "Standard"
|
theAttr[_mkTag("style", "name")] = "Standard"
|
||||||
theAttr[_mkTag("style", "family")] = "paragraph"
|
theAttr[_mkTag("style", "family")] = "paragraph"
|
||||||
theAttr[_mkTag("style", "class")] = "text"
|
theAttr[_mkTag("style", "class")] = "text"
|
||||||
xStyl = etree.SubElement(self._xStyl, _mkTag("style", "style"), attrib=theAttr)
|
xStyl = ET.SubElement(self._xStyl, _mkTag("style", "style"), attrib=theAttr)
|
||||||
|
|
||||||
theAttr = {}
|
theAttr = {}
|
||||||
theAttr[_mkTag("style", "font-name")] = self._textFont
|
theAttr[_mkTag("style", "font-name")] = self._textFont
|
||||||
theAttr[_mkTag("fo", "font-family")] = self._fontFamily
|
theAttr[_mkTag("fo", "font-family")] = self._fontFamily
|
||||||
theAttr[_mkTag("fo", "font-size")] = self._fSizeText
|
theAttr[_mkTag("fo", "font-size")] = self._fSizeText
|
||||||
etree.SubElement(xStyl, _mkTag("style", "text-properties"), attrib=theAttr)
|
ET.SubElement(xStyl, _mkTag("style", "text-properties"), attrib=theAttr)
|
||||||
|
|
||||||
# Add Default Heading Style
|
# Add Default Heading Style
|
||||||
# =========================
|
# =========================
|
||||||
@@ -805,19 +795,19 @@ class ToOdt(Tokenizer):
|
|||||||
theAttr[_mkTag("style", "parent-style-name")] = "Standard"
|
theAttr[_mkTag("style", "parent-style-name")] = "Standard"
|
||||||
theAttr[_mkTag("style", "next-style-name")] = "Text_20_body"
|
theAttr[_mkTag("style", "next-style-name")] = "Text_20_body"
|
||||||
theAttr[_mkTag("style", "class")] = "text"
|
theAttr[_mkTag("style", "class")] = "text"
|
||||||
xStyl = etree.SubElement(self._xStyl, _mkTag("style", "style"), attrib=theAttr)
|
xStyl = ET.SubElement(self._xStyl, _mkTag("style", "style"), attrib=theAttr)
|
||||||
|
|
||||||
theAttr = {}
|
theAttr = {}
|
||||||
theAttr[_mkTag("fo", "margin-top")] = self._mTopHead
|
theAttr[_mkTag("fo", "margin-top")] = self._mTopHead
|
||||||
theAttr[_mkTag("fo", "margin-bottom")] = self._mBotHead
|
theAttr[_mkTag("fo", "margin-bottom")] = self._mBotHead
|
||||||
theAttr[_mkTag("fo", "keep-with-next")] = "always"
|
theAttr[_mkTag("fo", "keep-with-next")] = "always"
|
||||||
etree.SubElement(xStyl, _mkTag("style", "paragraph-properties"), attrib=theAttr)
|
ET.SubElement(xStyl, _mkTag("style", "paragraph-properties"), attrib=theAttr)
|
||||||
|
|
||||||
theAttr = {}
|
theAttr = {}
|
||||||
theAttr[_mkTag("style", "font-name")] = self._textFont
|
theAttr[_mkTag("style", "font-name")] = self._textFont
|
||||||
theAttr[_mkTag("fo", "font-family")] = self._fontFamily
|
theAttr[_mkTag("fo", "font-family")] = self._fontFamily
|
||||||
theAttr[_mkTag("fo", "font-size")] = self._fSizeHead
|
theAttr[_mkTag("fo", "font-size")] = self._fSizeHead
|
||||||
etree.SubElement(xStyl, _mkTag("style", "text-properties"), attrib=theAttr)
|
ET.SubElement(xStyl, _mkTag("style", "text-properties"), attrib=theAttr)
|
||||||
|
|
||||||
# Add Header and Footer Styles
|
# Add Header and Footer Styles
|
||||||
# ============================
|
# ============================
|
||||||
@@ -827,7 +817,7 @@ class ToOdt(Tokenizer):
|
|||||||
theAttr[_mkTag("style", "family")] = "paragraph"
|
theAttr[_mkTag("style", "family")] = "paragraph"
|
||||||
theAttr[_mkTag("style", "parent-style-name")] = "Standard"
|
theAttr[_mkTag("style", "parent-style-name")] = "Standard"
|
||||||
theAttr[_mkTag("style", "class")] = "extra"
|
theAttr[_mkTag("style", "class")] = "extra"
|
||||||
etree.SubElement(self._xStyl, _mkTag("style", "style"), attrib=theAttr)
|
ET.SubElement(self._xStyl, _mkTag("style", "style"), attrib=theAttr)
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|
||||||
@@ -992,23 +982,24 @@ class ToOdt(Tokenizer):
|
|||||||
theAttr = {}
|
theAttr = {}
|
||||||
theAttr[_mkTag("style", "name")] = "Standard"
|
theAttr[_mkTag("style", "name")] = "Standard"
|
||||||
theAttr[_mkTag("style", "page-layout-name")] = "PM1"
|
theAttr[_mkTag("style", "page-layout-name")] = "PM1"
|
||||||
xPage = etree.SubElement(self._xMast, _mkTag("style", "master-page"), attrib=theAttr)
|
xPage = ET.SubElement(self._xMast, _mkTag("style", "master-page"), attrib=theAttr)
|
||||||
|
|
||||||
# Standard Page Header
|
# Standard Page Header
|
||||||
xHead = etree.SubElement(xPage, _mkTag("style", "header"))
|
xHead = ET.SubElement(xPage, _mkTag("style", "header"))
|
||||||
xPar = etree.SubElement(xHead, _mkTag("text", "p"), attrib={
|
xPar = ET.SubElement(xHead, _mkTag("text", "p"), attrib={
|
||||||
_mkTag("text", "style-name"): "Header"
|
_mkTag("text", "style-name"): "Header"
|
||||||
})
|
})
|
||||||
xPar.text = self._headerText.strip() + " "
|
xPar.text = self._headerText.strip() + " "
|
||||||
|
|
||||||
xTail = etree.SubElement(xPar, _mkTag("text", "page-number"), attrib={
|
xTail = ET.SubElement(xPar, _mkTag("text", "page-number"), attrib={
|
||||||
_mkTag("text", "select-page"): "current"
|
_mkTag("text", "select-page"): "current"
|
||||||
})
|
})
|
||||||
xTail.text = "2"
|
xTail.text = "2"
|
||||||
|
xTail.tail = "" # Prevent line break in indented XML
|
||||||
|
|
||||||
# First Page Header
|
# First Page Header
|
||||||
xHead = etree.SubElement(xPage, _mkTag("style", "header-first"))
|
xHead = ET.SubElement(xPage, _mkTag("style", "header-first"))
|
||||||
xPar = etree.SubElement(xHead, _mkTag("text", "p"), attrib={
|
xPar = ET.SubElement(xHead, _mkTag("text", "p"), attrib={
|
||||||
_mkTag("text", "style-name"): "Header"
|
_mkTag("text", "style-name"): "Header"
|
||||||
})
|
})
|
||||||
|
|
||||||
@@ -1212,7 +1203,7 @@ class ODTParagraphStyle:
|
|||||||
if aVal is not None:
|
if aVal is not None:
|
||||||
theAttr[_mkTag(aNm, aName)] = aVal
|
theAttr[_mkTag(aNm, aName)] = aVal
|
||||||
|
|
||||||
xEntry = etree.SubElement(xParent, _mkTag("style", "style"), attrib=theAttr)
|
xEntry = ET.SubElement(xParent, _mkTag("style", "style"), attrib=theAttr)
|
||||||
|
|
||||||
theAttr = {}
|
theAttr = {}
|
||||||
for aName, (aNm, aVal) in self._pAttr.items():
|
for aName, (aNm, aVal) in self._pAttr.items():
|
||||||
@@ -1220,7 +1211,7 @@ class ODTParagraphStyle:
|
|||||||
theAttr[_mkTag(aNm, aName)] = aVal
|
theAttr[_mkTag(aNm, aName)] = aVal
|
||||||
|
|
||||||
if theAttr:
|
if theAttr:
|
||||||
etree.SubElement(xEntry, _mkTag("style", "paragraph-properties"), attrib=theAttr)
|
ET.SubElement(xEntry, _mkTag("style", "paragraph-properties"), attrib=theAttr)
|
||||||
|
|
||||||
theAttr = {}
|
theAttr = {}
|
||||||
for aName, (aNm, aVal) in self._tAttr.items():
|
for aName, (aNm, aVal) in self._tAttr.items():
|
||||||
@@ -1228,7 +1219,7 @@ class ODTParagraphStyle:
|
|||||||
theAttr[_mkTag(aNm, aName)] = aVal
|
theAttr[_mkTag(aNm, aName)] = aVal
|
||||||
|
|
||||||
if theAttr:
|
if theAttr:
|
||||||
etree.SubElement(xEntry, _mkTag("style", "text-properties"), attrib=theAttr)
|
ET.SubElement(xEntry, _mkTag("style", "text-properties"), attrib=theAttr)
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|
||||||
@@ -1299,7 +1290,7 @@ class ODTTextStyle:
|
|||||||
theAttr = {}
|
theAttr = {}
|
||||||
theAttr[_mkTag("style", "name")] = xName
|
theAttr[_mkTag("style", "name")] = xName
|
||||||
theAttr[_mkTag("style", "family")] = "text"
|
theAttr[_mkTag("style", "family")] = "text"
|
||||||
xEntry = etree.SubElement(xParent, _mkTag("style", "style"), attrib=theAttr)
|
xEntry = ET.SubElement(xParent, _mkTag("style", "style"), attrib=theAttr)
|
||||||
|
|
||||||
theAttr = {}
|
theAttr = {}
|
||||||
for aName, (aNm, aVal) in self._tAttr.items():
|
for aName, (aNm, aVal) in self._tAttr.items():
|
||||||
@@ -1307,7 +1298,7 @@ class ODTTextStyle:
|
|||||||
theAttr[_mkTag(aNm, aName)] = aVal
|
theAttr[_mkTag(aNm, aName)] = aVal
|
||||||
|
|
||||||
if theAttr:
|
if theAttr:
|
||||||
etree.SubElement(xEntry, _mkTag("style", "text-properties"), attrib=theAttr)
|
ET.SubElement(xEntry, _mkTag("style", "text-properties"), attrib=theAttr)
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|
||||||
@@ -1328,8 +1319,6 @@ class XMLParagraph:
|
|||||||
"""This is a helper class to manage the text content of a single
|
"""This is a helper class to manage the text content of a single
|
||||||
XML element using mixed content tags.
|
XML element using mixed content tags.
|
||||||
|
|
||||||
See: https://lxml.de/tutorial.html#the-element-class
|
|
||||||
|
|
||||||
Rules:
|
Rules:
|
||||||
* The root tag can only have text set, never tail.
|
* The root tag can only have text set, never tail.
|
||||||
* Any span must be under root, and the text in the span is set in
|
* Any span must be under root, and the text in the span is set in
|
||||||
@@ -1349,8 +1338,8 @@ class XMLParagraph:
|
|||||||
def __init__(self, xRoot):
|
def __init__(self, xRoot):
|
||||||
|
|
||||||
self._xRoot = xRoot
|
self._xRoot = xRoot
|
||||||
self._xTail = None
|
self._xTail = ET.Element("")
|
||||||
self._xSing = None
|
self._xSing = ET.Element("")
|
||||||
|
|
||||||
self._nState = X_ROOT_TEXT
|
self._nState = X_ROOT_TEXT
|
||||||
self._chrPos = 0
|
self._chrPos = 0
|
||||||
@@ -1380,26 +1369,26 @@ class XMLParagraph:
|
|||||||
|
|
||||||
if c == "\n":
|
if c == "\n":
|
||||||
if self._nState in (X_ROOT_TEXT, X_ROOT_TAIL):
|
if self._nState in (X_ROOT_TEXT, X_ROOT_TAIL):
|
||||||
self._xTail = etree.SubElement(self._xRoot, TAG_BR)
|
self._xTail = ET.SubElement(self._xRoot, TAG_BR)
|
||||||
self._xTail.tail = ""
|
self._xTail.tail = ""
|
||||||
self._nState = X_ROOT_TAIL
|
self._nState = X_ROOT_TAIL
|
||||||
self._chrPos += 1
|
self._chrPos += 1
|
||||||
|
|
||||||
elif self._nState in (X_SPAN_TEXT, X_SPAN_SING):
|
elif self._nState in (X_SPAN_TEXT, X_SPAN_SING):
|
||||||
self._xSing = etree.SubElement(self._xTail, TAG_BR)
|
self._xSing = ET.SubElement(self._xTail, TAG_BR)
|
||||||
self._xSing.tail = ""
|
self._xSing.tail = ""
|
||||||
self._nState = X_SPAN_SING
|
self._nState = X_SPAN_SING
|
||||||
self._chrPos += 1
|
self._chrPos += 1
|
||||||
|
|
||||||
elif c == "\t":
|
elif c == "\t":
|
||||||
if self._nState in (X_ROOT_TEXT, X_ROOT_TAIL):
|
if self._nState in (X_ROOT_TEXT, X_ROOT_TAIL):
|
||||||
self._xTail = etree.SubElement(self._xRoot, TAG_TAB)
|
self._xTail = ET.SubElement(self._xRoot, TAG_TAB)
|
||||||
self._xTail.tail = ""
|
self._xTail.tail = ""
|
||||||
self._nState = X_ROOT_TAIL
|
self._nState = X_ROOT_TAIL
|
||||||
self._chrPos += 1
|
self._chrPos += 1
|
||||||
|
|
||||||
elif self._nState in (X_SPAN_TEXT, X_SPAN_SING):
|
elif self._nState in (X_SPAN_TEXT, X_SPAN_SING):
|
||||||
self._xSing = etree.SubElement(self._xTail, TAG_TAB)
|
self._xSing = ET.SubElement(self._xTail, TAG_TAB)
|
||||||
self._xSing.tail = ""
|
self._xSing.tail = ""
|
||||||
self._chrPos += 1
|
self._chrPos += 1
|
||||||
self._nState = X_SPAN_SING
|
self._nState = X_SPAN_SING
|
||||||
@@ -1429,7 +1418,7 @@ class XMLParagraph:
|
|||||||
Therefore we return to the root element level when we're done
|
Therefore we return to the root element level when we're done
|
||||||
processing the text of the span.
|
processing the text of the span.
|
||||||
"""
|
"""
|
||||||
self._xTail = etree.SubElement(self._xRoot, TAG_SPAN, attrib={
|
self._xTail = ET.SubElement(self._xRoot, TAG_SPAN, attrib={
|
||||||
TAG_STNM: tFmt
|
TAG_STNM: tFmt
|
||||||
})
|
})
|
||||||
self._xTail.text = "" # Defaults to None
|
self._xTail.text = "" # Defaults to None
|
||||||
@@ -1482,20 +1471,20 @@ class XMLParagraph:
|
|||||||
|
|
||||||
if nSpaces == 2:
|
if nSpaces == 2:
|
||||||
if self._nState in (X_ROOT_TEXT, X_ROOT_TAIL):
|
if self._nState in (X_ROOT_TEXT, X_ROOT_TAIL):
|
||||||
self._xTail = etree.SubElement(self._xRoot, TAG_SPC)
|
self._xTail = ET.SubElement(self._xRoot, TAG_SPC)
|
||||||
self._xTail.tail = ""
|
self._xTail.tail = ""
|
||||||
self._nState = X_ROOT_TAIL
|
self._nState = X_ROOT_TAIL
|
||||||
self._chrPos += nSpaces - 1
|
self._chrPos += nSpaces - 1
|
||||||
|
|
||||||
elif self._nState in (X_SPAN_TEXT, X_SPAN_SING):
|
elif self._nState in (X_SPAN_TEXT, X_SPAN_SING):
|
||||||
self._xSing = etree.SubElement(self._xTail, TAG_SPC)
|
self._xSing = ET.SubElement(self._xTail, TAG_SPC)
|
||||||
self._xSing.tail = ""
|
self._xSing.tail = ""
|
||||||
self._nState = X_SPAN_SING
|
self._nState = X_SPAN_SING
|
||||||
self._chrPos += nSpaces - 1
|
self._chrPos += nSpaces - 1
|
||||||
|
|
||||||
elif nSpaces > 2:
|
elif nSpaces > 2:
|
||||||
if self._nState in (X_ROOT_TEXT, X_ROOT_TAIL):
|
if self._nState in (X_ROOT_TEXT, X_ROOT_TAIL):
|
||||||
self._xTail = etree.SubElement(self._xRoot, TAG_SPC, attrib={
|
self._xTail = ET.SubElement(self._xRoot, TAG_SPC, attrib={
|
||||||
TAG_NSPC: str(nSpaces - 1)
|
TAG_NSPC: str(nSpaces - 1)
|
||||||
})
|
})
|
||||||
self._xTail.tail = ""
|
self._xTail.tail = ""
|
||||||
@@ -1503,7 +1492,7 @@ class XMLParagraph:
|
|||||||
self._chrPos += nSpaces - 1
|
self._chrPos += nSpaces - 1
|
||||||
|
|
||||||
elif self._nState in (X_SPAN_TEXT, X_SPAN_SING):
|
elif self._nState in (X_SPAN_TEXT, X_SPAN_SING):
|
||||||
self._xSing = etree.SubElement(self._xTail, TAG_SPC, attrib={
|
self._xSing = ET.SubElement(self._xTail, TAG_SPC, attrib={
|
||||||
TAG_NSPC: str(nSpaces - 1)
|
TAG_NSPC: str(nSpaces - 1)
|
||||||
})
|
})
|
||||||
self._xSing.tail = ""
|
self._xSing.tail = ""
|
||||||
|
|||||||
@@ -128,12 +128,6 @@ class NWErrorMessage(QDialog):
|
|||||||
except Exception:
|
except Exception:
|
||||||
kernelVersion = "Unknown"
|
kernelVersion = "Unknown"
|
||||||
|
|
||||||
try:
|
|
||||||
import lxml
|
|
||||||
lxmlVersion = lxml.__version__ # type: ignore
|
|
||||||
except Exception:
|
|
||||||
lxmlVersion = "Unknown"
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import enchant
|
import enchant
|
||||||
enchantVersion = enchant.__version__
|
enchantVersion = enchant.__version__
|
||||||
@@ -148,7 +142,6 @@ class NWErrorMessage(QDialog):
|
|||||||
f"Host OS: {sys.platform} ({kernelVersion})\n"
|
f"Host OS: {sys.platform} ({kernelVersion})\n"
|
||||||
f"Python: {sys.version.split()[0]} ({sys.hexversion:#x})\n"
|
f"Python: {sys.version.split()[0]} ({sys.hexversion:#x})\n"
|
||||||
f"Qt: {QT_VERSION_STR}, PyQt: {PYQT_VERSION_STR}\n"
|
f"Qt: {QT_VERSION_STR}, PyQt: {PYQT_VERSION_STR}\n"
|
||||||
f"lxml: {lxmlVersion}\n"
|
|
||||||
f"enchant: {enchantVersion}\n\n"
|
f"enchant: {enchantVersion}\n\n"
|
||||||
f"{exType.__name__}:\n{str(exValue)}\n\n"
|
f"{exType.__name__}:\n{str(exValue)}\n\n"
|
||||||
f"Traceback:\n{exTrace}\n"
|
f"Traceback:\n{exTrace}\n"
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ You should have received a copy of the GNU General Public License
|
|||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
import sys
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from enum import Enum
|
from enum import Enum
|
||||||
@@ -31,10 +32,10 @@ from pathlib import Path
|
|||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
|
|
||||||
from PyQt5.QtCore import Qt, QTimer, QThreadPool, pyqtSlot
|
from PyQt5.QtCore import Qt, QTimer, QThreadPool, pyqtSlot
|
||||||
from PyQt5.QtGui import QIcon, QKeySequence, QCursor
|
from PyQt5.QtGui import QCursor, QIcon, QKeySequence
|
||||||
from PyQt5.QtWidgets import (
|
from PyQt5.QtWidgets import (
|
||||||
qApp, QMainWindow, QVBoxLayout, QWidget, QSplitter, QFileDialog, QShortcut,
|
qApp, QDialog, QFileDialog, QMainWindow, QMessageBox, QShortcut, QSplitter,
|
||||||
QMessageBox, QDialog, QStackedWidget
|
QStackedWidget, QVBoxLayout, QWidget
|
||||||
)
|
)
|
||||||
|
|
||||||
from novelwriter import CONFIG, __hexversion__
|
from novelwriter import CONFIG, __hexversion__
|
||||||
@@ -89,7 +90,7 @@ class GuiMain(QMainWindow):
|
|||||||
logger.info("Host: %s", CONFIG.hostName)
|
logger.info("Host: %s", CONFIG.hostName)
|
||||||
logger.info("Qt5: %s (0x%06x)", CONFIG.verQtString, CONFIG.verQtValue)
|
logger.info("Qt5: %s (0x%06x)", CONFIG.verQtString, CONFIG.verQtValue)
|
||||||
logger.info("PyQt5: %s (0x%06x)", CONFIG.verPyQtString, CONFIG.verPyQtValue)
|
logger.info("PyQt5: %s (0x%06x)", CONFIG.verPyQtString, CONFIG.verPyQtValue)
|
||||||
logger.info("Python: %s (0x%08x)", CONFIG.verPyString, CONFIG.verPyHexVal)
|
logger.info("Python: %s (0x%08x)", CONFIG.verPyString, sys.hexversion)
|
||||||
logger.info("GUI Language: %s", CONFIG.guiLocale)
|
logger.info("GUI Language: %s", CONFIG.guiLocale)
|
||||||
|
|
||||||
# Core Classes
|
# Core Classes
|
||||||
|
|||||||
+30
-30
@@ -1,6 +1,6 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<novelWriterXML appVersion="2.0.7" hexVersion="0x020007f0" fileVersion="1.5" timeStamp="2023-04-15 20:52:06">
|
<novelWriterXML appVersion="2.0.7" hexVersion="0x020007f0" fileVersion="1.5" timeStamp="2023-05-29 21:29:35">
|
||||||
<project id="e2be99af-f9bf-4403-857a-c3d1ac25abea" saveCount="1475" autoCount="237" editTime="74579">
|
<project id="e2be99af-f9bf-4403-857a-c3d1ac25abea" saveCount="1505" autoCount="237" editTime="74902">
|
||||||
<name>Sample Project</name>
|
<name>Sample Project</name>
|
||||||
<title>Sample Project</title>
|
<title>Sample Project</title>
|
||||||
<author>Jane Smith</author>
|
<author>Jane Smith</author>
|
||||||
@@ -25,7 +25,7 @@
|
|||||||
<entry key="chapter">Chapter %chw%: %title%</entry>
|
<entry key="chapter">Chapter %chw%: %title%</entry>
|
||||||
<entry key="unnumbered">%title%</entry>
|
<entry key="unnumbered">%title%</entry>
|
||||||
<entry key="scene">Scene %ch%.%sc%: %title%</entry>
|
<entry key="scene">Scene %ch%.%sc%: %title%</entry>
|
||||||
<entry key="section"></entry>
|
<entry key="section" />
|
||||||
</titleFormat>
|
</titleFormat>
|
||||||
<status>
|
<status>
|
||||||
<entry key="sf12341" count="4" red="100" green="100" blue="100">New</entry>
|
<entry key="sf12341" count="4" red="100" green="100" blue="100">New</entry>
|
||||||
@@ -45,111 +45,111 @@
|
|||||||
</settings>
|
</settings>
|
||||||
<content items="27" novelWords="954" notesWords="409">
|
<content items="27" novelWords="954" notesWords="409">
|
||||||
<item handle="7031beac91f75" parent="None" root="7031beac91f75" order="0" type="ROOT" class="NOVEL">
|
<item handle="7031beac91f75" parent="None" root="7031beac91f75" order="0" type="ROOT" class="NOVEL">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sc24b8f" import="ia857f0">Novel</name>
|
<name status="sc24b8f" import="ia857f0">Novel</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="53b69b83cdafc" parent="7031beac91f75" root="7031beac91f75" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="53b69b83cdafc" parent="7031beac91f75" root="7031beac91f75" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H1" charCount="95" wordCount="19" paraCount="2" cursorPos="31"/>
|
<meta expanded="no" heading="H1" charCount="95" wordCount="19" paraCount="2" cursorPos="31" />
|
||||||
<name status="sc24b8f" import="ia857f0" active="yes">Title Page</name>
|
<name status="sc24b8f" import="ia857f0" active="yes">Title Page</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="974e400180a99" parent="7031beac91f75" root="7031beac91f75" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="974e400180a99" parent="7031beac91f75" root="7031beac91f75" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="251" wordCount="50" paraCount="2" cursorPos="277"/>
|
<meta expanded="no" heading="H0" charCount="251" wordCount="50" paraCount="2" cursorPos="277" />
|
||||||
<name status="sf12341" import="ia857f0" active="yes">Page</name>
|
<name status="sf12341" import="ia857f0" active="yes">Page</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="edca4be2fcaf8" parent="7031beac91f75" root="7031beac91f75" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="edca4be2fcaf8" parent="7031beac91f75" root="7031beac91f75" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H1" charCount="26" wordCount="6" paraCount="1" cursorPos="36"/>
|
<meta expanded="no" heading="H1" charCount="26" wordCount="6" paraCount="1" cursorPos="36" />
|
||||||
<name status="s90e6c9" import="ia857f0" active="yes">Part One</name>
|
<name status="s90e6c9" import="ia857f0" active="yes">Part One</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="6a2d6d5f4f401" parent="7031beac91f75" root="7031beac91f75" order="3" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="6a2d6d5f4f401" parent="7031beac91f75" root="7031beac91f75" order="3" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="yes" heading="H2" charCount="95" wordCount="18" paraCount="1" cursorPos="291"/>
|
<meta expanded="yes" heading="H2" charCount="95" wordCount="18" paraCount="1" cursorPos="291" />
|
||||||
<name status="sf24ce6" import="ia857f0" active="yes">Chapter One</name>
|
<name status="sf24ce6" import="ia857f0" active="yes">Chapter One</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="636b6aa9b697b" parent="6a2d6d5f4f401" root="7031beac91f75" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="636b6aa9b697b" parent="6a2d6d5f4f401" root="7031beac91f75" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H3" charCount="2687" wordCount="479" paraCount="14" cursorPos="67"/>
|
<meta expanded="no" heading="H3" charCount="2687" wordCount="479" paraCount="14" cursorPos="1369" />
|
||||||
<name status="s90e6c9" import="ia857f0" active="yes">Making a Scene</name>
|
<name status="s90e6c9" import="ia857f0" active="yes">Making a Scene</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="bc0cbd2a407f3" parent="6a2d6d5f4f401" root="7031beac91f75" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="bc0cbd2a407f3" parent="6a2d6d5f4f401" root="7031beac91f75" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H3" charCount="548" wordCount="108" paraCount="3" cursorPos="465"/>
|
<meta expanded="no" heading="H3" charCount="548" wordCount="108" paraCount="3" cursorPos="465" />
|
||||||
<name status="s90e6c9" import="ia857f0" active="yes">Another Scene</name>
|
<name status="s90e6c9" import="ia857f0" active="yes">Another Scene</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="ba8a28a246524" parent="7031beac91f75" root="7031beac91f75" order="4" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="ba8a28a246524" parent="7031beac91f75" root="7031beac91f75" order="4" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H2" charCount="617" wordCount="101" paraCount="3" cursorPos="310"/>
|
<meta expanded="no" heading="H2" charCount="617" wordCount="101" paraCount="3" cursorPos="310" />
|
||||||
<name status="s78ea90" import="ia857f0" active="yes">Interlude</name>
|
<name status="s78ea90" import="ia857f0" active="yes">Interlude</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="96b68994dfa3d" parent="7031beac91f75" root="7031beac91f75" order="5" type="FILE" class="NOVEL" layout="NOTE">
|
<item handle="96b68994dfa3d" parent="7031beac91f75" root="7031beac91f75" order="5" type="FILE" class="NOVEL" layout="NOTE">
|
||||||
<meta expanded="no" heading="H1" charCount="1909" wordCount="346" paraCount="7" cursorPos="0"/>
|
<meta expanded="no" heading="H1" charCount="1909" wordCount="346" paraCount="7" cursorPos="0" />
|
||||||
<name status="sf24ce6" import="ia857f0" active="no">A Note on Structure</name>
|
<name status="sf24ce6" import="ia857f0" active="no">A Note on Structure</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="88706ddc78b1b" parent="7031beac91f75" root="7031beac91f75" order="6" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="88706ddc78b1b" parent="7031beac91f75" root="7031beac91f75" order="6" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="yes" heading="H2" charCount="139" wordCount="28" paraCount="1" cursorPos="188"/>
|
<meta expanded="yes" heading="H2" charCount="139" wordCount="28" paraCount="1" cursorPos="188" />
|
||||||
<name status="s90e6c9" import="ia857f0" active="yes">Chapter Two</name>
|
<name status="s90e6c9" import="ia857f0" active="yes">Chapter Two</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="ae7339df26ded" parent="88706ddc78b1b" root="7031beac91f75" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="ae7339df26ded" parent="88706ddc78b1b" root="7031beac91f75" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H3" charCount="189" wordCount="37" paraCount="1" cursorPos="0"/>
|
<meta expanded="no" heading="H3" charCount="189" wordCount="37" paraCount="1" cursorPos="0" />
|
||||||
<name status="s90e6c9" import="ia857f0" active="yes">We Found John!</name>
|
<name status="s90e6c9" import="ia857f0" active="yes">We Found John!</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="e5e47ebf63b1c" parent="None" root="e5e47ebf63b1c" order="1" type="ROOT" class="NOVEL">
|
<item handle="e5e47ebf63b1c" parent="None" root="e5e47ebf63b1c" order="1" type="ROOT" class="NOVEL">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sf12341" import="ia857f0">Sequel</name>
|
<name status="sf12341" import="ia857f0">Sequel</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="bacb7059e3083" parent="e5e47ebf63b1c" root="e5e47ebf63b1c" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="bacb7059e3083" parent="e5e47ebf63b1c" root="e5e47ebf63b1c" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H1" charCount="27" wordCount="5" paraCount="1" cursorPos="100"/>
|
<meta expanded="no" heading="H1" charCount="27" wordCount="5" paraCount="1" cursorPos="100" />
|
||||||
<name status="sc24b8f" import="ia857f0" active="yes">Title Page</name>
|
<name status="sc24b8f" import="ia857f0" active="yes">Title Page</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="a520879ca0b45" parent="e5e47ebf63b1c" root="e5e47ebf63b1c" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="a520879ca0b45" parent="e5e47ebf63b1c" root="e5e47ebf63b1c" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H2" charCount="299" wordCount="55" paraCount="2" cursorPos="104"/>
|
<meta expanded="no" heading="H2" charCount="299" wordCount="55" paraCount="2" cursorPos="104" />
|
||||||
<name status="s90e6c9" import="ia857f0" active="yes">Chapter One</name>
|
<name status="s90e6c9" import="ia857f0" active="yes">Chapter One</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="f6622b4617424" parent="None" root="f6622b4617424" order="2" type="ROOT" class="CHARACTER">
|
<item handle="f6622b4617424" parent="None" root="f6622b4617424" order="2" type="ROOT" class="CHARACTER">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sf12341" import="ia857f0">Characters</name>
|
<name status="sf12341" import="ia857f0">Characters</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="f7e2d9f330615" parent="f6622b4617424" root="f6622b4617424" order="0" type="FOLDER" class="CHARACTER">
|
<item handle="f7e2d9f330615" parent="f6622b4617424" root="f6622b4617424" order="0" type="FOLDER" class="CHARACTER">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sf12341" import="ia857f0">Main Characters</name>
|
<name status="sf12341" import="ia857f0">Main Characters</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="14298de4d9524" parent="f7e2d9f330615" root="f6622b4617424" order="0" type="FILE" class="CHARACTER" layout="NOTE">
|
<item handle="14298de4d9524" parent="f7e2d9f330615" root="f6622b4617424" order="0" type="FILE" class="CHARACTER" layout="NOTE">
|
||||||
<meta expanded="no" heading="H1" charCount="49" wordCount="9" paraCount="1" cursorPos="24"/>
|
<meta expanded="no" heading="H1" charCount="49" wordCount="9" paraCount="1" cursorPos="24" />
|
||||||
<name status="sf12341" import="icfb3a5" active="yes">John Smith</name>
|
<name status="sf12341" import="icfb3a5" active="yes">John Smith</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="bb2c23b3c42cc" parent="f7e2d9f330615" root="f6622b4617424" order="1" type="FILE" class="CHARACTER" layout="NOTE">
|
<item handle="bb2c23b3c42cc" parent="f7e2d9f330615" root="f6622b4617424" order="1" type="FILE" class="CHARACTER" layout="NOTE">
|
||||||
<meta expanded="no" heading="H1" charCount="55" wordCount="9" paraCount="1" cursorPos="25"/>
|
<meta expanded="no" heading="H1" charCount="55" wordCount="9" paraCount="1" cursorPos="25" />
|
||||||
<name status="sf12341" import="i2d7a54" active="yes">Jane Smith</name>
|
<name status="sf12341" import="i2d7a54" active="yes">Jane Smith</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="15c4492bd5107" parent="None" root="15c4492bd5107" order="3" type="ROOT" class="WORLD">
|
<item handle="15c4492bd5107" parent="None" root="15c4492bd5107" order="3" type="ROOT" class="WORLD">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sf12341" import="ia857f0">Locations</name>
|
<name status="sf12341" import="ia857f0">Locations</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="b3e74dbc1f584" parent="15c4492bd5107" root="15c4492bd5107" order="0" type="FILE" class="WORLD" layout="NOTE">
|
<item handle="b3e74dbc1f584" parent="15c4492bd5107" root="15c4492bd5107" order="0" type="FILE" class="WORLD" layout="NOTE">
|
||||||
<meta expanded="no" heading="H1" charCount="76" wordCount="15" paraCount="1" cursorPos="20"/>
|
<meta expanded="no" heading="H1" charCount="76" wordCount="15" paraCount="1" cursorPos="20" />
|
||||||
<name status="sf12341" import="i56be10" active="yes">Earth</name>
|
<name status="sf12341" import="i56be10" active="yes">Earth</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="f1471bef9f2ae" parent="15c4492bd5107" root="15c4492bd5107" order="1" type="FILE" class="WORLD" layout="NOTE">
|
<item handle="f1471bef9f2ae" parent="15c4492bd5107" root="15c4492bd5107" order="1" type="FILE" class="WORLD" layout="NOTE">
|
||||||
<meta expanded="no" heading="H1" charCount="115" wordCount="24" paraCount="1" cursorPos="133"/>
|
<meta expanded="no" heading="H1" charCount="115" wordCount="24" paraCount="1" cursorPos="133" />
|
||||||
<name status="sf12341" import="icfb3a5" active="yes">Space</name>
|
<name status="sf12341" import="icfb3a5" active="yes">Space</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="5eaea4e8cdee8" parent="15c4492bd5107" root="15c4492bd5107" order="2" type="FILE" class="WORLD" layout="NOTE">
|
<item handle="5eaea4e8cdee8" parent="15c4492bd5107" root="15c4492bd5107" order="2" type="FILE" class="WORLD" layout="NOTE">
|
||||||
<meta expanded="no" heading="H1" charCount="28" wordCount="6" paraCount="1" cursorPos="45"/>
|
<meta expanded="no" heading="H1" charCount="28" wordCount="6" paraCount="1" cursorPos="45" />
|
||||||
<name status="sf12341" import="i2d7a54" active="yes">Mars</name>
|
<name status="sf12341" import="i2d7a54" active="yes">Mars</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="6827118336ac1" parent="None" root="6827118336ac1" order="4" type="ROOT" class="ARCHIVE">
|
<item handle="6827118336ac1" parent="None" root="6827118336ac1" order="4" type="ROOT" class="ARCHIVE">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sf12341" import="ia857f0">Archive</name>
|
<name status="sf12341" import="ia857f0">Archive</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="ae9bf3c3ea159" parent="6827118336ac1" root="6827118336ac1" order="0" type="FOLDER" class="ARCHIVE">
|
<item handle="ae9bf3c3ea159" parent="6827118336ac1" root="6827118336ac1" order="0" type="FOLDER" class="ARCHIVE">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sf12341" import="ia857f0">Scenes</name>
|
<name status="sf12341" import="ia857f0">Scenes</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="8a5deb88c0e97" parent="ae9bf3c3ea159" root="6827118336ac1" order="0" type="FILE" class="ARCHIVE" layout="DOCUMENT">
|
<item handle="8a5deb88c0e97" parent="ae9bf3c3ea159" root="6827118336ac1" order="0" type="FILE" class="ARCHIVE" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H3" charCount="232" wordCount="42" paraCount="1" cursorPos="239"/>
|
<meta expanded="no" heading="H3" charCount="232" wordCount="42" paraCount="1" cursorPos="239" />
|
||||||
<name status="s90e6c9" import="ia857f0" active="yes">Old File</name>
|
<name status="s90e6c9" import="ia857f0" active="yes">Old File</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="98acd8c76c93a" parent="None" root="98acd8c76c93a" order="5" type="ROOT" class="TRASH">
|
<item handle="98acd8c76c93a" parent="None" root="98acd8c76c93a" order="5" type="ROOT" class="TRASH">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sf12341" import="ia857f0">Trash</name>
|
<name status="sf12341" import="ia857f0">Trash</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="b8136a5a774a0" parent="98acd8c76c93a" root="98acd8c76c93a" order="0" type="FILE" class="TRASH" layout="DOCUMENT">
|
<item handle="b8136a5a774a0" parent="98acd8c76c93a" root="98acd8c76c93a" order="0" type="FILE" class="TRASH" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H3" charCount="30" wordCount="6" paraCount="1" cursorPos="36"/>
|
<meta expanded="no" heading="H3" charCount="30" wordCount="6" paraCount="1" cursorPos="36" />
|
||||||
<name status="sf12341" import="ia857f0" active="yes">Delete Me!</name>
|
<name status="sf12341" import="ia857f0" active="yes">Delete Me!</name>
|
||||||
</item>
|
</item>
|
||||||
</content>
|
</content>
|
||||||
|
|||||||
@@ -35,7 +35,6 @@ include_package_data = True
|
|||||||
packages = find_namespace:
|
packages = find_namespace:
|
||||||
install_requires =
|
install_requires =
|
||||||
pyqt5>=5.10
|
pyqt5>=5.10
|
||||||
lxml>=4.2.0
|
|
||||||
pyenchant>=3.0.0
|
pyenchant>=3.0.0
|
||||||
|
|
||||||
[options.packages.find]
|
[options.packages.find]
|
||||||
|
|||||||
@@ -2,14 +2,14 @@ Source: novelwriter
|
|||||||
Maintainer: Veronica Berglyd Olsen <code@vkbo.net>
|
Maintainer: Veronica Berglyd Olsen <code@vkbo.net>
|
||||||
Section: text
|
Section: text
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Build-Depends: dh-python, python3-setuptools, python3-all, debhelper (>= 9), python3 (>=3.7), python3-pyqt5 (>= 5.10), python3-lxml (>= 4.0), python3-enchant (>= 2.0)
|
Build-Depends: dh-python, python3-setuptools, python3-all, debhelper (>= 9), python3 (>=3.7), python3-pyqt5 (>= 5.10), python3-enchant (>= 2.0)
|
||||||
Standards-Version: 4.5.1
|
Standards-Version: 4.5.1
|
||||||
Homepage: https://novelwriter.io
|
Homepage: https://novelwriter.io
|
||||||
X-Python3-Version: >= 3.7
|
X-Python3-Version: >= 3.7
|
||||||
|
|
||||||
Package: novelwriter
|
Package: novelwriter
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Depends: ${misc:Depends}, ${python3:Depends}, python3 (>=3.7), python3-pyqt5 (>= 5.10), python3-lxml (>= 4.0), python3-enchant (>= 2.0)
|
Depends: ${misc:Depends}, ${python3:Depends}, python3 (>=3.7), python3-pyqt5 (>= 5.10), python3-enchant (>= 2.0)
|
||||||
Description: A markdown-like text editor for planning and writing novels
|
Description: A markdown-like text editor for planning and writing novels
|
||||||
novelWriter is a plain text editor designed for writing novels assembled from
|
novelWriter is a plain text editor designed for writing novels assembled from
|
||||||
many smaller text documents. It uses a minimal formatting syntax inspired by
|
many smaller text documents. It uses a minimal formatting syntax inspired by
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ if exist setup.py (
|
|||||||
)
|
)
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
:: Install the PyQt5, lxml and pyenchant dependencies
|
:: Install the PyQt5 and pyenchant dependencies
|
||||||
pip install --user pywin32 -r requirements.txt
|
pip install --user pywin32 -r requirements.txt
|
||||||
|
|
||||||
:: Create the desktop and start menu icons
|
:: Create the desktop and start menu icons
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ goto afterUninst
|
|||||||
:: Remove the desktop and start menu icons
|
:: Remove the desktop and start menu icons
|
||||||
python setup.py win-uninstall
|
python setup.py win-uninstall
|
||||||
|
|
||||||
:: Remove the PyQt5, lxml and pyenchant dependencies
|
:: Remove the PyQt5 and pyenchant dependencies
|
||||||
pip uninstall --yes -r requirements.txt
|
pip uninstall --yes -r requirements.txt
|
||||||
|
|
||||||
:afterUninst
|
:afterUninst
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
<entry key="chapter">Chapter %chw%: %title%</entry>
|
<entry key="chapter">Chapter %chw%: %title%</entry>
|
||||||
<entry key="unnumbered">%title%</entry>
|
<entry key="unnumbered">%title%</entry>
|
||||||
<entry key="scene">Scene %ch%.%sc%: %title%</entry>
|
<entry key="scene">Scene %ch%.%sc%: %title%</entry>
|
||||||
<entry key="section"></entry>
|
<entry key="section" />
|
||||||
</titleFormat>
|
</titleFormat>
|
||||||
<status>
|
<status>
|
||||||
<entry key="sf12341" count="4" red="100" green="100" blue="100">New</entry>
|
<entry key="sf12341" count="4" red="100" green="100" blue="100">New</entry>
|
||||||
@@ -45,111 +45,111 @@
|
|||||||
</settings>
|
</settings>
|
||||||
<content items="27" novelWords="954" notesWords="409">
|
<content items="27" novelWords="954" notesWords="409">
|
||||||
<item handle="7031beac91f75" parent="None" root="7031beac91f75" order="0" type="ROOT" class="NOVEL">
|
<item handle="7031beac91f75" parent="None" root="7031beac91f75" order="0" type="ROOT" class="NOVEL">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sc24b8f" import="ia857f0">Novel</name>
|
<name status="sc24b8f" import="ia857f0">Novel</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="53b69b83cdafc" parent="7031beac91f75" root="7031beac91f75" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="53b69b83cdafc" parent="7031beac91f75" root="7031beac91f75" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H1" charCount="93" wordCount="19" paraCount="2" cursorPos="119"/>
|
<meta expanded="no" heading="H1" charCount="93" wordCount="19" paraCount="2" cursorPos="119" />
|
||||||
<name status="sc24b8f" import="ia857f0" active="yes">Title Page</name>
|
<name status="sc24b8f" import="ia857f0" active="yes">Title Page</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="974e400180a99" parent="7031beac91f75" root="7031beac91f75" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="974e400180a99" parent="7031beac91f75" root="7031beac91f75" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="251" wordCount="50" paraCount="2" cursorPos="277"/>
|
<meta expanded="no" heading="H0" charCount="251" wordCount="50" paraCount="2" cursorPos="277" />
|
||||||
<name status="sf12341" import="ia857f0" active="yes">Page</name>
|
<name status="sf12341" import="ia857f0" active="yes">Page</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="edca4be2fcaf8" parent="7031beac91f75" root="7031beac91f75" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="edca4be2fcaf8" parent="7031beac91f75" root="7031beac91f75" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H1" charCount="26" wordCount="6" paraCount="1" cursorPos="36"/>
|
<meta expanded="no" heading="H1" charCount="26" wordCount="6" paraCount="1" cursorPos="36" />
|
||||||
<name status="s90e6c9" import="ia857f0" active="yes">Part One</name>
|
<name status="s90e6c9" import="ia857f0" active="yes">Part One</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="6a2d6d5f4f401" parent="7031beac91f75" root="7031beac91f75" order="3" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="6a2d6d5f4f401" parent="7031beac91f75" root="7031beac91f75" order="3" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="yes" heading="H2" charCount="95" wordCount="18" paraCount="1" cursorPos="291"/>
|
<meta expanded="yes" heading="H2" charCount="95" wordCount="18" paraCount="1" cursorPos="291" />
|
||||||
<name status="sf24ce6" import="ia857f0" active="yes">Chapter One</name>
|
<name status="sf24ce6" import="ia857f0" active="yes">Chapter One</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="636b6aa9b697b" parent="6a2d6d5f4f401" root="7031beac91f75" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="636b6aa9b697b" parent="6a2d6d5f4f401" root="7031beac91f75" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H3" charCount="2687" wordCount="479" paraCount="14" cursorPos="67"/>
|
<meta expanded="no" heading="H3" charCount="2687" wordCount="479" paraCount="14" cursorPos="67" />
|
||||||
<name status="s90e6c9" import="ia857f0" active="yes">Making a Scene</name>
|
<name status="s90e6c9" import="ia857f0" active="yes">Making a Scene</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="bc0cbd2a407f3" parent="6a2d6d5f4f401" root="7031beac91f75" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="bc0cbd2a407f3" parent="6a2d6d5f4f401" root="7031beac91f75" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H3" charCount="548" wordCount="108" paraCount="3" cursorPos="465"/>
|
<meta expanded="no" heading="H3" charCount="548" wordCount="108" paraCount="3" cursorPos="465" />
|
||||||
<name status="s90e6c9" import="ia857f0" active="yes">Another Scene</name>
|
<name status="s90e6c9" import="ia857f0" active="yes">Another Scene</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="ba8a28a246524" parent="7031beac91f75" root="7031beac91f75" order="4" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="ba8a28a246524" parent="7031beac91f75" root="7031beac91f75" order="4" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H2" charCount="617" wordCount="101" paraCount="3" cursorPos="310"/>
|
<meta expanded="no" heading="H2" charCount="617" wordCount="101" paraCount="3" cursorPos="310" />
|
||||||
<name status="s78ea90" import="ia857f0" active="yes">Interlude</name>
|
<name status="s78ea90" import="ia857f0" active="yes">Interlude</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="96b68994dfa3d" parent="7031beac91f75" root="7031beac91f75" order="5" type="FILE" class="NOVEL" layout="NOTE">
|
<item handle="96b68994dfa3d" parent="7031beac91f75" root="7031beac91f75" order="5" type="FILE" class="NOVEL" layout="NOTE">
|
||||||
<meta expanded="no" heading="H1" charCount="1909" wordCount="346" paraCount="7" cursorPos="0"/>
|
<meta expanded="no" heading="H1" charCount="1909" wordCount="346" paraCount="7" cursorPos="0" />
|
||||||
<name status="sf24ce6" import="ia857f0" active="no">A Note on Structure</name>
|
<name status="sf24ce6" import="ia857f0" active="no">A Note on Structure</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="88706ddc78b1b" parent="7031beac91f75" root="7031beac91f75" order="6" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="88706ddc78b1b" parent="7031beac91f75" root="7031beac91f75" order="6" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="yes" heading="H2" charCount="139" wordCount="28" paraCount="1" cursorPos="188"/>
|
<meta expanded="yes" heading="H2" charCount="139" wordCount="28" paraCount="1" cursorPos="188" />
|
||||||
<name status="s90e6c9" import="ia857f0" active="yes">Chapter Two</name>
|
<name status="s90e6c9" import="ia857f0" active="yes">Chapter Two</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="ae7339df26ded" parent="88706ddc78b1b" root="7031beac91f75" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="ae7339df26ded" parent="88706ddc78b1b" root="7031beac91f75" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H3" charCount="189" wordCount="37" paraCount="1" cursorPos="0"/>
|
<meta expanded="no" heading="H3" charCount="189" wordCount="37" paraCount="1" cursorPos="0" />
|
||||||
<name status="s90e6c9" import="ia857f0" active="yes">We Found John!</name>
|
<name status="s90e6c9" import="ia857f0" active="yes">We Found John!</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="e5e47ebf63b1c" parent="None" root="e5e47ebf63b1c" order="1" type="ROOT" class="NOVEL">
|
<item handle="e5e47ebf63b1c" parent="None" root="e5e47ebf63b1c" order="1" type="ROOT" class="NOVEL">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sf12341" import="ia857f0">Sequel</name>
|
<name status="sf12341" import="ia857f0">Sequel</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="bacb7059e3083" parent="e5e47ebf63b1c" root="e5e47ebf63b1c" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="bacb7059e3083" parent="e5e47ebf63b1c" root="e5e47ebf63b1c" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H1" charCount="27" wordCount="5" paraCount="1" cursorPos="100"/>
|
<meta expanded="no" heading="H1" charCount="27" wordCount="5" paraCount="1" cursorPos="100" />
|
||||||
<name status="sc24b8f" import="ia857f0" active="yes">Title Page</name>
|
<name status="sc24b8f" import="ia857f0" active="yes">Title Page</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="a520879ca0b45" parent="e5e47ebf63b1c" root="e5e47ebf63b1c" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="a520879ca0b45" parent="e5e47ebf63b1c" root="e5e47ebf63b1c" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H2" charCount="299" wordCount="55" paraCount="2" cursorPos="104"/>
|
<meta expanded="no" heading="H2" charCount="299" wordCount="55" paraCount="2" cursorPos="104" />
|
||||||
<name status="s90e6c9" import="ia857f0" active="yes">Chapter One</name>
|
<name status="s90e6c9" import="ia857f0" active="yes">Chapter One</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="f6622b4617424" parent="None" root="f6622b4617424" order="2" type="ROOT" class="CHARACTER">
|
<item handle="f6622b4617424" parent="None" root="f6622b4617424" order="2" type="ROOT" class="CHARACTER">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sf12341" import="ia857f0">Characters</name>
|
<name status="sf12341" import="ia857f0">Characters</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="f7e2d9f330615" parent="f6622b4617424" root="f6622b4617424" order="0" type="FOLDER" class="CHARACTER">
|
<item handle="f7e2d9f330615" parent="f6622b4617424" root="f6622b4617424" order="0" type="FOLDER" class="CHARACTER">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sf12341" import="ia857f0">Main Characters</name>
|
<name status="sf12341" import="ia857f0">Main Characters</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="14298de4d9524" parent="f7e2d9f330615" root="f6622b4617424" order="0" type="FILE" class="CHARACTER" layout="NOTE">
|
<item handle="14298de4d9524" parent="f7e2d9f330615" root="f6622b4617424" order="0" type="FILE" class="CHARACTER" layout="NOTE">
|
||||||
<meta expanded="no" heading="H1" charCount="49" wordCount="9" paraCount="1" cursorPos="24"/>
|
<meta expanded="no" heading="H1" charCount="49" wordCount="9" paraCount="1" cursorPos="24" />
|
||||||
<name status="sf12341" import="icfb3a5" active="yes">John Smith</name>
|
<name status="sf12341" import="icfb3a5" active="yes">John Smith</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="bb2c23b3c42cc" parent="f7e2d9f330615" root="f6622b4617424" order="1" type="FILE" class="CHARACTER" layout="NOTE">
|
<item handle="bb2c23b3c42cc" parent="f7e2d9f330615" root="f6622b4617424" order="1" type="FILE" class="CHARACTER" layout="NOTE">
|
||||||
<meta expanded="no" heading="H1" charCount="55" wordCount="9" paraCount="1" cursorPos="25"/>
|
<meta expanded="no" heading="H1" charCount="55" wordCount="9" paraCount="1" cursorPos="25" />
|
||||||
<name status="sf12341" import="i2d7a54" active="yes">Jane Smith</name>
|
<name status="sf12341" import="i2d7a54" active="yes">Jane Smith</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="15c4492bd5107" parent="None" root="15c4492bd5107" order="3" type="ROOT" class="WORLD">
|
<item handle="15c4492bd5107" parent="None" root="15c4492bd5107" order="3" type="ROOT" class="WORLD">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sf12341" import="ia857f0">Locations</name>
|
<name status="sf12341" import="ia857f0">Locations</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="b3e74dbc1f584" parent="15c4492bd5107" root="15c4492bd5107" order="0" type="FILE" class="WORLD" layout="NOTE">
|
<item handle="b3e74dbc1f584" parent="15c4492bd5107" root="15c4492bd5107" order="0" type="FILE" class="WORLD" layout="NOTE">
|
||||||
<meta expanded="no" heading="H1" charCount="76" wordCount="15" paraCount="1" cursorPos="20"/>
|
<meta expanded="no" heading="H1" charCount="76" wordCount="15" paraCount="1" cursorPos="20" />
|
||||||
<name status="sf12341" import="i56be10" active="yes">Earth</name>
|
<name status="sf12341" import="i56be10" active="yes">Earth</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="f1471bef9f2ae" parent="15c4492bd5107" root="15c4492bd5107" order="1" type="FILE" class="WORLD" layout="NOTE">
|
<item handle="f1471bef9f2ae" parent="15c4492bd5107" root="15c4492bd5107" order="1" type="FILE" class="WORLD" layout="NOTE">
|
||||||
<meta expanded="no" heading="H1" charCount="115" wordCount="24" paraCount="1" cursorPos="133"/>
|
<meta expanded="no" heading="H1" charCount="115" wordCount="24" paraCount="1" cursorPos="133" />
|
||||||
<name status="sf12341" import="icfb3a5" active="yes">Space</name>
|
<name status="sf12341" import="icfb3a5" active="yes">Space</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="5eaea4e8cdee8" parent="15c4492bd5107" root="15c4492bd5107" order="2" type="FILE" class="WORLD" layout="NOTE">
|
<item handle="5eaea4e8cdee8" parent="15c4492bd5107" root="15c4492bd5107" order="2" type="FILE" class="WORLD" layout="NOTE">
|
||||||
<meta expanded="no" heading="H1" charCount="28" wordCount="6" paraCount="1" cursorPos="45"/>
|
<meta expanded="no" heading="H1" charCount="28" wordCount="6" paraCount="1" cursorPos="45" />
|
||||||
<name status="sf12341" import="i2d7a54" active="yes">Mars</name>
|
<name status="sf12341" import="i2d7a54" active="yes">Mars</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="6827118336ac1" parent="None" root="6827118336ac1" order="4" type="ROOT" class="ARCHIVE">
|
<item handle="6827118336ac1" parent="None" root="6827118336ac1" order="4" type="ROOT" class="ARCHIVE">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sf12341" import="ia857f0">Archive</name>
|
<name status="sf12341" import="ia857f0">Archive</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="ae9bf3c3ea159" parent="6827118336ac1" root="6827118336ac1" order="0" type="FOLDER" class="ARCHIVE">
|
<item handle="ae9bf3c3ea159" parent="6827118336ac1" root="6827118336ac1" order="0" type="FOLDER" class="ARCHIVE">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sf12341" import="ia857f0">Scenes</name>
|
<name status="sf12341" import="ia857f0">Scenes</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="8a5deb88c0e97" parent="ae9bf3c3ea159" root="6827118336ac1" order="0" type="FILE" class="ARCHIVE" layout="DOCUMENT">
|
<item handle="8a5deb88c0e97" parent="ae9bf3c3ea159" root="6827118336ac1" order="0" type="FILE" class="ARCHIVE" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H3" charCount="232" wordCount="42" paraCount="1" cursorPos="239"/>
|
<meta expanded="no" heading="H3" charCount="232" wordCount="42" paraCount="1" cursorPos="239" />
|
||||||
<name status="s90e6c9" import="ia857f0" active="yes">Old File</name>
|
<name status="s90e6c9" import="ia857f0" active="yes">Old File</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="98acd8c76c93a" parent="None" root="98acd8c76c93a" order="5" type="ROOT" class="TRASH">
|
<item handle="98acd8c76c93a" parent="None" root="98acd8c76c93a" order="5" type="ROOT" class="TRASH">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sf12341" import="ia857f0">Trash</name>
|
<name status="sf12341" import="ia857f0">Trash</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="b8136a5a774a0" parent="98acd8c76c93a" root="98acd8c76c93a" order="0" type="FILE" class="TRASH" layout="DOCUMENT">
|
<item handle="b8136a5a774a0" parent="98acd8c76c93a" root="98acd8c76c93a" order="0" type="FILE" class="TRASH" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H3" charCount="30" wordCount="6" paraCount="1" cursorPos="36"/>
|
<meta expanded="no" heading="H3" charCount="30" wordCount="6" paraCount="1" cursorPos="36" />
|
||||||
<name status="sf12341" import="ia857f0" active="yes">Delete Me!</name>
|
<name status="sf12341" import="ia857f0" active="yes">Delete Me!</name>
|
||||||
</item>
|
</item>
|
||||||
</content>
|
</content>
|
||||||
|
|||||||
+25
-25
@@ -1,6 +1,6 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<novelWriterXML appVersion="2.0-rc1" hexVersion="0x020000c1" fileVersion="1.5" timeStamp="2022-11-07 13:00:43">
|
<novelWriterXML appVersion="2.0.7" hexVersion="0x020007f0" fileVersion="1.5" timeStamp="2023-05-29 17:10:19">
|
||||||
<project id="5ac0df12-8b8b-476b-9905-21d33685687c" saveCount="38" autoCount="24" editTime="1900">
|
<project id="5ac0df12-8b8b-476b-9905-21d33685687c" saveCount="40" autoCount="24" editTime="1905">
|
||||||
<name>Lorem Ipsum</name>
|
<name>Lorem Ipsum</name>
|
||||||
<title>Lorem Ipsum</title>
|
<title>Lorem Ipsum</title>
|
||||||
<author>lipsum.com</author>
|
<author>lipsum.com</author>
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
<entry key="chapter">Chapter %ch%: %title%</entry>
|
<entry key="chapter">Chapter %ch%: %title%</entry>
|
||||||
<entry key="unnumbered">%title%</entry>
|
<entry key="unnumbered">%title%</entry>
|
||||||
<entry key="scene">* * *</entry>
|
<entry key="scene">* * *</entry>
|
||||||
<entry key="section"></entry>
|
<entry key="section" />
|
||||||
</titleFormat>
|
</titleFormat>
|
||||||
<status>
|
<status>
|
||||||
<entry key="sbaa94f" count="3" red="100" green="100" blue="100">New</entry>
|
<entry key="sbaa94f" count="3" red="100" green="100" blue="100">New</entry>
|
||||||
@@ -41,88 +41,88 @@
|
|||||||
</settings>
|
</settings>
|
||||||
<content items="21" novelWords="3109" notesWords="738">
|
<content items="21" novelWords="3109" notesWords="738">
|
||||||
<item handle="b3643d0f92e32" parent="None" root="b3643d0f92e32" order="0" type="ROOT" class="NOVEL">
|
<item handle="b3643d0f92e32" parent="None" root="b3643d0f92e32" order="0" type="ROOT" class="NOVEL">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sbaa94f" import="i613591">Novel</name>
|
<name status="sbaa94f" import="i613591">Novel</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="7a992350f3eb6" parent="b3643d0f92e32" root="b3643d0f92e32" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="7a992350f3eb6" parent="b3643d0f92e32" root="b3643d0f92e32" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H1" charCount="230" wordCount="40" paraCount="3" cursorPos="148"/>
|
<meta expanded="no" heading="H1" charCount="230" wordCount="40" paraCount="3" cursorPos="148" />
|
||||||
<name status="sedd043" import="i613591" active="yes">Lorem Ipsum</name>
|
<name status="sedd043" import="i613591" active="yes">Lorem Ipsum</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="8c58a65414c23" parent="b3643d0f92e32" root="b3643d0f92e32" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="8c58a65414c23" parent="b3643d0f92e32" root="b3643d0f92e32" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="1058" wordCount="176" paraCount="2" cursorPos="43"/>
|
<meta expanded="no" heading="H0" charCount="1058" wordCount="176" paraCount="2" cursorPos="43" />
|
||||||
<name status="sedd043" import="i613591" active="yes">Front Matter</name>
|
<name status="sedd043" import="i613591" active="yes">Front Matter</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="88d59a277361b" parent="b3643d0f92e32" root="b3643d0f92e32" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="88d59a277361b" parent="b3643d0f92e32" root="b3643d0f92e32" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H2" charCount="584" wordCount="92" paraCount="1" cursorPos="4"/>
|
<meta expanded="no" heading="H2" charCount="584" wordCount="92" paraCount="1" cursorPos="4" />
|
||||||
<name status="s92a87b" import="i613591" active="yes">Prologue</name>
|
<name status="s92a87b" import="i613591" active="yes">Prologue</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="db7e733775d4d" parent="b3643d0f92e32" root="b3643d0f92e32" order="3" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="db7e733775d4d" parent="b3643d0f92e32" root="b3643d0f92e32" order="3" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H1" charCount="35" wordCount="6" paraCount="1" cursorPos="42"/>
|
<meta expanded="no" heading="H1" charCount="35" wordCount="6" paraCount="1" cursorPos="42" />
|
||||||
<name status="sbaa94f" import="i613591" active="yes">Act One</name>
|
<name status="sbaa94f" import="i613591" active="yes">Act One</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="45e6b01ca35c1" parent="b3643d0f92e32" root="b3643d0f92e32" order="4" type="FOLDER" class="NOVEL">
|
<item handle="45e6b01ca35c1" parent="b3643d0f92e32" root="b3643d0f92e32" order="4" type="FOLDER" class="NOVEL">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s92a87b" import="i613591">Chapter One</name>
|
<name status="s92a87b" import="i613591">Chapter One</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="fb609cd8319dc" parent="45e6b01ca35c1" root="b3643d0f92e32" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="fb609cd8319dc" parent="45e6b01ca35c1" root="b3643d0f92e32" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H2" charCount="419" wordCount="67" paraCount="1" cursorPos="56"/>
|
<meta expanded="no" heading="H2" charCount="419" wordCount="67" paraCount="1" cursorPos="56" />
|
||||||
<name status="s92a87b" import="i613591" active="yes">Chapter One</name>
|
<name status="s92a87b" import="i613591" active="yes">Chapter One</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="88243afbe5ed8" parent="45e6b01ca35c1" root="b3643d0f92e32" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="88243afbe5ed8" parent="45e6b01ca35c1" root="b3643d0f92e32" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H3" charCount="2758" wordCount="404" paraCount="4" cursorPos="1528"/>
|
<meta expanded="no" heading="H3" charCount="2758" wordCount="404" paraCount="4" cursorPos="1528" />
|
||||||
<name status="sedd043" import="i613591" active="yes">Scene One</name>
|
<name status="sedd043" import="i613591" active="yes">Scene One</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="f96ec11c6a3da" parent="45e6b01ca35c1" root="b3643d0f92e32" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="f96ec11c6a3da" parent="45e6b01ca35c1" root="b3643d0f92e32" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H3" charCount="4043" wordCount="600" paraCount="6" cursorPos="2335"/>
|
<meta expanded="no" heading="H3" charCount="4043" wordCount="600" paraCount="6" cursorPos="2335" />
|
||||||
<name status="sedd043" import="i613591" active="yes">Scene Two</name>
|
<name status="sedd043" import="i613591" active="yes">Scene Two</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="846352075de7d" parent="b3643d0f92e32" root="b3643d0f92e32" order="5" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="846352075de7d" parent="b3643d0f92e32" root="b3643d0f92e32" order="5" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H2" charCount="631" wordCount="109" paraCount="3" cursorPos="376"/>
|
<meta expanded="no" heading="H2" charCount="631" wordCount="109" paraCount="3" cursorPos="376" />
|
||||||
<name status="sbaa94f" import="i613591" active="no">Interlude</name>
|
<name status="sbaa94f" import="i613591" active="no">Interlude</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="6bd935d2490cd" parent="b3643d0f92e32" root="b3643d0f92e32" order="6" type="FOLDER" class="NOVEL">
|
<item handle="6bd935d2490cd" parent="b3643d0f92e32" root="b3643d0f92e32" order="6" type="FOLDER" class="NOVEL">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s92a87b" import="i613591">Chapter Two</name>
|
<name status="s92a87b" import="i613591">Chapter Two</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="441420a886d82" parent="6bd935d2490cd" root="b3643d0f92e32" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="441420a886d82" parent="6bd935d2490cd" root="b3643d0f92e32" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H2" charCount="477" wordCount="70" paraCount="1" cursorPos="56"/>
|
<meta expanded="no" heading="H2" charCount="477" wordCount="70" paraCount="1" cursorPos="56" />
|
||||||
<name status="s92a87b" import="i613591" active="yes">Chapter Two</name>
|
<name status="s92a87b" import="i613591" active="yes">Chapter Two</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="eb103bc70c90c" parent="6bd935d2490cd" root="b3643d0f92e32" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="eb103bc70c90c" parent="6bd935d2490cd" root="b3643d0f92e32" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H3" charCount="3006" wordCount="439" paraCount="4" cursorPos="57"/>
|
<meta expanded="no" heading="H3" charCount="3006" wordCount="439" paraCount="4" cursorPos="57" />
|
||||||
<name status="sedd043" import="i613591" active="yes">Scene Three</name>
|
<name status="sedd043" import="i613591" active="yes">Scene Three</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="f8c0562e50f1b" parent="6bd935d2490cd" root="b3643d0f92e32" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="f8c0562e50f1b" parent="6bd935d2490cd" root="b3643d0f92e32" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H3" charCount="3839" wordCount="563" paraCount="6" cursorPos="56"/>
|
<meta expanded="no" heading="H3" charCount="3839" wordCount="563" paraCount="6" cursorPos="56" />
|
||||||
<name status="sedd043" import="i613591" active="yes">Scene Four</name>
|
<name status="sedd043" import="i613591" active="yes">Scene Four</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="47666c91c7ccf" parent="6bd935d2490cd" root="b3643d0f92e32" order="3" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="47666c91c7ccf" parent="6bd935d2490cd" root="b3643d0f92e32" order="3" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H3" charCount="3644" wordCount="543" paraCount="5" cursorPos="351"/>
|
<meta expanded="no" heading="H3" charCount="3644" wordCount="543" paraCount="5" cursorPos="351" />
|
||||||
<name status="sedd043" import="i613591" active="yes">Scene Five</name>
|
<name status="sedd043" import="i613591" active="yes">Scene Five</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="67a8707f2f249" parent="None" root="67a8707f2f249" order="1" type="ROOT" class="CHARACTER">
|
<item handle="67a8707f2f249" parent="None" root="67a8707f2f249" order="1" type="ROOT" class="CHARACTER">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sbaa94f" import="i613591">Characters</name>
|
<name status="sbaa94f" import="i613591">Characters</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="4c4f28287af27" parent="67a8707f2f249" root="67a8707f2f249" order="0" type="FILE" class="CHARACTER" layout="NOTE">
|
<item handle="4c4f28287af27" parent="67a8707f2f249" root="67a8707f2f249" order="0" type="FILE" class="CHARACTER" layout="NOTE">
|
||||||
<meta expanded="no" heading="H1" charCount="1864" wordCount="284" paraCount="3" cursorPos="1883"/>
|
<meta expanded="no" heading="H1" charCount="1864" wordCount="284" paraCount="3" cursorPos="1883" />
|
||||||
<name status="sbaa94f" import="i613591" active="yes">Mr. Nobody</name>
|
<name status="sbaa94f" import="i613591" active="yes">Mr. Nobody</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="6c6afb1247750" parent="None" root="6c6afb1247750" order="2" type="ROOT" class="PLOT">
|
<item handle="6c6afb1247750" parent="None" root="6c6afb1247750" order="2" type="ROOT" class="PLOT">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sbaa94f" import="i613591">Plot</name>
|
<name status="sbaa94f" import="i613591">Plot</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="2426c6f0ca922" parent="6c6afb1247750" root="6c6afb1247750" order="0" type="FILE" class="PLOT" layout="NOTE">
|
<item handle="2426c6f0ca922" parent="6c6afb1247750" root="6c6afb1247750" order="0" type="FILE" class="PLOT" layout="NOTE">
|
||||||
<meta expanded="no" heading="H1" charCount="1369" wordCount="195" paraCount="2" cursorPos="1387"/>
|
<meta expanded="no" heading="H1" charCount="1369" wordCount="195" paraCount="2" cursorPos="1387" />
|
||||||
<name status="sbaa94f" import="i613591" active="yes">Main</name>
|
<name status="sbaa94f" import="i613591" active="yes">Main</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="60bdf227455cc" parent="None" root="60bdf227455cc" order="3" type="ROOT" class="WORLD">
|
<item handle="60bdf227455cc" parent="None" root="60bdf227455cc" order="3" type="ROOT" class="WORLD">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sbaa94f" import="i613591">World</name>
|
<name status="sbaa94f" import="i613591">World</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="04468803b92e1" parent="60bdf227455cc" root="60bdf227455cc" order="0" type="FILE" class="WORLD" layout="NOTE">
|
<item handle="04468803b92e1" parent="60bdf227455cc" root="60bdf227455cc" order="0" type="FILE" class="WORLD" layout="NOTE">
|
||||||
<meta expanded="no" heading="H1" charCount="1770" wordCount="259" paraCount="3" cursorPos="1792"/>
|
<meta expanded="no" heading="H1" charCount="1770" wordCount="259" paraCount="3" cursorPos="1792" />
|
||||||
<name status="sbaa94f" import="i613591" active="yes">Ancient Europe</name>
|
<name status="sbaa94f" import="i613591" active="yes">Ancient Europe</name>
|
||||||
</item>
|
</item>
|
||||||
</content>
|
</content>
|
||||||
</novelWriterXML>
|
</novelWriterXML>
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<novelWriterXML appVersion="2.0-rc1" hexVersion="0x020000c1" fileVersion="1.5" timeStamp="2022-11-07 13:05:22">
|
<novelWriterXML appVersion="2.0.7" hexVersion="0x020007f0" fileVersion="1.5" timeStamp="2023-05-29 17:13:44">
|
||||||
<project id="d0f3fe10-c6e6-4310-8bfd-181eb4224eed" saveCount="1" autoCount="1" editTime="0">
|
<project id="d0f3fe10-c6e6-4310-8bfd-181eb4224eed" saveCount="1" autoCount="1" editTime="0">
|
||||||
<name>New Project</name>
|
<name>New Project</name>
|
||||||
<title>New Novel</title>
|
<title>New Novel</title>
|
||||||
@@ -15,13 +15,13 @@
|
|||||||
<entry key="novelTree">None</entry>
|
<entry key="novelTree">None</entry>
|
||||||
<entry key="outline">None</entry>
|
<entry key="outline">None</entry>
|
||||||
</lastHandle>
|
</lastHandle>
|
||||||
<autoReplace/>
|
<autoReplace />
|
||||||
<titleFormat>
|
<titleFormat>
|
||||||
<entry key="title">%title%</entry>
|
<entry key="title">%title%</entry>
|
||||||
<entry key="chapter">%title%</entry>
|
<entry key="chapter">%title%</entry>
|
||||||
<entry key="unnumbered">%title%</entry>
|
<entry key="unnumbered">%title%</entry>
|
||||||
<entry key="scene">* * *</entry>
|
<entry key="scene">* * *</entry>
|
||||||
<entry key="section"></entry>
|
<entry key="section" />
|
||||||
</titleFormat>
|
</titleFormat>
|
||||||
<status>
|
<status>
|
||||||
<entry key="s000000" count="7" red="100" green="100" blue="100">New</entry>
|
<entry key="s000000" count="7" red="100" green="100" blue="100">New</entry>
|
||||||
@@ -38,47 +38,47 @@
|
|||||||
</settings>
|
</settings>
|
||||||
<content items="11" novelWords="10" notesWords="3">
|
<content items="11" novelWords="10" notesWords="3">
|
||||||
<item handle="0000000000008" parent="None" root="0000000000008" order="0" type="ROOT" class="NOVEL">
|
<item handle="0000000000008" parent="None" root="0000000000008" order="0" type="ROOT" class="NOVEL">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Novel</name>
|
<name status="s000000" import="i000004">Novel</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000009" parent="None" root="0000000000009" order="0" type="ROOT" class="PLOT">
|
<item handle="0000000000009" parent="None" root="0000000000009" order="0" type="ROOT" class="PLOT">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Plot</name>
|
<name status="s000000" import="i000004">Plot</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000a" parent="None" root="000000000000a" order="0" type="ROOT" class="CHARACTER">
|
<item handle="000000000000a" parent="None" root="000000000000a" order="0" type="ROOT" class="CHARACTER">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Characters</name>
|
<name status="s000000" import="i000004">Characters</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000b" parent="None" root="000000000000b" order="0" type="ROOT" class="WORLD">
|
<item handle="000000000000b" parent="None" root="000000000000b" order="0" type="ROOT" class="WORLD">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">World</name>
|
<name status="s000000" import="i000004">World</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000c" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000c" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H1" charCount="20" wordCount="5" paraCount="1" cursorPos="0"/>
|
<meta expanded="no" heading="H1" charCount="20" wordCount="5" paraCount="1" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Title Page</name>
|
<name status="s000000" import="i000004" active="yes">Title Page</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000d" parent="0000000000008" root="0000000000008" order="0" type="FOLDER" class="NOVEL">
|
<item handle="000000000000d" parent="0000000000008" root="0000000000008" order="0" type="FOLDER" class="NOVEL">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">New Chapter</name>
|
<name status="s000000" import="i000004">New Chapter</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000e" parent="000000000000d" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000e" parent="000000000000d" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H2" charCount="11" wordCount="2" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H2" charCount="11" wordCount="2" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">New Chapter</name>
|
<name status="s000000" import="i000004" active="yes">New Chapter</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000f" parent="000000000000d" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000f" parent="000000000000d" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H3" charCount="9" wordCount="2" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H3" charCount="9" wordCount="2" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">New Scene</name>
|
<name status="s000000" import="i000004" active="yes">New Scene</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000010" parent="0000000000008" root="0000000000008" order="0" type="FOLDER" class="NOVEL">
|
<item handle="0000000000010" parent="0000000000008" root="0000000000008" order="0" type="FOLDER" class="NOVEL">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Stuff</name>
|
<name status="s000000" import="i000004">Stuff</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000011" parent="0000000000010" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="0000000000011" parent="0000000000010" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H2" charCount="5" wordCount="1" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H2" charCount="5" wordCount="1" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Hello</name>
|
<name status="s000000" import="i000004" active="yes">Hello</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000012" parent="000000000000a" root="000000000000a" order="0" type="FILE" class="CHARACTER" layout="NOTE">
|
<item handle="0000000000012" parent="000000000000a" root="000000000000a" order="0" type="FILE" class="CHARACTER" layout="NOTE">
|
||||||
<meta expanded="no" heading="H1" charCount="11" wordCount="3" paraCount="1" cursorPos="0"/>
|
<meta expanded="no" heading="H1" charCount="11" wordCount="3" paraCount="1" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Jane</name>
|
<name status="s000000" import="i000004" active="yes">Jane</name>
|
||||||
</item>
|
</item>
|
||||||
</content>
|
</content>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<novelWriterXML appVersion="2.0-rc1" hexVersion="0x020000c1" fileVersion="1.5" timeStamp="2022-11-07 13:05:22">
|
<novelWriterXML appVersion="2.0.7" hexVersion="0x020007f0" fileVersion="1.5" timeStamp="2023-05-29 17:13:44">
|
||||||
<project id="d0f3fe10-c6e6-4310-8bfd-181eb4224eed" saveCount="1" autoCount="1" editTime="0">
|
<project id="d0f3fe10-c6e6-4310-8bfd-181eb4224eed" saveCount="1" autoCount="1" editTime="0">
|
||||||
<name>New Project</name>
|
<name>New Project</name>
|
||||||
<title>New Novel</title>
|
<title>New Novel</title>
|
||||||
@@ -15,13 +15,13 @@
|
|||||||
<entry key="novelTree">None</entry>
|
<entry key="novelTree">None</entry>
|
||||||
<entry key="outline">None</entry>
|
<entry key="outline">None</entry>
|
||||||
</lastHandle>
|
</lastHandle>
|
||||||
<autoReplace/>
|
<autoReplace />
|
||||||
<titleFormat>
|
<titleFormat>
|
||||||
<entry key="title">%title%</entry>
|
<entry key="title">%title%</entry>
|
||||||
<entry key="chapter">%title%</entry>
|
<entry key="chapter">%title%</entry>
|
||||||
<entry key="unnumbered">%title%</entry>
|
<entry key="unnumbered">%title%</entry>
|
||||||
<entry key="scene">* * *</entry>
|
<entry key="scene">* * *</entry>
|
||||||
<entry key="section"></entry>
|
<entry key="section" />
|
||||||
</titleFormat>
|
</titleFormat>
|
||||||
<status>
|
<status>
|
||||||
<entry key="s000000" count="6" red="100" green="100" blue="100">New</entry>
|
<entry key="s000000" count="6" red="100" green="100" blue="100">New</entry>
|
||||||
@@ -38,67 +38,67 @@
|
|||||||
</settings>
|
</settings>
|
||||||
<content items="16" novelWords="9" notesWords="0">
|
<content items="16" novelWords="9" notesWords="0">
|
||||||
<item handle="0000000000008" parent="None" root="0000000000008" order="0" type="ROOT" class="NOVEL">
|
<item handle="0000000000008" parent="None" root="0000000000008" order="0" type="ROOT" class="NOVEL">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Novel</name>
|
<name status="s000000" import="i000004">Novel</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000009" parent="None" root="0000000000009" order="0" type="ROOT" class="PLOT">
|
<item handle="0000000000009" parent="None" root="0000000000009" order="0" type="ROOT" class="PLOT">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Plot</name>
|
<name status="s000000" import="i000004">Plot</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000a" parent="None" root="000000000000a" order="0" type="ROOT" class="CHARACTER">
|
<item handle="000000000000a" parent="None" root="000000000000a" order="0" type="ROOT" class="CHARACTER">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Characters</name>
|
<name status="s000000" import="i000004">Characters</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000b" parent="None" root="000000000000b" order="0" type="ROOT" class="WORLD">
|
<item handle="000000000000b" parent="None" root="000000000000b" order="0" type="ROOT" class="WORLD">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">World</name>
|
<name status="s000000" import="i000004">World</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000c" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000c" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H1" charCount="20" wordCount="5" paraCount="1" cursorPos="0"/>
|
<meta expanded="no" heading="H1" charCount="20" wordCount="5" paraCount="1" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Title Page</name>
|
<name status="s000000" import="i000004" active="yes">Title Page</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000d" parent="0000000000008" root="0000000000008" order="0" type="FOLDER" class="NOVEL">
|
<item handle="000000000000d" parent="0000000000008" root="0000000000008" order="0" type="FOLDER" class="NOVEL">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">New Chapter</name>
|
<name status="s000000" import="i000004">New Chapter</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000e" parent="000000000000d" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000e" parent="000000000000d" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H2" charCount="11" wordCount="2" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H2" charCount="11" wordCount="2" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">New Chapter</name>
|
<name status="s000000" import="i000004" active="yes">New Chapter</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000f" parent="000000000000d" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000f" parent="000000000000d" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H3" charCount="9" wordCount="2" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H3" charCount="9" wordCount="2" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">New Scene</name>
|
<name status="s000000" import="i000004" active="yes">New Scene</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000010" parent="None" root="0000000000010" order="0" type="ROOT" class="NOVEL">
|
<item handle="0000000000010" parent="None" root="0000000000010" order="0" type="ROOT" class="NOVEL">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Novel</name>
|
<name status="s000000" import="i000004">Novel</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000011" parent="None" root="0000000000011" order="0" type="ROOT" class="PLOT">
|
<item handle="0000000000011" parent="None" root="0000000000011" order="0" type="ROOT" class="PLOT">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Plot</name>
|
<name status="s000000" import="i000004">Plot</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000012" parent="None" root="0000000000012" order="0" type="ROOT" class="CHARACTER">
|
<item handle="0000000000012" parent="None" root="0000000000012" order="0" type="ROOT" class="CHARACTER">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Characters</name>
|
<name status="s000000" import="i000004">Characters</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000013" parent="None" root="0000000000013" order="0" type="ROOT" class="WORLD">
|
<item handle="0000000000013" parent="None" root="0000000000013" order="0" type="ROOT" class="WORLD">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Locations</name>
|
<name status="s000000" import="i000004">Locations</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000014" parent="None" root="0000000000014" order="0" type="ROOT" class="TIMELINE">
|
<item handle="0000000000014" parent="None" root="0000000000014" order="0" type="ROOT" class="TIMELINE">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Timeline</name>
|
<name status="s000000" import="i000004">Timeline</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000015" parent="None" root="0000000000015" order="0" type="ROOT" class="OBJECT">
|
<item handle="0000000000015" parent="None" root="0000000000015" order="0" type="ROOT" class="OBJECT">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Objects</name>
|
<name status="s000000" import="i000004">Objects</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000016" parent="None" root="0000000000016" order="0" type="ROOT" class="CUSTOM">
|
<item handle="0000000000016" parent="None" root="0000000000016" order="0" type="ROOT" class="CUSTOM">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Custom</name>
|
<name status="s000000" import="i000004">Custom</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000017" parent="None" root="0000000000017" order="0" type="ROOT" class="CUSTOM">
|
<item handle="0000000000017" parent="None" root="0000000000017" order="0" type="ROOT" class="CUSTOM">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Custom</name>
|
<name status="s000000" import="i000004">Custom</name>
|
||||||
</item>
|
</item>
|
||||||
</content>
|
</content>
|
||||||
|
|||||||
@@ -1,72 +1,72 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
|
<office:document xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
|
||||||
<office:meta>
|
<office:meta>
|
||||||
<meta:creation-date>2023-02-12T15:10:11</meta:creation-date>
|
<meta:creation-date>2023-05-29T22:10:15</meta:creation-date>
|
||||||
<meta:generator>novelWriter/2.0.4</meta:generator>
|
<meta:generator>novelWriter/2.0.7</meta:generator>
|
||||||
<meta:initial-creator>Jane Smith</meta:initial-creator>
|
<meta:initial-creator>Jane Smith</meta:initial-creator>
|
||||||
<meta:editing-cycles>1234</meta:editing-cycles>
|
<meta:editing-cycles>1234</meta:editing-cycles>
|
||||||
<meta:editing-duration>P42DT12H34M56S</meta:editing-duration>
|
<meta:editing-duration>P42DT12H34M56S</meta:editing-duration>
|
||||||
<dc:title>Test Project</dc:title>
|
<dc:title>Test Project</dc:title>
|
||||||
<dc:date>2023-02-12T15:10:11</dc:date>
|
<dc:date>2023-05-29T22:10:15</dc:date>
|
||||||
<dc:creator>Jane Smith</dc:creator>
|
<dc:creator>Jane Smith</dc:creator>
|
||||||
</office:meta>
|
</office:meta>
|
||||||
<office:font-face-decls>
|
<office:font-face-decls>
|
||||||
<style:font-face style:name="Liberation Serif" style:font-pitch="variable"/>
|
<style:font-face style:name="Liberation Serif" style:font-pitch="variable" />
|
||||||
</office:font-face-decls>
|
</office:font-face-decls>
|
||||||
<office:styles>
|
<office:styles>
|
||||||
<style:default-style style:family="paragraph">
|
<style:default-style style:family="paragraph">
|
||||||
<style:paragraph-properties style:line-break="strict" style:tab-stop-distance="1.251cm" style:writing-mode="page"/>
|
<style:paragraph-properties style:line-break="strict" style:tab-stop-distance="1.251cm" style:writing-mode="page" />
|
||||||
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="12pt" fo:language="nb" fo:country="NO"/>
|
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="12pt" fo:language="nb" fo:country="NO" />
|
||||||
</style:default-style>
|
</style:default-style>
|
||||||
<style:style style:name="Standard" style:family="paragraph" style:class="text">
|
<style:style style:name="Standard" style:family="paragraph" style:class="text">
|
||||||
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="12pt"/>
|
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="12pt" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Heading" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Text_20_body" style:class="text">
|
<style:style style:name="Heading" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Text_20_body" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.247cm" fo:margin-bottom="0.212cm" fo:keep-with-next="always"/>
|
<style:paragraph-properties fo:margin-top="0.247cm" fo:margin-bottom="0.212cm" fo:keep-with-next="always" />
|
||||||
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="14pt"/>
|
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="14pt" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Header_20_and_20_Footer" style:display-name="Header and Footer" style:family="paragraph" style:parent-style-name="Standard" style:class="extra"/>
|
<style:style style:name="Header_20_and_20_Footer" style:display-name="Header and Footer" style:family="paragraph" style:parent-style-name="Standard" style:class="extra" />
|
||||||
<style:style style:name="Text_20_body" style:family="paragraph" style:display-name="Text body" style:parent-style-name="Standard" style:class="text">
|
<style:style style:name="Text_20_body" style:family="paragraph" style:display-name="Text body" style:parent-style-name="Standard" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.247cm" fo:line-height="115%" fo:text-align="left"/>
|
<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.247cm" fo:line-height="115%" fo:text-align="left" />
|
||||||
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="12pt"/>
|
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="12pt" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Text_20_Meta" style:family="paragraph" style:display-name="Text Meta" style:parent-style-name="Standard" style:class="text">
|
<style:style style:name="Text_20_Meta" style:family="paragraph" style:display-name="Text Meta" style:parent-style-name="Standard" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.247cm" fo:line-height="115%"/>
|
<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.247cm" fo:line-height="115%" />
|
||||||
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="12pt" fo:color="#813709" loext:opacity="100%"/>
|
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="12pt" fo:color="#813709" loext:opacity="100%" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Title" style:family="paragraph" style:display-name="Title" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="chapter">
|
<style:style style:name="Title" style:family="paragraph" style:display-name="Title" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="chapter">
|
||||||
<style:paragraph-properties fo:margin-top="0.423cm" fo:margin-bottom="0.212cm" fo:text-align="center"/>
|
<style:paragraph-properties fo:margin-top="0.423cm" fo:margin-bottom="0.212cm" fo:text-align="center" />
|
||||||
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="30pt" fo:font-weight="bold"/>
|
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="30pt" fo:font-weight="bold" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Heading_20_1" style:family="paragraph" style:display-name="Heading 1" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="1" style:class="text">
|
<style:style style:name="Heading_20_1" style:family="paragraph" style:display-name="Heading 1" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="1" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.423cm" fo:margin-bottom="0.212cm"/>
|
<style:paragraph-properties fo:margin-top="0.423cm" fo:margin-bottom="0.212cm" />
|
||||||
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="24pt" fo:font-weight="bold" fo:color="#2a6099" loext:opacity="100%"/>
|
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="24pt" fo:font-weight="bold" fo:color="#2a6099" loext:opacity="100%" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Heading_20_2" style:family="paragraph" style:display-name="Heading 2" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="2" style:class="text">
|
<style:style style:name="Heading_20_2" style:family="paragraph" style:display-name="Heading 2" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="2" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.353cm" fo:margin-bottom="0.212cm"/>
|
<style:paragraph-properties fo:margin-top="0.353cm" fo:margin-bottom="0.212cm" />
|
||||||
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="19pt" fo:font-weight="bold" fo:color="#2a6099" loext:opacity="100%"/>
|
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="19pt" fo:font-weight="bold" fo:color="#2a6099" loext:opacity="100%" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Heading_20_3" style:family="paragraph" style:display-name="Heading 3" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="3" style:class="text">
|
<style:style style:name="Heading_20_3" style:family="paragraph" style:display-name="Heading 3" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="3" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.247cm" fo:margin-bottom="0.212cm"/>
|
<style:paragraph-properties fo:margin-top="0.247cm" fo:margin-bottom="0.212cm" />
|
||||||
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="16pt" fo:font-weight="bold" fo:color="#444444" loext:opacity="100%"/>
|
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="16pt" fo:font-weight="bold" fo:color="#444444" loext:opacity="100%" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Heading_20_4" style:family="paragraph" style:display-name="Heading 4" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="4" style:class="text">
|
<style:style style:name="Heading_20_4" style:family="paragraph" style:display-name="Heading 4" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="4" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.247cm" fo:margin-bottom="0.212cm"/>
|
<style:paragraph-properties fo:margin-top="0.247cm" fo:margin-bottom="0.212cm" />
|
||||||
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="14pt" fo:font-weight="bold" fo:color="#444444" loext:opacity="100%"/>
|
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="14pt" fo:font-weight="bold" fo:color="#444444" loext:opacity="100%" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Header" style:family="paragraph" style:display-name="Header" style:parent-style-name="Header_20_and_20_Footer">
|
<style:style style:name="Header" style:family="paragraph" style:display-name="Header" style:parent-style-name="Header_20_and_20_Footer">
|
||||||
<style:paragraph-properties fo:text-align="right"/>
|
<style:paragraph-properties fo:text-align="right" />
|
||||||
</style:style>
|
</style:style>
|
||||||
</office:styles>
|
</office:styles>
|
||||||
<office:automatic-styles>
|
<office:automatic-styles>
|
||||||
<style:page-layout style:name="PM1">
|
<style:page-layout style:name="PM1">
|
||||||
<style:page-layout-properties fo:margin-top="2.000cm" fo:margin-bottom="2.000cm" fo:margin-left="2.000cm" fo:margin-right="2.000cm"/>
|
<style:page-layout-properties fo:margin-top="2.000cm" fo:margin-bottom="2.000cm" fo:margin-left="2.000cm" fo:margin-right="2.000cm" />
|
||||||
<style:header-style>
|
<style:header-style>
|
||||||
<style:header-footer-properties fo:min-height="0.600cm" fo:margin-left="0.000cm" fo:margin-right="0.000cm" fo:margin-bottom="0.500cm"/>
|
<style:header-footer-properties fo:min-height="0.600cm" fo:margin-left="0.000cm" fo:margin-right="0.000cm" fo:margin-bottom="0.500cm" />
|
||||||
</style:header-style>
|
</style:header-style>
|
||||||
</style:page-layout>
|
</style:page-layout>
|
||||||
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Heading_20_2">
|
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Heading_20_2">
|
||||||
<style:paragraph-properties fo:break-before="page"/>
|
<style:paragraph-properties fo:break-before="page" />
|
||||||
</style:style>
|
</style:style>
|
||||||
</office:automatic-styles>
|
</office:automatic-styles>
|
||||||
<office:master-styles>
|
<office:master-styles>
|
||||||
@@ -75,7 +75,7 @@
|
|||||||
<text:p text:style-name="Header">Test Project / Jane Smith / <text:page-number text:select-page="current">2</text:page-number></text:p>
|
<text:p text:style-name="Header">Test Project / Jane Smith / <text:page-number text:select-page="current">2</text:page-number></text:p>
|
||||||
</style:header>
|
</style:header>
|
||||||
<style:header-first>
|
<style:header-first>
|
||||||
<text:p text:style-name="Header"/>
|
<text:p text:style-name="Header" />
|
||||||
</style:header-first>
|
</style:header-first>
|
||||||
</style:master-page>
|
</style:master-page>
|
||||||
</office:master-styles>
|
</office:master-styles>
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<office:document-content xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" office:version="1.3">
|
<office:document-content xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" office:version="1.3">
|
||||||
<office:font-face-decls>
|
<office:font-face-decls>
|
||||||
<style:font-face style:name="Liberation Serif" style:font-pitch="variable"/>
|
<style:font-face style:name="Liberation Serif" style:font-pitch="variable" />
|
||||||
</office:font-face-decls>
|
</office:font-face-decls>
|
||||||
<office:automatic-styles>
|
<office:automatic-styles>
|
||||||
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Heading_20_2">
|
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Heading_20_2">
|
||||||
<style:paragraph-properties fo:break-before="page"/>
|
<style:paragraph-properties fo:break-before="page" />
|
||||||
</style:style>
|
</style:style>
|
||||||
</office:automatic-styles>
|
</office:automatic-styles>
|
||||||
<office:body>
|
<office:body>
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<manifest:manifest xmlns:manifest="urn:oasis:names:tc:opendocument:xmlns:manifest:1.0" manifest:version="1.3">
|
<manifest:manifest xmlns:manifest="urn:oasis:names:tc:opendocument:xmlns:manifest:1.0" manifest:version="1.3">
|
||||||
<manifest:file-entry manifest:full-path="/" manifest:version="1.3" manifest:media-type="application/vnd.oasis.opendocument.text"/>
|
<manifest:file-entry manifest:full-path="/" manifest:version="1.3" manifest:media-type="application/vnd.oasis.opendocument.text" />
|
||||||
<manifest:file-entry manifest:full-path="settings.xml" manifest:media-type="text/xml"/>
|
<manifest:file-entry manifest:full-path="settings.xml" manifest:media-type="text/xml" />
|
||||||
<manifest:file-entry manifest:full-path="content.xml" manifest:media-type="text/xml"/>
|
<manifest:file-entry manifest:full-path="content.xml" manifest:media-type="text/xml" />
|
||||||
<manifest:file-entry manifest:full-path="meta.xml" manifest:media-type="text/xml"/>
|
<manifest:file-entry manifest:full-path="meta.xml" manifest:media-type="text/xml" />
|
||||||
<manifest:file-entry manifest:full-path="styles.xml" manifest:media-type="text/xml"/>
|
<manifest:file-entry manifest:full-path="styles.xml" manifest:media-type="text/xml" />
|
||||||
</manifest:manifest>
|
</manifest:manifest>
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<office:document-meta xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" office:version="1.3">
|
<office:document-meta xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" office:version="1.3">
|
||||||
<office:meta>
|
<office:meta>
|
||||||
<meta:creation-date>2023-02-12T15:09:03</meta:creation-date>
|
<meta:creation-date>2023-05-29T19:48:33</meta:creation-date>
|
||||||
<meta:generator>novelWriter/2.0.4</meta:generator>
|
<meta:generator>novelWriter/2.0.7</meta:generator>
|
||||||
<meta:initial-creator>Jane Smith</meta:initial-creator>
|
<meta:initial-creator>Jane Smith</meta:initial-creator>
|
||||||
<meta:editing-cycles>1234</meta:editing-cycles>
|
<meta:editing-cycles>1234</meta:editing-cycles>
|
||||||
<meta:editing-duration>P42DT12H34M56S</meta:editing-duration>
|
<meta:editing-duration>P42DT12H34M56S</meta:editing-duration>
|
||||||
<dc:title>Test Project</dc:title>
|
<dc:title>Test Project</dc:title>
|
||||||
<dc:date>2023-02-12T15:09:03</dc:date>
|
<dc:date>2023-05-29T19:48:33</dc:date>
|
||||||
<dc:creator>Jane Smith</dc:creator>
|
<dc:creator>Jane Smith</dc:creator>
|
||||||
</office:meta>
|
</office:meta>
|
||||||
</office:document-meta>
|
</office:document-meta>
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<office:document-settings xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" office:version="1.3"/>
|
<office:document-settings xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" office:version="1.3" />
|
||||||
|
|||||||
@@ -1,68 +1,69 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<office:document-styles xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" office:version="1.3">
|
<office:document-styles xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" office:version="1.3">
|
||||||
<office:font-face-decls>
|
<office:font-face-decls>
|
||||||
<style:font-face style:name="Liberation Serif" style:font-pitch="variable"/>
|
<style:font-face style:name="Liberation Serif" style:font-pitch="variable" />
|
||||||
</office:font-face-decls>
|
</office:font-face-decls>
|
||||||
<office:styles>
|
<office:styles>
|
||||||
<style:default-style style:family="paragraph">
|
<style:default-style style:family="paragraph">
|
||||||
<style:paragraph-properties style:line-break="strict" style:tab-stop-distance="1.251cm" style:writing-mode="page"/>
|
<style:paragraph-properties style:line-break="strict" style:tab-stop-distance="1.251cm" style:writing-mode="page" />
|
||||||
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="12pt" fo:language="en" fo:country="GB"/>
|
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="12pt" fo:language="en" fo:country="GB" />
|
||||||
</style:default-style>
|
</style:default-style>
|
||||||
<style:style style:name="Standard" style:family="paragraph" style:class="text">
|
<style:style style:name="Standard" style:family="paragraph" style:class="text">
|
||||||
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="12pt"/>
|
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="12pt" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Heading" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Text_20_body" style:class="text">
|
<style:style style:name="Heading" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Text_20_body" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.247cm" fo:margin-bottom="0.212cm" fo:keep-with-next="always"/>
|
<style:paragraph-properties fo:margin-top="0.247cm" fo:margin-bottom="0.212cm" fo:keep-with-next="always" />
|
||||||
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="14pt"/>
|
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="14pt" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Header_20_and_20_Footer" style:display-name="Header and Footer" style:family="paragraph" style:parent-style-name="Standard" style:class="extra"/>
|
<style:style style:name="Header_20_and_20_Footer" style:display-name="Header and Footer" style:family="paragraph" style:parent-style-name="Standard" style:class="extra" />
|
||||||
<style:style style:name="Text_20_body" style:family="paragraph" style:display-name="Text body" style:parent-style-name="Standard" style:class="text">
|
<style:style style:name="Text_20_body" style:family="paragraph" style:display-name="Text body" style:parent-style-name="Standard" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.247cm" fo:line-height="115%" fo:text-align="left"/>
|
<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.247cm" fo:line-height="115%" fo:text-align="left" />
|
||||||
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="12pt"/>
|
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="12pt" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Text_20_Meta" style:family="paragraph" style:display-name="Text Meta" style:parent-style-name="Standard" style:class="text">
|
<style:style style:name="Text_20_Meta" style:family="paragraph" style:display-name="Text Meta" style:parent-style-name="Standard" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.247cm" fo:line-height="115%"/>
|
<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.247cm" fo:line-height="115%" />
|
||||||
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="12pt" fo:color="None" loext:opacity="None"/>
|
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="12pt" fo:color="None" loext:opacity="None" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Title" style:family="paragraph" style:display-name="Title" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="chapter">
|
<style:style style:name="Title" style:family="paragraph" style:display-name="Title" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="chapter">
|
||||||
<style:paragraph-properties fo:margin-top="0.423cm" fo:margin-bottom="0.212cm" fo:text-align="center"/>
|
<style:paragraph-properties fo:margin-top="0.423cm" fo:margin-bottom="0.212cm" fo:text-align="center" />
|
||||||
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="30pt" fo:font-weight="bold"/>
|
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="30pt" fo:font-weight="bold" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Heading_20_1" style:family="paragraph" style:display-name="Heading 1" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="1" style:class="text">
|
<style:style style:name="Heading_20_1" style:family="paragraph" style:display-name="Heading 1" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="1" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.423cm" fo:margin-bottom="0.212cm"/>
|
<style:paragraph-properties fo:margin-top="0.423cm" fo:margin-bottom="0.212cm" />
|
||||||
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="24pt" fo:font-weight="bold" fo:color="None" loext:opacity="None"/>
|
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="24pt" fo:font-weight="bold" fo:color="None" loext:opacity="None" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Heading_20_2" style:family="paragraph" style:display-name="Heading 2" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="2" style:class="text">
|
<style:style style:name="Heading_20_2" style:family="paragraph" style:display-name="Heading 2" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="2" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.353cm" fo:margin-bottom="0.212cm"/>
|
<style:paragraph-properties fo:margin-top="0.353cm" fo:margin-bottom="0.212cm" />
|
||||||
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="19pt" fo:font-weight="bold" fo:color="None" loext:opacity="None"/>
|
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="19pt" fo:font-weight="bold" fo:color="None" loext:opacity="None" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Heading_20_3" style:family="paragraph" style:display-name="Heading 3" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="3" style:class="text">
|
<style:style style:name="Heading_20_3" style:family="paragraph" style:display-name="Heading 3" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="3" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.247cm" fo:margin-bottom="0.212cm"/>
|
<style:paragraph-properties fo:margin-top="0.247cm" fo:margin-bottom="0.212cm" />
|
||||||
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="16pt" fo:font-weight="bold" fo:color="None" loext:opacity="None"/>
|
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="16pt" fo:font-weight="bold" fo:color="None" loext:opacity="None" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Heading_20_4" style:family="paragraph" style:display-name="Heading 4" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="4" style:class="text">
|
<style:style style:name="Heading_20_4" style:family="paragraph" style:display-name="Heading 4" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="4" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.247cm" fo:margin-bottom="0.212cm"/>
|
<style:paragraph-properties fo:margin-top="0.247cm" fo:margin-bottom="0.212cm" />
|
||||||
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="14pt" fo:font-weight="bold" fo:color="None" loext:opacity="None"/>
|
<style:text-properties style:font-name="Liberation Serif" fo:font-family="'Liberation Serif'" fo:font-size="14pt" fo:font-weight="bold" fo:color="None" loext:opacity="None" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Header" style:family="paragraph" style:display-name="Header" style:parent-style-name="Header_20_and_20_Footer">
|
<style:style style:name="Header" style:family="paragraph" style:display-name="Header" style:parent-style-name="Header_20_and_20_Footer">
|
||||||
<style:paragraph-properties fo:text-align="right"/>
|
<style:paragraph-properties fo:text-align="right" />
|
||||||
</style:style>
|
</style:style>
|
||||||
</office:styles>
|
</office:styles>
|
||||||
<office:automatic-styles>
|
<office:automatic-styles>
|
||||||
<style:page-layout style:name="PM1">
|
<style:page-layout style:name="PM1">
|
||||||
<style:page-layout-properties fo:margin-top="2.000cm" fo:margin-bottom="2.000cm" fo:margin-left="2.000cm" fo:margin-right="2.000cm"/>
|
<style:page-layout-properties fo:margin-top="2.000cm" fo:margin-bottom="2.000cm" fo:margin-left="2.000cm" fo:margin-right="2.000cm" />
|
||||||
<style:header-style>
|
<style:header-style>
|
||||||
<style:header-footer-properties fo:min-height="0.600cm" fo:margin-left="0.000cm" fo:margin-right="0.000cm" fo:margin-bottom="0.500cm"/>
|
<style:header-footer-properties fo:min-height="0.600cm" fo:margin-left="0.000cm" fo:margin-right="0.000cm" fo:margin-bottom="0.500cm" />
|
||||||
</style:header-style>
|
</style:header-style>
|
||||||
</style:page-layout>
|
</style:page-layout>
|
||||||
</office:automatic-styles>
|
</office:automatic-styles>
|
||||||
<office:master-styles>
|
<office:master-styles>
|
||||||
<style:master-page style:name="Standard" style:page-layout-name="PM1">
|
<style:master-page style:name="Standard" style:page-layout-name="PM1">
|
||||||
<style:header>
|
<style:header>
|
||||||
<text:p text:style-name="Header">Test Project / Jane Smith / <text:page-number text:select-page="current">2</text:page-number></text:p>
|
<text:p text:style-name="Header">Test Project / Jane Smith / <text:page-number text:select-page="current">2</text:page-number>
|
||||||
|
</text:p>
|
||||||
</style:header>
|
</style:header>
|
||||||
<style:header-first>
|
<style:header-first>
|
||||||
<text:p text:style-name="Header"/>
|
<text:p text:style-name="Header" />
|
||||||
</style:header-first>
|
</style:header-first>
|
||||||
</style:master-page>
|
</style:master-page>
|
||||||
</office:master-styles>
|
</office:master-styles>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<novelWriterXML appVersion="2.0-rc2" hexVersion="0x020000c2" fileVersion="1.5" timeStamp="2022-11-27 16:39:14">
|
<novelWriterXML appVersion="2.0.7" hexVersion="0x020007f0" fileVersion="1.5" timeStamp="2023-05-29 17:01:04">
|
||||||
<project id="d0f3fe10-c6e6-4310-8bfd-181eb4224eed" saveCount="1" autoCount="0" editTime="0">
|
<project id="d0f3fe10-c6e6-4310-8bfd-181eb4224eed" saveCount="1" autoCount="0" editTime="0">
|
||||||
<name>Test Custom</name>
|
<name>Test Custom</name>
|
||||||
<title>Test Novel</title>
|
<title>Test Novel</title>
|
||||||
@@ -15,13 +15,13 @@
|
|||||||
<entry key="novelTree">None</entry>
|
<entry key="novelTree">None</entry>
|
||||||
<entry key="outline">None</entry>
|
<entry key="outline">None</entry>
|
||||||
</lastHandle>
|
</lastHandle>
|
||||||
<autoReplace/>
|
<autoReplace />
|
||||||
<titleFormat>
|
<titleFormat>
|
||||||
<entry key="title">%title%</entry>
|
<entry key="title">%title%</entry>
|
||||||
<entry key="chapter">%title%</entry>
|
<entry key="chapter">%title%</entry>
|
||||||
<entry key="unnumbered">%title%</entry>
|
<entry key="unnumbered">%title%</entry>
|
||||||
<entry key="scene">* * *</entry>
|
<entry key="scene">* * *</entry>
|
||||||
<entry key="section"></entry>
|
<entry key="section" />
|
||||||
</titleFormat>
|
</titleFormat>
|
||||||
<status>
|
<status>
|
||||||
<entry key="s000000" count="15" red="100" green="100" blue="100">New</entry>
|
<entry key="s000000" count="15" red="100" green="100" blue="100">New</entry>
|
||||||
@@ -38,91 +38,91 @@
|
|||||||
</settings>
|
</settings>
|
||||||
<content items="22" novelWords="0" notesWords="0">
|
<content items="22" novelWords="0" notesWords="0">
|
||||||
<item handle="0000000000008" parent="None" root="0000000000008" order="0" type="ROOT" class="NOVEL">
|
<item handle="0000000000008" parent="None" root="0000000000008" order="0" type="ROOT" class="NOVEL">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Novel</name>
|
<name status="s000000" import="i000004">Novel</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000009" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="0000000000009" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Title Page</name>
|
<name status="s000000" import="i000004" active="yes">Title Page</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000a" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000a" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Chapter 1</name>
|
<name status="s000000" import="i000004" active="yes">Chapter 1</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000b" parent="000000000000a" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000b" parent="000000000000a" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Scene 1.1</name>
|
<name status="s000000" import="i000004" active="yes">Scene 1.1</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000c" parent="000000000000a" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000c" parent="000000000000a" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Scene 1.2</name>
|
<name status="s000000" import="i000004" active="yes">Scene 1.2</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000d" parent="000000000000a" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000d" parent="000000000000a" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Scene 1.3</name>
|
<name status="s000000" import="i000004" active="yes">Scene 1.3</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000e" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000e" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Chapter 2</name>
|
<name status="s000000" import="i000004" active="yes">Chapter 2</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000f" parent="000000000000e" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000f" parent="000000000000e" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Scene 2.1</name>
|
<name status="s000000" import="i000004" active="yes">Scene 2.1</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000010" parent="000000000000e" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="0000000000010" parent="000000000000e" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Scene 2.2</name>
|
<name status="s000000" import="i000004" active="yes">Scene 2.2</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000011" parent="000000000000e" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="0000000000011" parent="000000000000e" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Scene 2.3</name>
|
<name status="s000000" import="i000004" active="yes">Scene 2.3</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000012" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="0000000000012" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Chapter 3</name>
|
<name status="s000000" import="i000004" active="yes">Chapter 3</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000013" parent="0000000000012" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="0000000000013" parent="0000000000012" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Scene 3.1</name>
|
<name status="s000000" import="i000004" active="yes">Scene 3.1</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000014" parent="0000000000012" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="0000000000014" parent="0000000000012" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Scene 3.2</name>
|
<name status="s000000" import="i000004" active="yes">Scene 3.2</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000015" parent="0000000000012" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="0000000000015" parent="0000000000012" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Scene 3.3</name>
|
<name status="s000000" import="i000004" active="yes">Scene 3.3</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000016" parent="None" root="0000000000016" order="0" type="ROOT" class="PLOT">
|
<item handle="0000000000016" parent="None" root="0000000000016" order="0" type="ROOT" class="PLOT">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Plot</name>
|
<name status="s000000" import="i000004">Plot</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000017" parent="0000000000016" root="0000000000016" order="0" type="FILE" class="PLOT" layout="NOTE">
|
<item handle="0000000000017" parent="0000000000016" root="0000000000016" order="0" type="FILE" class="PLOT" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Main Plot</name>
|
<name status="s000000" import="i000004" active="yes">Main Plot</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000018" parent="None" root="0000000000018" order="0" type="ROOT" class="CHARACTER">
|
<item handle="0000000000018" parent="None" root="0000000000018" order="0" type="ROOT" class="CHARACTER">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Characters</name>
|
<name status="s000000" import="i000004">Characters</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000019" parent="0000000000018" root="0000000000018" order="0" type="FILE" class="CHARACTER" layout="NOTE">
|
<item handle="0000000000019" parent="0000000000018" root="0000000000018" order="0" type="FILE" class="CHARACTER" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Protagonist</name>
|
<name status="s000000" import="i000004" active="yes">Protagonist</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000001a" parent="None" root="000000000001a" order="0" type="ROOT" class="WORLD">
|
<item handle="000000000001a" parent="None" root="000000000001a" order="0" type="ROOT" class="WORLD">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Locations</name>
|
<name status="s000000" import="i000004">Locations</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000001b" parent="000000000001a" root="000000000001a" order="0" type="FILE" class="WORLD" layout="NOTE">
|
<item handle="000000000001b" parent="000000000001a" root="000000000001a" order="0" type="FILE" class="WORLD" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Main Location</name>
|
<name status="s000000" import="i000004" active="yes">Main Location</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000001c" parent="None" root="000000000001c" order="0" type="ROOT" class="ARCHIVE">
|
<item handle="000000000001c" parent="None" root="000000000001c" order="0" type="ROOT" class="ARCHIVE">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Archive</name>
|
<name status="s000000" import="i000004">Archive</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000001d" parent="None" root="000000000001d" order="0" type="ROOT" class="TRASH">
|
<item handle="000000000001d" parent="None" root="000000000001d" order="0" type="ROOT" class="TRASH">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Trash</name>
|
<name status="s000000" import="i000004">Trash</name>
|
||||||
</item>
|
</item>
|
||||||
</content>
|
</content>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<novelWriterXML appVersion="2.0-rc2" hexVersion="0x020000c2" fileVersion="1.5" timeStamp="2022-11-27 16:39:14">
|
<novelWriterXML appVersion="2.0.7" hexVersion="0x020007f0" fileVersion="1.5" timeStamp="2023-05-29 17:01:04">
|
||||||
<project id="d0f3fe10-c6e6-4310-8bfd-181eb4224eed" saveCount="1" autoCount="0" editTime="0">
|
<project id="d0f3fe10-c6e6-4310-8bfd-181eb4224eed" saveCount="1" autoCount="0" editTime="0">
|
||||||
<name>Test Custom</name>
|
<name>Test Custom</name>
|
||||||
<title>Test Novel</title>
|
<title>Test Novel</title>
|
||||||
@@ -15,13 +15,13 @@
|
|||||||
<entry key="novelTree">None</entry>
|
<entry key="novelTree">None</entry>
|
||||||
<entry key="outline">None</entry>
|
<entry key="outline">None</entry>
|
||||||
</lastHandle>
|
</lastHandle>
|
||||||
<autoReplace/>
|
<autoReplace />
|
||||||
<titleFormat>
|
<titleFormat>
|
||||||
<entry key="title">%title%</entry>
|
<entry key="title">%title%</entry>
|
||||||
<entry key="chapter">%title%</entry>
|
<entry key="chapter">%title%</entry>
|
||||||
<entry key="unnumbered">%title%</entry>
|
<entry key="unnumbered">%title%</entry>
|
||||||
<entry key="scene">* * *</entry>
|
<entry key="scene">* * *</entry>
|
||||||
<entry key="section"></entry>
|
<entry key="section" />
|
||||||
</titleFormat>
|
</titleFormat>
|
||||||
<status>
|
<status>
|
||||||
<entry key="s000000" count="9" red="100" green="100" blue="100">New</entry>
|
<entry key="s000000" count="9" red="100" green="100" blue="100">New</entry>
|
||||||
@@ -38,67 +38,67 @@
|
|||||||
</settings>
|
</settings>
|
||||||
<content items="16" novelWords="0" notesWords="0">
|
<content items="16" novelWords="0" notesWords="0">
|
||||||
<item handle="0000000000008" parent="None" root="0000000000008" order="0" type="ROOT" class="NOVEL">
|
<item handle="0000000000008" parent="None" root="0000000000008" order="0" type="ROOT" class="NOVEL">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Novel</name>
|
<name status="s000000" import="i000004">Novel</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000009" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="0000000000009" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Title Page</name>
|
<name status="s000000" import="i000004" active="yes">Title Page</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000a" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000a" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Scene 1</name>
|
<name status="s000000" import="i000004" active="yes">Scene 1</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000b" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000b" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Scene 2</name>
|
<name status="s000000" import="i000004" active="yes">Scene 2</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000c" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000c" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Scene 3</name>
|
<name status="s000000" import="i000004" active="yes">Scene 3</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000d" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000d" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Scene 4</name>
|
<name status="s000000" import="i000004" active="yes">Scene 4</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000e" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000e" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Scene 5</name>
|
<name status="s000000" import="i000004" active="yes">Scene 5</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000f" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000f" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Scene 6</name>
|
<name status="s000000" import="i000004" active="yes">Scene 6</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000010" parent="None" root="0000000000010" order="0" type="ROOT" class="PLOT">
|
<item handle="0000000000010" parent="None" root="0000000000010" order="0" type="ROOT" class="PLOT">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Plot</name>
|
<name status="s000000" import="i000004">Plot</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000011" parent="0000000000010" root="0000000000010" order="0" type="FILE" class="PLOT" layout="NOTE">
|
<item handle="0000000000011" parent="0000000000010" root="0000000000010" order="0" type="FILE" class="PLOT" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Main Plot</name>
|
<name status="s000000" import="i000004" active="yes">Main Plot</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000012" parent="None" root="0000000000012" order="0" type="ROOT" class="CHARACTER">
|
<item handle="0000000000012" parent="None" root="0000000000012" order="0" type="ROOT" class="CHARACTER">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Characters</name>
|
<name status="s000000" import="i000004">Characters</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000013" parent="0000000000012" root="0000000000012" order="0" type="FILE" class="CHARACTER" layout="NOTE">
|
<item handle="0000000000013" parent="0000000000012" root="0000000000012" order="0" type="FILE" class="CHARACTER" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Protagonist</name>
|
<name status="s000000" import="i000004" active="yes">Protagonist</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000014" parent="None" root="0000000000014" order="0" type="ROOT" class="WORLD">
|
<item handle="0000000000014" parent="None" root="0000000000014" order="0" type="ROOT" class="WORLD">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Locations</name>
|
<name status="s000000" import="i000004">Locations</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000015" parent="0000000000014" root="0000000000014" order="0" type="FILE" class="WORLD" layout="NOTE">
|
<item handle="0000000000015" parent="0000000000014" root="0000000000014" order="0" type="FILE" class="WORLD" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Main Location</name>
|
<name status="s000000" import="i000004" active="yes">Main Location</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000016" parent="None" root="0000000000016" order="0" type="ROOT" class="ARCHIVE">
|
<item handle="0000000000016" parent="None" root="0000000000016" order="0" type="ROOT" class="ARCHIVE">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Archive</name>
|
<name status="s000000" import="i000004">Archive</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000017" parent="None" root="0000000000017" order="0" type="ROOT" class="TRASH">
|
<item handle="0000000000017" parent="None" root="0000000000017" order="0" type="ROOT" class="TRASH">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Trash</name>
|
<name status="s000000" import="i000004">Trash</name>
|
||||||
</item>
|
</item>
|
||||||
</content>
|
</content>
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<novelWriterXML appVersion="2.0-rc2" hexVersion="0x020000c2" fileVersion="1.5" timeStamp="2022-11-27 16:39:14">
|
<novelWriterXML appVersion="2.0.7" hexVersion="0x020007f0" fileVersion="1.5" timeStamp="2023-05-29 17:01:04">
|
||||||
<project id="d0f3fe10-c6e6-4310-8bfd-181eb4224eed" saveCount="1" autoCount="0" editTime="0">
|
<project id="d0f3fe10-c6e6-4310-8bfd-181eb4224eed" saveCount="1" autoCount="0" editTime="0">
|
||||||
<name>New Project</name>
|
<name>New Project</name>
|
||||||
<title>New Project</title>
|
<title>New Project</title>
|
||||||
<author></author>
|
<author />
|
||||||
</project>
|
</project>
|
||||||
<settings>
|
<settings>
|
||||||
<doBackup>yes</doBackup>
|
<doBackup>yes</doBackup>
|
||||||
@@ -15,13 +15,13 @@
|
|||||||
<entry key="novelTree">None</entry>
|
<entry key="novelTree">None</entry>
|
||||||
<entry key="outline">None</entry>
|
<entry key="outline">None</entry>
|
||||||
</lastHandle>
|
</lastHandle>
|
||||||
<autoReplace/>
|
<autoReplace />
|
||||||
<titleFormat>
|
<titleFormat>
|
||||||
<entry key="title">%title%</entry>
|
<entry key="title">%title%</entry>
|
||||||
<entry key="chapter">%title%</entry>
|
<entry key="chapter">%title%</entry>
|
||||||
<entry key="unnumbered">%title%</entry>
|
<entry key="unnumbered">%title%</entry>
|
||||||
<entry key="scene">* * *</entry>
|
<entry key="scene">* * *</entry>
|
||||||
<entry key="section"></entry>
|
<entry key="section" />
|
||||||
</titleFormat>
|
</titleFormat>
|
||||||
<status>
|
<status>
|
||||||
<entry key="s000000" count="5" red="100" green="100" blue="100">New</entry>
|
<entry key="s000000" count="5" red="100" green="100" blue="100">New</entry>
|
||||||
@@ -38,35 +38,35 @@
|
|||||||
</settings>
|
</settings>
|
||||||
<content items="8" novelWords="0" notesWords="0">
|
<content items="8" novelWords="0" notesWords="0">
|
||||||
<item handle="0000000000008" parent="None" root="0000000000008" order="0" type="ROOT" class="NOVEL">
|
<item handle="0000000000008" parent="None" root="0000000000008" order="0" type="ROOT" class="NOVEL">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Novel</name>
|
<name status="s000000" import="i000004">Novel</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000009" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="0000000000009" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Title Page</name>
|
<name status="s000000" import="i000004" active="yes">Title Page</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000a" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000a" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">New Chapter</name>
|
<name status="s000000" import="i000004" active="yes">New Chapter</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000b" parent="000000000000a" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000b" parent="000000000000a" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">New Scene</name>
|
<name status="s000000" import="i000004" active="yes">New Scene</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000c" parent="None" root="000000000000c" order="0" type="ROOT" class="PLOT">
|
<item handle="000000000000c" parent="None" root="000000000000c" order="0" type="ROOT" class="PLOT">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Plot</name>
|
<name status="s000000" import="i000004">Plot</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000d" parent="None" root="000000000000d" order="0" type="ROOT" class="CHARACTER">
|
<item handle="000000000000d" parent="None" root="000000000000d" order="0" type="ROOT" class="CHARACTER">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Characters</name>
|
<name status="s000000" import="i000004">Characters</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000e" parent="None" root="000000000000e" order="0" type="ROOT" class="WORLD">
|
<item handle="000000000000e" parent="None" root="000000000000e" order="0" type="ROOT" class="WORLD">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Locations</name>
|
<name status="s000000" import="i000004">Locations</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000f" parent="None" root="000000000000f" order="0" type="ROOT" class="ARCHIVE">
|
<item handle="000000000000f" parent="None" root="000000000000f" order="0" type="ROOT" class="ARCHIVE">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Archive</name>
|
<name status="s000000" import="i000004">Archive</name>
|
||||||
</item>
|
</item>
|
||||||
</content>
|
</content>
|
||||||
|
|||||||
@@ -1,84 +1,84 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
|
<office:document xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
|
||||||
<office:meta>
|
<office:meta>
|
||||||
<meta:creation-date>2023-02-12T14:52:03</meta:creation-date>
|
<meta:creation-date>2023-05-29T22:10:29</meta:creation-date>
|
||||||
<meta:generator>novelWriter/2.0.4</meta:generator>
|
<meta:generator>novelWriter/2.0.7</meta:generator>
|
||||||
<meta:initial-creator>lipsum.com</meta:initial-creator>
|
<meta:initial-creator>lipsum.com</meta:initial-creator>
|
||||||
<meta:editing-cycles>38</meta:editing-cycles>
|
<meta:editing-cycles>40</meta:editing-cycles>
|
||||||
<meta:editing-duration>P0DT0H31M40S</meta:editing-duration>
|
<meta:editing-duration>P0DT0H31M45S</meta:editing-duration>
|
||||||
<dc:title>Lorem Ipsum</dc:title>
|
<dc:title>Lorem Ipsum</dc:title>
|
||||||
<dc:date>2023-02-12T14:52:03</dc:date>
|
<dc:date>2023-05-29T22:10:29</dc:date>
|
||||||
<dc:creator>lipsum.com</dc:creator>
|
<dc:creator>lipsum.com</dc:creator>
|
||||||
</office:meta>
|
</office:meta>
|
||||||
<office:font-face-decls>
|
<office:font-face-decls>
|
||||||
<style:font-face style:name="DejaVu Sans" style:font-pitch="variable"/>
|
<style:font-face style:name="DejaVu Sans" style:font-pitch="variable" />
|
||||||
</office:font-face-decls>
|
</office:font-face-decls>
|
||||||
<office:styles>
|
<office:styles>
|
||||||
<style:default-style style:family="paragraph">
|
<style:default-style style:family="paragraph">
|
||||||
<style:paragraph-properties style:line-break="strict" style:tab-stop-distance="1.251cm" style:writing-mode="page"/>
|
<style:paragraph-properties style:line-break="strict" style:tab-stop-distance="1.251cm" style:writing-mode="page" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="11pt" fo:language="en" fo:country="GB"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="11pt" fo:language="en" fo:country="GB" />
|
||||||
</style:default-style>
|
</style:default-style>
|
||||||
<style:style style:name="Standard" style:family="paragraph" style:class="text">
|
<style:style style:name="Standard" style:family="paragraph" style:class="text">
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="11pt"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="11pt" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Heading" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Text_20_body" style:class="text">
|
<style:style style:name="Heading" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Text_20_body" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.227cm" fo:margin-bottom="0.194cm" fo:keep-with-next="always"/>
|
<style:paragraph-properties fo:margin-top="0.227cm" fo:margin-bottom="0.194cm" fo:keep-with-next="always" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="13pt"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="13pt" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Header_20_and_20_Footer" style:display-name="Header and Footer" style:family="paragraph" style:parent-style-name="Standard" style:class="extra"/>
|
<style:style style:name="Header_20_and_20_Footer" style:display-name="Header and Footer" style:family="paragraph" style:parent-style-name="Standard" style:class="extra" />
|
||||||
<style:style style:name="Text_20_body" style:family="paragraph" style:display-name="Text body" style:parent-style-name="Standard" style:class="text">
|
<style:style style:name="Text_20_body" style:family="paragraph" style:display-name="Text body" style:parent-style-name="Standard" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.227cm" fo:line-height="115%" fo:text-align="left"/>
|
<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.227cm" fo:line-height="115%" fo:text-align="left" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="11pt"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="11pt" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Text_20_Meta" style:family="paragraph" style:display-name="Text Meta" style:parent-style-name="Standard" style:class="text">
|
<style:style style:name="Text_20_Meta" style:family="paragraph" style:display-name="Text Meta" style:parent-style-name="Standard" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.227cm" fo:line-height="115%"/>
|
<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.227cm" fo:line-height="115%" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="11pt" fo:color="#813709" loext:opacity="100%"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="11pt" fo:color="#813709" loext:opacity="100%" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Title" style:family="paragraph" style:display-name="Title" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="chapter">
|
<style:style style:name="Title" style:family="paragraph" style:display-name="Title" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="chapter">
|
||||||
<style:paragraph-properties fo:margin-top="0.388cm" fo:margin-bottom="0.194cm" fo:text-align="center"/>
|
<style:paragraph-properties fo:margin-top="0.388cm" fo:margin-bottom="0.194cm" fo:text-align="center" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="28pt" fo:font-weight="bold"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="28pt" fo:font-weight="bold" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Heading_20_1" style:family="paragraph" style:display-name="Heading 1" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="1" style:class="text">
|
<style:style style:name="Heading_20_1" style:family="paragraph" style:display-name="Heading 1" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="1" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.388cm" fo:margin-bottom="0.194cm"/>
|
<style:paragraph-properties fo:margin-top="0.388cm" fo:margin-bottom="0.194cm" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="22pt" fo:font-weight="bold" fo:color="#2a6099" loext:opacity="100%"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="22pt" fo:font-weight="bold" fo:color="#2a6099" loext:opacity="100%" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Heading_20_2" style:family="paragraph" style:display-name="Heading 2" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="2" style:class="text">
|
<style:style style:name="Heading_20_2" style:family="paragraph" style:display-name="Heading 2" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="2" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.324cm" fo:margin-bottom="0.194cm"/>
|
<style:paragraph-properties fo:margin-top="0.324cm" fo:margin-bottom="0.194cm" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="18pt" fo:font-weight="bold" fo:color="#2a6099" loext:opacity="100%"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="18pt" fo:font-weight="bold" fo:color="#2a6099" loext:opacity="100%" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Heading_20_3" style:family="paragraph" style:display-name="Heading 3" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="3" style:class="text">
|
<style:style style:name="Heading_20_3" style:family="paragraph" style:display-name="Heading 3" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="3" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.227cm" fo:margin-bottom="0.194cm"/>
|
<style:paragraph-properties fo:margin-top="0.227cm" fo:margin-bottom="0.194cm" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="14pt" fo:font-weight="bold" fo:color="#444444" loext:opacity="100%"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="14pt" fo:font-weight="bold" fo:color="#444444" loext:opacity="100%" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Heading_20_4" style:family="paragraph" style:display-name="Heading 4" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="4" style:class="text">
|
<style:style style:name="Heading_20_4" style:family="paragraph" style:display-name="Heading 4" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="4" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.227cm" fo:margin-bottom="0.194cm"/>
|
<style:paragraph-properties fo:margin-top="0.227cm" fo:margin-bottom="0.194cm" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="13pt" fo:font-weight="bold" fo:color="#444444" loext:opacity="100%"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="13pt" fo:font-weight="bold" fo:color="#444444" loext:opacity="100%" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Header" style:family="paragraph" style:display-name="Header" style:parent-style-name="Header_20_and_20_Footer">
|
<style:style style:name="Header" style:family="paragraph" style:display-name="Header" style:parent-style-name="Header_20_and_20_Footer">
|
||||||
<style:paragraph-properties fo:text-align="right"/>
|
<style:paragraph-properties fo:text-align="right" />
|
||||||
</style:style>
|
</style:style>
|
||||||
</office:styles>
|
</office:styles>
|
||||||
<office:automatic-styles>
|
<office:automatic-styles>
|
||||||
<style:page-layout style:name="PM1">
|
<style:page-layout style:name="PM1">
|
||||||
<style:page-layout-properties fo:margin-top="2.000cm" fo:margin-bottom="2.000cm" fo:margin-left="2.000cm" fo:margin-right="2.000cm"/>
|
<style:page-layout-properties fo:margin-top="2.000cm" fo:margin-bottom="2.000cm" fo:margin-left="2.000cm" fo:margin-right="2.000cm" />
|
||||||
<style:header-style>
|
<style:header-style>
|
||||||
<style:header-footer-properties fo:min-height="0.600cm" fo:margin-left="0.000cm" fo:margin-right="0.000cm" fo:margin-bottom="0.500cm"/>
|
<style:header-footer-properties fo:min-height="0.600cm" fo:margin-left="0.000cm" fo:margin-right="0.000cm" fo:margin-bottom="0.500cm" />
|
||||||
</style:header-style>
|
</style:header-style>
|
||||||
</style:page-layout>
|
</style:page-layout>
|
||||||
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Text_20_body">
|
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||||
<style:paragraph-properties fo:text-align="center"/>
|
<style:paragraph-properties fo:text-align="center" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="P2" style:family="paragraph" style:parent-style-name="Heading_20_2">
|
<style:style style:name="P2" style:family="paragraph" style:parent-style-name="Heading_20_2">
|
||||||
<style:paragraph-properties fo:break-before="page"/>
|
<style:paragraph-properties fo:break-before="page" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Heading_20_1">
|
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Heading_20_1">
|
||||||
<style:paragraph-properties fo:text-align="center" fo:break-before="page"/>
|
<style:paragraph-properties fo:text-align="center" fo:break-before="page" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="T1" style:family="text">
|
<style:style style:name="T1" style:family="text">
|
||||||
<style:text-properties fo:font-weight="bold"/>
|
<style:text-properties fo:font-weight="bold" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="T2" style:family="text">
|
<style:style style:name="T2" style:family="text">
|
||||||
<style:text-properties fo:font-style="italic"/>
|
<style:text-properties fo:font-style="italic" />
|
||||||
</style:style>
|
</style:style>
|
||||||
</office:automatic-styles>
|
</office:automatic-styles>
|
||||||
<office:master-styles>
|
<office:master-styles>
|
||||||
@@ -87,7 +87,7 @@
|
|||||||
<text:p text:style-name="Header">Lorem Ipsum / lipsum.com / <text:page-number text:select-page="current">2</text:page-number></text:p>
|
<text:p text:style-name="Header">Lorem Ipsum / lipsum.com / <text:page-number text:select-page="current">2</text:page-number></text:p>
|
||||||
</style:header>
|
</style:header>
|
||||||
<style:header-first>
|
<style:header-first>
|
||||||
<text:p text:style-name="Header"/>
|
<text:p text:style-name="Header" />
|
||||||
</style:header-first>
|
</style:header-first>
|
||||||
</style:master-page>
|
</style:master-page>
|
||||||
</office:master-styles>
|
</office:master-styles>
|
||||||
|
|||||||
@@ -1,96 +1,96 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
|
<office:document xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
|
||||||
<office:meta>
|
<office:meta>
|
||||||
<meta:creation-date>2023-02-12T15:00:22</meta:creation-date>
|
<meta:creation-date>2023-05-29T22:11:22</meta:creation-date>
|
||||||
<meta:generator>novelWriter/2.0.4</meta:generator>
|
<meta:generator>novelWriter/2.0.7</meta:generator>
|
||||||
<meta:initial-creator>lipsum.com</meta:initial-creator>
|
<meta:initial-creator>lipsum.com</meta:initial-creator>
|
||||||
<meta:editing-cycles>38</meta:editing-cycles>
|
<meta:editing-cycles>40</meta:editing-cycles>
|
||||||
<meta:editing-duration>P0DT0H31M40S</meta:editing-duration>
|
<meta:editing-duration>P0DT0H31M45S</meta:editing-duration>
|
||||||
<dc:title>Lorem Ipsum</dc:title>
|
<dc:title>Lorem Ipsum</dc:title>
|
||||||
<dc:date>2023-02-12T15:00:22</dc:date>
|
<dc:date>2023-05-29T22:11:22</dc:date>
|
||||||
<dc:creator>lipsum.com</dc:creator>
|
<dc:creator>lipsum.com</dc:creator>
|
||||||
</office:meta>
|
</office:meta>
|
||||||
<office:font-face-decls>
|
<office:font-face-decls>
|
||||||
<style:font-face style:name="DejaVu Sans" style:font-pitch="variable"/>
|
<style:font-face style:name="DejaVu Sans" style:font-pitch="variable" />
|
||||||
</office:font-face-decls>
|
</office:font-face-decls>
|
||||||
<office:styles>
|
<office:styles>
|
||||||
<style:default-style style:family="paragraph">
|
<style:default-style style:family="paragraph">
|
||||||
<style:paragraph-properties style:line-break="strict" style:tab-stop-distance="1.251cm" style:writing-mode="page"/>
|
<style:paragraph-properties style:line-break="strict" style:tab-stop-distance="1.251cm" style:writing-mode="page" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="11pt" fo:language="en" fo:country="GB"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="11pt" fo:language="en" fo:country="GB" />
|
||||||
</style:default-style>
|
</style:default-style>
|
||||||
<style:style style:name="Standard" style:family="paragraph" style:class="text">
|
<style:style style:name="Standard" style:family="paragraph" style:class="text">
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="11pt"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="11pt" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Heading" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Text_20_body" style:class="text">
|
<style:style style:name="Heading" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Text_20_body" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.227cm" fo:margin-bottom="0.194cm" fo:keep-with-next="always"/>
|
<style:paragraph-properties fo:margin-top="0.227cm" fo:margin-bottom="0.194cm" fo:keep-with-next="always" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="13pt"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="13pt" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Header_20_and_20_Footer" style:display-name="Header and Footer" style:family="paragraph" style:parent-style-name="Standard" style:class="extra"/>
|
<style:style style:name="Header_20_and_20_Footer" style:display-name="Header and Footer" style:family="paragraph" style:parent-style-name="Standard" style:class="extra" />
|
||||||
<style:style style:name="Text_20_body" style:family="paragraph" style:display-name="Text body" style:parent-style-name="Standard" style:class="text">
|
<style:style style:name="Text_20_body" style:family="paragraph" style:display-name="Text body" style:parent-style-name="Standard" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.227cm" fo:line-height="115%" fo:text-align="justify"/>
|
<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.227cm" fo:line-height="115%" fo:text-align="justify" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="11pt"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="11pt" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Text_20_Meta" style:family="paragraph" style:display-name="Text Meta" style:parent-style-name="Standard" style:class="text">
|
<style:style style:name="Text_20_Meta" style:family="paragraph" style:display-name="Text Meta" style:parent-style-name="Standard" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.227cm" fo:line-height="115%"/>
|
<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.227cm" fo:line-height="115%" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="11pt" fo:color="#813709" loext:opacity="100%"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="11pt" fo:color="#813709" loext:opacity="100%" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Title" style:family="paragraph" style:display-name="Title" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="chapter">
|
<style:style style:name="Title" style:family="paragraph" style:display-name="Title" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="chapter">
|
||||||
<style:paragraph-properties fo:margin-top="0.388cm" fo:margin-bottom="0.194cm" fo:text-align="center"/>
|
<style:paragraph-properties fo:margin-top="0.388cm" fo:margin-bottom="0.194cm" fo:text-align="center" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="28pt" fo:font-weight="bold"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="28pt" fo:font-weight="bold" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Heading_20_1" style:family="paragraph" style:display-name="Heading 1" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="1" style:class="text">
|
<style:style style:name="Heading_20_1" style:family="paragraph" style:display-name="Heading 1" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="1" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.388cm" fo:margin-bottom="0.194cm"/>
|
<style:paragraph-properties fo:margin-top="0.388cm" fo:margin-bottom="0.194cm" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="22pt" fo:font-weight="bold" fo:color="#2a6099" loext:opacity="100%"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="22pt" fo:font-weight="bold" fo:color="#2a6099" loext:opacity="100%" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Heading_20_2" style:family="paragraph" style:display-name="Heading 2" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="2" style:class="text">
|
<style:style style:name="Heading_20_2" style:family="paragraph" style:display-name="Heading 2" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="2" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.324cm" fo:margin-bottom="0.194cm"/>
|
<style:paragraph-properties fo:margin-top="0.324cm" fo:margin-bottom="0.194cm" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="18pt" fo:font-weight="bold" fo:color="#2a6099" loext:opacity="100%"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="18pt" fo:font-weight="bold" fo:color="#2a6099" loext:opacity="100%" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Heading_20_3" style:family="paragraph" style:display-name="Heading 3" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="3" style:class="text">
|
<style:style style:name="Heading_20_3" style:family="paragraph" style:display-name="Heading 3" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="3" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.227cm" fo:margin-bottom="0.194cm"/>
|
<style:paragraph-properties fo:margin-top="0.227cm" fo:margin-bottom="0.194cm" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="14pt" fo:font-weight="bold" fo:color="#444444" loext:opacity="100%"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="14pt" fo:font-weight="bold" fo:color="#444444" loext:opacity="100%" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Heading_20_4" style:family="paragraph" style:display-name="Heading 4" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="4" style:class="text">
|
<style:style style:name="Heading_20_4" style:family="paragraph" style:display-name="Heading 4" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="4" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.227cm" fo:margin-bottom="0.194cm"/>
|
<style:paragraph-properties fo:margin-top="0.227cm" fo:margin-bottom="0.194cm" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="13pt" fo:font-weight="bold" fo:color="#444444" loext:opacity="100%"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="13pt" fo:font-weight="bold" fo:color="#444444" loext:opacity="100%" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Header" style:family="paragraph" style:display-name="Header" style:parent-style-name="Header_20_and_20_Footer">
|
<style:style style:name="Header" style:family="paragraph" style:display-name="Header" style:parent-style-name="Header_20_and_20_Footer">
|
||||||
<style:paragraph-properties fo:text-align="right"/>
|
<style:paragraph-properties fo:text-align="right" />
|
||||||
</style:style>
|
</style:style>
|
||||||
</office:styles>
|
</office:styles>
|
||||||
<office:automatic-styles>
|
<office:automatic-styles>
|
||||||
<style:page-layout style:name="PM1">
|
<style:page-layout style:name="PM1">
|
||||||
<style:page-layout-properties fo:margin-top="2.000cm" fo:margin-bottom="2.000cm" fo:margin-left="2.000cm" fo:margin-right="2.000cm"/>
|
<style:page-layout-properties fo:margin-top="2.000cm" fo:margin-bottom="2.000cm" fo:margin-left="2.000cm" fo:margin-right="2.000cm" />
|
||||||
<style:header-style>
|
<style:header-style>
|
||||||
<style:header-footer-properties fo:min-height="0.600cm" fo:margin-left="0.000cm" fo:margin-right="0.000cm" fo:margin-bottom="0.500cm"/>
|
<style:header-footer-properties fo:min-height="0.600cm" fo:margin-left="0.000cm" fo:margin-right="0.000cm" fo:margin-bottom="0.500cm" />
|
||||||
</style:header-style>
|
</style:header-style>
|
||||||
</style:page-layout>
|
</style:page-layout>
|
||||||
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Text_20_body">
|
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||||
<style:paragraph-properties fo:text-align="center"/>
|
<style:paragraph-properties fo:text-align="center" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="P2" style:family="paragraph" style:parent-style-name="Text_20_Meta">
|
<style:style style:name="P2" style:family="paragraph" style:parent-style-name="Text_20_Meta">
|
||||||
<style:paragraph-properties fo:break-before="page"/>
|
<style:paragraph-properties fo:break-before="page" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Heading_20_2">
|
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Heading_20_2">
|
||||||
<style:paragraph-properties fo:break-before="page"/>
|
<style:paragraph-properties fo:break-before="page" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Heading_20_1">
|
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Heading_20_1">
|
||||||
<style:paragraph-properties fo:text-align="center" fo:break-before="page"/>
|
<style:paragraph-properties fo:text-align="center" fo:break-before="page" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Text_20_Meta">
|
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Text_20_Meta">
|
||||||
<style:paragraph-properties fo:margin-bottom="0.000cm"/>
|
<style:paragraph-properties fo:margin-bottom="0.000cm" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Text_20_Meta">
|
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Text_20_Meta">
|
||||||
<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.000cm"/>
|
<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.000cm" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Title">
|
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Title">
|
||||||
<style:paragraph-properties fo:text-align="center" fo:break-before="page"/>
|
<style:paragraph-properties fo:text-align="center" fo:break-before="page" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="T1" style:family="text">
|
<style:style style:name="T1" style:family="text">
|
||||||
<style:text-properties fo:font-weight="bold"/>
|
<style:text-properties fo:font-weight="bold" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="T2" style:family="text">
|
<style:style style:name="T2" style:family="text">
|
||||||
<style:text-properties fo:font-style="italic"/>
|
<style:text-properties fo:font-style="italic" />
|
||||||
</style:style>
|
</style:style>
|
||||||
</office:automatic-styles>
|
</office:automatic-styles>
|
||||||
<office:master-styles>
|
<office:master-styles>
|
||||||
@@ -99,7 +99,7 @@
|
|||||||
<text:p text:style-name="Header">Lorem Ipsum / lipsum.com / <text:page-number text:select-page="current">2</text:page-number></text:p>
|
<text:p text:style-name="Header">Lorem Ipsum / lipsum.com / <text:page-number text:select-page="current">2</text:page-number></text:p>
|
||||||
</style:header>
|
</style:header>
|
||||||
<style:header-first>
|
<style:header-first>
|
||||||
<text:p text:style-name="Header"/>
|
<text:p text:style-name="Header" />
|
||||||
</style:header-first>
|
</style:header-first>
|
||||||
</style:master-page>
|
</style:master-page>
|
||||||
</office:master-styles>
|
</office:master-styles>
|
||||||
@@ -147,9 +147,9 @@
|
|||||||
<text:p text:style-name="Text_20_body">Ut et consequat enim, quis ornare nibh. In lectus neque, mollis et suscipit et, vestibulum vitae augue. Praesent id ante sit amet odio venenatis placerat a at erat. Sed sed metus sed nisi dictum varius. Integer tincidunt fermentum purus ac porta. Fusce porttitor non risus eget tristique. Donec augue nunc, maximus at fermentum vel, varius et neque. Ut sed consectetur mauris. Quisque ipsum enim, porttitor vitae imperdiet sit amet, tempor et mauris. Aliquam malesuada tincidunt lectus quis blandit. Sed commodo orci felis, quis ultrices tellus facilisis sed. Nunc vel varius est. Duis ullamcorper eu metus in pulvinar. Morbi at sapien dictum, rutrum mauris eget, interdum tellus.</text:p>
|
<text:p text:style-name="Text_20_body">Ut et consequat enim, quis ornare nibh. In lectus neque, mollis et suscipit et, vestibulum vitae augue. Praesent id ante sit amet odio venenatis placerat a at erat. Sed sed metus sed nisi dictum varius. Integer tincidunt fermentum purus ac porta. Fusce porttitor non risus eget tristique. Donec augue nunc, maximus at fermentum vel, varius et neque. Ut sed consectetur mauris. Quisque ipsum enim, porttitor vitae imperdiet sit amet, tempor et mauris. Aliquam malesuada tincidunt lectus quis blandit. Sed commodo orci felis, quis ultrices tellus facilisis sed. Nunc vel varius est. Duis ullamcorper eu metus in pulvinar. Morbi at sapien dictum, rutrum mauris eget, interdum tellus.</text:p>
|
||||||
<text:h text:style-name="P3" text:outline-level="2">Why do we use it?</text:h>
|
<text:h text:style-name="P3" text:outline-level="2">Why do we use it?</text:h>
|
||||||
<text:p text:style-name="Text_20_Meta"><text:span text:style-name="T1">Comment:</text:span> Exctracted from the lipsum.com website.</text:p>
|
<text:p text:style-name="Text_20_Meta"><text:span text:style-name="T1">Comment:</text:span> Exctracted from the lipsum.com website.</text:p>
|
||||||
<text:p text:style-name="Text_20_body"><text:tab/>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.</text:p>
|
<text:p text:style-name="Text_20_body"><text:tab />It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.</text:p>
|
||||||
<text:p text:style-name="Text_20_body"><text:tab/>The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English.</text:p>
|
<text:p text:style-name="Text_20_body"><text:tab />The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English.</text:p>
|
||||||
<text:p text:style-name="Text_20_body"><text:tab/>Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</text:p>
|
<text:p text:style-name="Text_20_body"><text:tab />Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</text:p>
|
||||||
<text:h text:style-name="P3" text:outline-level="2">Chapter Two: Chapter Two</text:h>
|
<text:h text:style-name="P3" text:outline-level="2">Chapter Two: Chapter Two</text:h>
|
||||||
<text:p text:style-name="P5"><text:span text:style-name="T1">Point of View:</text:span> Bod</text:p>
|
<text:p text:style-name="P5"><text:span text:style-name="T1">Point of View:</text:span> Bod</text:p>
|
||||||
<text:p text:style-name="P6"><text:span text:style-name="T1">Plot:</text:span> Main</text:p>
|
<text:p text:style-name="P6"><text:span text:style-name="T1">Plot:</text:span> Main</text:p>
|
||||||
|
|||||||
@@ -1,96 +1,96 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
|
<office:document xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
|
||||||
<office:meta>
|
<office:meta>
|
||||||
<meta:creation-date>2023-02-12T15:01:25</meta:creation-date>
|
<meta:creation-date>2023-05-29T22:11:58</meta:creation-date>
|
||||||
<meta:generator>novelWriter/2.0.4</meta:generator>
|
<meta:generator>novelWriter/2.0.7</meta:generator>
|
||||||
<meta:initial-creator>lipsum.com</meta:initial-creator>
|
<meta:initial-creator>lipsum.com</meta:initial-creator>
|
||||||
<meta:editing-cycles>38</meta:editing-cycles>
|
<meta:editing-cycles>40</meta:editing-cycles>
|
||||||
<meta:editing-duration>P0DT0H31M40S</meta:editing-duration>
|
<meta:editing-duration>P0DT0H31M45S</meta:editing-duration>
|
||||||
<dc:title>Lorem Ipsum</dc:title>
|
<dc:title>Lorem Ipsum</dc:title>
|
||||||
<dc:date>2023-02-12T15:01:25</dc:date>
|
<dc:date>2023-05-29T22:11:58</dc:date>
|
||||||
<dc:creator>lipsum.com</dc:creator>
|
<dc:creator>lipsum.com</dc:creator>
|
||||||
</office:meta>
|
</office:meta>
|
||||||
<office:font-face-decls>
|
<office:font-face-decls>
|
||||||
<style:font-face style:name="DejaVu Sans" style:font-pitch="variable"/>
|
<style:font-face style:name="DejaVu Sans" style:font-pitch="variable" />
|
||||||
</office:font-face-decls>
|
</office:font-face-decls>
|
||||||
<office:styles>
|
<office:styles>
|
||||||
<style:default-style style:family="paragraph">
|
<style:default-style style:family="paragraph">
|
||||||
<style:paragraph-properties style:line-break="strict" style:tab-stop-distance="1.251cm" style:writing-mode="page"/>
|
<style:paragraph-properties style:line-break="strict" style:tab-stop-distance="1.251cm" style:writing-mode="page" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="11pt" fo:language="en" fo:country="GB"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="11pt" fo:language="en" fo:country="GB" />
|
||||||
</style:default-style>
|
</style:default-style>
|
||||||
<style:style style:name="Standard" style:family="paragraph" style:class="text">
|
<style:style style:name="Standard" style:family="paragraph" style:class="text">
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="11pt"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="11pt" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Heading" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Text_20_body" style:class="text">
|
<style:style style:name="Heading" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Text_20_body" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.227cm" fo:margin-bottom="0.194cm" fo:keep-with-next="always"/>
|
<style:paragraph-properties fo:margin-top="0.227cm" fo:margin-bottom="0.194cm" fo:keep-with-next="always" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="13pt"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="13pt" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Header_20_and_20_Footer" style:display-name="Header and Footer" style:family="paragraph" style:parent-style-name="Standard" style:class="extra"/>
|
<style:style style:name="Header_20_and_20_Footer" style:display-name="Header and Footer" style:family="paragraph" style:parent-style-name="Standard" style:class="extra" />
|
||||||
<style:style style:name="Text_20_body" style:family="paragraph" style:display-name="Text body" style:parent-style-name="Standard" style:class="text">
|
<style:style style:name="Text_20_body" style:family="paragraph" style:display-name="Text body" style:parent-style-name="Standard" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.227cm" fo:line-height="115%" fo:text-align="justify"/>
|
<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.227cm" fo:line-height="115%" fo:text-align="justify" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="11pt"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="11pt" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Text_20_Meta" style:family="paragraph" style:display-name="Text Meta" style:parent-style-name="Standard" style:class="text">
|
<style:style style:name="Text_20_Meta" style:family="paragraph" style:display-name="Text Meta" style:parent-style-name="Standard" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.227cm" fo:line-height="115%"/>
|
<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.227cm" fo:line-height="115%" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="11pt" fo:color="#813709" loext:opacity="100%"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="11pt" fo:color="#813709" loext:opacity="100%" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Title" style:family="paragraph" style:display-name="Title" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="chapter">
|
<style:style style:name="Title" style:family="paragraph" style:display-name="Title" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="chapter">
|
||||||
<style:paragraph-properties fo:margin-top="0.388cm" fo:margin-bottom="0.194cm" fo:text-align="center"/>
|
<style:paragraph-properties fo:margin-top="0.388cm" fo:margin-bottom="0.194cm" fo:text-align="center" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="28pt" fo:font-weight="bold"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="28pt" fo:font-weight="bold" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Heading_20_1" style:family="paragraph" style:display-name="Heading 1" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="1" style:class="text">
|
<style:style style:name="Heading_20_1" style:family="paragraph" style:display-name="Heading 1" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="1" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.388cm" fo:margin-bottom="0.194cm"/>
|
<style:paragraph-properties fo:margin-top="0.388cm" fo:margin-bottom="0.194cm" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="22pt" fo:font-weight="bold" fo:color="#2a6099" loext:opacity="100%"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="22pt" fo:font-weight="bold" fo:color="#2a6099" loext:opacity="100%" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Heading_20_2" style:family="paragraph" style:display-name="Heading 2" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="2" style:class="text">
|
<style:style style:name="Heading_20_2" style:family="paragraph" style:display-name="Heading 2" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="2" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.324cm" fo:margin-bottom="0.194cm"/>
|
<style:paragraph-properties fo:margin-top="0.324cm" fo:margin-bottom="0.194cm" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="18pt" fo:font-weight="bold" fo:color="#2a6099" loext:opacity="100%"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="18pt" fo:font-weight="bold" fo:color="#2a6099" loext:opacity="100%" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Heading_20_3" style:family="paragraph" style:display-name="Heading 3" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="3" style:class="text">
|
<style:style style:name="Heading_20_3" style:family="paragraph" style:display-name="Heading 3" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="3" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.227cm" fo:margin-bottom="0.194cm"/>
|
<style:paragraph-properties fo:margin-top="0.227cm" fo:margin-bottom="0.194cm" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="14pt" fo:font-weight="bold" fo:color="#444444" loext:opacity="100%"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="14pt" fo:font-weight="bold" fo:color="#444444" loext:opacity="100%" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Heading_20_4" style:family="paragraph" style:display-name="Heading 4" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="4" style:class="text">
|
<style:style style:name="Heading_20_4" style:family="paragraph" style:display-name="Heading 4" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="4" style:class="text">
|
||||||
<style:paragraph-properties fo:margin-top="0.227cm" fo:margin-bottom="0.194cm"/>
|
<style:paragraph-properties fo:margin-top="0.227cm" fo:margin-bottom="0.194cm" />
|
||||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="13pt" fo:font-weight="bold" fo:color="#444444" loext:opacity="100%"/>
|
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" fo:font-size="13pt" fo:font-weight="bold" fo:color="#444444" loext:opacity="100%" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="Header" style:family="paragraph" style:display-name="Header" style:parent-style-name="Header_20_and_20_Footer">
|
<style:style style:name="Header" style:family="paragraph" style:display-name="Header" style:parent-style-name="Header_20_and_20_Footer">
|
||||||
<style:paragraph-properties fo:text-align="right"/>
|
<style:paragraph-properties fo:text-align="right" />
|
||||||
</style:style>
|
</style:style>
|
||||||
</office:styles>
|
</office:styles>
|
||||||
<office:automatic-styles>
|
<office:automatic-styles>
|
||||||
<style:page-layout style:name="PM1">
|
<style:page-layout style:name="PM1">
|
||||||
<style:page-layout-properties fo:margin-top="2.000cm" fo:margin-bottom="2.000cm" fo:margin-left="2.000cm" fo:margin-right="2.000cm"/>
|
<style:page-layout-properties fo:margin-top="2.000cm" fo:margin-bottom="2.000cm" fo:margin-left="2.000cm" fo:margin-right="2.000cm" />
|
||||||
<style:header-style>
|
<style:header-style>
|
||||||
<style:header-footer-properties fo:min-height="0.600cm" fo:margin-left="0.000cm" fo:margin-right="0.000cm" fo:margin-bottom="0.500cm"/>
|
<style:header-footer-properties fo:min-height="0.600cm" fo:margin-left="0.000cm" fo:margin-right="0.000cm" fo:margin-bottom="0.500cm" />
|
||||||
</style:header-style>
|
</style:header-style>
|
||||||
</style:page-layout>
|
</style:page-layout>
|
||||||
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Text_20_body">
|
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Text_20_body">
|
||||||
<style:paragraph-properties fo:text-align="center"/>
|
<style:paragraph-properties fo:text-align="center" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="P2" style:family="paragraph" style:parent-style-name="Text_20_Meta">
|
<style:style style:name="P2" style:family="paragraph" style:parent-style-name="Text_20_Meta">
|
||||||
<style:paragraph-properties fo:break-before="page"/>
|
<style:paragraph-properties fo:break-before="page" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Heading_20_2">
|
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Heading_20_2">
|
||||||
<style:paragraph-properties fo:break-before="page"/>
|
<style:paragraph-properties fo:break-before="page" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Heading_20_1">
|
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Heading_20_1">
|
||||||
<style:paragraph-properties fo:text-align="center" fo:break-before="page"/>
|
<style:paragraph-properties fo:text-align="center" fo:break-before="page" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Text_20_Meta">
|
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Text_20_Meta">
|
||||||
<style:paragraph-properties fo:margin-bottom="0.000cm"/>
|
<style:paragraph-properties fo:margin-bottom="0.000cm" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Text_20_Meta">
|
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Text_20_Meta">
|
||||||
<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.000cm"/>
|
<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.000cm" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Title">
|
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Title">
|
||||||
<style:paragraph-properties fo:text-align="center" fo:break-before="page"/>
|
<style:paragraph-properties fo:text-align="center" fo:break-before="page" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="T1" style:family="text">
|
<style:style style:name="T1" style:family="text">
|
||||||
<style:text-properties fo:font-weight="bold"/>
|
<style:text-properties fo:font-weight="bold" />
|
||||||
</style:style>
|
</style:style>
|
||||||
<style:style style:name="T2" style:family="text">
|
<style:style style:name="T2" style:family="text">
|
||||||
<style:text-properties fo:font-style="italic"/>
|
<style:text-properties fo:font-style="italic" />
|
||||||
</style:style>
|
</style:style>
|
||||||
</office:automatic-styles>
|
</office:automatic-styles>
|
||||||
<office:master-styles>
|
<office:master-styles>
|
||||||
@@ -99,7 +99,7 @@
|
|||||||
<text:p text:style-name="Header">Lorem Ipsum / lipsum.com / <text:page-number text:select-page="current">2</text:page-number></text:p>
|
<text:p text:style-name="Header">Lorem Ipsum / lipsum.com / <text:page-number text:select-page="current">2</text:page-number></text:p>
|
||||||
</style:header>
|
</style:header>
|
||||||
<style:header-first>
|
<style:header-first>
|
||||||
<text:p text:style-name="Header"/>
|
<text:p text:style-name="Header" />
|
||||||
</style:header-first>
|
</style:header-first>
|
||||||
</style:master-page>
|
</style:master-page>
|
||||||
</office:master-styles>
|
</office:master-styles>
|
||||||
@@ -147,9 +147,9 @@
|
|||||||
<text:p text:style-name="Text_20_body">Ut et consequat enim, quis ornare nibh. In lectus neque, mollis et suscipit et, vestibulum vitae augue. Praesent id ante sit amet odio venenatis placerat a at erat. Sed sed metus sed nisi dictum varius. Integer tincidunt fermentum purus ac porta. Fusce porttitor non risus eget tristique. Donec augue nunc, maximus at fermentum vel, varius et neque. Ut sed consectetur mauris. Quisque ipsum enim, porttitor vitae imperdiet sit amet, tempor et mauris. Aliquam malesuada tincidunt lectus quis blandit. Sed commodo orci felis, quis ultrices tellus facilisis sed. Nunc vel varius est. Duis ullamcorper eu metus in pulvinar. Morbi at sapien dictum, rutrum mauris eget, interdum tellus.</text:p>
|
<text:p text:style-name="Text_20_body">Ut et consequat enim, quis ornare nibh. In lectus neque, mollis et suscipit et, vestibulum vitae augue. Praesent id ante sit amet odio venenatis placerat a at erat. Sed sed metus sed nisi dictum varius. Integer tincidunt fermentum purus ac porta. Fusce porttitor non risus eget tristique. Donec augue nunc, maximus at fermentum vel, varius et neque. Ut sed consectetur mauris. Quisque ipsum enim, porttitor vitae imperdiet sit amet, tempor et mauris. Aliquam malesuada tincidunt lectus quis blandit. Sed commodo orci felis, quis ultrices tellus facilisis sed. Nunc vel varius est. Duis ullamcorper eu metus in pulvinar. Morbi at sapien dictum, rutrum mauris eget, interdum tellus.</text:p>
|
||||||
<text:h text:style-name="P3" text:outline-level="2">Why do we use it?</text:h>
|
<text:h text:style-name="P3" text:outline-level="2">Why do we use it?</text:h>
|
||||||
<text:p text:style-name="Text_20_Meta"><text:span text:style-name="T1">Comment:</text:span> Exctracted from the lipsum.com website.</text:p>
|
<text:p text:style-name="Text_20_Meta"><text:span text:style-name="T1">Comment:</text:span> Exctracted from the lipsum.com website.</text:p>
|
||||||
<text:p text:style-name="Text_20_body"><text:tab/>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.</text:p>
|
<text:p text:style-name="Text_20_body"><text:tab />It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.</text:p>
|
||||||
<text:p text:style-name="Text_20_body"><text:tab/>The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English.</text:p>
|
<text:p text:style-name="Text_20_body"><text:tab />The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English.</text:p>
|
||||||
<text:p text:style-name="Text_20_body"><text:tab/>Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</text:p>
|
<text:p text:style-name="Text_20_body"><text:tab />Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</text:p>
|
||||||
<text:h text:style-name="P3" text:outline-level="2">Chapter Two: Chapter Two</text:h>
|
<text:h text:style-name="P3" text:outline-level="2">Chapter Two: Chapter Two</text:h>
|
||||||
<text:p text:style-name="P5"><text:span text:style-name="T1">Point of View:</text:span> Bod</text:p>
|
<text:p text:style-name="P5"><text:span text:style-name="T1">Point of View:</text:span> Bod</text:p>
|
||||||
<text:p text:style-name="P6"><text:span text:style-name="T1">Plot:</text:span> Main</text:p>
|
<text:p text:style-name="P6"><text:span text:style-name="T1">Plot:</text:span> Main</text:p>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<novelWriterXML appVersion="2.0-rc2" hexVersion="0x020000c2" fileVersion="1.5" timeStamp="2022-11-15 15:14:31">
|
<novelWriterXML appVersion="2.0.7" hexVersion="0x020007f0" fileVersion="1.5" timeStamp="2023-05-29 17:09:41">
|
||||||
<project id="d0f3fe10-c6e6-4310-8bfd-181eb4224eed" saveCount="3" autoCount="2" editTime="3">
|
<project id="d0f3fe10-c6e6-4310-8bfd-181eb4224eed" saveCount="3" autoCount="2" editTime="3">
|
||||||
<name>New Project</name>
|
<name>New Project</name>
|
||||||
<title>New Novel</title>
|
<title>New Novel</title>
|
||||||
@@ -15,13 +15,13 @@
|
|||||||
<entry key="novelTree">0000000000008</entry>
|
<entry key="novelTree">0000000000008</entry>
|
||||||
<entry key="outline">None</entry>
|
<entry key="outline">None</entry>
|
||||||
</lastHandle>
|
</lastHandle>
|
||||||
<autoReplace/>
|
<autoReplace />
|
||||||
<titleFormat>
|
<titleFormat>
|
||||||
<entry key="title">%title%</entry>
|
<entry key="title">%title%</entry>
|
||||||
<entry key="chapter">%title%</entry>
|
<entry key="chapter">%title%</entry>
|
||||||
<entry key="unnumbered">%title%</entry>
|
<entry key="unnumbered">%title%</entry>
|
||||||
<entry key="scene">* * *</entry>
|
<entry key="scene">* * *</entry>
|
||||||
<entry key="section"></entry>
|
<entry key="section" />
|
||||||
</titleFormat>
|
</titleFormat>
|
||||||
<status>
|
<status>
|
||||||
<entry key="s000000" count="5" red="100" green="100" blue="100">New</entry>
|
<entry key="s000000" count="5" red="100" green="100" blue="100">New</entry>
|
||||||
@@ -38,47 +38,47 @@
|
|||||||
</settings>
|
</settings>
|
||||||
<content items="11" novelWords="136" notesWords="27">
|
<content items="11" novelWords="136" notesWords="27">
|
||||||
<item handle="0000000000008" parent="None" root="0000000000008" order="0" type="ROOT" class="NOVEL">
|
<item handle="0000000000008" parent="None" root="0000000000008" order="0" type="ROOT" class="NOVEL">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000000" import="i000004">Novel</name>
|
<name status="s000000" import="i000004">Novel</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000c" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000c" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H1" charCount="20" wordCount="5" paraCount="1" cursorPos="0"/>
|
<meta expanded="no" heading="H1" charCount="20" wordCount="5" paraCount="1" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Title Page</name>
|
<name status="s000000" import="i000004" active="yes">Title Page</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000d" parent="0000000000008" root="0000000000008" order="1" type="FOLDER" class="NOVEL">
|
<item handle="000000000000d" parent="0000000000008" root="0000000000008" order="1" type="FOLDER" class="NOVEL">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000000" import="i000004">New Chapter</name>
|
<name status="s000000" import="i000004">New Chapter</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000e" parent="000000000000d" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000e" parent="000000000000d" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H2" charCount="11" wordCount="2" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H2" charCount="11" wordCount="2" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">New Chapter</name>
|
<name status="s000000" import="i000004" active="yes">New Chapter</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000f" parent="000000000000d" root="0000000000008" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000f" parent="000000000000d" root="0000000000008" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H1" charCount="781" wordCount="129" paraCount="14" cursorPos="1010"/>
|
<meta expanded="no" heading="H1" charCount="781" wordCount="129" paraCount="14" cursorPos="1010" />
|
||||||
<name status="s000000" import="i000004" active="yes">New Scene</name>
|
<name status="s000000" import="i000004" active="yes">New Scene</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000009" parent="None" root="0000000000009" order="1" type="ROOT" class="PLOT">
|
<item handle="0000000000009" parent="None" root="0000000000009" order="1" type="ROOT" class="PLOT">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000000" import="i000004">Plot</name>
|
<name status="s000000" import="i000004">Plot</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000011" parent="0000000000009" root="0000000000009" order="0" type="FILE" class="PLOT" layout="NOTE">
|
<item handle="0000000000011" parent="0000000000009" root="0000000000009" order="0" type="FILE" class="PLOT" layout="NOTE">
|
||||||
<meta expanded="no" heading="H1" charCount="48" wordCount="10" paraCount="1" cursorPos="69"/>
|
<meta expanded="no" heading="H1" charCount="48" wordCount="10" paraCount="1" cursorPos="69" />
|
||||||
<name status="s000000" import="i000004" active="yes">New Note</name>
|
<name status="s000000" import="i000004" active="yes">New Note</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000a" parent="None" root="000000000000a" order="2" type="ROOT" class="CHARACTER">
|
<item handle="000000000000a" parent="None" root="000000000000a" order="2" type="ROOT" class="CHARACTER">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000000" import="i000004">Characters</name>
|
<name status="s000000" import="i000004">Characters</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000010" parent="000000000000a" root="000000000000a" order="0" type="FILE" class="CHARACTER" layout="NOTE">
|
<item handle="0000000000010" parent="000000000000a" root="000000000000a" order="0" type="FILE" class="CHARACTER" layout="NOTE">
|
||||||
<meta expanded="no" heading="H1" charCount="34" wordCount="8" paraCount="1" cursorPos="51"/>
|
<meta expanded="no" heading="H1" charCount="34" wordCount="8" paraCount="1" cursorPos="51" />
|
||||||
<name status="s000000" import="i000004" active="yes">New Note</name>
|
<name status="s000000" import="i000004" active="yes">New Note</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000b" parent="None" root="000000000000b" order="3" type="ROOT" class="WORLD">
|
<item handle="000000000000b" parent="None" root="000000000000b" order="3" type="ROOT" class="WORLD">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000000" import="i000004">World</name>
|
<name status="s000000" import="i000004">World</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000012" parent="000000000000b" root="000000000000b" order="0" type="FILE" class="WORLD" layout="NOTE">
|
<item handle="0000000000012" parent="000000000000b" root="000000000000b" order="0" type="FILE" class="WORLD" layout="NOTE">
|
||||||
<meta expanded="no" heading="H1" charCount="51" wordCount="9" paraCount="1" cursorPos="68"/>
|
<meta expanded="no" heading="H1" charCount="51" wordCount="9" paraCount="1" cursorPos="68" />
|
||||||
<name status="s000000" import="i000004" active="yes">New Note</name>
|
<name status="s000000" import="i000004" active="yes">New Note</name>
|
||||||
</item>
|
</item>
|
||||||
</content>
|
</content>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<novelWriterXML appVersion="2.0-rc1" hexVersion="0x020000c1" fileVersion="1.5" timeStamp="2022-11-07 12:57:21">
|
<novelWriterXML appVersion="2.0.7" hexVersion="0x020007f0" fileVersion="1.5" timeStamp="2023-05-29 17:01:12">
|
||||||
<project id="d0f3fe10-c6e6-4310-8bfd-181eb4224eed" saveCount="2" autoCount="1" editTime="0">
|
<project id="d0f3fe10-c6e6-4310-8bfd-181eb4224eed" saveCount="2" autoCount="1" editTime="0">
|
||||||
<name>New Project</name>
|
<name>New Project</name>
|
||||||
<title>New Novel</title>
|
<title>New Novel</title>
|
||||||
@@ -15,13 +15,13 @@
|
|||||||
<entry key="novelTree">None</entry>
|
<entry key="novelTree">None</entry>
|
||||||
<entry key="outline">None</entry>
|
<entry key="outline">None</entry>
|
||||||
</lastHandle>
|
</lastHandle>
|
||||||
<autoReplace/>
|
<autoReplace />
|
||||||
<titleFormat>
|
<titleFormat>
|
||||||
<entry key="title">%title%</entry>
|
<entry key="title">%title%</entry>
|
||||||
<entry key="chapter">%title%</entry>
|
<entry key="chapter">%title%</entry>
|
||||||
<entry key="unnumbered">%title%</entry>
|
<entry key="unnumbered">%title%</entry>
|
||||||
<entry key="scene">* * *</entry>
|
<entry key="scene">* * *</entry>
|
||||||
<entry key="section"></entry>
|
<entry key="section" />
|
||||||
</titleFormat>
|
</titleFormat>
|
||||||
<status>
|
<status>
|
||||||
<entry key="s000000" count="5" red="100" green="100" blue="100">New</entry>
|
<entry key="s000000" count="5" red="100" green="100" blue="100">New</entry>
|
||||||
@@ -38,35 +38,35 @@
|
|||||||
</settings>
|
</settings>
|
||||||
<content items="8" novelWords="9" notesWords="0">
|
<content items="8" novelWords="9" notesWords="0">
|
||||||
<item handle="0000000000008" parent="None" root="0000000000008" order="0" type="ROOT" class="NOVEL">
|
<item handle="0000000000008" parent="None" root="0000000000008" order="0" type="ROOT" class="NOVEL">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Novel</name>
|
<name status="s000000" import="i000004">Novel</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000c" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000c" parent="0000000000008" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H1" charCount="20" wordCount="5" paraCount="1" cursorPos="0"/>
|
<meta expanded="no" heading="H1" charCount="20" wordCount="5" paraCount="1" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">Title Page</name>
|
<name status="s000000" import="i000004" active="yes">Title Page</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000d" parent="0000000000008" root="0000000000008" order="1" type="FOLDER" class="NOVEL">
|
<item handle="000000000000d" parent="0000000000008" root="0000000000008" order="1" type="FOLDER" class="NOVEL">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">New Chapter</name>
|
<name status="s000000" import="i000004">New Chapter</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000e" parent="000000000000d" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000e" parent="000000000000d" root="0000000000008" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H2" charCount="11" wordCount="2" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H2" charCount="11" wordCount="2" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">New Chapter</name>
|
<name status="s000000" import="i000004" active="yes">New Chapter</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000f" parent="000000000000d" root="0000000000008" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="000000000000f" parent="000000000000d" root="0000000000008" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H3" charCount="9" wordCount="2" paraCount="0" cursorPos="0"/>
|
<meta expanded="no" heading="H3" charCount="9" wordCount="2" paraCount="0" cursorPos="0" />
|
||||||
<name status="s000000" import="i000004" active="yes">New Scene</name>
|
<name status="s000000" import="i000004" active="yes">New Scene</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="0000000000009" parent="None" root="0000000000009" order="1" type="ROOT" class="PLOT">
|
<item handle="0000000000009" parent="None" root="0000000000009" order="1" type="ROOT" class="PLOT">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Plot</name>
|
<name status="s000000" import="i000004">Plot</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000a" parent="None" root="000000000000a" order="2" type="ROOT" class="CHARACTER">
|
<item handle="000000000000a" parent="None" root="000000000000a" order="2" type="ROOT" class="CHARACTER">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">Characters</name>
|
<name status="s000000" import="i000004">Characters</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="000000000000b" parent="None" root="000000000000b" order="3" type="ROOT" class="WORLD">
|
<item handle="000000000000b" parent="None" root="000000000000b" order="3" type="ROOT" class="WORLD">
|
||||||
<meta expanded="no"/>
|
<meta expanded="no" />
|
||||||
<name status="s000000" import="i000004">World</name>
|
<name status="s000000" import="i000004">World</name>
|
||||||
</item>
|
</item>
|
||||||
</content>
|
</content>
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
<entry key="chapter">Chapter %ch%: %title%</entry>
|
<entry key="chapter">Chapter %ch%: %title%</entry>
|
||||||
<entry key="unnumbered">%title%</entry>
|
<entry key="unnumbered">%title%</entry>
|
||||||
<entry key="scene">Scene %ch%.%sc%: %title%</entry>
|
<entry key="scene">Scene %ch%.%sc%: %title%</entry>
|
||||||
<entry key="section"></entry>
|
<entry key="section" />
|
||||||
</titleFormat>
|
</titleFormat>
|
||||||
<status>
|
<status>
|
||||||
<entry key="s000000" count="0" red="100" green="100" blue="100">New</entry>
|
<entry key="s000000" count="0" red="100" green="100" blue="100">New</entry>
|
||||||
@@ -45,91 +45,91 @@
|
|||||||
</settings>
|
</settings>
|
||||||
<content items="22" novelWords="0" notesWords="0">
|
<content items="22" novelWords="0" notesWords="0">
|
||||||
<item handle="7031beac91f75" parent="None" root="7031beac91f75" order="0" type="ROOT" class="NOVEL">
|
<item handle="7031beac91f75" parent="None" root="7031beac91f75" order="0" type="ROOT" class="NOVEL">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000002" import="i000007">Novel</name>
|
<name status="s000002" import="i000007">Novel</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="53b69b83cdafc" parent="7031beac91f75" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="53b69b83cdafc" parent="7031beac91f75" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="72" wordCount="15" paraCount="2" cursorPos="78"/>
|
<meta expanded="no" heading="H0" charCount="72" wordCount="15" paraCount="2" cursorPos="78" />
|
||||||
<name status="s000002" import="i000007" active="yes">Title Page</name>
|
<name status="s000002" import="i000007" active="yes">Title Page</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="974e400180a99" parent="7031beac91f75" root="None" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="974e400180a99" parent="7031beac91f75" root="None" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="208" wordCount="40" paraCount="2" cursorPos="213"/>
|
<meta expanded="no" heading="H0" charCount="208" wordCount="40" paraCount="2" cursorPos="213" />
|
||||||
<name status="s000000" import="i000007" active="yes">Page</name>
|
<name status="s000000" import="i000007" active="yes">Page</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="edca4be2fcaf8" parent="7031beac91f75" root="None" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="edca4be2fcaf8" parent="7031beac91f75" root="None" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="23" wordCount="5" paraCount="1" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="23" wordCount="5" paraCount="1" cursorPos="0" />
|
||||||
<name status="s000000" import="i000007" active="yes">Part One</name>
|
<name status="s000000" import="i000007" active="yes">Part One</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="e7ded148d6e4a" parent="7031beac91f75" root="None" order="3" type="FOLDER" class="NOVEL">
|
<item handle="e7ded148d6e4a" parent="7031beac91f75" root="None" order="3" type="FOLDER" class="NOVEL">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000003" import="i000007">A Folder</name>
|
<name status="s000003" import="i000007">A Folder</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="6a2d6d5f4f401" parent="e7ded148d6e4a" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="6a2d6d5f4f401" parent="e7ded148d6e4a" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="12" wordCount="3" paraCount="0" cursorPos="215"/>
|
<meta expanded="no" heading="H0" charCount="12" wordCount="3" paraCount="0" cursorPos="215" />
|
||||||
<name status="s000001" import="i000007" active="yes">Chapter One</name>
|
<name status="s000001" import="i000007" active="yes">Chapter One</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="636b6aa9b697b" parent="e7ded148d6e4a" root="None" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="636b6aa9b697b" parent="e7ded148d6e4a" root="None" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="1199" wordCount="216" paraCount="7" cursorPos="527"/>
|
<meta expanded="no" heading="H0" charCount="1199" wordCount="216" paraCount="7" cursorPos="527" />
|
||||||
<name status="s000003" import="i000007" active="yes">Making a Scene</name>
|
<name status="s000003" import="i000007" active="yes">Making a Scene</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="bc0cbd2a407f3" parent="e7ded148d6e4a" root="None" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="bc0cbd2a407f3" parent="e7ded148d6e4a" root="None" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="476" wordCount="93" paraCount="3" cursorPos="551"/>
|
<meta expanded="no" heading="H0" charCount="476" wordCount="93" paraCount="3" cursorPos="551" />
|
||||||
<name status="s000003" import="i000007" active="yes">Another Scene</name>
|
<name status="s000003" import="i000007" active="yes">Another Scene</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="ba8a28a246524" parent="e7ded148d6e4a" root="None" order="3" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="ba8a28a246524" parent="e7ded148d6e4a" root="None" order="3" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="633" wordCount="101" paraCount="3" cursorPos="1238"/>
|
<meta expanded="no" heading="H0" charCount="633" wordCount="101" paraCount="3" cursorPos="1238" />
|
||||||
<name status="s000006" import="i000007" active="yes">Interlude</name>
|
<name status="s000006" import="i000007" active="yes">Interlude</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="96b68994dfa3d" parent="e7ded148d6e4a" root="None" order="4" type="FILE" class="NOVEL" layout="NOTE">
|
<item handle="96b68994dfa3d" parent="e7ded148d6e4a" root="None" order="4" type="FILE" class="NOVEL" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="1692" wordCount="313" paraCount="6" cursorPos="1721"/>
|
<meta expanded="no" heading="H0" charCount="1692" wordCount="313" paraCount="6" cursorPos="1721" />
|
||||||
<name status="s000004" import="i000007" active="no">A Note on Structure</name>
|
<name status="s000004" import="i000007" active="no">A Note on Structure</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="88706ddc78b1b" parent="e7ded148d6e4a" root="None" order="5" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="88706ddc78b1b" parent="e7ded148d6e4a" root="None" order="5" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="139" wordCount="28" paraCount="1" cursorPos="343"/>
|
<meta expanded="no" heading="H0" charCount="139" wordCount="28" paraCount="1" cursorPos="343" />
|
||||||
<name status="s000003" import="i000007" active="yes">Chapter Two</name>
|
<name status="s000003" import="i000007" active="yes">Chapter Two</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="ae7339df26ded" parent="e7ded148d6e4a" root="None" order="6" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="ae7339df26ded" parent="e7ded148d6e4a" root="None" order="6" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="189" wordCount="37" paraCount="1" cursorPos="224"/>
|
<meta expanded="no" heading="H0" charCount="189" wordCount="37" paraCount="1" cursorPos="224" />
|
||||||
<name status="s000003" import="i000007" active="yes">We Found John!</name>
|
<name status="s000003" import="i000007" active="yes">We Found John!</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="f6622b4617424" parent="None" root="f6622b4617424" order="1" type="ROOT" class="CHARACTER">
|
<item handle="f6622b4617424" parent="None" root="f6622b4617424" order="1" type="ROOT" class="CHARACTER">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000000" import="i000007">Characters</name>
|
<name status="s000000" import="i000007">Characters</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="f7e2d9f330615" parent="f6622b4617424" root="None" order="0" type="FOLDER" class="CHARACTER">
|
<item handle="f7e2d9f330615" parent="f6622b4617424" root="None" order="0" type="FOLDER" class="CHARACTER">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000000" import="i000007">Main Characters</name>
|
<name status="s000000" import="i000007">Main Characters</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="14298de4d9524" parent="f7e2d9f330615" root="None" order="0" type="FILE" class="CHARACTER" layout="NOTE">
|
<item handle="14298de4d9524" parent="f7e2d9f330615" root="None" order="0" type="FILE" class="CHARACTER" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="49" wordCount="9" paraCount="1" cursorPos="24"/>
|
<meta expanded="no" heading="H0" charCount="49" wordCount="9" paraCount="1" cursorPos="24" />
|
||||||
<name status="s000000" import="i000008" active="yes">John Smith</name>
|
<name status="s000000" import="i000008" active="yes">John Smith</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="bb2c23b3c42cc" parent="f7e2d9f330615" root="None" order="1" type="FILE" class="CHARACTER" layout="NOTE">
|
<item handle="bb2c23b3c42cc" parent="f7e2d9f330615" root="None" order="1" type="FILE" class="CHARACTER" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="55" wordCount="9" paraCount="1" cursorPos="25"/>
|
<meta expanded="no" heading="H0" charCount="55" wordCount="9" paraCount="1" cursorPos="25" />
|
||||||
<name status="s000000" import="i000009" active="yes">Jane Smith</name>
|
<name status="s000000" import="i000009" active="yes">Jane Smith</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="15c4492bd5107" parent="None" root="15c4492bd5107" order="2" type="ROOT" class="WORLD">
|
<item handle="15c4492bd5107" parent="None" root="15c4492bd5107" order="2" type="ROOT" class="WORLD">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000000" import="i000007">Locations</name>
|
<name status="s000000" import="i000007">Locations</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="b3e74dbc1f584" parent="15c4492bd5107" root="None" order="0" type="FILE" class="WORLD" layout="NOTE">
|
<item handle="b3e74dbc1f584" parent="15c4492bd5107" root="None" order="0" type="FILE" class="WORLD" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="76" wordCount="15" paraCount="1" cursorPos="20"/>
|
<meta expanded="no" heading="H0" charCount="76" wordCount="15" paraCount="1" cursorPos="20" />
|
||||||
<name status="s000000" import="i00000a" active="yes">Earth</name>
|
<name status="s000000" import="i00000a" active="yes">Earth</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="f1471bef9f2ae" parent="15c4492bd5107" root="None" order="1" type="FILE" class="WORLD" layout="NOTE">
|
<item handle="f1471bef9f2ae" parent="15c4492bd5107" root="None" order="1" type="FILE" class="WORLD" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="115" wordCount="24" paraCount="1" cursorPos="133"/>
|
<meta expanded="no" heading="H0" charCount="115" wordCount="24" paraCount="1" cursorPos="133" />
|
||||||
<name status="s000000" import="i000008" active="yes">Space</name>
|
<name status="s000000" import="i000008" active="yes">Space</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="5eaea4e8cdee8" parent="15c4492bd5107" root="None" order="2" type="FILE" class="WORLD" layout="NOTE">
|
<item handle="5eaea4e8cdee8" parent="15c4492bd5107" root="None" order="2" type="FILE" class="WORLD" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="28" wordCount="6" paraCount="1" cursorPos="45"/>
|
<meta expanded="no" heading="H0" charCount="28" wordCount="6" paraCount="1" cursorPos="45" />
|
||||||
<name status="s000000" import="i000009" active="yes">Mars</name>
|
<name status="s000000" import="i000009" active="yes">Mars</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="98acd8c76c93a" parent="None" root="98acd8c76c93a" order="3" type="ROOT" class="TRASH">
|
<item handle="98acd8c76c93a" parent="None" root="98acd8c76c93a" order="3" type="ROOT" class="TRASH">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000000" import="i000007">Trash</name>
|
<name status="s000000" import="i000007">Trash</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="b8136a5a774a0" parent="98acd8c76c93a" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="b8136a5a774a0" parent="98acd8c76c93a" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="36"/>
|
<meta expanded="no" heading="H0" charCount="0" wordCount="0" paraCount="0" cursorPos="36" />
|
||||||
<name status="s000000" import="i000007" active="yes">Delete Me!</name>
|
<name status="s000000" import="i000007" active="yes">Delete Me!</name>
|
||||||
</item>
|
</item>
|
||||||
</content>
|
</content>
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
<entry key="chapter">Chapter %ch%: %title%</entry>
|
<entry key="chapter">Chapter %ch%: %title%</entry>
|
||||||
<entry key="unnumbered">%title%</entry>
|
<entry key="unnumbered">%title%</entry>
|
||||||
<entry key="scene">Scene %ch%.%sc%: %title%</entry>
|
<entry key="scene">Scene %ch%.%sc%: %title%</entry>
|
||||||
<entry key="section"></entry>
|
<entry key="section" />
|
||||||
</titleFormat>
|
</titleFormat>
|
||||||
<status>
|
<status>
|
||||||
<entry key="s000000" count="0" red="100" green="100" blue="100">New</entry>
|
<entry key="s000000" count="0" red="100" green="100" blue="100">New</entry>
|
||||||
@@ -45,91 +45,91 @@
|
|||||||
</settings>
|
</settings>
|
||||||
<content items="22" novelWords="0" notesWords="0">
|
<content items="22" novelWords="0" notesWords="0">
|
||||||
<item handle="7031beac91f75" parent="None" root="7031beac91f75" order="0" type="ROOT" class="NOVEL">
|
<item handle="7031beac91f75" parent="None" root="7031beac91f75" order="0" type="ROOT" class="NOVEL">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000002" import="i000007">Novel</name>
|
<name status="s000002" import="i000007">Novel</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="53b69b83cdafc" parent="7031beac91f75" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="53b69b83cdafc" parent="7031beac91f75" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="72" wordCount="15" paraCount="2" cursorPos="78"/>
|
<meta expanded="no" heading="H0" charCount="72" wordCount="15" paraCount="2" cursorPos="78" />
|
||||||
<name status="s000002" import="i000007" active="yes">Title Page</name>
|
<name status="s000002" import="i000007" active="yes">Title Page</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="974e400180a99" parent="7031beac91f75" root="None" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="974e400180a99" parent="7031beac91f75" root="None" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="210" wordCount="40" paraCount="2" cursorPos="213"/>
|
<meta expanded="no" heading="H0" charCount="210" wordCount="40" paraCount="2" cursorPos="213" />
|
||||||
<name status="s000000" import="i000007" active="yes">Page</name>
|
<name status="s000000" import="i000007" active="yes">Page</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="edca4be2fcaf8" parent="7031beac91f75" root="None" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="edca4be2fcaf8" parent="7031beac91f75" root="None" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="23" wordCount="5" paraCount="1" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="23" wordCount="5" paraCount="1" cursorPos="0" />
|
||||||
<name status="s000000" import="i000007" active="yes">Part One</name>
|
<name status="s000000" import="i000007" active="yes">Part One</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="e7ded148d6e4a" parent="7031beac91f75" root="None" order="3" type="FOLDER" class="NOVEL">
|
<item handle="e7ded148d6e4a" parent="7031beac91f75" root="None" order="3" type="FOLDER" class="NOVEL">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000003" import="i000007">A Folder</name>
|
<name status="s000003" import="i000007">A Folder</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="6a2d6d5f4f401" parent="e7ded148d6e4a" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="6a2d6d5f4f401" parent="e7ded148d6e4a" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="12" wordCount="3" paraCount="0" cursorPos="215"/>
|
<meta expanded="no" heading="H0" charCount="12" wordCount="3" paraCount="0" cursorPos="215" />
|
||||||
<name status="s000001" import="i000007" active="yes">Chapter One</name>
|
<name status="s000001" import="i000007" active="yes">Chapter One</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="636b6aa9b697b" parent="e7ded148d6e4a" root="None" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="636b6aa9b697b" parent="e7ded148d6e4a" root="None" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="1483" wordCount="263" paraCount="8" cursorPos="1086"/>
|
<meta expanded="no" heading="H0" charCount="1483" wordCount="263" paraCount="8" cursorPos="1086" />
|
||||||
<name status="s000003" import="i000007" active="yes">Making a Scene</name>
|
<name status="s000003" import="i000007" active="yes">Making a Scene</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="bc0cbd2a407f3" parent="e7ded148d6e4a" root="None" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="bc0cbd2a407f3" parent="e7ded148d6e4a" root="None" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="476" wordCount="93" paraCount="3" cursorPos="428"/>
|
<meta expanded="no" heading="H0" charCount="476" wordCount="93" paraCount="3" cursorPos="428" />
|
||||||
<name status="s000003" import="i000007" active="yes">Another Scene</name>
|
<name status="s000003" import="i000007" active="yes">Another Scene</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="ba8a28a246524" parent="e7ded148d6e4a" root="None" order="3" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="ba8a28a246524" parent="e7ded148d6e4a" root="None" order="3" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="633" wordCount="101" paraCount="3" cursorPos="1238"/>
|
<meta expanded="no" heading="H0" charCount="633" wordCount="101" paraCount="3" cursorPos="1238" />
|
||||||
<name status="s000006" import="i000007" active="yes">Interlude</name>
|
<name status="s000006" import="i000007" active="yes">Interlude</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="96b68994dfa3d" parent="e7ded148d6e4a" root="None" order="4" type="FILE" class="NOVEL" layout="NOTE">
|
<item handle="96b68994dfa3d" parent="e7ded148d6e4a" root="None" order="4" type="FILE" class="NOVEL" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="1692" wordCount="313" paraCount="6" cursorPos="1721"/>
|
<meta expanded="no" heading="H0" charCount="1692" wordCount="313" paraCount="6" cursorPos="1721" />
|
||||||
<name status="s000004" import="i000007" active="no">A Note on Structure</name>
|
<name status="s000004" import="i000007" active="no">A Note on Structure</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="88706ddc78b1b" parent="e7ded148d6e4a" root="None" order="5" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="88706ddc78b1b" parent="e7ded148d6e4a" root="None" order="5" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="139" wordCount="28" paraCount="1" cursorPos="343"/>
|
<meta expanded="no" heading="H0" charCount="139" wordCount="28" paraCount="1" cursorPos="343" />
|
||||||
<name status="s000003" import="i000007" active="yes">Chapter Two</name>
|
<name status="s000003" import="i000007" active="yes">Chapter Two</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="ae7339df26ded" parent="e7ded148d6e4a" root="None" order="6" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="ae7339df26ded" parent="e7ded148d6e4a" root="None" order="6" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="189" wordCount="37" paraCount="1" cursorPos="224"/>
|
<meta expanded="no" heading="H0" charCount="189" wordCount="37" paraCount="1" cursorPos="224" />
|
||||||
<name status="s000003" import="i000007" active="yes">We Found John!</name>
|
<name status="s000003" import="i000007" active="yes">We Found John!</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="f6622b4617424" parent="None" root="f6622b4617424" order="1" type="ROOT" class="CHARACTER">
|
<item handle="f6622b4617424" parent="None" root="f6622b4617424" order="1" type="ROOT" class="CHARACTER">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000000" import="i000007">Characters</name>
|
<name status="s000000" import="i000007">Characters</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="f7e2d9f330615" parent="f6622b4617424" root="None" order="0" type="FOLDER" class="CHARACTER">
|
<item handle="f7e2d9f330615" parent="f6622b4617424" root="None" order="0" type="FOLDER" class="CHARACTER">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000000" import="i000007">Main Characters</name>
|
<name status="s000000" import="i000007">Main Characters</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="14298de4d9524" parent="f7e2d9f330615" root="None" order="0" type="FILE" class="CHARACTER" layout="NOTE">
|
<item handle="14298de4d9524" parent="f7e2d9f330615" root="None" order="0" type="FILE" class="CHARACTER" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="49" wordCount="9" paraCount="1" cursorPos="24"/>
|
<meta expanded="no" heading="H0" charCount="49" wordCount="9" paraCount="1" cursorPos="24" />
|
||||||
<name status="s000000" import="i000008" active="yes">John Smith</name>
|
<name status="s000000" import="i000008" active="yes">John Smith</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="bb2c23b3c42cc" parent="f7e2d9f330615" root="None" order="1" type="FILE" class="CHARACTER" layout="NOTE">
|
<item handle="bb2c23b3c42cc" parent="f7e2d9f330615" root="None" order="1" type="FILE" class="CHARACTER" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="55" wordCount="9" paraCount="1" cursorPos="25"/>
|
<meta expanded="no" heading="H0" charCount="55" wordCount="9" paraCount="1" cursorPos="25" />
|
||||||
<name status="s000000" import="i000009" active="yes">Jane Smith</name>
|
<name status="s000000" import="i000009" active="yes">Jane Smith</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="15c4492bd5107" parent="None" root="15c4492bd5107" order="2" type="ROOT" class="WORLD">
|
<item handle="15c4492bd5107" parent="None" root="15c4492bd5107" order="2" type="ROOT" class="WORLD">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000000" import="i000007">Locations</name>
|
<name status="s000000" import="i000007">Locations</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="b3e74dbc1f584" parent="15c4492bd5107" root="None" order="0" type="FILE" class="WORLD" layout="NOTE">
|
<item handle="b3e74dbc1f584" parent="15c4492bd5107" root="None" order="0" type="FILE" class="WORLD" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="76" wordCount="15" paraCount="1" cursorPos="20"/>
|
<meta expanded="no" heading="H0" charCount="76" wordCount="15" paraCount="1" cursorPos="20" />
|
||||||
<name status="s000000" import="i00000a" active="yes">Earth</name>
|
<name status="s000000" import="i00000a" active="yes">Earth</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="f1471bef9f2ae" parent="15c4492bd5107" root="None" order="1" type="FILE" class="WORLD" layout="NOTE">
|
<item handle="f1471bef9f2ae" parent="15c4492bd5107" root="None" order="1" type="FILE" class="WORLD" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="115" wordCount="24" paraCount="1" cursorPos="133"/>
|
<meta expanded="no" heading="H0" charCount="115" wordCount="24" paraCount="1" cursorPos="133" />
|
||||||
<name status="s000000" import="i000008" active="yes">Space</name>
|
<name status="s000000" import="i000008" active="yes">Space</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="5eaea4e8cdee8" parent="15c4492bd5107" root="None" order="2" type="FILE" class="WORLD" layout="NOTE">
|
<item handle="5eaea4e8cdee8" parent="15c4492bd5107" root="None" order="2" type="FILE" class="WORLD" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="28" wordCount="6" paraCount="1" cursorPos="45"/>
|
<meta expanded="no" heading="H0" charCount="28" wordCount="6" paraCount="1" cursorPos="45" />
|
||||||
<name status="s000000" import="i000009" active="yes">Mars</name>
|
<name status="s000000" import="i000009" active="yes">Mars</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="98acd8c76c93a" parent="None" root="98acd8c76c93a" order="3" type="ROOT" class="TRASH">
|
<item handle="98acd8c76c93a" parent="None" root="98acd8c76c93a" order="3" type="ROOT" class="TRASH">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000000" import="i000007">Trash</name>
|
<name status="s000000" import="i000007">Trash</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="b8136a5a774a0" parent="98acd8c76c93a" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="b8136a5a774a0" parent="98acd8c76c93a" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="30" wordCount="6" paraCount="1" cursorPos="36"/>
|
<meta expanded="no" heading="H0" charCount="30" wordCount="6" paraCount="1" cursorPos="36" />
|
||||||
<name status="s000000" import="i000007" active="yes">Delete Me!</name>
|
<name status="s000000" import="i000007" active="yes">Delete Me!</name>
|
||||||
</item>
|
</item>
|
||||||
</content>
|
</content>
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
<entry key="chapter">Chapter %chw%: %title%</entry>
|
<entry key="chapter">Chapter %chw%: %title%</entry>
|
||||||
<entry key="unnumbered">%title%</entry>
|
<entry key="unnumbered">%title%</entry>
|
||||||
<entry key="scene">Scene %ch%.%sc%: %title%</entry>
|
<entry key="scene">Scene %ch%.%sc%: %title%</entry>
|
||||||
<entry key="section"></entry>
|
<entry key="section" />
|
||||||
</titleFormat>
|
</titleFormat>
|
||||||
<status>
|
<status>
|
||||||
<entry key="s000000" count="0" red="100" green="100" blue="100">New</entry>
|
<entry key="s000000" count="0" red="100" green="100" blue="100">New</entry>
|
||||||
@@ -45,103 +45,103 @@
|
|||||||
</settings>
|
</settings>
|
||||||
<content items="25" novelWords="840" notesWords="376">
|
<content items="25" novelWords="840" notesWords="376">
|
||||||
<item handle="7031beac91f75" parent="None" root="7031beac91f75" order="0" type="ROOT" class="NOVEL">
|
<item handle="7031beac91f75" parent="None" root="7031beac91f75" order="0" type="ROOT" class="NOVEL">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000002" import="i000007">Novel</name>
|
<name status="s000002" import="i000007">Novel</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="53b69b83cdafc" parent="7031beac91f75" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="53b69b83cdafc" parent="7031beac91f75" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="241" wordCount="42" paraCount="3" cursorPos="252"/>
|
<meta expanded="no" heading="H0" charCount="241" wordCount="42" paraCount="3" cursorPos="252" />
|
||||||
<name status="s000002" import="i000007" active="yes">Title Page</name>
|
<name status="s000002" import="i000007" active="yes">Title Page</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="974e400180a99" parent="7031beac91f75" root="None" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="974e400180a99" parent="7031beac91f75" root="None" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="125" wordCount="26" paraCount="2" cursorPos="127"/>
|
<meta expanded="no" heading="H0" charCount="125" wordCount="26" paraCount="2" cursorPos="127" />
|
||||||
<name status="s000000" import="i000007" active="yes">Page</name>
|
<name status="s000000" import="i000007" active="yes">Page</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="edca4be2fcaf8" parent="7031beac91f75" root="None" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="edca4be2fcaf8" parent="7031beac91f75" root="None" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="26" wordCount="6" paraCount="1" cursorPos="30"/>
|
<meta expanded="no" heading="H0" charCount="26" wordCount="6" paraCount="1" cursorPos="30" />
|
||||||
<name status="s000000" import="i000007" active="yes">Part One</name>
|
<name status="s000000" import="i000007" active="yes">Part One</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="e7ded148d6e4a" parent="7031beac91f75" root="None" order="3" type="FOLDER" class="NOVEL">
|
<item handle="e7ded148d6e4a" parent="7031beac91f75" root="None" order="3" type="FOLDER" class="NOVEL">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000003" import="i000007">A Folder</name>
|
<name status="s000003" import="i000007">A Folder</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="6a2d6d5f4f401" parent="e7ded148d6e4a" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="6a2d6d5f4f401" parent="e7ded148d6e4a" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="75" wordCount="14" paraCount="1" cursorPos="279"/>
|
<meta expanded="no" heading="H0" charCount="75" wordCount="14" paraCount="1" cursorPos="279" />
|
||||||
<name status="s000001" import="i000007" active="yes">Chapter One</name>
|
<name status="s000001" import="i000007" active="yes">Chapter One</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="636b6aa9b697b" parent="e7ded148d6e4a" root="None" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="636b6aa9b697b" parent="e7ded148d6e4a" root="None" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="2429" wordCount="432" paraCount="14" cursorPos="61"/>
|
<meta expanded="no" heading="H0" charCount="2429" wordCount="432" paraCount="14" cursorPos="61" />
|
||||||
<name status="s000003" import="i000007" active="yes">Making a Scene</name>
|
<name status="s000003" import="i000007" active="yes">Making a Scene</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="bc0cbd2a407f3" parent="e7ded148d6e4a" root="None" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="bc0cbd2a407f3" parent="e7ded148d6e4a" root="None" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="476" wordCount="93" paraCount="3" cursorPos="577"/>
|
<meta expanded="no" heading="H0" charCount="476" wordCount="93" paraCount="3" cursorPos="577" />
|
||||||
<name status="s000003" import="i000007" active="yes">Another Scene</name>
|
<name status="s000003" import="i000007" active="yes">Another Scene</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="ba8a28a246524" parent="e7ded148d6e4a" root="None" order="3" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="ba8a28a246524" parent="e7ded148d6e4a" root="None" order="3" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="617" wordCount="101" paraCount="3" cursorPos="1137"/>
|
<meta expanded="no" heading="H0" charCount="617" wordCount="101" paraCount="3" cursorPos="1137" />
|
||||||
<name status="s000000" import="i000007" active="yes">Interlude</name>
|
<name status="s000000" import="i000007" active="yes">Interlude</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="96b68994dfa3d" parent="e7ded148d6e4a" root="None" order="4" type="FILE" class="NOVEL" layout="NOTE">
|
<item handle="96b68994dfa3d" parent="e7ded148d6e4a" root="None" order="4" type="FILE" class="NOVEL" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="1692" wordCount="313" paraCount="6" cursorPos="1110"/>
|
<meta expanded="no" heading="H0" charCount="1692" wordCount="313" paraCount="6" cursorPos="1110" />
|
||||||
<name status="s000004" import="i000007" active="no">A Note on Structure</name>
|
<name status="s000004" import="i000007" active="no">A Note on Structure</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="88706ddc78b1b" parent="e7ded148d6e4a" root="None" order="5" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="88706ddc78b1b" parent="e7ded148d6e4a" root="None" order="5" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="139" wordCount="28" paraCount="1" cursorPos="343"/>
|
<meta expanded="no" heading="H0" charCount="139" wordCount="28" paraCount="1" cursorPos="343" />
|
||||||
<name status="s000003" import="i000007" active="yes">Chapter Two</name>
|
<name status="s000003" import="i000007" active="yes">Chapter Two</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="ae7339df26ded" parent="e7ded148d6e4a" root="None" order="6" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="ae7339df26ded" parent="e7ded148d6e4a" root="None" order="6" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="189" wordCount="37" paraCount="1" cursorPos="224"/>
|
<meta expanded="no" heading="H0" charCount="189" wordCount="37" paraCount="1" cursorPos="224" />
|
||||||
<name status="s000003" import="i000007" active="yes">We Found John!</name>
|
<name status="s000003" import="i000007" active="yes">We Found John!</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="f6622b4617424" parent="None" root="f6622b4617424" order="1" type="ROOT" class="CHARACTER">
|
<item handle="f6622b4617424" parent="None" root="f6622b4617424" order="1" type="ROOT" class="CHARACTER">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000000" import="i000007">Characters</name>
|
<name status="s000000" import="i000007">Characters</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="f7e2d9f330615" parent="f6622b4617424" root="None" order="0" type="FOLDER" class="CHARACTER">
|
<item handle="f7e2d9f330615" parent="f6622b4617424" root="None" order="0" type="FOLDER" class="CHARACTER">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000000" import="i000007">Main Characters</name>
|
<name status="s000000" import="i000007">Main Characters</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="14298de4d9524" parent="f7e2d9f330615" root="None" order="0" type="FILE" class="CHARACTER" layout="NOTE">
|
<item handle="14298de4d9524" parent="f7e2d9f330615" root="None" order="0" type="FILE" class="CHARACTER" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="49" wordCount="9" paraCount="1" cursorPos="24"/>
|
<meta expanded="no" heading="H0" charCount="49" wordCount="9" paraCount="1" cursorPos="24" />
|
||||||
<name status="s000000" import="i000008" active="yes">John Smith</name>
|
<name status="s000000" import="i000008" active="yes">John Smith</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="bb2c23b3c42cc" parent="f7e2d9f330615" root="None" order="1" type="FILE" class="CHARACTER" layout="NOTE">
|
<item handle="bb2c23b3c42cc" parent="f7e2d9f330615" root="None" order="1" type="FILE" class="CHARACTER" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="55" wordCount="9" paraCount="1" cursorPos="25"/>
|
<meta expanded="no" heading="H0" charCount="55" wordCount="9" paraCount="1" cursorPos="25" />
|
||||||
<name status="s000000" import="i000009" active="yes">Jane Smith</name>
|
<name status="s000000" import="i000009" active="yes">Jane Smith</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="15c4492bd5107" parent="None" root="15c4492bd5107" order="2" type="ROOT" class="WORLD">
|
<item handle="15c4492bd5107" parent="None" root="15c4492bd5107" order="2" type="ROOT" class="WORLD">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000000" import="i000007">Locations</name>
|
<name status="s000000" import="i000007">Locations</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="b3e74dbc1f584" parent="15c4492bd5107" root="None" order="0" type="FILE" class="WORLD" layout="NOTE">
|
<item handle="b3e74dbc1f584" parent="15c4492bd5107" root="None" order="0" type="FILE" class="WORLD" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="76" wordCount="15" paraCount="1" cursorPos="20"/>
|
<meta expanded="no" heading="H0" charCount="76" wordCount="15" paraCount="1" cursorPos="20" />
|
||||||
<name status="s000000" import="i00000a" active="yes">Earth</name>
|
<name status="s000000" import="i00000a" active="yes">Earth</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="f1471bef9f2ae" parent="15c4492bd5107" root="None" order="1" type="FILE" class="WORLD" layout="NOTE">
|
<item handle="f1471bef9f2ae" parent="15c4492bd5107" root="None" order="1" type="FILE" class="WORLD" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="115" wordCount="24" paraCount="1" cursorPos="133"/>
|
<meta expanded="no" heading="H0" charCount="115" wordCount="24" paraCount="1" cursorPos="133" />
|
||||||
<name status="s000000" import="i000008" active="yes">Space</name>
|
<name status="s000000" import="i000008" active="yes">Space</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="5eaea4e8cdee8" parent="15c4492bd5107" root="None" order="2" type="FILE" class="WORLD" layout="NOTE">
|
<item handle="5eaea4e8cdee8" parent="15c4492bd5107" root="None" order="2" type="FILE" class="WORLD" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="28" wordCount="6" paraCount="1" cursorPos="45"/>
|
<meta expanded="no" heading="H0" charCount="28" wordCount="6" paraCount="1" cursorPos="45" />
|
||||||
<name status="s000000" import="i000009" active="yes">Mars</name>
|
<name status="s000000" import="i000009" active="yes">Mars</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="6827118336ac1" parent="None" root="6827118336ac1" order="3" type="ROOT" class="ARCHIVE">
|
<item handle="6827118336ac1" parent="None" root="6827118336ac1" order="3" type="ROOT" class="ARCHIVE">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000000" import="i000007">Outtakes</name>
|
<name status="s000000" import="i000007">Outtakes</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="ae9bf3c3ea159" parent="6827118336ac1" root="None" order="0" type="FOLDER" class="ARCHIVE">
|
<item handle="ae9bf3c3ea159" parent="6827118336ac1" root="None" order="0" type="FOLDER" class="ARCHIVE">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000000" import="i000007">Scenes</name>
|
<name status="s000000" import="i000007">Scenes</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="8a5deb88c0e97" parent="ae9bf3c3ea159" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="8a5deb88c0e97" parent="ae9bf3c3ea159" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="315" wordCount="55" paraCount="1" cursorPos="322"/>
|
<meta expanded="no" heading="H0" charCount="315" wordCount="55" paraCount="1" cursorPos="322" />
|
||||||
<name status="s000003" import="i000007" active="yes">Old File</name>
|
<name status="s000003" import="i000007" active="yes">Old File</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="98acd8c76c93a" parent="None" root="98acd8c76c93a" order="4" type="ROOT" class="TRASH">
|
<item handle="98acd8c76c93a" parent="None" root="98acd8c76c93a" order="4" type="ROOT" class="TRASH">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000000" import="i000007">Trash</name>
|
<name status="s000000" import="i000007">Trash</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="b8136a5a774a0" parent="98acd8c76c93a" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="b8136a5a774a0" parent="98acd8c76c93a" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="30" wordCount="6" paraCount="1" cursorPos="36"/>
|
<meta expanded="no" heading="H0" charCount="30" wordCount="6" paraCount="1" cursorPos="36" />
|
||||||
<name status="s000000" import="i000007" active="yes">Delete Me!</name>
|
<name status="s000000" import="i000007" active="yes">Delete Me!</name>
|
||||||
</item>
|
</item>
|
||||||
</content>
|
</content>
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
<entry key="chapter">Chapter %chw%: %title%</entry>
|
<entry key="chapter">Chapter %chw%: %title%</entry>
|
||||||
<entry key="unnumbered">%title%</entry>
|
<entry key="unnumbered">%title%</entry>
|
||||||
<entry key="scene">Scene %ch%.%sc%: %title%</entry>
|
<entry key="scene">Scene %ch%.%sc%: %title%</entry>
|
||||||
<entry key="section"></entry>
|
<entry key="section" />
|
||||||
</titleFormat>
|
</titleFormat>
|
||||||
<status>
|
<status>
|
||||||
<entry key="s000000" count="0" red="100" green="100" blue="100">New</entry>
|
<entry key="s000000" count="0" red="100" green="100" blue="100">New</entry>
|
||||||
@@ -45,103 +45,103 @@
|
|||||||
</settings>
|
</settings>
|
||||||
<content items="25" novelWords="830" notesWords="376">
|
<content items="25" novelWords="830" notesWords="376">
|
||||||
<item handle="7031beac91f75" parent="None" root="7031beac91f75" order="0" type="ROOT" class="NOVEL">
|
<item handle="7031beac91f75" parent="None" root="7031beac91f75" order="0" type="ROOT" class="NOVEL">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000002" import="i000007">Novel</name>
|
<name status="s000002" import="i000007">Novel</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="53b69b83cdafc" parent="7031beac91f75" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="53b69b83cdafc" parent="7031beac91f75" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="93" wordCount="19" paraCount="2" cursorPos="2"/>
|
<meta expanded="no" heading="H0" charCount="93" wordCount="19" paraCount="2" cursorPos="2" />
|
||||||
<name status="s000002" import="i000007" active="yes">Title Page</name>
|
<name status="s000002" import="i000007" active="yes">Title Page</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="974e400180a99" parent="7031beac91f75" root="None" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="974e400180a99" parent="7031beac91f75" root="None" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="186" wordCount="39" paraCount="2" cursorPos="212"/>
|
<meta expanded="no" heading="H0" charCount="186" wordCount="39" paraCount="2" cursorPos="212" />
|
||||||
<name status="s000000" import="i000007" active="yes">Page</name>
|
<name status="s000000" import="i000007" active="yes">Page</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="edca4be2fcaf8" parent="7031beac91f75" root="None" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="edca4be2fcaf8" parent="7031beac91f75" root="None" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="26" wordCount="6" paraCount="1" cursorPos="33"/>
|
<meta expanded="no" heading="H0" charCount="26" wordCount="6" paraCount="1" cursorPos="33" />
|
||||||
<name status="s000000" import="i000007" active="yes">Part One</name>
|
<name status="s000000" import="i000007" active="yes">Part One</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="e7ded148d6e4a" parent="7031beac91f75" root="None" order="3" type="FOLDER" class="NOVEL">
|
<item handle="e7ded148d6e4a" parent="7031beac91f75" root="None" order="3" type="FOLDER" class="NOVEL">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000003" import="i000007">A Folder</name>
|
<name status="s000003" import="i000007">A Folder</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="6a2d6d5f4f401" parent="e7ded148d6e4a" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="6a2d6d5f4f401" parent="e7ded148d6e4a" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="75" wordCount="14" paraCount="1" cursorPos="279"/>
|
<meta expanded="no" heading="H0" charCount="75" wordCount="14" paraCount="1" cursorPos="279" />
|
||||||
<name status="s000001" import="i000007" active="yes">Chapter One</name>
|
<name status="s000001" import="i000007" active="yes">Chapter One</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="636b6aa9b697b" parent="e7ded148d6e4a" root="None" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="636b6aa9b697b" parent="e7ded148d6e4a" root="None" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="2429" wordCount="432" paraCount="14" cursorPos="62"/>
|
<meta expanded="no" heading="H0" charCount="2429" wordCount="432" paraCount="14" cursorPos="62" />
|
||||||
<name status="s000003" import="i000007" active="yes">Making a Scene</name>
|
<name status="s000003" import="i000007" active="yes">Making a Scene</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="bc0cbd2a407f3" parent="e7ded148d6e4a" root="None" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="bc0cbd2a407f3" parent="e7ded148d6e4a" root="None" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="476" wordCount="93" paraCount="3" cursorPos="577"/>
|
<meta expanded="no" heading="H0" charCount="476" wordCount="93" paraCount="3" cursorPos="577" />
|
||||||
<name status="s000003" import="i000007" active="yes">Another Scene</name>
|
<name status="s000003" import="i000007" active="yes">Another Scene</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="ba8a28a246524" parent="e7ded148d6e4a" root="None" order="3" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="ba8a28a246524" parent="e7ded148d6e4a" root="None" order="3" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="617" wordCount="101" paraCount="3" cursorPos="4"/>
|
<meta expanded="no" heading="H0" charCount="617" wordCount="101" paraCount="3" cursorPos="4" />
|
||||||
<name status="s000000" import="i000007" active="yes">Interlude</name>
|
<name status="s000000" import="i000007" active="yes">Interlude</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="96b68994dfa3d" parent="e7ded148d6e4a" root="None" order="4" type="FILE" class="NOVEL" layout="NOTE">
|
<item handle="96b68994dfa3d" parent="e7ded148d6e4a" root="None" order="4" type="FILE" class="NOVEL" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="1692" wordCount="313" paraCount="6" cursorPos="1110"/>
|
<meta expanded="no" heading="H0" charCount="1692" wordCount="313" paraCount="6" cursorPos="1110" />
|
||||||
<name status="s000004" import="i000007" active="no">A Note on Structure</name>
|
<name status="s000004" import="i000007" active="no">A Note on Structure</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="88706ddc78b1b" parent="e7ded148d6e4a" root="None" order="5" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="88706ddc78b1b" parent="e7ded148d6e4a" root="None" order="5" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="139" wordCount="28" paraCount="1" cursorPos="343"/>
|
<meta expanded="no" heading="H0" charCount="139" wordCount="28" paraCount="1" cursorPos="343" />
|
||||||
<name status="s000003" import="i000007" active="yes">Chapter Two</name>
|
<name status="s000003" import="i000007" active="yes">Chapter Two</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="ae7339df26ded" parent="e7ded148d6e4a" root="None" order="6" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="ae7339df26ded" parent="e7ded148d6e4a" root="None" order="6" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="189" wordCount="37" paraCount="1" cursorPos="224"/>
|
<meta expanded="no" heading="H0" charCount="189" wordCount="37" paraCount="1" cursorPos="224" />
|
||||||
<name status="s000003" import="i000007" active="yes">We Found John!</name>
|
<name status="s000003" import="i000007" active="yes">We Found John!</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="f6622b4617424" parent="None" root="f6622b4617424" order="1" type="ROOT" class="CHARACTER">
|
<item handle="f6622b4617424" parent="None" root="f6622b4617424" order="1" type="ROOT" class="CHARACTER">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000000" import="i000007">Characters</name>
|
<name status="s000000" import="i000007">Characters</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="f7e2d9f330615" parent="f6622b4617424" root="None" order="0" type="FOLDER" class="CHARACTER">
|
<item handle="f7e2d9f330615" parent="f6622b4617424" root="None" order="0" type="FOLDER" class="CHARACTER">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000000" import="i000007">Main Characters</name>
|
<name status="s000000" import="i000007">Main Characters</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="14298de4d9524" parent="f7e2d9f330615" root="None" order="0" type="FILE" class="CHARACTER" layout="NOTE">
|
<item handle="14298de4d9524" parent="f7e2d9f330615" root="None" order="0" type="FILE" class="CHARACTER" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="49" wordCount="9" paraCount="1" cursorPos="24"/>
|
<meta expanded="no" heading="H0" charCount="49" wordCount="9" paraCount="1" cursorPos="24" />
|
||||||
<name status="s000000" import="i000008" active="yes">John Smith</name>
|
<name status="s000000" import="i000008" active="yes">John Smith</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="bb2c23b3c42cc" parent="f7e2d9f330615" root="None" order="1" type="FILE" class="CHARACTER" layout="NOTE">
|
<item handle="bb2c23b3c42cc" parent="f7e2d9f330615" root="None" order="1" type="FILE" class="CHARACTER" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="55" wordCount="9" paraCount="1" cursorPos="25"/>
|
<meta expanded="no" heading="H0" charCount="55" wordCount="9" paraCount="1" cursorPos="25" />
|
||||||
<name status="s000000" import="i000009" active="yes">Jane Smith</name>
|
<name status="s000000" import="i000009" active="yes">Jane Smith</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="15c4492bd5107" parent="None" root="15c4492bd5107" order="2" type="ROOT" class="WORLD">
|
<item handle="15c4492bd5107" parent="None" root="15c4492bd5107" order="2" type="ROOT" class="WORLD">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000000" import="i000007">Locations</name>
|
<name status="s000000" import="i000007">Locations</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="b3e74dbc1f584" parent="15c4492bd5107" root="None" order="0" type="FILE" class="WORLD" layout="NOTE">
|
<item handle="b3e74dbc1f584" parent="15c4492bd5107" root="None" order="0" type="FILE" class="WORLD" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="76" wordCount="15" paraCount="1" cursorPos="20"/>
|
<meta expanded="no" heading="H0" charCount="76" wordCount="15" paraCount="1" cursorPos="20" />
|
||||||
<name status="s000000" import="i00000a" active="yes">Earth</name>
|
<name status="s000000" import="i00000a" active="yes">Earth</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="f1471bef9f2ae" parent="15c4492bd5107" root="None" order="1" type="FILE" class="WORLD" layout="NOTE">
|
<item handle="f1471bef9f2ae" parent="15c4492bd5107" root="None" order="1" type="FILE" class="WORLD" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="115" wordCount="24" paraCount="1" cursorPos="133"/>
|
<meta expanded="no" heading="H0" charCount="115" wordCount="24" paraCount="1" cursorPos="133" />
|
||||||
<name status="s000000" import="i000008" active="yes">Space</name>
|
<name status="s000000" import="i000008" active="yes">Space</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="5eaea4e8cdee8" parent="15c4492bd5107" root="None" order="2" type="FILE" class="WORLD" layout="NOTE">
|
<item handle="5eaea4e8cdee8" parent="15c4492bd5107" root="None" order="2" type="FILE" class="WORLD" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="28" wordCount="6" paraCount="1" cursorPos="45"/>
|
<meta expanded="no" heading="H0" charCount="28" wordCount="6" paraCount="1" cursorPos="45" />
|
||||||
<name status="s000000" import="i000009" active="yes">Mars</name>
|
<name status="s000000" import="i000009" active="yes">Mars</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="6827118336ac1" parent="None" root="6827118336ac1" order="3" type="ROOT" class="ARCHIVE">
|
<item handle="6827118336ac1" parent="None" root="6827118336ac1" order="3" type="ROOT" class="ARCHIVE">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000000" import="i000007">Archive</name>
|
<name status="s000000" import="i000007">Archive</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="ae9bf3c3ea159" parent="6827118336ac1" root="None" order="0" type="FOLDER" class="ARCHIVE">
|
<item handle="ae9bf3c3ea159" parent="6827118336ac1" root="None" order="0" type="FOLDER" class="ARCHIVE">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000000" import="i000007">Scenes</name>
|
<name status="s000000" import="i000007">Scenes</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="8a5deb88c0e97" parent="ae9bf3c3ea159" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="8a5deb88c0e97" parent="ae9bf3c3ea159" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="314" wordCount="55" paraCount="1" cursorPos="322"/>
|
<meta expanded="no" heading="H0" charCount="314" wordCount="55" paraCount="1" cursorPos="322" />
|
||||||
<name status="s000003" import="i000007" active="yes">Old File</name>
|
<name status="s000003" import="i000007" active="yes">Old File</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="98acd8c76c93a" parent="None" root="98acd8c76c93a" order="4" type="ROOT" class="TRASH">
|
<item handle="98acd8c76c93a" parent="None" root="98acd8c76c93a" order="4" type="ROOT" class="TRASH">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="s000000" import="i000007">Trash</name>
|
<name status="s000000" import="i000007">Trash</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="b8136a5a774a0" parent="98acd8c76c93a" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="b8136a5a774a0" parent="98acd8c76c93a" root="None" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="30" wordCount="6" paraCount="1" cursorPos="36"/>
|
<meta expanded="no" heading="H0" charCount="30" wordCount="6" paraCount="1" cursorPos="36" />
|
||||||
<name status="s000000" import="i000007" active="yes">Delete Me!</name>
|
<name status="s000000" import="i000007" active="yes">Delete Me!</name>
|
||||||
</item>
|
</item>
|
||||||
</content>
|
</content>
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
<entry key="chapter">Chapter %chw%: %title%</entry>
|
<entry key="chapter">Chapter %chw%: %title%</entry>
|
||||||
<entry key="unnumbered">%title%</entry>
|
<entry key="unnumbered">%title%</entry>
|
||||||
<entry key="scene">Scene %ch%.%sc%: %title%</entry>
|
<entry key="scene">Scene %ch%.%sc%: %title%</entry>
|
||||||
<entry key="section"></entry>
|
<entry key="section" />
|
||||||
</titleFormat>
|
</titleFormat>
|
||||||
<status>
|
<status>
|
||||||
<entry key="sf12341" count="4" red="100" green="100" blue="100">New</entry>
|
<entry key="sf12341" count="4" red="100" green="100" blue="100">New</entry>
|
||||||
@@ -45,111 +45,111 @@
|
|||||||
</settings>
|
</settings>
|
||||||
<content items="27" novelWords="954" notesWords="409">
|
<content items="27" novelWords="954" notesWords="409">
|
||||||
<item handle="7031beac91f75" parent="None" root="7031beac91f75" order="0" type="ROOT" class="NOVEL">
|
<item handle="7031beac91f75" parent="None" root="7031beac91f75" order="0" type="ROOT" class="NOVEL">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sc24b8f" import="ia857f0">Novel</name>
|
<name status="sc24b8f" import="ia857f0">Novel</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="53b69b83cdafc" parent="7031beac91f75" root="7031beac91f75" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="53b69b83cdafc" parent="7031beac91f75" root="7031beac91f75" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="93" wordCount="19" paraCount="2" cursorPos="119"/>
|
<meta expanded="no" heading="H0" charCount="93" wordCount="19" paraCount="2" cursorPos="119" />
|
||||||
<name status="sc24b8f" import="ia857f0" active="yes">Title Page</name>
|
<name status="sc24b8f" import="ia857f0" active="yes">Title Page</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="974e400180a99" parent="7031beac91f75" root="7031beac91f75" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="974e400180a99" parent="7031beac91f75" root="7031beac91f75" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="251" wordCount="50" paraCount="2" cursorPos="277"/>
|
<meta expanded="no" heading="H0" charCount="251" wordCount="50" paraCount="2" cursorPos="277" />
|
||||||
<name status="sf12341" import="ia857f0" active="yes">Page</name>
|
<name status="sf12341" import="ia857f0" active="yes">Page</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="edca4be2fcaf8" parent="7031beac91f75" root="7031beac91f75" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="edca4be2fcaf8" parent="7031beac91f75" root="7031beac91f75" order="2" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="26" wordCount="6" paraCount="1" cursorPos="36"/>
|
<meta expanded="no" heading="H0" charCount="26" wordCount="6" paraCount="1" cursorPos="36" />
|
||||||
<name status="s90e6c9" import="ia857f0" active="yes">Part One</name>
|
<name status="s90e6c9" import="ia857f0" active="yes">Part One</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="6a2d6d5f4f401" parent="7031beac91f75" root="7031beac91f75" order="3" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="6a2d6d5f4f401" parent="7031beac91f75" root="7031beac91f75" order="3" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="yes" heading="H0" charCount="95" wordCount="18" paraCount="1" cursorPos="291"/>
|
<meta expanded="yes" heading="H0" charCount="95" wordCount="18" paraCount="1" cursorPos="291" />
|
||||||
<name status="sf24ce6" import="ia857f0" active="yes">Chapter One</name>
|
<name status="sf24ce6" import="ia857f0" active="yes">Chapter One</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="636b6aa9b697b" parent="6a2d6d5f4f401" root="7031beac91f75" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="636b6aa9b697b" parent="6a2d6d5f4f401" root="7031beac91f75" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="2687" wordCount="479" paraCount="14" cursorPos="67"/>
|
<meta expanded="no" heading="H0" charCount="2687" wordCount="479" paraCount="14" cursorPos="67" />
|
||||||
<name status="s90e6c9" import="ia857f0" active="yes">Making a Scene</name>
|
<name status="s90e6c9" import="ia857f0" active="yes">Making a Scene</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="bc0cbd2a407f3" parent="6a2d6d5f4f401" root="7031beac91f75" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="bc0cbd2a407f3" parent="6a2d6d5f4f401" root="7031beac91f75" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="548" wordCount="108" paraCount="3" cursorPos="465"/>
|
<meta expanded="no" heading="H0" charCount="548" wordCount="108" paraCount="3" cursorPos="465" />
|
||||||
<name status="s90e6c9" import="ia857f0" active="yes">Another Scene</name>
|
<name status="s90e6c9" import="ia857f0" active="yes">Another Scene</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="ba8a28a246524" parent="7031beac91f75" root="7031beac91f75" order="4" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="ba8a28a246524" parent="7031beac91f75" root="7031beac91f75" order="4" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="617" wordCount="101" paraCount="3" cursorPos="310"/>
|
<meta expanded="no" heading="H0" charCount="617" wordCount="101" paraCount="3" cursorPos="310" />
|
||||||
<name status="s78ea90" import="ia857f0" active="yes">Interlude</name>
|
<name status="s78ea90" import="ia857f0" active="yes">Interlude</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="96b68994dfa3d" parent="7031beac91f75" root="7031beac91f75" order="5" type="FILE" class="NOVEL" layout="NOTE">
|
<item handle="96b68994dfa3d" parent="7031beac91f75" root="7031beac91f75" order="5" type="FILE" class="NOVEL" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="1909" wordCount="346" paraCount="7" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="1909" wordCount="346" paraCount="7" cursorPos="0" />
|
||||||
<name status="sf24ce6" import="ia857f0" active="no">A Note on Structure</name>
|
<name status="sf24ce6" import="ia857f0" active="no">A Note on Structure</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="88706ddc78b1b" parent="7031beac91f75" root="7031beac91f75" order="6" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="88706ddc78b1b" parent="7031beac91f75" root="7031beac91f75" order="6" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="yes" heading="H0" charCount="139" wordCount="28" paraCount="1" cursorPos="188"/>
|
<meta expanded="yes" heading="H0" charCount="139" wordCount="28" paraCount="1" cursorPos="188" />
|
||||||
<name status="s90e6c9" import="ia857f0" active="yes">Chapter Two</name>
|
<name status="s90e6c9" import="ia857f0" active="yes">Chapter Two</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="ae7339df26ded" parent="88706ddc78b1b" root="7031beac91f75" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="ae7339df26ded" parent="88706ddc78b1b" root="7031beac91f75" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="189" wordCount="37" paraCount="1" cursorPos="0"/>
|
<meta expanded="no" heading="H0" charCount="189" wordCount="37" paraCount="1" cursorPos="0" />
|
||||||
<name status="s90e6c9" import="ia857f0" active="yes">We Found John!</name>
|
<name status="s90e6c9" import="ia857f0" active="yes">We Found John!</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="e5e47ebf63b1c" parent="None" root="e5e47ebf63b1c" order="1" type="ROOT" class="NOVEL">
|
<item handle="e5e47ebf63b1c" parent="None" root="e5e47ebf63b1c" order="1" type="ROOT" class="NOVEL">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sf12341" import="ia857f0">Sequel</name>
|
<name status="sf12341" import="ia857f0">Sequel</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="bacb7059e3083" parent="e5e47ebf63b1c" root="e5e47ebf63b1c" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="bacb7059e3083" parent="e5e47ebf63b1c" root="e5e47ebf63b1c" order="0" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="27" wordCount="5" paraCount="1" cursorPos="100"/>
|
<meta expanded="no" heading="H0" charCount="27" wordCount="5" paraCount="1" cursorPos="100" />
|
||||||
<name status="sc24b8f" import="ia857f0" active="yes">Title Page</name>
|
<name status="sc24b8f" import="ia857f0" active="yes">Title Page</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="a520879ca0b45" parent="e5e47ebf63b1c" root="e5e47ebf63b1c" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
<item handle="a520879ca0b45" parent="e5e47ebf63b1c" root="e5e47ebf63b1c" order="1" type="FILE" class="NOVEL" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="299" wordCount="55" paraCount="2" cursorPos="104"/>
|
<meta expanded="no" heading="H0" charCount="299" wordCount="55" paraCount="2" cursorPos="104" />
|
||||||
<name status="s90e6c9" import="ia857f0" active="yes">Chapter One</name>
|
<name status="s90e6c9" import="ia857f0" active="yes">Chapter One</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="f6622b4617424" parent="None" root="f6622b4617424" order="2" type="ROOT" class="CHARACTER">
|
<item handle="f6622b4617424" parent="None" root="f6622b4617424" order="2" type="ROOT" class="CHARACTER">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sf12341" import="ia857f0">Characters</name>
|
<name status="sf12341" import="ia857f0">Characters</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="f7e2d9f330615" parent="f6622b4617424" root="f6622b4617424" order="0" type="FOLDER" class="CHARACTER">
|
<item handle="f7e2d9f330615" parent="f6622b4617424" root="f6622b4617424" order="0" type="FOLDER" class="CHARACTER">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sf12341" import="ia857f0">Main Characters</name>
|
<name status="sf12341" import="ia857f0">Main Characters</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="14298de4d9524" parent="f7e2d9f330615" root="f6622b4617424" order="0" type="FILE" class="CHARACTER" layout="NOTE">
|
<item handle="14298de4d9524" parent="f7e2d9f330615" root="f6622b4617424" order="0" type="FILE" class="CHARACTER" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="49" wordCount="9" paraCount="1" cursorPos="24"/>
|
<meta expanded="no" heading="H0" charCount="49" wordCount="9" paraCount="1" cursorPos="24" />
|
||||||
<name status="sf12341" import="icfb3a5" active="yes">John Smith</name>
|
<name status="sf12341" import="icfb3a5" active="yes">John Smith</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="bb2c23b3c42cc" parent="f7e2d9f330615" root="f6622b4617424" order="1" type="FILE" class="CHARACTER" layout="NOTE">
|
<item handle="bb2c23b3c42cc" parent="f7e2d9f330615" root="f6622b4617424" order="1" type="FILE" class="CHARACTER" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="55" wordCount="9" paraCount="1" cursorPos="25"/>
|
<meta expanded="no" heading="H0" charCount="55" wordCount="9" paraCount="1" cursorPos="25" />
|
||||||
<name status="sf12341" import="i2d7a54" active="yes">Jane Smith</name>
|
<name status="sf12341" import="i2d7a54" active="yes">Jane Smith</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="15c4492bd5107" parent="None" root="15c4492bd5107" order="3" type="ROOT" class="WORLD">
|
<item handle="15c4492bd5107" parent="None" root="15c4492bd5107" order="3" type="ROOT" class="WORLD">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sf12341" import="ia857f0">Locations</name>
|
<name status="sf12341" import="ia857f0">Locations</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="b3e74dbc1f584" parent="15c4492bd5107" root="15c4492bd5107" order="0" type="FILE" class="WORLD" layout="NOTE">
|
<item handle="b3e74dbc1f584" parent="15c4492bd5107" root="15c4492bd5107" order="0" type="FILE" class="WORLD" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="76" wordCount="15" paraCount="1" cursorPos="20"/>
|
<meta expanded="no" heading="H0" charCount="76" wordCount="15" paraCount="1" cursorPos="20" />
|
||||||
<name status="sf12341" import="i56be10" active="yes">Earth</name>
|
<name status="sf12341" import="i56be10" active="yes">Earth</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="f1471bef9f2ae" parent="15c4492bd5107" root="15c4492bd5107" order="1" type="FILE" class="WORLD" layout="NOTE">
|
<item handle="f1471bef9f2ae" parent="15c4492bd5107" root="15c4492bd5107" order="1" type="FILE" class="WORLD" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="115" wordCount="24" paraCount="1" cursorPos="133"/>
|
<meta expanded="no" heading="H0" charCount="115" wordCount="24" paraCount="1" cursorPos="133" />
|
||||||
<name status="sf12341" import="icfb3a5" active="yes">Space</name>
|
<name status="sf12341" import="icfb3a5" active="yes">Space</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="5eaea4e8cdee8" parent="15c4492bd5107" root="15c4492bd5107" order="2" type="FILE" class="WORLD" layout="NOTE">
|
<item handle="5eaea4e8cdee8" parent="15c4492bd5107" root="15c4492bd5107" order="2" type="FILE" class="WORLD" layout="NOTE">
|
||||||
<meta expanded="no" heading="H0" charCount="28" wordCount="6" paraCount="1" cursorPos="45"/>
|
<meta expanded="no" heading="H0" charCount="28" wordCount="6" paraCount="1" cursorPos="45" />
|
||||||
<name status="sf12341" import="i2d7a54" active="yes">Mars</name>
|
<name status="sf12341" import="i2d7a54" active="yes">Mars</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="6827118336ac1" parent="None" root="6827118336ac1" order="4" type="ROOT" class="ARCHIVE">
|
<item handle="6827118336ac1" parent="None" root="6827118336ac1" order="4" type="ROOT" class="ARCHIVE">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sf12341" import="ia857f0">Archive</name>
|
<name status="sf12341" import="ia857f0">Archive</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="ae9bf3c3ea159" parent="6827118336ac1" root="6827118336ac1" order="0" type="FOLDER" class="ARCHIVE">
|
<item handle="ae9bf3c3ea159" parent="6827118336ac1" root="6827118336ac1" order="0" type="FOLDER" class="ARCHIVE">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sf12341" import="ia857f0">Scenes</name>
|
<name status="sf12341" import="ia857f0">Scenes</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="8a5deb88c0e97" parent="ae9bf3c3ea159" root="6827118336ac1" order="0" type="FILE" class="ARCHIVE" layout="DOCUMENT">
|
<item handle="8a5deb88c0e97" parent="ae9bf3c3ea159" root="6827118336ac1" order="0" type="FILE" class="ARCHIVE" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="232" wordCount="42" paraCount="1" cursorPos="239"/>
|
<meta expanded="no" heading="H0" charCount="232" wordCount="42" paraCount="1" cursorPos="239" />
|
||||||
<name status="s90e6c9" import="ia857f0" active="yes">Old File</name>
|
<name status="s90e6c9" import="ia857f0" active="yes">Old File</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="98acd8c76c93a" parent="None" root="98acd8c76c93a" order="5" type="ROOT" class="TRASH">
|
<item handle="98acd8c76c93a" parent="None" root="98acd8c76c93a" order="5" type="ROOT" class="TRASH">
|
||||||
<meta expanded="yes"/>
|
<meta expanded="yes" />
|
||||||
<name status="sf12341" import="ia857f0">Trash</name>
|
<name status="sf12341" import="ia857f0">Trash</name>
|
||||||
</item>
|
</item>
|
||||||
<item handle="b8136a5a774a0" parent="98acd8c76c93a" root="98acd8c76c93a" order="0" type="FILE" class="TRASH" layout="DOCUMENT">
|
<item handle="b8136a5a774a0" parent="98acd8c76c93a" root="98acd8c76c93a" order="0" type="FILE" class="TRASH" layout="DOCUMENT">
|
||||||
<meta expanded="no" heading="H0" charCount="30" wordCount="6" paraCount="1" cursorPos="36"/>
|
<meta expanded="no" heading="H0" charCount="30" wordCount="6" paraCount="1" cursorPos="36" />
|
||||||
<name status="sf12341" import="ia857f0" active="yes">Delete Me!</name>
|
<name status="sf12341" import="ia857f0" active="yes">Delete Me!</name>
|
||||||
</item>
|
</item>
|
||||||
</content>
|
</content>
|
||||||
|
|||||||
@@ -154,7 +154,6 @@ def testBaseInit_Imports(caplog, monkeypatch, fncPath):
|
|||||||
monkeypatch.setattr("PyQt5.QtWidgets.QErrorMessage.__init__", lambda *a: None)
|
monkeypatch.setattr("PyQt5.QtWidgets.QErrorMessage.__init__", lambda *a: None)
|
||||||
monkeypatch.setattr("PyQt5.QtWidgets.QErrorMessage.resize", lambda *a: None)
|
monkeypatch.setattr("PyQt5.QtWidgets.QErrorMessage.resize", lambda *a: None)
|
||||||
monkeypatch.setattr("PyQt5.QtWidgets.QErrorMessage.showMessage", lambda *a: None)
|
monkeypatch.setattr("PyQt5.QtWidgets.QErrorMessage.showMessage", lambda *a: None)
|
||||||
monkeypatch.setitem(sys.modules, "lxml", None)
|
|
||||||
monkeypatch.setattr("sys.hexversion", 0x0)
|
monkeypatch.setattr("sys.hexversion", 0x0)
|
||||||
monkeypatch.setattr("novelwriter.CONFIG.verQtValue", 0x050000)
|
monkeypatch.setattr("novelwriter.CONFIG.verQtValue", 0x050000)
|
||||||
monkeypatch.setattr("novelwriter.CONFIG.verPyQtValue", 0x050000)
|
monkeypatch.setattr("novelwriter.CONFIG.verPyQtValue", 0x050000)
|
||||||
@@ -167,11 +166,9 @@ def testBaseInit_Imports(caplog, monkeypatch, fncPath):
|
|||||||
assert ex.value.code & 4 == 4 # Python version not satisfied
|
assert ex.value.code & 4 == 4 # Python version not satisfied
|
||||||
assert ex.value.code & 8 == 8 # Qt version not satisfied
|
assert ex.value.code & 8 == 8 # Qt version not satisfied
|
||||||
assert ex.value.code & 16 == 16 # PyQt version not satisfied
|
assert ex.value.code & 16 == 16 # PyQt version not satisfied
|
||||||
assert ex.value.code & 32 == 32 # lxml package missing
|
|
||||||
|
|
||||||
assert "At least Python" in caplog.messages[0]
|
assert "At least Python" in caplog.messages[0]
|
||||||
assert "At least Qt5" in caplog.messages[1]
|
assert "At least Qt5" in caplog.messages[1]
|
||||||
assert "At least PyQt5" in caplog.messages[2]
|
assert "At least PyQt5" in caplog.messages[2]
|
||||||
assert "lxml" in caplog.messages[3]
|
|
||||||
|
|
||||||
# END Test testBaseInit_Imports
|
# END Test testBaseInit_Imports
|
||||||
|
|||||||
@@ -226,7 +226,7 @@ def testCoreProjectXML_ReadCurrent(monkeypatch, tstPaths, fncPath):
|
|||||||
|
|
||||||
# Fail saving
|
# Fail saving
|
||||||
with monkeypatch.context() as mp:
|
with monkeypatch.context() as mp:
|
||||||
mp.setattr("pathlib.Path.write_bytes", causeOSError)
|
mp.setattr("xml.etree.ElementTree.ElementTree.write", causeOSError)
|
||||||
assert xmlWriter.write(data, packedContent, timeStamp, 1000) is False
|
assert xmlWriter.write(data, packedContent, timeStamp, 1000) is False
|
||||||
assert str(xmlWriter.error) == "Mock OSError"
|
assert str(xmlWriter.error) == "Mock OSError"
|
||||||
|
|
||||||
|
|||||||
@@ -21,12 +21,13 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
import zipfile
|
import zipfile
|
||||||
|
import xml.etree.ElementTree as ET
|
||||||
|
|
||||||
from lxml import etree
|
|
||||||
from shutil import copyfile
|
from shutil import copyfile
|
||||||
|
|
||||||
from tools import ODT_IGNORE, cmpFiles
|
from tools import ODT_IGNORE, cmpFiles
|
||||||
|
|
||||||
|
from novelwriter.common import xmlIndent
|
||||||
from novelwriter.core.toodt import ToOdt, ODTParagraphStyle, ODTTextStyle, XMLParagraph, _mkTag
|
from novelwriter.core.toodt import ToOdt, ODTParagraphStyle, ODTTextStyle, XMLParagraph, _mkTag
|
||||||
from novelwriter.core.project import NWProject
|
from novelwriter.core.project import NWProject
|
||||||
|
|
||||||
@@ -44,7 +45,7 @@ XML_NS = [
|
|||||||
def xmlToText(xElem):
|
def xmlToText(xElem):
|
||||||
"""Get the text content of an XML element.
|
"""Get the text content of an XML element.
|
||||||
"""
|
"""
|
||||||
rTxt = etree.tostring(xElem, encoding="utf-8", xml_declaration=False).decode()
|
rTxt = ET.tostring(xElem, encoding="utf-8", xml_declaration=False).decode()
|
||||||
for nSpace in XML_NS:
|
for nSpace in XML_NS:
|
||||||
rTxt = rTxt.replace(nSpace, "")
|
rTxt = rTxt.replace(nSpace, "")
|
||||||
return rTxt
|
return rTxt
|
||||||
@@ -63,21 +64,21 @@ def testCoreToOdt_Init(mockGUI):
|
|||||||
theDoc.initDocument()
|
theDoc.initDocument()
|
||||||
|
|
||||||
# Document XML
|
# Document XML
|
||||||
assert theDoc._dFlat is not None
|
assert theDoc._dFlat.tag == _mkTag("office", "document")
|
||||||
assert theDoc._dCont is None
|
assert theDoc._dCont.tag == ""
|
||||||
assert theDoc._dMeta is None
|
assert theDoc._dMeta.tag == ""
|
||||||
assert theDoc._dStyl is None
|
assert theDoc._dStyl.tag == ""
|
||||||
|
|
||||||
# Content XML
|
# Content XML
|
||||||
assert theDoc._xMeta is not None
|
assert theDoc._xMeta.tag == _mkTag("office", "meta")
|
||||||
assert theDoc._xFont is not None
|
assert theDoc._xFont.tag == _mkTag("office", "font-face-decls")
|
||||||
assert theDoc._xFnt2 is None
|
assert theDoc._xFnt2.tag == ""
|
||||||
assert theDoc._xStyl is not None
|
assert theDoc._xStyl.tag == _mkTag("office", "styles")
|
||||||
assert theDoc._xAuto is not None
|
assert theDoc._xAuto.tag == _mkTag("office", "automatic-styles")
|
||||||
assert theDoc._xAut2 is None
|
assert theDoc._xAut2.tag == ""
|
||||||
assert theDoc._xMast is not None
|
assert theDoc._xMast.tag == _mkTag("office", "master-styles")
|
||||||
assert theDoc._xBody is not None
|
assert theDoc._xBody.tag == _mkTag("office", "body")
|
||||||
assert theDoc._xText is not None
|
assert theDoc._xText.tag == _mkTag("office", "text")
|
||||||
|
|
||||||
# ODT Doc
|
# ODT Doc
|
||||||
# =======
|
# =======
|
||||||
@@ -86,21 +87,22 @@ def testCoreToOdt_Init(mockGUI):
|
|||||||
theDoc.initDocument()
|
theDoc.initDocument()
|
||||||
|
|
||||||
# Document XML
|
# Document XML
|
||||||
assert theDoc._dFlat is None
|
assert theDoc._dFlat.tag == ""
|
||||||
assert theDoc._dCont is not None
|
assert theDoc._dCont.tag == _mkTag("office", "document-content")
|
||||||
assert theDoc._dMeta is not None
|
assert theDoc._dMeta.tag == _mkTag("office", "document-meta")
|
||||||
assert theDoc._dStyl is not None
|
assert theDoc._dStyl.tag == _mkTag("office", "document-styles")
|
||||||
|
|
||||||
# Content XML
|
# Content XML
|
||||||
assert theDoc._xMeta is not None
|
assert theDoc._xMeta.tag == _mkTag("office", "meta")
|
||||||
assert theDoc._xFont is not None
|
assert theDoc._xFont.tag == _mkTag("office", "font-face-decls")
|
||||||
assert theDoc._xFnt2 is not None
|
assert theDoc._xFnt2.tag == _mkTag("office", "font-face-decls")
|
||||||
assert theDoc._xStyl is not None
|
assert theDoc._xStyl.tag == _mkTag("office", "styles")
|
||||||
assert theDoc._xAuto is not None
|
assert theDoc._xAuto.tag == _mkTag("office", "automatic-styles")
|
||||||
assert theDoc._xAut2 is not None
|
assert theDoc._xAut2.tag == _mkTag("office", "automatic-styles")
|
||||||
assert theDoc._xMast is not None
|
assert theDoc._xMast.tag == _mkTag("office", "master-styles")
|
||||||
assert theDoc._xBody is not None
|
assert theDoc._xBody.tag == _mkTag("office", "body")
|
||||||
assert theDoc._xText is not None
|
assert theDoc._xText.tag == _mkTag("office", "text")
|
||||||
|
|
||||||
|
|
||||||
# END Test testCoreToOdt_Init
|
# END Test testCoreToOdt_Init
|
||||||
|
|
||||||
@@ -113,7 +115,7 @@ def testCoreToOdt_TextFormatting(mockGUI):
|
|||||||
theDoc = ToOdt(theProject, isFlat=True)
|
theDoc = ToOdt(theProject, isFlat=True)
|
||||||
|
|
||||||
theDoc.initDocument()
|
theDoc.initDocument()
|
||||||
assert xmlToText(theDoc._xText) == "<office:text/>"
|
assert xmlToText(theDoc._xText) == "<office:text />"
|
||||||
|
|
||||||
# Paragraph Style
|
# Paragraph Style
|
||||||
# ===============
|
# ===============
|
||||||
@@ -147,7 +149,7 @@ def testCoreToOdt_TextFormatting(mockGUI):
|
|||||||
theDoc._addTextPar("Standard", oStyle, "")
|
theDoc._addTextPar("Standard", oStyle, "")
|
||||||
assert xmlToText(theDoc._xText) == (
|
assert xmlToText(theDoc._xText) == (
|
||||||
"<office:text>"
|
"<office:text>"
|
||||||
"<text:p text:style-name=\"Standard\"></text:p>"
|
"<text:p text:style-name=\"Standard\" />"
|
||||||
"</office:text>"
|
"</office:text>"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -217,7 +219,7 @@ def testCoreToOdt_TextFormatting(mockGUI):
|
|||||||
assert theDoc.getErrors() == []
|
assert theDoc.getErrors() == []
|
||||||
assert xmlToText(theDoc._xText) == (
|
assert xmlToText(theDoc._xText) == (
|
||||||
"<office:text>"
|
"<office:text>"
|
||||||
"<text:p text:style-name=\"Standard\">Hello<text:line-break/><text:tab/>World</text:p>"
|
"<text:p text:style-name=\"Standard\">Hello<text:line-break /><text:tab />World</text:p>"
|
||||||
"</office:text>"
|
"</office:text>"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -366,7 +368,7 @@ def testCoreToOdt_Convert(mockGUI):
|
|||||||
assert theDoc.getErrors() == []
|
assert theDoc.getErrors() == []
|
||||||
assert xmlToText(theDoc._xText) == (
|
assert xmlToText(theDoc._xText) == (
|
||||||
'<office:text>'
|
'<office:text>'
|
||||||
'<text:p text:style-name="Text_20_body">Some text.<text:line-break/>Next line</text:p>'
|
'<text:p text:style-name="Text_20_body">Some text.<text:line-break />Next line</text:p>'
|
||||||
'</office:text>'
|
'</office:text>'
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -379,7 +381,7 @@ def testCoreToOdt_Convert(mockGUI):
|
|||||||
assert theDoc.getErrors() == []
|
assert theDoc.getErrors() == []
|
||||||
assert xmlToText(theDoc._xText) == (
|
assert xmlToText(theDoc._xText) == (
|
||||||
'<office:text>'
|
'<office:text>'
|
||||||
'<text:p text:style-name="Text_20_body"><text:tab/>Item 1<text:tab/>Item 2</text:p>'
|
'<text:p text:style-name="Text_20_body"><text:tab />Item 1<text:tab />Item 2</text:p>'
|
||||||
'</office:text>'
|
'</office:text>'
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -393,7 +395,7 @@ def testCoreToOdt_Convert(mockGUI):
|
|||||||
assert xmlToText(theDoc._xText) == (
|
assert xmlToText(theDoc._xText) == (
|
||||||
'<office:text>'
|
'<office:text>'
|
||||||
'<text:p text:style-name="Text_20_body">Some <text:span text:style-name="T4">'
|
'<text:p text:style-name="Text_20_body">Some <text:span text:style-name="T4">'
|
||||||
'bold<text:tab/>text</text:span></text:p>'
|
'bold<text:tab />text</text:span></text:p>'
|
||||||
'</office:text>'
|
'</office:text>'
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -413,8 +415,8 @@ def testCoreToOdt_Convert(mockGUI):
|
|||||||
'<office:text>'
|
'<office:text>'
|
||||||
'<text:h text:style-name="Heading_20_3" text:outline-level="3">Scene</text:h>'
|
'<text:h text:style-name="Heading_20_3" text:outline-level="3">Scene</text:h>'
|
||||||
'<text:p text:style-name="Text_20_body">Hello World</text:p>'
|
'<text:p text:style-name="Text_20_body">Hello World</text:p>'
|
||||||
'<text:p text:style-name="Text_20_body">Hello <text:s/>World</text:p>'
|
'<text:p text:style-name="Text_20_body">Hello <text:s />World</text:p>'
|
||||||
'<text:p text:style-name="Text_20_body">Hello <text:s text:c="2"/>World</text:p>'
|
'<text:p text:style-name="Text_20_body">Hello <text:s text:c="2" />World</text:p>'
|
||||||
'</office:text>'
|
'</office:text>'
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -474,9 +476,9 @@ def testCoreToOdt_Convert(mockGUI):
|
|||||||
assert theDoc.getErrors() == []
|
assert theDoc.getErrors() == []
|
||||||
assert xmlToText(theDoc._xText) == (
|
assert xmlToText(theDoc._xText) == (
|
||||||
'<office:text>'
|
'<office:text>'
|
||||||
'<text:p text:style-name="Text_20_body"></text:p>'
|
'<text:p text:style-name="Text_20_body" />'
|
||||||
'<text:p text:style-name="Text_20_body">Text</text:p>'
|
'<text:p text:style-name="Text_20_body">Text</text:p>'
|
||||||
'<text:p text:style-name="Text_20_body"></text:p>'
|
'<text:p text:style-name="Text_20_body" />'
|
||||||
'<text:p text:style-name="Text_20_body">Text</text:p>'
|
'<text:p text:style-name="Text_20_body">Text</text:p>'
|
||||||
'</office:text>'
|
'</office:text>'
|
||||||
)
|
)
|
||||||
@@ -540,7 +542,7 @@ def testCoreToOdt_Convert(mockGUI):
|
|||||||
'<office:text>'
|
'<office:text>'
|
||||||
'<text:h text:style-name="Heading_20_3" text:outline-level="3">Scene</text:h>'
|
'<text:h text:style-name="Heading_20_3" text:outline-level="3">Scene</text:h>'
|
||||||
'<text:p text:style-name="Text_20_body">Regular paragraph</text:p>'
|
'<text:p text:style-name="Text_20_body">Regular paragraph</text:p>'
|
||||||
'<text:p text:style-name="P9">with<text:line-break/>break</text:p>'
|
'<text:p text:style-name="P9">with<text:line-break />break</text:p>'
|
||||||
'<text:p text:style-name="P9">Left Align</text:p>'
|
'<text:p text:style-name="P9">Left Align</text:p>'
|
||||||
'</office:text>'
|
'</office:text>'
|
||||||
)
|
)
|
||||||
@@ -592,7 +594,7 @@ def testCoreToOdt_ConvertDirect(mockGUI):
|
|||||||
assert (
|
assert (
|
||||||
'<style:style style:name="P1" style:family="paragraph" '
|
'<style:style style:name="P1" style:family="paragraph" '
|
||||||
'style:parent-style-name="Text_20_body">'
|
'style:parent-style-name="Text_20_body">'
|
||||||
'<style:paragraph-properties fo:text-align="justify"/>'
|
'<style:paragraph-properties fo:text-align="justify" />'
|
||||||
'</style:style>'
|
'</style:style>'
|
||||||
) in xmlToText(theDoc._xAuto)
|
) in xmlToText(theDoc._xAuto)
|
||||||
assert xmlToText(theDoc._xText) == (
|
assert xmlToText(theDoc._xText) == (
|
||||||
@@ -613,7 +615,7 @@ def testCoreToOdt_ConvertDirect(mockGUI):
|
|||||||
assert (
|
assert (
|
||||||
'<style:style style:name="P1" style:family="paragraph" '
|
'<style:style style:name="P1" style:family="paragraph" '
|
||||||
'style:parent-style-name="Text_20_body">'
|
'style:parent-style-name="Text_20_body">'
|
||||||
'<style:paragraph-properties fo:break-after="page"/>'
|
'<style:paragraph-properties fo:break-after="page" />'
|
||||||
'</style:style>'
|
'</style:style>'
|
||||||
) in xmlToText(theDoc._xAuto)
|
) in xmlToText(theDoc._xAuto)
|
||||||
assert xmlToText(theDoc._xText) == (
|
assert xmlToText(theDoc._xText) == (
|
||||||
@@ -723,15 +725,10 @@ def testCoreToOdt_SaveFull(mockGUI, fncPath, tstPaths):
|
|||||||
stylOut = tstPaths.outDir / "coreToOdt_SaveFull" / "styles.xml"
|
stylOut = tstPaths.outDir / "coreToOdt_SaveFull" / "styles.xml"
|
||||||
|
|
||||||
def prettifyXml(inFile, outFile):
|
def prettifyXml(inFile, outFile):
|
||||||
with open(outFile, mode="wb") as fileStream:
|
with open(outFile, mode="wb") as fStream:
|
||||||
fileStream.write(
|
xml = ET.parse(inFile)
|
||||||
etree.tostring(
|
xmlIndent(xml)
|
||||||
etree.parse(str(inFile)),
|
xml.write(fStream, encoding="utf-8", xml_declaration=True)
|
||||||
pretty_print=True,
|
|
||||||
encoding="utf-8",
|
|
||||||
xml_declaration=True
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
prettifyXml(maniOut, maniFile)
|
prettifyXml(maniOut, maniFile)
|
||||||
prettifyXml(settOut, settFile)
|
prettifyXml(settOut, settFile)
|
||||||
@@ -949,20 +946,16 @@ def testCoreToOdt_ODTParagraphStyle():
|
|||||||
|
|
||||||
# Pack XML
|
# Pack XML
|
||||||
# ========
|
# ========
|
||||||
xStyle = etree.Element("test", nsmap={
|
xStyle = ET.Element("test")
|
||||||
"style": "urn:oasis:names:tc:opendocument:xmlns:style:1.0",
|
|
||||||
"loext": "urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0",
|
|
||||||
"fo": "urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0",
|
|
||||||
})
|
|
||||||
parStyle.packXML(xStyle, "test")
|
parStyle.packXML(xStyle, "test")
|
||||||
assert xmlToText(xStyle) == (
|
assert xmlToText(xStyle) == (
|
||||||
'<test>'
|
'<test>'
|
||||||
'<style:style style:name="test" style:family="paragraph" style:display-name="Name" '
|
'<style:style style:name="test" style:family="paragraph" style:display-name="Name" '
|
||||||
'style:parent-style-name="Name" style:next-style-name="Name">'
|
'style:parent-style-name="Name" style:next-style-name="Name">'
|
||||||
'<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.000cm" '
|
'<style:paragraph-properties fo:margin-top="0.000cm" fo:margin-bottom="0.000cm" '
|
||||||
'fo:margin-left="0.000cm" fo:margin-right="0.000cm" fo:line-height="1.15"/>'
|
'fo:margin-left="0.000cm" fo:margin-right="0.000cm" fo:line-height="1.15" />'
|
||||||
'<style:text-properties style:font-name="Verdana" fo:font-family="Verdana" '
|
'<style:text-properties style:font-name="Verdana" fo:font-family="Verdana" '
|
||||||
'fo:font-size="12pt" fo:color="#000000" loext:opacity="1.00"/>'
|
'fo:font-size="12pt" fo:color="#000000" loext:opacity="1.00" />'
|
||||||
'</style:style>'
|
'</style:style>'
|
||||||
'</test>'
|
'</test>'
|
||||||
)
|
)
|
||||||
@@ -1059,15 +1052,12 @@ def testCoreToOdt_ODTTextStyle():
|
|||||||
txtStyle.setFontStyle("italic")
|
txtStyle.setFontStyle("italic")
|
||||||
txtStyle.setStrikeStyle("solid")
|
txtStyle.setStrikeStyle("solid")
|
||||||
txtStyle.setStrikeType("single")
|
txtStyle.setStrikeType("single")
|
||||||
xStyle = etree.Element("test", nsmap={
|
xStyle = ET.Element("test")
|
||||||
"style": "urn:oasis:names:tc:opendocument:xmlns:style:1.0",
|
|
||||||
"fo": "urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0",
|
|
||||||
})
|
|
||||||
txtStyle.packXML(xStyle, "test")
|
txtStyle.packXML(xStyle, "test")
|
||||||
assert xmlToText(xStyle) == (
|
assert xmlToText(xStyle) == (
|
||||||
'<test><style:style style:name="test" style:family="text"><style:text-properties '
|
'<test><style:style style:name="test" style:family="text"><style:text-properties '
|
||||||
'fo:font-weight="bold" fo:font-style="italic" style:text-line-through-style="solid" '
|
'fo:font-weight="bold" fo:font-style="italic" style:text-line-through-style="solid" '
|
||||||
'style:text-line-through-type="single"/></style:style></test>'
|
'style:text-line-through-type="single" /></style:style></test>'
|
||||||
)
|
)
|
||||||
|
|
||||||
# END Test testCoreToOdt_ODTTextStyle
|
# END Test testCoreToOdt_ODTTextStyle
|
||||||
@@ -1077,20 +1067,11 @@ def testCoreToOdt_ODTTextStyle():
|
|||||||
def testCoreToOdt_XMLParagraph():
|
def testCoreToOdt_XMLParagraph():
|
||||||
"""Test XML encoding of paragraph.
|
"""Test XML encoding of paragraph.
|
||||||
"""
|
"""
|
||||||
nsMap = {
|
|
||||||
"office": "urn:oasis:names:tc:opendocument:xmlns:office:1.0",
|
|
||||||
"style": "urn:oasis:names:tc:opendocument:xmlns:style:1.0",
|
|
||||||
"loext": "urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0",
|
|
||||||
"text": "urn:oasis:names:tc:opendocument:xmlns:text:1.0",
|
|
||||||
"meta": "urn:oasis:names:tc:opendocument:xmlns:meta:1.0",
|
|
||||||
"fo": "urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0",
|
|
||||||
}
|
|
||||||
|
|
||||||
# Stage 1 : Text
|
# Stage 1 : Text
|
||||||
# ==============
|
# ==============
|
||||||
|
|
||||||
xRoot = etree.Element("root", nsmap=nsMap)
|
xRoot = ET.Element("root")
|
||||||
xElem = etree.SubElement(xRoot, "{%s}p" % nsMap["text"])
|
xElem = ET.SubElement(xRoot, _mkTag("text", "p"))
|
||||||
xmlPar = XMLParagraph(xElem)
|
xmlPar = XMLParagraph(xElem)
|
||||||
|
|
||||||
# Plain Text
|
# Plain Text
|
||||||
@@ -1126,15 +1107,15 @@ def testCoreToOdt_XMLParagraph():
|
|||||||
# Stage 2 : Line Breaks
|
# Stage 2 : Line Breaks
|
||||||
# =====================
|
# =====================
|
||||||
|
|
||||||
xRoot = etree.Element("root", nsmap=nsMap)
|
xRoot = ET.Element("root")
|
||||||
xElem = etree.SubElement(xRoot, "{%s}p" % nsMap["text"])
|
xElem = ET.SubElement(xRoot, _mkTag("text", "p"))
|
||||||
xmlPar = XMLParagraph(xElem)
|
xmlPar = XMLParagraph(xElem)
|
||||||
|
|
||||||
# Plain Text w/Line Break
|
# Plain Text w/Line Break
|
||||||
xmlPar.appendText("Hello\nWorld\n!!")
|
xmlPar.appendText("Hello\nWorld\n!!")
|
||||||
assert xmlToText(xRoot) == (
|
assert xmlToText(xRoot) == (
|
||||||
'<root>'
|
'<root>'
|
||||||
'<text:p>Hello<text:line-break/>World<text:line-break/>!!</text:p>'
|
'<text:p>Hello<text:line-break />World<text:line-break />!!</text:p>'
|
||||||
'</root>'
|
'</root>'
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -1142,8 +1123,8 @@ def testCoreToOdt_XMLParagraph():
|
|||||||
xmlPar.appendSpan("spanned\ntext", "T1")
|
xmlPar.appendSpan("spanned\ntext", "T1")
|
||||||
assert xmlToText(xRoot) == (
|
assert xmlToText(xRoot) == (
|
||||||
'<root>'
|
'<root>'
|
||||||
'<text:p>Hello<text:line-break/>World<text:line-break/>!!'
|
'<text:p>Hello<text:line-break />World<text:line-break />!!'
|
||||||
'<text:span text:style-name="T1">spanned<text:line-break/>text</text:span></text:p>'
|
'<text:span text:style-name="T1">spanned<text:line-break />text</text:span></text:p>'
|
||||||
'</root>'
|
'</root>'
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -1151,9 +1132,9 @@ def testCoreToOdt_XMLParagraph():
|
|||||||
xmlPar.appendText("more\ntext")
|
xmlPar.appendText("more\ntext")
|
||||||
assert xmlToText(xRoot) == (
|
assert xmlToText(xRoot) == (
|
||||||
'<root>'
|
'<root>'
|
||||||
'<text:p>Hello<text:line-break/>World<text:line-break/>!!'
|
'<text:p>Hello<text:line-break />World<text:line-break />!!'
|
||||||
'<text:span text:style-name="T1">spanned<text:line-break/>text</text:span>'
|
'<text:span text:style-name="T1">spanned<text:line-break />text</text:span>'
|
||||||
'more<text:line-break/>text</text:p>'
|
'more<text:line-break />text</text:p>'
|
||||||
'</root>'
|
'</root>'
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -1162,15 +1143,15 @@ def testCoreToOdt_XMLParagraph():
|
|||||||
# Stage 3 : Tabs
|
# Stage 3 : Tabs
|
||||||
# ==============
|
# ==============
|
||||||
|
|
||||||
xRoot = etree.Element("root", nsmap=nsMap)
|
xRoot = ET.Element("root")
|
||||||
xElem = etree.SubElement(xRoot, "{%s}p" % nsMap["text"])
|
xElem = ET.SubElement(xRoot, _mkTag("text", "p"))
|
||||||
xmlPar = XMLParagraph(xElem)
|
xmlPar = XMLParagraph(xElem)
|
||||||
|
|
||||||
# Plain Text w/Line Break
|
# Plain Text w/Line Break
|
||||||
xmlPar.appendText("Hello\tWorld\t!!")
|
xmlPar.appendText("Hello\tWorld\t!!")
|
||||||
assert xmlToText(xRoot) == (
|
assert xmlToText(xRoot) == (
|
||||||
'<root>'
|
'<root>'
|
||||||
'<text:p>Hello<text:tab/>World<text:tab/>!!</text:p>'
|
'<text:p>Hello<text:tab />World<text:tab />!!</text:p>'
|
||||||
'</root>'
|
'</root>'
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -1178,8 +1159,8 @@ def testCoreToOdt_XMLParagraph():
|
|||||||
xmlPar.appendSpan("spanned\ttext", "T1")
|
xmlPar.appendSpan("spanned\ttext", "T1")
|
||||||
assert xmlToText(xRoot) == (
|
assert xmlToText(xRoot) == (
|
||||||
'<root>'
|
'<root>'
|
||||||
'<text:p>Hello<text:tab/>World<text:tab/>!!'
|
'<text:p>Hello<text:tab />World<text:tab />!!'
|
||||||
'<text:span text:style-name="T1">spanned<text:tab/>text</text:span></text:p>'
|
'<text:span text:style-name="T1">spanned<text:tab />text</text:span></text:p>'
|
||||||
'</root>'
|
'</root>'
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -1187,9 +1168,9 @@ def testCoreToOdt_XMLParagraph():
|
|||||||
xmlPar.appendText("more\ttext")
|
xmlPar.appendText("more\ttext")
|
||||||
assert xmlToText(xRoot) == (
|
assert xmlToText(xRoot) == (
|
||||||
'<root>'
|
'<root>'
|
||||||
'<text:p>Hello<text:tab/>World<text:tab/>!!'
|
'<text:p>Hello<text:tab />World<text:tab />!!'
|
||||||
'<text:span text:style-name="T1">spanned<text:tab/>text</text:span>'
|
'<text:span text:style-name="T1">spanned<text:tab />text</text:span>'
|
||||||
'more<text:tab/>text</text:p>'
|
'more<text:tab />text</text:p>'
|
||||||
'</root>'
|
'</root>'
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -1198,15 +1179,15 @@ def testCoreToOdt_XMLParagraph():
|
|||||||
# Stage 4 : Spaces
|
# Stage 4 : Spaces
|
||||||
# ================
|
# ================
|
||||||
|
|
||||||
xRoot = etree.Element("root", nsmap=nsMap)
|
xRoot = ET.Element("root")
|
||||||
xElem = etree.SubElement(xRoot, "{%s}p" % nsMap["text"])
|
xElem = ET.SubElement(xRoot, _mkTag("text", "p"))
|
||||||
xmlPar = XMLParagraph(xElem)
|
xmlPar = XMLParagraph(xElem)
|
||||||
|
|
||||||
# Plain Text w/Spaces
|
# Plain Text w/Spaces
|
||||||
xmlPar.appendText("Hello World !!")
|
xmlPar.appendText("Hello World !!")
|
||||||
assert xmlToText(xRoot) == (
|
assert xmlToText(xRoot) == (
|
||||||
'<root>'
|
'<root>'
|
||||||
'<text:p>Hello <text:s/>World <text:s text:c="2"/>!!</text:p>'
|
'<text:p>Hello <text:s />World <text:s text:c="2" />!!</text:p>'
|
||||||
'</root>'
|
'</root>'
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -1214,8 +1195,8 @@ def testCoreToOdt_XMLParagraph():
|
|||||||
xmlPar.appendSpan("spanned text", "T1")
|
xmlPar.appendSpan("spanned text", "T1")
|
||||||
assert xmlToText(xRoot) == (
|
assert xmlToText(xRoot) == (
|
||||||
'<root>'
|
'<root>'
|
||||||
'<text:p>Hello <text:s/>World <text:s text:c="2"/>!!'
|
'<text:p>Hello <text:s />World <text:s text:c="2" />!!'
|
||||||
'<text:span text:style-name="T1">spanned <text:s text:c="3"/>text</text:span></text:p>'
|
'<text:span text:style-name="T1">spanned <text:s text:c="3" />text</text:span></text:p>'
|
||||||
'</root>'
|
'</root>'
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -1223,9 +1204,9 @@ def testCoreToOdt_XMLParagraph():
|
|||||||
xmlPar.appendText("more text")
|
xmlPar.appendText("more text")
|
||||||
assert xmlToText(xRoot) == (
|
assert xmlToText(xRoot) == (
|
||||||
'<root>'
|
'<root>'
|
||||||
'<text:p>Hello <text:s/>World <text:s text:c="2"/>!!'
|
'<text:p>Hello <text:s />World <text:s text:c="2" />!!'
|
||||||
'<text:span text:style-name="T1">spanned <text:s text:c="3"/>text</text:span>'
|
'<text:span text:style-name="T1">spanned <text:s text:c="3" />text</text:span>'
|
||||||
'more <text:s text:c="4"/>text</text:p>'
|
'more <text:s text:c="4" />text</text:p>'
|
||||||
'</root>'
|
'</root>'
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -1234,15 +1215,15 @@ def testCoreToOdt_XMLParagraph():
|
|||||||
# Stage 5 : Lots of Spaces
|
# Stage 5 : Lots of Spaces
|
||||||
# ========================
|
# ========================
|
||||||
|
|
||||||
xRoot = etree.Element("root", nsmap=nsMap)
|
xRoot = ET.Element("root")
|
||||||
xElem = etree.SubElement(xRoot, "{%s}p" % nsMap["text"])
|
xElem = ET.SubElement(xRoot, _mkTag("text", "p"))
|
||||||
xmlPar = XMLParagraph(xElem)
|
xmlPar = XMLParagraph(xElem)
|
||||||
|
|
||||||
# Plain Text w/Many Spaces
|
# Plain Text w/Many Spaces
|
||||||
xmlPar.appendText(" \t A \n B ")
|
xmlPar.appendText(" \t A \n B ")
|
||||||
assert xmlToText(xRoot) == (
|
assert xmlToText(xRoot) == (
|
||||||
'<root>'
|
'<root>'
|
||||||
'<text:p><text:s text:c="2"/><text:tab/> A <text:line-break/> <text:s/>B </text:p>'
|
'<text:p><text:s text:c="2" /><text:tab /> A <text:line-break /> <text:s />B </text:p>'
|
||||||
'</root>'
|
'</root>'
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -1250,9 +1231,9 @@ def testCoreToOdt_XMLParagraph():
|
|||||||
xmlPar.appendSpan(" C \t D \n E ", "T1")
|
xmlPar.appendSpan(" C \t D \n E ", "T1")
|
||||||
assert xmlToText(xRoot) == (
|
assert xmlToText(xRoot) == (
|
||||||
'<root>'
|
'<root>'
|
||||||
'<text:p><text:s text:c="2"/><text:tab/> A <text:line-break/> <text:s/>B '
|
'<text:p><text:s text:c="2" /><text:tab /> A <text:line-break /> <text:s />B '
|
||||||
'<text:span text:style-name="T1"> <text:s/>C <text:s/><text:tab/> <text:s/>D '
|
'<text:span text:style-name="T1"> <text:s />C <text:s /><text:tab /> <text:s />D '
|
||||||
'<text:line-break/> E </text:span></text:p>'
|
'<text:line-break /> E </text:span></text:p>'
|
||||||
'</root>'
|
'</root>'
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -1261,8 +1242,8 @@ def testCoreToOdt_XMLParagraph():
|
|||||||
# Check Error
|
# Check Error
|
||||||
# ===========
|
# ===========
|
||||||
|
|
||||||
xRoot = etree.Element("root", nsmap=nsMap)
|
xRoot = ET.Element("root")
|
||||||
xElem = etree.SubElement(xRoot, "{%s}p" % nsMap["text"])
|
xElem = ET.SubElement(xRoot, _mkTag("text", "p"))
|
||||||
xmlPar = XMLParagraph(xElem)
|
xmlPar = XMLParagraph(xElem)
|
||||||
|
|
||||||
xmlPar.appendText("A")
|
xmlPar.appendText("A")
|
||||||
|
|||||||
+1
-1
@@ -27,7 +27,7 @@ from pathlib import Path
|
|||||||
from PyQt5.QtWidgets import qApp
|
from PyQt5.QtWidgets import qApp
|
||||||
|
|
||||||
XML_IGNORE = ("<novelWriterXML", "<project")
|
XML_IGNORE = ("<novelWriterXML", "<project")
|
||||||
ODT_IGNORE = ("<meta:generator", "<meta:creation-date", "<dc:date")
|
ODT_IGNORE = ("<meta:generator", "<meta:creation-date", "<dc:date", "<meta:editing")
|
||||||
|
|
||||||
|
|
||||||
class C:
|
class C:
|
||||||
|
|||||||
Reference in New Issue
Block a user