hot questions tagged dokuwiki - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T08:46:03Zhttp://stackoverflow.com/feeds/tag?tagnames=dokuwiki&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1472143/javadoc-to-dokuwiki-conversion-doclet1JavaDoc to (Doku)Wiki conversion / docletgamma2009-09-24T14:39:27Z2009-09-24T19:31:04Z
<p>Our company has a very large public Java API which is currently being released standalone and online using (of course) JavaDoc. It is surrounded by product documentation which links into the API.</p>
<p>We are moving our static documentation to DokuWiki - which works pretty good - and want to keep the links.</p>
<p>Now it would be good to have a method (or doclet) that exports the JavaDoc directly into DokuWiki - or a very near alternative.</p>
<p>Question: Is there something like this or do you know a method to do just that?</p>
http://stackoverflow.com/questions/1303310/custom-rss-feed-in-dokuwiki0Custom RSS feed in DokuwikiMartin McClellan2009-08-20T00:15:15Z2009-08-25T00:41:14Z
<p>I'm using Dokuwiki to populate a site with a known set of pages. Say, <code>foo_1</code> through <code>foo_9</code>. The content of those pages will change, but the names and locations never will. </p>
<p>I want to provide a full-content RSS feed in a particular order of just those pages:</p>
<pre><code>foo_1
foo_2
foo_3
...
foo_9
</code></pre>
<p>Using the <a href="http://www.dokuwiki.org/syndication" rel="nofollow">default syndication items</a> it's not possible (it always uses the sort order of newest items at top), so I was thinking I'll need to create a customized copy of <code>feed.php</code></p>
<p>The problem is, I'm not a good enough PHP developer to know what I need to change. In <code>feed.php</code> on line 134 the function <code>rss_buildItems</code> looks like what I'd want to tweak. Essentially, I'd like to pass it a simple array of the items to list in the correct order (assuming that would work), and then remove the call that gathers the information (that appears to me to be on line 288 the function <code>getRecents()</code>, but I'm a bit confused about that as well). So, I would need:</p>
<ol>
<li>The ID or other relevant page data for what I want to list.</li>
<li>The format of the array. </li>
<li>The lines to block out to stop the date-based method of listing. </li>
</ol>
<p>If anybody could get me started, or has any other ideas that might be easier, I'd be most appreciative. </p>
http://stackoverflow.com/questions/490426/can-dokuwiki-jquery-play-together1Can DokuWiki & jQuery play together?Wilco2009-01-29T03:51:58Z2009-09-11T13:35:09Z
<p>I'm having some trouble getting jQuery to play nice with DokuWiki - has anyone already done this successfully?</p>
<p>At the moment, including jQuery reuslts in all sorts of JS functionality breaking, and I'm having trouble tracking down the source of the problem. What are some things to look for that tend to conflict with jQuery?</p>
http://stackoverflow.com/questions/184431/converting-xml-to-plain-text-using-xslt-how-should-i-ignore-handle-whitespace6Converting XML to plain text using XSLT -- how should I ignore/handle whitespace in the XSLT?Paul Marshall2008-10-08T19:22:47Z2008-10-09T20:23:03Z
<p>I'm trying to convert an XML file into the markup used by dokuwiki, using XSLT. This actually works to some degree, but the indentation in the XSL file is getting inserted into the results. At the moment, I have two choices: abandon this XSLT thing entirely, and find another way to convert from XML to dokuwiki markup, or delete about 95% of the whitespace from the XSL file, making it nigh-unreadable and a maintenance nightmare.</p>
<p>Is there some way to keep the indentation in the XSL file without passing all that whitespace on to the final document?</p>
<p>Background: I'm migrating an autodoc tool from static HTML pages over to dokuwiki, so the API developed by the server team can be further documented by the applications team whenever the apps team runs into poorly-documented code. The logic is to have a section of each page set aside for the autodoc tool, and to allow comments anywhere outside this block. I'm using XSLT because we already have the XSL file to convert from XML to XHTML, and I'm assuming it will be faster to rewrite the XSL than to roll my own solution from scratch.</p>
<p><i>Edit: Ah, right, foolish me, I neglected the indent attribute. (Other background note: I am new to XSLT.) On the other hand, I still have to deal with newlines. Dokuwiki uses pipes to differentiate between table columns, which means that all of the data in a table line must be on one line. Is there a way to suppress newlines being outputted (just occasionally), so I can do some fairly complex logic for each table cell in a somewhat readable fasion?</i></p>
http://stackoverflow.com/questions/631350/how-can-i-display-my-logo-on-my-dokuwikis-title1How can I display my logo on my DokuWiki's title?samoz2009-03-10T17:13:33Z2009-06-11T19:00:05Z
<p>I have a DokuWiki and I'd like to place a logo on the title bar at the top of the page? How can I do this? Note that I am not referring to the title bar at the top of the browser, but rather the title bar on the website itself.</p>
<p>I tried inserting the DokuWiki syntax: {{public:logo.jpg?100x100}}, but this simply rendered as plain text and not an image.</p>
<p>Is it possible to put an image in the page title?</p>
http://stackoverflow.com/questions/624869/docbook-to-dokuwiki1DocBook to DokuWikiWilco2009-03-09T02:55:12Z2009-04-16T16:01:28Z
<p>Is there a straightforward way to take docbook content and convert it into DokuWiki content? So far I've only found the <a href="http://www.dokuwiki.org/plugin:docbook" rel="nofollow">DokuWiki plugin</a> that will interpret docbook content and output it in XHTML, but this happens on every page load.</p>
<p>I would like to find a way to convert docbook content directly to DokuWiki's native formatting syntax so I only have to interpret it once. Any ideas?</p>