Antville Help

"storylist" o.ä. in topicanzeige?

ok, das ist vielleicht eine dummiefrage aber ihr könnt sie auch ignorieren. ich biege antville in einem blog auf blogger.de gerade ein wenig in richtung CMS um (kosmetisch) und frage mich wie es möglich wäre in der topic-ansicht, z.b.

help.antville.org

die auflistung der stories nur als klickbare überschriften zu realisieren.

ich denke das es möglich sein müßte, bin nur zu doof dafür vermutlich oder ich finde den entsprechenden "skin" nicht. hat wer 'ne idee?

Topics

Just found this:

"stories can be filed in an unlimited number of "topics"" project.antville.org

Does this mean, stories can be applied to more than just one topic, and if the answer is yes, how?

Trick: Topics as Dropdown Menu

Here is what you put into the main skin or wherever you want the menu to show up:

<form>
<select onChange="showSelectedEntry(this);" >
<option selected="selected">Rubriken</option>
<script type="text/javascript">
var a = new Array ("" <% topiclist itemprefix=",'" itemsuffix="'" %>);
renderTopicsOptions(a);
</script>
</select>
</form>
Then you need to add these two functions to the JavaScript skin.
function showSelectedEntry(menu) {
window.location.href = menu.options[menu.selectedIndex].value;
}

function renderTopicsOptions (a) { for (var i=1;i<a.length;i++) { var t = /".+</.exec(a[i]); document.writeln("<option value="+ t +"/option>"); } }

I hope everything is escaped properly. Kudos to Tobi.

umlaute in topics

how does it work??? i know it works: e.g i saw it @ mks.antville.org. are there any substitutions for ä, ü, ö, é and so on? thanx for your help!!

number of stories in a topic

Hello,

how can you add the number of stories inside one topic to the topic list, e.g.

  • my stories (25)
  • office (16)
  • other stuff (5) ...

Is there possibly an option to the topiclist macro? Martin

Sie sind nicht angemeldet