Version 2.1 by Admin on 2012/01/30

Show last authors
1 {{include document="AppWithinMinutes.WizardStep"/}}
2
3 {{velocity output="false"}}
4 #macro(showStep)
5 {{html wiki="true"}}
6 #appWizardHeader(1)
7 (% class="wizard-help" %)
8 (((
9 **$msg.get('platform.appwithinminutes.wizardStepHelpTitle')** $msg.get('platform.appwithinminutes.wizardStepHelpDescription')
10 (% class="steps" %)
11 #foreach($index in [1, 2, 3])
12 * (% class="number" %)$index(%%) (% class="name" %)$msg.get("platform.appwithinminutes.wizardStep${index}Name")(%%)
13 (% class="description" %)$msg.get("platform.appwithinminutes.wizardStep${index}Description")
14 #end
15 )))
16 <form action="" method="post" class="xform wizard-body">
17 (% class="hidden" %)
18 (((
19 <input type="hidden" name="form_token" value="$services.csrf.getToken()"/>
20 )))
21 ; <label for="appName">$msg.get('platform.appwithinminutes.appNameLabel')</label>
22 (% class="xHint" %)$msg.get('platform.appwithinminutes.appNameHint')
23 : <input type="text" id="appName" name="appName" />
24 #appWizardFooter(1)
25 </form>
26 {{/html}}
27 #end
28
29 #macro(toXMLName $string)
30 ## Keep only Unicode letters and digits plus the hyphen and the underscore characters.
31 #set($string = $string.replaceAll('[^\p{L}\p{N}_\-]+', ''))
32 ## Make sure the string doesn't start with a number or the hyphen character.
33 #set($string = $string.replaceAll('^[\p{N}\-]+', ''))
34 $string##
35 #end
36
37 #macro(processStep)
38 #set($classRef = $services.model.createDocumentReference($doc.wiki, $request.appName, "#toXMLName($request.appName)Class"))
39 #set($queryString = 'wizard=true')
40 #if(!$xwiki.exists($classRef))
41 #set($classTitle = "$request.appName Class")
42 #set($queryString = "$queryString&editor=inline&template=AppWithinMinutes.ClassTemplate&parent=WebHome&title=$escapetool.url($classTitle)")
43 #end
44 $response.sendRedirect($xwiki.getURL($classRef, 'edit', $queryString))
45 #end
46
47 #macro(validateAppName $appName)
48 #set($className = "#toXMLName($appName)")
49 #if($className == '')
50 (% class="xErrorMsg" %)$msg.get('platform.appwithinminutes.appNameInvalidClassNameError')
51 #end
52 #set($appHomeRef = $services.model.createDocumentReference($doc.wiki, $appName, 'WebHome'))
53 #set($appHomeURL = $xwiki.getDocument($appHomeRef).getExternalURL())
54 ; $msg.get('platform.appwithinminutes.appNamePreviewHomePageUrlLabel')
55 : {{{$!appHomeURL.substring(0, $mathtool.sub($appHomeURL.length(), 7))}}}
56 ; $msg.get('platform.appwithinminutes.appNamePreviewDataSpaceLabel')
57 : {{{$doc.wiki}}} » {{{$appName}}}
58 ; $msg.get('platform.appwithinminutes.appNamePreviewClassReferenceLabel')
59 : {{{$doc.wiki}}} » {{{$appName}}} » {{{$!{className}Class}}}
60 #set($appClassRef = $services.model.createDocumentReference($doc.wiki, $appName, "$!{className}Class"))
61 #if($xwiki.exists($appHomeRef) || $xwiki.exists($appClassRef))
62
63 {{warning}}$msg.get('platform.appwithinminutes.appNameIsUsedWarning'){{/warning}}
64 #end
65 #end
66 {{/velocity}}
67
68 {{velocity}}
69 #if("$!request.appName" != '')
70 #if($context.action == 'get')
71 #validateAppName($request.appName)
72 #elseif($services.csrf.isTokenValid($request.form_token))
73 #processStep()
74 #else
75 $response.sendRedirect($services.csrf.getResubmissionURL());
76 #end
77 #else
78 #showStep()
79 #end
80 {{/velocity}}

Get Connected