added tags processing
This commit is contained in:
parent
7832321672
commit
14bcb2c088
2 changed files with 25 additions and 4 deletions
|
@ -17,8 +17,13 @@ public class GreenstoneTags {
|
||||||
|
|
||||||
private static LinkedList<Integer> headerStack = new LinkedList<Integer>();
|
private static LinkedList<Integer> headerStack = new LinkedList<Integer>();
|
||||||
private static boolean pageSection = false;
|
private static boolean pageSection = false;
|
||||||
|
private static String tagsType = "none";
|
||||||
|
|
||||||
protected static boolean processHeading(Node currentNode, Node hnode, int pageNum) {
|
protected static void processHeading(Node currentNode, Node hnode, int pageNum) {
|
||||||
|
|
||||||
|
if (tagsType.equals("none") || tagsType.equals("pages")){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
String sLevel = Misc.getAttribute(currentNode, XMLString.TEXT_OUTLINE_LEVEL);
|
String sLevel = Misc.getAttribute(currentNode, XMLString.TEXT_OUTLINE_LEVEL);
|
||||||
//If this heading contain outline-level
|
//If this heading contain outline-level
|
||||||
|
@ -60,10 +65,13 @@ public class GreenstoneTags {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
return false;
|
return;
|
||||||
}
|
}
|
||||||
protected static void processPageBreak(Node currentNode, Node hnode, Integer pageNum){
|
protected static void processPageBreak(Node currentNode, Node hnode, Integer pageNum){
|
||||||
|
|
||||||
|
if (tagsType.equals("none") || tagsType.equals("headings")){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if ( !( currentNode.getNodeType() == Node.ELEMENT_NODE
|
if ( !( currentNode.getNodeType() == Node.ELEMENT_NODE
|
||||||
&& currentNode.getNodeName().equals(XMLString.TEXT_H)
|
&& currentNode.getNodeName().equals(XMLString.TEXT_H)
|
||||||
|
@ -71,6 +79,7 @@ public class GreenstoneTags {
|
||||||
&& !Misc.getAttribute(currentNode, XMLString.TEXT_OUTLINE_LEVEL).isEmpty()
|
&& !Misc.getAttribute(currentNode, XMLString.TEXT_OUTLINE_LEVEL).isEmpty()
|
||||||
)
|
)
|
||||||
&& !headerStack.isEmpty()
|
&& !headerStack.isEmpty()
|
||||||
|
|| tagsType.equals("pages")
|
||||||
) {
|
) {
|
||||||
if (pageSection) {
|
if (pageSection) {
|
||||||
closeSection(hnode);
|
closeSection(hnode);
|
||||||
|
@ -84,11 +93,20 @@ public class GreenstoneTags {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//Method to open main document tag
|
//Method to open main document tag
|
||||||
protected static void StartDocument(Node hnode, String title){
|
protected static void StartDocument(Node hnode, String title, String type){
|
||||||
|
tagsType = type;
|
||||||
|
if (tagsType.equals("none")){
|
||||||
|
return;
|
||||||
|
}
|
||||||
openSection(hnode, title);
|
openSection(hnode, title);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
//Method to close open tags at the end of the document
|
//Method to close open tags at the end of the document
|
||||||
protected static void endDocument(Node hnode){
|
protected static void endDocument(Node hnode){
|
||||||
|
if (tagsType.equals("none")){
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (pageSection){
|
if (pageSection){
|
||||||
closeSection(hnode);
|
closeSection(hnode);
|
||||||
pageSection = false;
|
pageSection = false;
|
||||||
|
|
|
@ -103,6 +103,8 @@ public class TextConverter extends ConverterHelper {
|
||||||
//Current master page name
|
//Current master page name
|
||||||
private String nextMasterPage = null;
|
private String nextMasterPage = null;
|
||||||
|
|
||||||
|
private String greenstoneTagsType = config.greenstoneTags();
|
||||||
|
|
||||||
public TextConverter(OfficeReader ofr, XhtmlConfig config, Converter converter) {
|
public TextConverter(OfficeReader ofr, XhtmlConfig config, Converter converter) {
|
||||||
super(ofr,config,converter);
|
super(ofr,config,converter);
|
||||||
tocCv = new TOCConverter(ofr, config, converter);
|
tocCv = new TOCConverter(ofr, config, converter);
|
||||||
|
@ -1580,7 +1582,8 @@ public class TextConverter extends ConverterHelper {
|
||||||
|
|
||||||
//Start tagging
|
//Start tagging
|
||||||
String sTitle = converter.getTitle();
|
String sTitle = converter.getTitle();
|
||||||
GreenstoneTags.StartDocument(hnode, sTitle);
|
GreenstoneTags.StartDocument(hnode, sTitle,greenstoneTagsType);
|
||||||
|
|
||||||
//Print header
|
//Print header
|
||||||
addHeader(hnode);
|
addHeader(hnode);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue