~ubuntu-branches/ubuntu/wily/steam/wily

« back to all changes in this revision

Viewing changes to sources/wiki/test.wiki

  • Committer: Package Import Robot
  • Author(s): Felix Geyer
  • Date: 2013-10-29 19:51:18 UTC
  • mfrom: (1.1.4) (0.1.4 trusty-proposed)
  • Revision ID: package-import@ubuntu.com-20131029195118-b9bxciz5hwx5z459
Tags: 1:1.0.0.39-2ubuntu1
Add an epoch to the version number as there was an unrelated steam package
in the archive with a higher version number.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
==Server Documentation==
2
 
 
3
 
 
4
 
This is the sTeam Server Documentation Wiki. Since we are just about to start this documentation there are only a few items available yet:
5
 
 
6
 
* Some [[Basics]] about the Server internals.
7
 
* An [[Object]] is the basic entity of the sTeam system.
8
 
* The [[Search]] functionality.
9
 
* And finally documentation about [[Wiki]] itself.
10
 
** second level test
11
 
* [[web:|The Web Interface and Development Documentation]]
12
 
* The [[XMLTools]], some useful methods to generate the XML Source Code using [[XGL]] .
13
 
 
14
 
** test
15
 
** jau
16
 
* nee
17
 
 
18
 
----
19
 
 
20
 
Please request additional Information at developer@steam.upb.de. [We are only updating documentation on demand.[This wiki features some additional functionality like annotations. We are currently working on the notation.]] Apart from that the wiki features an embed function to embed other documents of the same room.
21
 
 
22
 
 
23
 
 
24
 
===Full Content Listing===
25
 
@@PIKE
26
 
string html = "";
27
 
if ( objectp(env) ) {
28
 
  html = "<ul>";
29
 
  array inv = env->get_inventory();
30
 
  foreach(inv, object o ) {
31
 
    if ( !objectp(o) ) continue;
32
 
    if ( !(o->get_object_class() & CLASS_DOCUMENT) )
33
 
         continue;
34
 
    if ( search(o->query_attribute(DOC_MIME_TYPE), "wiki") == -1 ) continue;
35
 
    html += "<li><a href='"+o->get_identifier()+"'>"+o->get_identifier()+"</a></li>";
36
 
  }
37
 
  html += "</ul>";
38
 
}
39
 
return html;
40
 
@@