Wiki source code of Design Proposals

Version 26.6 by Vincent Massol on 2010/12/12 14:43

Show last authors
1 This space is dedicated to design proposals. The process is the following:
2
3 * First, discuss the idea on the [[mailing lists>>Community.MailingLists]]
4 * Once a first conclusion is reached document it on this wiki here
5 * Create a JIRA issue so that it's not forgotten and reference the page on the wiki
6 * Continue improving the design implementation on the wiki
7 * When the proposal is finalized, send a mail on the dev list for approval
8 * Once approved implement it and document it properly in the final location in the wiki
9 * Once the JIRA issue is implemented mark the Design proposal as "Completed"
10
11 {{html}}
12 <form action="" id="newdesign">
13 <input type="hidden" name="parent" value="Design.WebHome" />
14 <input type="hidden" name="template" value="XWiki.DesignClassTemplate" />
15 <input type="hidden" name="sheet" value="1" />
16 <input type="hidden" name="webname" value="Design"/>
17 <input type="hidden" name="name" value=""/>
18 <table>
19 <tr>
20 <td>
21 <input type="text" name="design" value="" size="30"/>
22 </td>
23 <td>
24 <input type="submit" value="Add this Design proposal" onclick='if (updateName(this.form.design,this.form.name)) { action="../../inline/" + this.form.webname.value + "/" + this.form.name.value; this.form.submit(); }' />
25 </td>
26 </tr>
27 </table>
28 </form>
29 {{/html}}
30
31 == Existing Design Proposals ==
32
33 {{velocity}}
34 #set($columns = ["doc.name", "Status", "Lead", "JIRAIssueReference", "doc.date"])
35 #set($columnsProperties = {
36 "doc.name" : { "type" : "text", "link" : "view"},
37 "Status" : { "type" : "list"},
38 "Lead" : { "type" : "text"},
39 "JIRAIssueReference" : { "type" : "text"},
40 "doc.date" : { "type" : "text"}
41 })
42 #set($options = {
43 "translationPrefix" : "xwikiorg.dev.",
44 "className":"XWiki.DesignClass",
45 "rowCount": 30
46 })
47 #livetable("designs" $columns $columnsProperties $options)
48 {{/velocity}}

Get Connected