Last modified by Alex Cotiugă on 2026/05/04 06:15

From version 13.156
edited by Alex Cotiugă
on 2026/05/02 09:05
Change comment: There is no comment for this version
To version 13.33
edited by Alex Cotiugă
on 2026/05/01 17:22
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -1,25 +23,3 @@
1 -{{velocity wiki="false"}}
2 -#if ($xcontext.action == 'get')
3 - #set ($message = '')
4 - #set ($now = $datetool.get('yyyyMMddHHmmssSSS'))
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 23  {{velocity}}
24 24  #set ($discard = $xwiki.ssx.use('contact.WebHome'))
25 25  #set ($xobject = $doc.getObject('Agnease.Code.ContactForm.ContactFormClass'))
... ... @@ -26,18 +26,13 @@
26 26  #set ($xclass = $xobject.xWikiClass)
27 27  #set ($editing = true)
28 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.
7 +Share a few details about your documentation, intranet, migration, upgrade, integration, support, or custom development need. Agnease will review your request and suggest practical next steps.
30 30  {{html clean="false"}}
31 31   <div class="row">
32 32   <div class="xform col-xs-7">
33 - <form id="contactForm">
11 + <form>
34 34   <dl>
35 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 41   <dt #if (!$editing && $hasEdit)
42 42   class="editableProperty"
43 43   #set ($xobjectPropertyReference = $xobject.getPropertyReference($property.name))
... ... @@ -59,26 +59,9 @@
59 59   <dd>$escapetool.xml($services.localization.render('xclass.defaultObjectSheet.noProperties'))</dd>
60 60   #end
61 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">
35 + <p>Your information will only be used to respond to this request. See the Privacy Policy for details.</p>
36 + <input type="submit" class="btn btn-primary" value="Send my request">
65 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 82   </div>
83 83   <div class="col-xs-5">
84 84   <div class="widget">
... ... @@ -85,7 +85,8 @@
85 85   <h4>$services.icon.renderHTML('check') How Agnease can help</h4>
86 86   <ul>
87 87   <li>XWiki upgrades and long-term maintenance</li>
88 - <li>Knowledge bases, intranets, SOP and documentation workflows</li>
44 + <li>Knowledge bases and internal portals</li>
45 + <li>SOP, approval, and documentation workflows</li>
89 89   <li>Custom XWiki applications and integrations</li>
90 90   <li>LDAP, SSO, OIDC, SAML, and MFA setup</li>
91 91   <li>Migrations from SharePoint, Confluence, MediaWiki, or file-based documentation</li>
Agnease.Code.ContactForm.ContactFormClass[0]
organizationType
... ... @@ -1,0 +1,1 @@
1 +1
XWiki.JavaScriptExtension[0]
cache
... ... @@ -1,1 +1,0 @@
1 -long
code
... ... @@ -1,40 +1,0 @@
1 -require(['jquery'], function ($) {
2 - var serviceURL = new XWiki.Document('WebHome', 'contact').getURL('get');
3 - var form = $('#contactForm');
4 - var submitButton = $('#contactSubmit');
5 -
6 - var successBox = $('.reviewNotificationSuccess');
7 - var errorBox = $('.reviewNotificationError');
8 -
9 - form.on('submit', function (event) {
10 - event.preventDefault();
11 -
12 - var data = $.param(form.serializeArray());
13 -
14 - submitButton.prop('disabled', true);
15 -
16 - $.post({
17 - url: serviceURL,
18 - data: data
19 - }).done(function (response) {
20 - // replace with succcess message alert(response.message || 'Your request was sent successfully.');
21 - //var message = 'The request could not be sent. Please try again or contact Agnease by email.';
22 - var successBoxContent = successBox.find('.box div p');
23 - successBoxContent.text(data.message);
24 - successBox.toggleClass('hidden');
25 - if (errorBox.is(':visible')) {
26 - errorBox.toggleClass('hidden');
27 - }
28 - form[0].reset();
29 - }).fail(function (xhr) {
30 - var errorBoxContent = errorBox.find('.box div p');
31 - errorBoxContent.text(xhr.statusText);
32 - errorBox.toggleClass('hidden');
33 - if (successBox.is(':visible')) {
34 - successBox.toggleClass('hidden');
35 - }
36 - }).always(function () {
37 - submitButton.prop('disabled', false);
38 - });
39 - });
40 -});
use
... ... @@ -1,1 +1,0 @@
1 -currentPage