Also something was mentioned about a search plugin at the
presentation, I was wondering if someone can help me out with a link
to that and the yahoo toc that was discussed.
I've attached both here as zip files. You should always be able to get the latest tocjs plugin from the dita-users yahoo group here:
http://groups.yahoo.com/group/dita-users/files/Demos/
The kindex plugin is not up there, but I have attached it here. This gives you a new transtype of kindex that will output an XML file that you can *use* to generate Lucene or Kinosearch. It does not give you full text search on its own without doing a little work with one of these tools.
My ant task once it is set up looks something like:
<target name="spider2kindex" description="Generate kindex input file">
<antcall target="init">
<param name="transtype" value="kindex"/>
<param name="args.input"
value="projects${file.separator}ws1000${file.separator}WSAHelp.ditamap"/>
<param name="output.file"
value="output${file.separator}ws1000${file.separator}ws1000${file.separator}kindex.xml"
/>
</antcall>
</target>
I include this mostly because the kindex plugin has no documentation. Installing should be the same as the tocjs plugin.
http://groups.yahoo.com/group/dita-users/files/Demos/
The kindex plugin is not up there, but I have attached it here. This gives you a new transtype of kindex that will output an XML file that you can *use* to generate Lucene or Kinosearch. It does not give you full text search on its own without doing a little work with one of these tools.
My ant task once it is set up looks something like:
<target name="spider2kindex" description="Generate kindex input file">
<antcall target="init">
<param name="transtype" value="kindex"/>
<param name="args.input"
value="projects${file.separator}ws1000${file.separator}WSAHelp.ditamap"/>
<param name="output.file"
value="output${file.separator}ws1000${file.separator}ws1000${file.separator}kindex.xml"
/>
</antcall>
</target>
I include this mostly because the kindex plugin has no documentation. Installing should be the same as the tocjs plugin.
I'm hoping to use that
to eliviate some problems were having with WebWorksHelp load times by
using those two plugins with a DHTML help out put for WebWorks...am I
dreaming?
I don't know anything about that, but I'd appreciate your feedback on the plugins and if they are helpful for you.
Thanks again Shawn.