Version 13.157 by Alex Cotiugă on 2026/05/02 09:06

Show last authors
1 {{velocity wiki="false"}}
2 #if ($xcontext.action == 'get')
3 #set ($message = '')
4 #set ($now = $datetool.get('yyyyMMddHHmm'))
5 #set ($random = $mathtool.random(100000, 999999))
6 #set ($uniqueName = "contact-request-${now}-${random}")
7 #set ($contactFormEntryDoc = $xwiki.getDocument('ContactRequests.' + $uniqueName))
8 #set ($statusCode = 200)
9 #set ($message = "$contactFormEntryDoc")
10
11 #foreach ($parameterName in $request.parameterNames)
12 #set ($message = "$message $parameterName")
13 #end
14
15 ##set ($statusCode = 400)
16 ##set ($message = 'error')
17
18 #set ($discard = $response.setStatus($statusCode))
19 #jsonResponse({'message': $message})
20 #end
21 {{/velocity}}
22
23 {{velocity}}
24 #set ($discard = $xwiki.ssx.use('contact.WebHome'))
25 #set ($xobject = $doc.getObject('Agnease.Code.ContactForm.ContactFormClass'))
26 #set ($xclass = $xobject.xWikiClass)
27 #set ($editing = true)
28 = Tell Us More About Your Project =
29 You do not need to have a full specification. A short description is enough to start the conversation.
30 {{html clean="false"}}
31 <div class="row">
32 <div class="xform col-xs-7">
33 <form id="contactForm">
34 <dl>
35 #foreach ($property in $xclass.properties)
36 #if ($property.name == 'hosting')
37 <hr>
38 <h3>Optional project details</h3>
39 <p>These details help us understand the scope and suggest practical next steps.</p>
40 #end
41 <dt #if (!$editing && $hasEdit)
42 class="editableProperty"
43 #set ($xobjectPropertyReference = $xobject.getPropertyReference($property.name))
44 data-property="$escapetool.xml($services.model.serialize($xobjectPropertyReference))"
45 data-property-type="object"#end>
46 ## This must match the id generated by the $doc.display() method below.
47 #set ($propertyId = "${xclass.name}_${xobject.number}_$property.name")
48 <label#if ($editing) for="$escapetool.xml($propertyId)"#end>
49 $escapetool.xml($property.translatedPrettyName)
50 </label>
51 ## Support for specifying a translation key as hint in the property definition.
52 <span class="xHint">$!escapetool.xml($services.localization.render($property.hint))</span>
53 </dt>
54 <dd>$doc.display($property.name, 'edit').replace('{{html clean="false" wiki="false"}}', '').replace("{{/html}}", '')</dd>
55 #end
56 #if (!$xclass.properties || $xclass.properties.size() == 0)
57 ## Keep the empty definition term in order to have valid HTML.
58 <dt></dt>
59 <dd>$escapetool.xml($services.localization.render('xclass.defaultObjectSheet.noProperties'))</dd>
60 #end
61 </dl>
62 <p>Your information will only be used to respond to this request.</p>
63 ##<p>Your information will only be used to respond to this request. See the Privacy Policy for details.</p>
64 <input id="contactSubmit" type="submit" class="btn btn-primary" value="Send my request">
65 </form>
66 {{/html}}
67 {{html clean="false" wiki="true"}}
68 <div class="reviewNotifications">
69 <div class="hidden reviewNotificationSuccess">
70
71 {{success}}reviewNotification{{/success}}
72
73 </div>
74 <div class="hidden reviewNotificationError">
75
76 {{error}}reviewNotification{{/error}}
77
78 </div>
79 </div>
80 {{/html}}
81 {{html clean="false"}}
82 </div>
83 <div class="col-xs-5">
84 <div class="widget">
85 <h4>$services.icon.renderHTML('check') How Agnease can help</h4>
86 <ul>
87 <li>XWiki upgrades and long-term maintenance</li>
88 <li>Knowledge bases, intranets, SOP and documentation workflows</li>
89 <li>Custom XWiki applications and integrations</li>
90 <li>LDAP, SSO, OIDC, SAML, and MFA setup</li>
91 <li>Migrations from SharePoint, Confluence, MediaWiki, or file-based documentation</li>
92 <li>Security-aware reviews and platform stabilization</li>
93 </ul>
94 </div>
95 <div class="widget">
96 <h4>$services.icon.renderHTML('right') What happens next?</h4>
97 <ol>
98 <li>Your request is reviewed.</li>
99 <li>You receive a reply with clarifying questions or suggested next steps.</li>
100 <li>If useful, we schedule a short call to discuss scope, timeline, and estimated effort.</li>
101 </ol>
102 </div>
103 </div>
104 </div>
105 {{/html}}
106 {{/velocity}}