-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathold_templates.php
58 lines (52 loc) · 2.24 KB
/
old_templates.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
/*
* Copyright 2004-2009 Patrick R. Michaud ([email protected])
* Copyright 2004-2009 Tobias Thelen <[email protected]>
* Copyright (c) 2012 Rasmus Fuhse <[email protected]>
*
* This file was part of PITS (PmWiki Issue Tracking System).
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*/
$GLOBALS['issues_templates'] = array();
$GLOBALS['issues_templates']['lifters'] = array(
// common prefix to alle newly created pages
// must be a WikiWord and should be unique to
// avoid conflicts with other templates
'prefix' => 'LifTers',
// additional markup for a lifter
'additional_description' => "(:liftersprogress:)"
);
$GLOBALS['issues_templates']['step'] = array(
// common prefix to alle newly created pages
// must be a WikiWord and should be unique to
// avoid conflicts with other templates
'prefix' => 'StEP'
);
$GLOBALS['issues_templates']['biest'] = array(
// common prefix to alle newly created pages
// must be a WikiWord and should be unique to
// avoid conflicts with other templates
"prefix"=>"BIEST",
// list of fields to parse for list view, matching is case-insensitive
// order must be same as indicated by listheader
// first field (name) will be added
"listview"=>array('erstellt','autor','zuständig','version','status','zusammenfassung'),
// standard order of fields for sort function
//"stdorder"=>'-erstellt,status,autor,zuständig,version,beschreibung',
// header for list tables, first column always is the pages name
// order defines order criterion for sort action
"listheader" => array(
array("order"=>"-name","heading"=>"BIEST#"),
array("order"=>"erstellt", "heading"=>"Erstellt"),
array("order"=>"autor", "heading"=>"Autor"),
array("order"=>"zuständig", "heading"=>"Zuständig"),
array("order"=>"version", "heading"=>"Version"),
array("order"=>"status", "heading"=>"Status"),
array("order"=>"zusammenfassung", "heading"=>"Zusammenfassung")
),
'defaultstatus' => "offen"
);