summaryrefslogtreecommitdiff
path: root/xmlhelp
diff options
context:
space:
mode:
authorAndreas Bille <abi@openoffice.org>2001-02-07 08:35:47 +0000
committerAndreas Bille <abi@openoffice.org>2001-02-07 08:35:47 +0000
commit622f61033ca8de77aa3caf68d1d97db521c90d5c (patch)
treedc5c63f6377d90b9cbea95208af8917bfdf30208 /xmlhelp
parentf299762eae5146393facc591ffaf29efb418f0c8 (diff)
#82574#
There is now a new property KeywordAnchorForRef at module contents. In order to become effective the help files must be newly indexed and the main_transform.xsl file delivered by the help must be updated.
Diffstat (limited to 'xmlhelp')
-rw-r--r--xmlhelp/source/com/sun/star/help/HelpIndexer.java45
1 files changed, 36 insertions, 9 deletions
diff --git a/xmlhelp/source/com/sun/star/help/HelpIndexer.java b/xmlhelp/source/com/sun/star/help/HelpIndexer.java
index e86096c1bf6a..d85974af464d 100644
--- a/xmlhelp/source/com/sun/star/help/HelpIndexer.java
+++ b/xmlhelp/source/com/sun/star/help/HelpIndexer.java
@@ -199,7 +199,7 @@ public class HelpIndexer {
System.out.println( "Indexing..." );
Enumeration enum = _hashDocInfo.elements();
int cut = 0;
- while( enum.hasMoreElements() && cut < 1000000000 )
+ while( enum.hasMoreElements() && cut < 100 )
{
try
{
@@ -214,12 +214,23 @@ public class HelpIndexer {
}
cut++;
- // System.out.println( url );
_urlHandler.setMode( null );
byte[] embResolved = getSourceDocument( url );
+// System.out.println( new String( embResolved ) );
InputSource in = new InputSource( new ByteArrayInputStream( embResolved ) );
in.setEncoding( "UTF8" );
- Document docResolved = XmlDocument.createXmlDocument( in,false );
+ Document docResolved = null;
+ try
+ {
+ docResolved = XmlDocument.createXmlDocument( in,false );
+ }
+ catch( Exception e )
+ {
+ if( docResolved == null )
+ System.err.println( "Nullpointer" );
+ System.err.println( e.getMessage() );
+ }
+
String id = info.getId();
if( id == null )
System.out.println( "Found tag without valid id" );
@@ -237,17 +248,31 @@ public class HelpIndexer {
_hashHelptext.put( tag.get_id(),text );
}
}
-
_urlHandler.setMode( embResolved );
+
+ int idx = url.indexOf( '?' );
+ if( idx != -1 )
+ url = url.substring( 0,idx );
+
+ System.out.println( url );
builder.indexDocument( new URL( url ),"" );
}
catch( Exception e )
{
+ System.err.println( e.getMessage() );
}
}
- builder.close();
- dumpHelptext();
- _keywords.dump();
+
+ try
+ {
+ dumpHelptext();
+ _keywords.dump();
+ builder.close();
+ }
+ catch( Exception e )
+ {
+ System.err.println( e.getMessage() );
+ }
/*
// Now the database may be indexed, the keywords and helptexts are extracted
System.out.println( "Indexing..." );
@@ -543,8 +568,9 @@ public class HelpIndexer {
if( test.getNodeName().equals( "help:key-word" ) )
{
String keyword = (( Element ) test).getAttribute( "value" );
- // System.out.println( "found keyword: " + keyword );
- _keywords.insert( keyword,id );
+ String getJump = (( Element ) test).getAttribute( "tag" );
+ if( ! keyword.equals("") && !id.equals("") )
+ _keywords.insert( keyword,id + "#" + getJump );
}
}
}
@@ -655,6 +681,7 @@ public class HelpIndexer {
catch( SAXException e )
{
System.err.println( "<!-- Syntactic error in stylesheet -->" );
+ System.err.println( e.getMessage() );
System.exit( 1 );
}
catch( java.io.IOException e )