Skip to content

Commit 90a3da1

Browse files
committed
initial commit
0 parents  commit 90a3da1

12 files changed

Lines changed: 2761 additions & 0 deletions

File tree

LICENSE

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
BSD 3-Clause License
2+
3+
Copyright (c) 2026, Automatic Controls Equipment Systems, LLC.
4+
All rights reserved.
5+
6+
Redistribution and use in source and binary forms, with or without
7+
modification, are permitted provided that the following conditions are met:
8+
9+
1. Redistributions of source code must retain the above copyright notice, this
10+
list of conditions and the following disclaimer.
11+
12+
2. Redistributions in binary form must reproduce the above copyright notice,
13+
this list of conditions and the following disclaimer in the documentation
14+
and/or other materials provided with the distribution.
15+
16+
3. Neither the name of the copyright holder nor the names of its
17+
contributors may be used to endorse or promote products derived from
18+
this software without specific prior written permission.
19+
20+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
# Advanced Global Modify
3+
4+
---
5+
> **WebCTRL** is a trademark of Automated Logic Corporation. Any other trademarks mentioned herein are the property of their respective owners.
6+
---
7+
8+
## Overview
9+
10+
This add-on functions similarly to the built-in global modify tool, but includes additional features like regular expression support and editing multiple expressions at once. The [Rest API add-on](https://github.com/automatic-controls/rest-api-addon) is a required dependency for this utility to function.
11+
12+
## :rocket: Installation
13+
14+
1. If signed add-ons are required, copy the authenticating certificate [*ACES.cer*](https://github.com/automatic-controls/addon-dev-script/blob/main/ACES.cer?raw=true) to the `./programdata/addons` directory of your **WebCTRL** installation folder.
15+
2. Ensure the [Rest API add-on](https://github.com/automatic-controls/rest-api-addon) is installed (v0.1.7 or later).
16+
3. Install [*AdvGlobalModify.addon*](https://github.com/automatic-controls/global-modify-addon/releases/latest/download/AdvGlobalModify.addon) using the **WebCTRL** interface.
17+
4. Logout and login to **WebCTRL** to refresh your session. You should see a new option in the system dropdown menu in the top-right corner: **Adv. Global Modify**.
18+
19+
## :hammer_and_wrench: Usage
20+
21+
Navigate to an equipment location on the geographic or network tree. Clicking the **Adv. Global Modify** option in the system menu will open a popup allowing users to modify one or more node expressions. Expression autocompletion is supported so that the user can see which nodes are available while typing. Or you can also copy expressions directly from the built-in global modify tool (**ALT+CLICK** on a property).
22+
23+
![](./images/main.png)

config/BUILD_DETAILS

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
JDK Version:
2+
openjdk 24.0.1 2025-04-15
3+
OpenJDK Runtime Environment (build 24.0.1+9-30)
4+
OpenJDK 64-Bit Server VM (build 24.0.1+9-30, mixed mode, sharing)
5+
6+
Compilation Flags:
7+
--release 11
8+
9+
Runtime Dependencies:
10+
addonsupport-api-addon-1.11.0
11+
alarmmanager-api-addon-1.11.0
12+
bacnet-api-core-1.11.006-20250512.1103r
13+
datatable-api-addon-1.11.0
14+
directaccess-api-addon-1.11.0
15+
logicbuilder-api-addon-1.11.0
16+
semantics-api-addon-1.11.0
17+
tomcat-embed-core-9.0.107
18+
webaccess-api-addon-1.11.0
19+
xdatabase-api-addon-1.11.0
20+
21+
Packaged Dependencies:

config/COMPILE_FLAGS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--release 11

images/main.png

65.8 KB
Loading

root/info.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<extension version="1">
2+
<name>AdvGlobalModify</name>
3+
<description>Provides similar functionality to the native global modify feature, but includes additional features.</description>
4+
<version>0.1.0</version>
5+
<vendor>Automatic Controls Equipment Systems, LLC.</vendor>
6+
<system-menu-provider>aces.webctrl.globalmodify.SystemMenuEditor</system-menu-provider>
7+
</extension>

root/webapp/WEB-INF/web.xml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<web-app>
4+
5+
<welcome-file-list>
6+
<welcome-file>index.html</welcome-file>
7+
</welcome-file-list>
8+
9+
<security-constraint>
10+
<web-resource-collection>
11+
<web-resource-name>WEB</web-resource-name>
12+
<url-pattern>/*</url-pattern>
13+
</web-resource-collection>
14+
</security-constraint>
15+
16+
<filter>
17+
<filter-name>RoleFilterAJAX</filter-name>
18+
<filter-class>com.controlj.green.addonsupport.web.RoleFilter</filter-class>
19+
<init-param>
20+
<param-name>roles</param-name>
21+
<param-value>login</param-value>
22+
</init-param>
23+
</filter>
24+
<filter-mapping>
25+
<filter-name>RoleFilterAJAX</filter-name>
26+
<url-pattern>/*</url-pattern>
27+
</filter-mapping>
28+
29+
<filter>
30+
<filter-name>CacheFilter</filter-name>
31+
<filter-class>aces.webctrl.globalmodify.CacheFilter</filter-class>
32+
</filter>
33+
<filter-mapping>
34+
<filter-name>CacheFilter</filter-name>
35+
<url-pattern>/*</url-pattern>
36+
</filter-mapping>
37+
38+
</web-app>

0 commit comments

Comments
 (0)