Wiki source code of Design Proposals

Version 25.1 by Vincent Massol on 2010/12/11 14:49

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

Get Connected