Version 13.145 by Alex Cotiugă on 2026/05/02 08:48

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