Alpha stage
This commit is contained in:
parent
89ac1761d2
commit
81a3976677
2 changed files with 69 additions and 37 deletions
|
@ -5,6 +5,7 @@ import java.util.LinkedList;
|
||||||
|
|
||||||
|
|
||||||
import org.w3c.dom.Document;
|
import org.w3c.dom.Document;
|
||||||
|
import org.w3c.dom.Element;
|
||||||
import org.w3c.dom.Node;
|
import org.w3c.dom.Node;
|
||||||
import org.w3c.dom.NodeList;
|
import org.w3c.dom.NodeList;
|
||||||
|
|
||||||
|
@ -15,8 +16,13 @@ import writer2latex.util.Misc;
|
||||||
//LinkedList<String> stringList = new LinkedList<String>();
|
//LinkedList<String> stringList = new LinkedList<String>();
|
||||||
public class GreenstoneTags {
|
public class GreenstoneTags {
|
||||||
|
|
||||||
|
private static final String NONE = "none";
|
||||||
|
private static final String SECTIONS = "sections";
|
||||||
|
private static final String DIV = "div";
|
||||||
|
|
||||||
|
|
||||||
private static LinkedList<Integer> headerStack = new LinkedList<Integer>();
|
private static LinkedList<Integer> headerStack = new LinkedList<Integer>();
|
||||||
private static boolean pageSectionOpened = false;
|
private static boolean pageOpened = false;
|
||||||
//headings none
|
//headings none
|
||||||
private static String headingTags = "headings";
|
private static String headingTags = "headings";
|
||||||
//sections div none
|
//sections div none
|
||||||
|
@ -25,7 +31,7 @@ public class GreenstoneTags {
|
||||||
protected static Node processHeading(Node currentNode, Node hnode, int pageNum) {
|
protected static Node processHeading(Node currentNode, Node hnode, int pageNum) {
|
||||||
|
|
||||||
|
|
||||||
if (headingTags.equals("none")){
|
if (headingTags.equals(NONE)){
|
||||||
return hnode;
|
return hnode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -33,10 +39,8 @@ public class GreenstoneTags {
|
||||||
//If this heading contain outline-level
|
//If this heading contain outline-level
|
||||||
if (sLevel != null && !sLevel.isEmpty()) {
|
if (sLevel != null && !sLevel.isEmpty()) {
|
||||||
int nLevel = Integer.parseInt(sLevel);
|
int nLevel = Integer.parseInt(sLevel);
|
||||||
// Close page section if opened
|
if (pageOpened) {
|
||||||
if (pageSectionOpened) {
|
hnode = closePage(hnode);
|
||||||
closeSection(hnode);
|
|
||||||
pageSectionOpened = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
closeHeadingSections(hnode, nLevel);
|
closeHeadingSections(hnode, nLevel);
|
||||||
|
@ -54,11 +58,8 @@ public class GreenstoneTags {
|
||||||
&& nextNode.getNodeName().equals(XMLString.TEXT_H)
|
&& nextNode.getNodeName().equals(XMLString.TEXT_H)
|
||||||
&& Misc.getAttribute(nextNode, XMLString.TEXT_OUTLINE_LEVEL) != null
|
&& Misc.getAttribute(nextNode, XMLString.TEXT_OUTLINE_LEVEL) != null
|
||||||
&& !Misc.getAttribute(nextNode, XMLString.TEXT_OUTLINE_LEVEL).isEmpty()
|
&& !Misc.getAttribute(nextNode, XMLString.TEXT_OUTLINE_LEVEL).isEmpty()
|
||||||
)
|
)) {
|
||||||
&& headingTags.equals("headings-pages")
|
hnode = openPage(hnode, pageNum);
|
||||||
) {
|
|
||||||
//Open page section
|
|
||||||
openPageSection(hnode, pageNum);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -67,7 +68,7 @@ public class GreenstoneTags {
|
||||||
}
|
}
|
||||||
protected static Node processPageBreak(Node currentNode, Node hnode, Integer pageNum){
|
protected static Node processPageBreak(Node currentNode, Node hnode, Integer pageNum){
|
||||||
|
|
||||||
if (headingTags.equals("none") || headingTags.equals("headings")){
|
if (pageTags.equals(NONE)){
|
||||||
return hnode;
|
return hnode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -79,15 +80,10 @@ public class GreenstoneTags {
|
||||||
&& !headerStack.isEmpty()
|
&& !headerStack.isEmpty()
|
||||||
|| pageTags.equals("sections")
|
|| pageTags.equals("sections")
|
||||||
) {
|
) {
|
||||||
if (pageSectionOpened) {
|
if (pageOpened) {
|
||||||
closeSection(hnode);
|
hnode = closePage(hnode);
|
||||||
pageSectionOpened = false;
|
|
||||||
|
|
||||||
}
|
|
||||||
if (pageNum != null) {
|
|
||||||
openPageSection(hnode, pageNum);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
hnode = openPage(hnode, pageNum);
|
||||||
}
|
}
|
||||||
return hnode;
|
return hnode;
|
||||||
}
|
}
|
||||||
|
@ -95,30 +91,48 @@ public class GreenstoneTags {
|
||||||
protected static Node StartDocument(Node hnode, String title, String heading, String pages, int pageNum){
|
protected static Node StartDocument(Node hnode, String title, String heading, String pages, int pageNum){
|
||||||
headingTags = heading;
|
headingTags = heading;
|
||||||
pageTags = pages;
|
pageTags = pages;
|
||||||
if (headingTags.equals("none")){
|
|
||||||
|
if (headingTags.equals(NONE) && pageTags.equals(NONE)){
|
||||||
return hnode;
|
return hnode;
|
||||||
}
|
}
|
||||||
//Create main document section
|
if(headingTags.equals(SECTIONS)){
|
||||||
openSection(hnode, title);
|
//Create global section
|
||||||
if (pageTags.equals("sections")){
|
openSection(hnode, title);
|
||||||
//Open page section
|
|
||||||
openPageSection(hnode, pageNum);
|
|
||||||
}
|
}
|
||||||
|
hnode = openPage(hnode, pageNum);
|
||||||
|
|
||||||
return hnode;
|
return hnode;
|
||||||
}
|
}
|
||||||
//Method to close open tags at the end of the document
|
//Method to close open tags at the end of the document
|
||||||
protected static Node endDocument(Node hnode){
|
protected static Node endDocument(Node hnode){
|
||||||
if (headingTags.equals("none")){
|
if (headingTags.equals(NONE) && pageTags.equals(NONE)){
|
||||||
return hnode;
|
return hnode;
|
||||||
}
|
}
|
||||||
if (pageSectionOpened){
|
if (pageOpened){
|
||||||
closeSection(hnode);
|
hnode = closePage(hnode);
|
||||||
pageSectionOpened = false;
|
|
||||||
}
|
}
|
||||||
closeSection(hnode);
|
if (headingTags.equals(SECTIONS)){
|
||||||
//Clean stack, close all sections
|
closeHeadingSections(hnode, 0);
|
||||||
closeHeadingSections(hnode, 0);
|
//Close global section
|
||||||
|
closeSection(hnode);
|
||||||
|
}
|
||||||
|
|
||||||
|
return hnode;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static Node openPageDiv(Node hnode,int pageNum){
|
||||||
|
Document doc = hnode.getOwnerDocument();
|
||||||
|
Element openBlock = (Element) doc.createElement("div");
|
||||||
|
openBlock.setAttribute("class", "pageNum");
|
||||||
|
openBlock.setAttribute("page", Integer.toString(pageNum));
|
||||||
|
// insert open section comment before header node
|
||||||
|
hnode.appendChild((Node)openBlock);
|
||||||
|
hnode = openBlock;
|
||||||
|
return openBlock;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static Node exitPageDiv(Node hnode){
|
||||||
|
hnode = hnode.getParentNode();
|
||||||
return hnode;
|
return hnode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -155,7 +169,6 @@ public class GreenstoneTags {
|
||||||
Node openSection = doc.createComment(commentText);
|
Node openSection = doc.createComment(commentText);
|
||||||
// insert open section comment before header node
|
// insert open section comment before header node
|
||||||
hnode.appendChild(openSection);
|
hnode.appendChild(openSection);
|
||||||
pageSectionOpened = true;
|
|
||||||
}
|
}
|
||||||
private static void openSection(Node hnode, String title){
|
private static void openSection(Node hnode, String title){
|
||||||
Document doc = hnode.getOwnerDocument();
|
Document doc = hnode.getOwnerDocument();
|
||||||
|
@ -185,9 +198,28 @@ public class GreenstoneTags {
|
||||||
if (headerStack.isEmpty()) {
|
if (headerStack.isEmpty()) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
private static Node closePage(Node hnode){
|
||||||
|
if (pageTags.equals(SECTIONS)){
|
||||||
|
closeSection(hnode);
|
||||||
|
}
|
||||||
|
else if (pageTags.equals(DIV)){
|
||||||
|
hnode = exitPageDiv(hnode);
|
||||||
|
}
|
||||||
|
pageOpened = false;
|
||||||
|
return hnode;
|
||||||
|
}
|
||||||
|
private static Node openPage(Node hnode, Integer pageNum){
|
||||||
|
if (pageTags.equals(SECTIONS)){
|
||||||
|
openPageSection(hnode, pageNum);
|
||||||
|
}
|
||||||
|
else if (pageTags.equals(DIV)){
|
||||||
|
hnode = openPageDiv(hnode, pageNum);
|
||||||
|
}
|
||||||
|
pageOpened = true;
|
||||||
|
return hnode;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -294,7 +294,7 @@ public class XhtmlConfig extends writer2latex.base.ConfigBase {
|
||||||
options[DIRECTORY_ICON] = new Option("directory_icon","");
|
options[DIRECTORY_ICON] = new Option("directory_icon","");
|
||||||
options[DOCUMENT_ICON] = new Option("document_icon","");
|
options[DOCUMENT_ICON] = new Option("document_icon","");
|
||||||
options[HEADING_TAGS] = new Option("heading_tags","sections");
|
options[HEADING_TAGS] = new Option("heading_tags","sections");
|
||||||
options[PAGE_TAGS] = new Option("page_tags","sections");
|
options[PAGE_TAGS] = new Option("page_tags","div");
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void readInner(Element elm) {
|
protected void readInner(Element elm) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue