<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://blutwald.de/index.php?action=history&amp;feed=atom&amp;title=JSPWiki_Tips</id>
	<title>JSPWiki Tips - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://blutwald.de/index.php?action=history&amp;feed=atom&amp;title=JSPWiki_Tips"/>
	<link rel="alternate" type="text/html" href="https://blutwald.de/index.php?title=JSPWiki_Tips&amp;action=history"/>
	<updated>2026-04-17T20:01:48Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in Earthdawn-Wiki.v2</subtitle>
	<generator>MediaWiki 1.42.3</generator>
	<entry>
		<id>https://blutwald.de/index.php?title=JSPWiki_Tips&amp;diff=2329&amp;oldid=prev</id>
		<title>Root: Die Seite wurde neu angelegt: „===Editing the menu on the left hand side=== The menu on the left hand side (over there &lt;--) is just a standard Wiki page, called LeftMenu. If you (the administrator) don&#039;t want anyone else to modify it, you can always edit LeftMenu, then make the page read-only on the hard drive itself ;-). The lower part of the left hand side is similarly called LeftMenuFooter, and it is fully editable as well. ===Editing…“</title>
		<link rel="alternate" type="text/html" href="https://blutwald.de/index.php?title=JSPWiki_Tips&amp;diff=2329&amp;oldid=prev"/>
		<updated>2024-10-22T18:36:09Z</updated>

		<summary type="html">&lt;p&gt;Die Seite wurde neu angelegt: „===Editing the menu on the left hand side=== The menu on the left hand side (over there &amp;lt;--) is just a standard Wiki page, called &lt;a href=&quot;/index.php/Left_Menu&quot; title=&quot;Left Menu&quot;&gt;LeftMenu&lt;/a&gt;. If you (the administrator) don&amp;#039;t want anyone else to modify it, you can always edit &lt;a href=&quot;/index.php/Left_Menu&quot; title=&quot;Left Menu&quot;&gt;LeftMenu&lt;/a&gt;, then make the page read-only on the hard drive itself ;-). The lower part of the left hand side is similarly called &lt;a href=&quot;/index.php/Left_Menu_Footer&quot; title=&quot;Left Menu Footer&quot;&gt;LeftMenuFooter&lt;/a&gt;, and it is fully editable as well. ===Editing…“&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;===Editing the menu on the left hand side===&lt;br /&gt;
The menu on the left hand side (over there &amp;lt;--) is just a standard Wiki page, called [[Left Menu|LeftMenu]].&lt;br /&gt;
If you (the administrator) don&amp;#039;t want anyone else to modify it, you can always edit [[Left Menu|LeftMenu]], then make the page read-only on the hard drive itself ;-).&lt;br /&gt;
The lower part of the left hand side is similarly called [[Left Menu Footer|LeftMenuFooter]], and it is fully editable as well.&lt;br /&gt;
===Editing pages directly===&lt;br /&gt;
By setting up an InterWiki link called &amp;quot;Edit&amp;quot; in &amp;lt;tt&amp;gt;jspwiki.properties&amp;lt;/tt&amp;gt; you can make direct edit links.  For example, this link here (assuming you&amp;#039;re using the default configuration from the JSPWiki archive), will take you&lt;br /&gt;
to the edit mode of this page: [Edit:JSPWikiTips].&lt;br /&gt;
The magical incantation in the &amp;lt;tt&amp;gt;jspwiki.properties&amp;lt;/tt&amp;gt; file is:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;code&amp;gt;&lt;br /&gt;
jspwiki.interWikiRef.Edit = Edit.jsp?page=%s&lt;br /&gt;
&amp;lt;/code&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
===How do I enable the [http://blogspace.com/rss/ RSS] feed?===&lt;br /&gt;
In your jspwiki.properties -file, you&amp;#039;ll need to set the &amp;quot;jspwiki.rss.generate&amp;quot; to &amp;quot;true&amp;quot;, and also set the &amp;quot;jspwiki.baseURL&amp;quot; to point at your Wiki.  Otherwise the RSS generator can&amp;#039;t figure out how its links should go... :-)&lt;br /&gt;
===I don&amp;#039;t like ThingsSquashedTogether in the page titles.  What can I do?===&lt;br /&gt;
As Finns say, &amp;quot;voe tokkiinsa&amp;quot;, meaning &amp;quot;yes, of course&amp;quot;.  Just set the &amp;quot;jspwiki.breakTitleWithSpaces&amp;quot; property to &amp;quot;true&amp;quot; in your jspwiki.properties-file.&lt;br /&gt;
===Bookmarklets===&lt;br /&gt;
Bookmarlets are tiny javascript programs stored in a url. (more [http://www.bookmarklets.com/tools/categor.html here])&lt;br /&gt;
They either live &lt;br /&gt;
* in your browser link toolbar, or&lt;br /&gt;
* in html pages.&lt;br /&gt;
To use bookmarklets in jspwiki pages, you first need to add a javascript interWikiRef in &amp;#039;&amp;#039;jspwiki.properties&amp;#039;&amp;#039;:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;code&amp;gt;&lt;br /&gt;
#  javascript, for bookmarklets&lt;br /&gt;
jspwiki.interWikiRef.javascript= javascript:%s&lt;br /&gt;
&amp;lt;/code&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
You can now start inserting bookmarklets into your page :&lt;br /&gt;
====Ex 1 : search in this JSPWiki====&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;code&amp;gt;&lt;br /&gt;
[search here for...|javascript:location.href=&amp;amp;#039;http:Search.jsp?query=&amp;amp;#039;+&lt;br /&gt;
escape(prompt(&amp;amp;#039;search for..&amp;amp;#039;,&amp;amp;#039;&amp;amp;#039;))+&amp;amp;#039;&amp;amp;amp;ok=Find%21&amp;amp;#039;] &lt;br /&gt;
&amp;lt;/code&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
====Ex 2 : Calculator====&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;code&amp;gt;&lt;br /&gt;
[calculator|javascript:expr=prompt(&amp;amp;#039;Formula...(eg:  2*3)&amp;amp;#039;,&amp;amp;#039;&amp;amp;#039;);if(expr){with(Math){evl=parseFloat(eval(expr))};&lt;br /&gt;
if(isNaN(evl)){alert(&amp;amp;#039;Not a number!&amp;amp;#039;)}else{void(prompt(&amp;amp;#039;Result:&amp;amp;#039;,evl))}}else{void(null)}]&lt;br /&gt;
&amp;lt;/code&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
(Everything on one line, of course).&lt;br /&gt;
List of [http://www.bookmarklets.com/tools/convert/calcFuncts.html supported functions]&lt;br /&gt;
&lt;br /&gt;
====Ex 3 : is the current page url already stored in the JSPWiki?====&lt;br /&gt;
Adapt (for &amp;#039;&amp;#039;your&amp;#039;&amp;#039; wiki) this url, and store it in a new url, in your browser toolbar.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;code&amp;gt;&lt;br /&gt;
javascript:location.href=&amp;amp;#039;http://localhost:8080/JSPWiki207/Search.jsp?query=&amp;amp;#039;&lt;br /&gt;
+escape(location.href)+&amp;amp;#039;&amp;amp;amp;ok=Find%21&amp;amp;#039;&lt;br /&gt;
&amp;lt;/code&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;#039;&amp;#039;Contributed by Alain Ravet.&amp;#039;&amp;#039;&lt;br /&gt;
===I have a question you have not answered!===&lt;br /&gt;
Well, the easiest thing to do is go directly to the [JSPWiki:Main JSPWiki main site] and ask your question there.  Or you could also [[About|email me]], but it&amp;#039;s better for all if you go and publicly post your query.  It does not hurt to take a peek at JSPWiki site anyway, since your question might already be answered there...&lt;/div&gt;</summary>
		<author><name>Root</name></author>
	</entry>
</feed>