├── .github └── FUNDING.YML ├── tests ├── resources │ ├── tmp │ │ └── .gitignore │ ├── adobe10 │ │ ├── serverHome │ │ │ └── WEB-INF │ │ │ │ └── cfusion │ │ │ │ └── lib │ │ │ │ ├── seed.properties │ │ │ │ ├── password.properties │ │ │ │ ├── neo-cron.xml │ │ │ │ ├── neo-jaxrs.xml │ │ │ │ ├── neo-document.xml │ │ │ │ ├── neo-registry.xml │ │ │ │ ├── license.properties │ │ │ │ ├── neo-graphing.xml │ │ │ │ ├── neo-probe.xml │ │ │ │ ├── neo-archivedeploy.xml │ │ │ │ ├── neo-watch.xml │ │ │ │ ├── neo_updates.xml │ │ │ │ ├── neo-dotnet.xml │ │ │ │ ├── neo-xmlrpc.xml │ │ │ │ ├── neo-metric.xml │ │ │ │ ├── neo-websocket.xml │ │ │ │ ├── neo-logging.xml │ │ │ │ └── neo-search.xml │ │ └── server.json │ ├── adobe11 │ │ ├── serverHome │ │ │ └── WEB-INF │ │ │ │ └── cfusion │ │ │ │ └── lib │ │ │ │ ├── seed.properties │ │ │ │ ├── neo-cron.xml │ │ │ │ ├── password.properties │ │ │ │ ├── neo-jaxrs.xml │ │ │ │ ├── neo-registry.xml │ │ │ │ ├── license.properties │ │ │ │ ├── neo-graphing.xml │ │ │ │ ├── neo-probe.xml │ │ │ │ ├── neo-archivedeploy.xml │ │ │ │ ├── neo-watch.xml │ │ │ │ ├── neo_updates.xml │ │ │ │ ├── neo-dotnet.xml │ │ │ │ ├── neo-document.xml │ │ │ │ ├── neo-metric.xml │ │ │ │ ├── neo-xmlrpc.xml │ │ │ │ ├── neo-logging.xml │ │ │ │ └── neo-search.xml │ │ └── server.json │ ├── adobe2016 │ │ ├── serverHome │ │ │ └── WEB-INF │ │ │ │ └── cfusion │ │ │ │ └── lib │ │ │ │ ├── seed.properties │ │ │ │ ├── password.properties │ │ │ │ ├── neo-jaxrs.xml │ │ │ │ ├── license.properties │ │ │ │ ├── neo-registry.xml │ │ │ │ ├── neo-graphing.xml │ │ │ │ ├── neo-probe.xml │ │ │ │ ├── neo-archivedeploy.xml │ │ │ │ ├── neo-watch.xml │ │ │ │ ├── neo_updates.xml │ │ │ │ ├── neo-dotnet.xml │ │ │ │ ├── neo-document.xml │ │ │ │ ├── neo-xmlrpc.xml │ │ │ │ ├── neo-search.xml │ │ │ │ └── neo-metric.xml │ │ └── server.json │ ├── adobe2018 │ │ ├── serverHome │ │ │ └── WEB-INF │ │ │ │ └── cfusion │ │ │ │ └── lib │ │ │ │ ├── seed.properties │ │ │ │ ├── neo-cron.xml │ │ │ │ ├── password.properties │ │ │ │ ├── license.properties │ │ │ │ ├── neo-jaxrs.xml │ │ │ │ ├── neo-registry.xml │ │ │ │ ├── neo-graphing.xml │ │ │ │ ├── neo-probe.xml │ │ │ │ ├── neo-monitoring.xml │ │ │ │ ├── neo-archivedeploy.xml │ │ │ │ ├── neo-watch.xml │ │ │ │ ├── neo_updates.xml │ │ │ │ ├── neo-dotnet.xml │ │ │ │ ├── neo-document.xml │ │ │ │ ├── neo-xmlrpc.xml │ │ │ │ ├── neo-mail.xml │ │ │ │ ├── neo-search.xml │ │ │ │ └── neo-metric.xml │ │ └── server.json │ ├── lucee5 │ │ └── server.json │ ├── lucee4 │ │ └── server.json │ ├── railo4 │ │ └── server.json │ ├── adobe9 │ │ ├── serverHome │ │ │ └── WEB-INF │ │ │ │ └── cfusion │ │ │ │ └── lib │ │ │ │ ├── password.properties │ │ │ │ ├── neo-cron.xml │ │ │ │ ├── neo-document.xml │ │ │ │ ├── license.properties │ │ │ │ ├── neo-registry.xml │ │ │ │ ├── neo-xmlrpc.xml │ │ │ │ ├── neo-graphing.xml │ │ │ │ ├── neo-probe.xml │ │ │ │ ├── neo-watch.xml │ │ │ │ ├── neo-archivedeploy.xml │ │ │ │ ├── neo-dotnet.xml │ │ │ │ ├── neo-logging.xml │ │ │ │ ├── neo-security.xml │ │ │ │ ├── neo-metric.xml │ │ │ │ ├── neo-mail.xml │ │ │ │ └── neo-search.xml │ │ └── server.json │ └── adobe2021 │ │ └── server.json ├── config │ └── Coldbox.cfc ├── Application.cfc └── BaseTest.cfc ├── resources ├── adobe2021 │ ├── neo-saml.xml │ ├── neo-cloud-config.xml │ ├── neo-cloudcredential.xml │ ├── password.properties │ ├── logger.xml │ ├── license.properties │ ├── neo-cron.xml │ ├── neo-jaxrs.xml │ ├── neo-datasource.xml │ ├── AdobeInfo.xml │ ├── neo-registry.xml │ ├── neo-monitoring.xml │ ├── neo_updates.xml │ ├── neo-graphing.xml │ ├── neo-probe.xml │ ├── pi-outline.xml │ ├── neo-watch.xml │ ├── neo-archivedeploy.xml │ ├── pathfilter.json │ ├── ehcache-default-config.xml │ ├── adminconfig.xml │ ├── neo-dotnet.xml │ ├── neo-document.xml │ ├── neo-logging.xml │ ├── neo-xmlrpc.xml │ ├── neo-websocket.xml │ ├── neo-search.xml │ ├── neo-mail.xml │ ├── neo-security.xml │ └── neo-metric.xml ├── adobe2023 │ ├── neo-saml.xml │ ├── neo-cloud-config.xml │ ├── neo-cloudcredential.xml │ ├── password.properties │ ├── logger.xml │ ├── license.properties │ ├── neo-cron.xml │ ├── neo-jaxrs.xml │ ├── neo-datasource.xml │ ├── AdobeInfo.xml │ ├── neo-registry.xml │ ├── neo-monitoring.xml │ ├── neo_updates.xml │ ├── neo-graphing.xml │ ├── neo-probe.xml │ ├── pi-outline.xml │ ├── neo-watch.xml │ ├── neo-archivedeploy.xml │ ├── pathfilter.json │ ├── ehcache-default-config.xml │ ├── adminconfig.xml │ ├── neo-dotnet.xml │ ├── neo-document.xml │ ├── neo-logging.xml │ ├── neo-xmlrpc.xml │ ├── neo-websocket.xml │ ├── neo-search.xml │ ├── neo-mail.xml │ ├── neo-security.xml │ └── neo-metric.xml ├── adobe2025 │ ├── neo-saml.xml │ ├── neo-cloud-config.xml │ ├── neo-cloudcredential.xml │ ├── password.properties │ ├── logger.xml │ ├── license.properties │ ├── neo-cron.xml │ ├── neo-jaxrs.xml │ ├── neo-datasource.xml │ ├── AdobeInfo.xml │ ├── neo-registry.xml │ ├── neo-monitoring.xml │ ├── neo_updates.xml │ ├── neo-graphing.xml │ ├── neo-probe.xml │ ├── pi-outline.xml │ ├── neo-watch.xml │ ├── neo-archivedeploy.xml │ ├── pathfilter.json │ ├── ehcache-default-config.xml │ ├── adminconfig.xml │ ├── neo-dotnet.xml │ ├── neo-document.xml │ ├── neo-logging.xml │ ├── neo-xmlrpc.xml │ ├── neo-websocket.xml │ ├── neo-search.xml │ ├── neo-mail.xml │ ├── neo-security.xml │ └── neo-metric.xml ├── lucee4 │ └── scheduler-base.xml ├── lucee5 │ └── scheduler-base.xml ├── adobe11 │ ├── password.properties │ ├── logger.xml │ ├── neo-cron.xml │ ├── neo-jaxrs.xml │ ├── neo-datasource.xml │ ├── AdobeInfo.xml │ ├── neo-registry.xml │ ├── license.properties │ ├── neo-graphing.xml │ ├── neo_updates.xml │ ├── neo-probe.xml │ ├── pi-outline.xml │ ├── neo-watch.xml │ ├── neo-archivedeploy.xml │ ├── adminconfig.xml │ ├── ehcache-default-config.xml │ ├── neo-dotnet.xml │ ├── neo-document.xml │ ├── neo-logging.xml │ ├── neo-metric.xml │ ├── neo-xmlrpc.xml │ ├── neo-websocket.xml │ ├── neo-search.xml │ ├── neo-mail.xml │ └── neo-security.xml ├── adobe9 │ ├── password.properties │ ├── logger.xml │ ├── neo-cron.xml │ ├── neo-jaxrs.xml │ ├── neo-document.xml │ ├── neo-datasource.xml │ ├── AdobeInfo.xml │ ├── neo-registry.xml │ ├── license.properties │ ├── neo-graphing.xml │ ├── neo-probe.xml │ ├── pi-outline.xml │ ├── neo-watch.xml │ ├── neo_updates.xml │ ├── adminconfig.xml │ ├── neo-archivedeploy.xml │ ├── neo-xmlrpc.xml │ ├── neo-dotnet.xml │ ├── neo-logging.xml │ ├── neo-websocket.xml │ ├── neo-security.xml │ ├── neo-metric.xml │ ├── neo-search.xml │ └── neo-mail.xml ├── adobe2016 │ ├── password.properties │ ├── logger.xml │ ├── neo-cron.xml │ ├── neo-jaxrs.xml │ ├── neo-datasource.xml │ ├── license.properties │ ├── AdobeInfo.xml │ ├── neo-registry.xml │ ├── neo_updates.xml │ ├── neo-graphing.xml │ ├── neo-probe.xml │ ├── pi-outline.xml │ ├── neo-watch.xml │ ├── neo-archivedeploy.xml │ ├── ehcache-default-config.xml │ ├── adminconfig.xml │ ├── neo-dotnet.xml │ ├── neo-document.xml │ ├── neo-logging.xml │ ├── neo-xmlrpc.xml │ ├── neo-websocket.xml │ ├── neo-search.xml │ ├── neo-mail.xml │ ├── neo-security.xml │ └── neo-metric.xml ├── adobe2018 │ ├── password.properties │ ├── logger.xml │ ├── license.properties │ ├── neo-cron.xml │ ├── neo-jaxrs.xml │ ├── neo-datasource.xml │ ├── AdobeInfo.xml │ ├── neo-registry.xml │ ├── neo-monitoring.xml │ ├── neo_updates.xml │ ├── neo-graphing.xml │ ├── neo-probe.xml │ ├── pi-outline.xml │ ├── neo-watch.xml │ ├── neo-archivedeploy.xml │ ├── ehcache-default-config.xml │ ├── adminconfig.xml │ ├── neo-dotnet.xml │ ├── neo-document.xml │ ├── neo-logging.xml │ ├── neo-xmlrpc.xml │ ├── neo-websocket.xml │ ├── neo-search.xml │ ├── neo-mail.xml │ ├── neo-security.xml │ └── neo-metric.xml ├── adobe2020 │ ├── password.properties │ ├── logger.xml │ ├── license.properties │ ├── neo-cron.xml │ ├── neo-jaxrs.xml │ ├── neo-datasource.xml │ ├── AdobeInfo.xml │ ├── neo-registry.xml │ ├── neo-monitoring.xml │ ├── neo_updates.xml │ ├── neo-graphing.xml │ ├── neo-probe.xml │ ├── pi-outline.xml │ ├── neo-watch.xml │ ├── neo-archivedeploy.xml │ ├── ehcache-default-config.xml │ ├── adminconfig.xml │ ├── neo-dotnet.xml │ ├── neo-document.xml │ ├── neo-logging.xml │ ├── neo-xmlrpc.xml │ ├── neo-websocket.xml │ ├── neo-search.xml │ ├── neo-mail.xml │ ├── neo-security.xml │ └── neo-metric.xml └── adobe10 │ ├── password.properties │ ├── logger.xml │ ├── neo-cron.xml │ ├── neo-jaxrs.xml │ ├── neo-document.xml │ ├── neo-datasource.xml │ ├── AdobeInfo.xml │ ├── neo-registry.xml │ ├── license.properties │ ├── neo-graphing.xml │ ├── neo-probe.xml │ ├── pi-outline.xml │ ├── neo-watch.xml │ ├── neo_updates.xml │ ├── adminconfig.xml │ ├── neo-archivedeploy.xml │ ├── neo-xmlrpc.xml │ ├── neo-dotnet.xml │ ├── neo-logging.xml │ ├── neo-websocket.xml │ ├── neo-metric.xml │ ├── neo-security.xml │ ├── neo-search.xml │ └── neo-mail.xml ├── server.json ├── .gitignore ├── index.cfm ├── .gitattributes ├── ModuleConfig.cfc └── models └── providers ├── Adobe2018Beta.cfc ├── Lucee7Server.cfc ├── Lucee7Server-snapshot.cfc ├── Lucee6Web.cfc └── Lucee4Server.cfc /.github/FUNDING.YML: -------------------------------------------------------------------------------- 1 | patreon: ortussolutions 2 | -------------------------------------------------------------------------------- /tests/resources/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !/.gitignore -------------------------------------------------------------------------------- /resources/adobe2021/neo-saml.xml: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /resources/adobe2023/neo-saml.xml: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /resources/adobe2025/neo-saml.xml: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /resources/adobe2021/neo-cloud-config.xml: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /resources/adobe2023/neo-cloud-config.xml: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /resources/adobe2025/neo-cloud-config.xml: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /resources/adobe2021/neo-cloudcredential.xml: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /resources/adobe2023/neo-cloudcredential.xml: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /resources/adobe2025/neo-cloudcredential.xml: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /resources/lucee4/scheduler-base.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/lucee5/scheduler-base.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/adobe11/password.properties: -------------------------------------------------------------------------------- 1 | #Sun Jun 05 14:50:12 UTC 2016 2 | rdspassword= 3 | password= 4 | encrypted=false 5 | -------------------------------------------------------------------------------- /resources/adobe9/password.properties: -------------------------------------------------------------------------------- 1 | #Sat Jun 04 14:01:42 EDT 2016 2 | rdspassword= 3 | password= 4 | encrypted=false 5 | -------------------------------------------------------------------------------- /resources/adobe2016/password.properties: -------------------------------------------------------------------------------- 1 | #Sat Jun 04 22:34:02 UTC 2016 2 | rdspassword= 3 | password= 4 | encrypted=false 5 | -------------------------------------------------------------------------------- /resources/adobe2018/password.properties: -------------------------------------------------------------------------------- 1 | #Fri Sep 29 17:11:13 CDT 2017 2 | rdspassword= 3 | password= 4 | encrypted=false 5 | -------------------------------------------------------------------------------- /resources/adobe2020/password.properties: -------------------------------------------------------------------------------- 1 | #Fri Sep 29 17:11:13 CDT 2017 2 | rdspassword= 3 | password= 4 | encrypted=false 5 | -------------------------------------------------------------------------------- /resources/adobe2021/password.properties: -------------------------------------------------------------------------------- 1 | #Fri Sep 29 17:11:13 CDT 2017 2 | rdspassword= 3 | password= 4 | encrypted=false 5 | -------------------------------------------------------------------------------- /resources/adobe2023/password.properties: -------------------------------------------------------------------------------- 1 | #Fri Sep 29 17:11:13 CDT 2017 2 | rdspassword= 3 | password= 4 | encrypted=false 5 | -------------------------------------------------------------------------------- /resources/adobe2025/password.properties: -------------------------------------------------------------------------------- 1 | #Fri Sep 29 17:11:13 CDT 2017 2 | rdspassword= 3 | password= 4 | encrypted=false 5 | -------------------------------------------------------------------------------- /tests/resources/adobe10/serverHome/WEB-INF/cfusion/lib/seed.properties: -------------------------------------------------------------------------------- 1 | seed=9B5B576767AE63AF 2 | algorithm=AES/CBC/PKCS5Padding -------------------------------------------------------------------------------- /tests/resources/adobe11/serverHome/WEB-INF/cfusion/lib/seed.properties: -------------------------------------------------------------------------------- 1 | seed=B82E5EE29DB27926 2 | algorithm=AES/CBC/PKCS5Padding -------------------------------------------------------------------------------- /tests/resources/adobe2016/serverHome/WEB-INF/cfusion/lib/seed.properties: -------------------------------------------------------------------------------- 1 | seed=E0A3692901A15173 2 | algorithm=AES/CBC/PKCS5Padding -------------------------------------------------------------------------------- /tests/resources/adobe2018/serverHome/WEB-INF/cfusion/lib/seed.properties: -------------------------------------------------------------------------------- 1 | seed=A3025BC005FF7F9B 2 | algorithm=AES/CBC/PKCS5Padding -------------------------------------------------------------------------------- /server.json: -------------------------------------------------------------------------------- 1 | { 2 | "app":{ 3 | "cfengine":"lucee@6" 4 | }, 5 | "name":"cfconfig", 6 | "web":{ 7 | "host":"cfconfig.local" 8 | } 9 | } -------------------------------------------------------------------------------- /tests/resources/lucee5/server.json: -------------------------------------------------------------------------------- 1 | { 2 | "app":{ 3 | "cfengine2":"lucee@5", 4 | "serverHomeDirectory":"serverHome" 5 | }, 6 | "name":"cfconfiglucee5" 7 | } -------------------------------------------------------------------------------- /resources/adobe10/password.properties: -------------------------------------------------------------------------------- 1 | #Sat Jun 04 14:01:42 EDT 2016 2 | rdspassword= 3 | password=B780D1D416DEA1B7358DE977CD1E90E8FABD16B5DF740E4F780B1C3BFBAC9BE1 4 | encrypted=true 5 | -------------------------------------------------------------------------------- /tests/resources/lucee4/server.json: -------------------------------------------------------------------------------- 1 | { 2 | "app":{ 3 | "serverConfigDir":"serverHome/", 4 | "webConfigDir":"webHome/", 5 | "cfengine":"lucee@4" 6 | }, 7 | "name":"cfconfiglucee4" 8 | } -------------------------------------------------------------------------------- /tests/resources/railo4/server.json: -------------------------------------------------------------------------------- 1 | { 2 | "app":{ 3 | "serverConfigDir":"serverHome/", 4 | "webConfigDir":"webHome/", 5 | "cfengine":"railo@4" 6 | }, 7 | "name":"cfconfigrailo4" 8 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .project 3 | .settings/org.eclipse.core.resources.prefs 4 | .idea 5 | 6 | /modules 7 | /coldbox 8 | /testbox 9 | settings.xml 10 | /tests/results/coverageReport 11 | 12 | 13 | 14 | /tests/resources/** -------------------------------------------------------------------------------- /resources/adobe9/logger.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /tests/resources/adobe10/serverHome/WEB-INF/cfusion/lib/password.properties: -------------------------------------------------------------------------------- 1 | # 2 | #Fri Dec 14 16:20:36 CST 2018 3 | password=A49967061ED66D7FC6858EC971E9866A00710521514A06F9004935E64A019204 4 | rdspassword= 5 | encrypted=true 6 | -------------------------------------------------------------------------------- /tests/resources/adobe9/serverHome/WEB-INF/cfusion/lib/password.properties: -------------------------------------------------------------------------------- 1 | #Mon Feb 27 17:17:23 EST 2017 2 | rdspassword=0L]+<$3&X\=K'P/+["J8<>Z \n 3 | password=B4729AC2965BB2D47AE0F8593848D6D129AEC9EE 4 | encrypted=true 5 | -------------------------------------------------------------------------------- /resources/adobe10/logger.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/adobe11/logger.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/adobe2016/logger.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/adobe2018/logger.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/adobe2020/logger.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/adobe2021/logger.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/adobe2023/logger.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/adobe2025/logger.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/adobe11/neo-cron.xml: -------------------------------------------------------------------------------- 1 |
log,txt -------------------------------------------------------------------------------- /resources/adobe2016/neo-cron.xml: -------------------------------------------------------------------------------- 1 |
log,txt -------------------------------------------------------------------------------- /resources/adobe2018/license.properties: -------------------------------------------------------------------------------- 1 | #CF License File 2 | #Fri Sep 29 17:11:13 CDT 2017 3 | installtype=j2ee 4 | listen=true 5 | appserver=0V\=LUFWP]J(Z^V)[G?G5'C@ \n 6 | previous_sn= 7 | sn= 8 | vendor=0V\=LUFWP]J(Z^V)[G?G5'C@ \n 9 | -------------------------------------------------------------------------------- /resources/adobe2018/neo-cron.xml: -------------------------------------------------------------------------------- 1 |
log,txt -------------------------------------------------------------------------------- /resources/adobe2020/license.properties: -------------------------------------------------------------------------------- 1 | #CF License File 2 | #Fri Sep 29 17:11:13 CDT 2017 3 | installtype=j2ee 4 | listen=true 5 | appserver=0V\=LUFWP]J(Z^V)[G?G5'C@ \n 6 | previous_sn= 7 | sn= 8 | vendor=0V\=LUFWP]J(Z^V)[G?G5'C@ \n 9 | -------------------------------------------------------------------------------- /resources/adobe2020/neo-cron.xml: -------------------------------------------------------------------------------- 1 |
log,txt -------------------------------------------------------------------------------- /resources/adobe2021/license.properties: -------------------------------------------------------------------------------- 1 | #CF License File 2 | #Fri Sep 29 17:11:13 CDT 2017 3 | installtype=j2ee 4 | listen=true 5 | appserver=0V\=LUFWP]J(Z^V)[G?G5'C@ \n 6 | previous_sn= 7 | sn= 8 | vendor=0V\=LUFWP]J(Z^V)[G?G5'C@ \n 9 | -------------------------------------------------------------------------------- /resources/adobe2021/neo-cron.xml: -------------------------------------------------------------------------------- 1 |
log,txt -------------------------------------------------------------------------------- /resources/adobe2023/license.properties: -------------------------------------------------------------------------------- 1 | #CF License File 2 | #Fri Sep 29 17:11:13 CDT 2017 3 | installtype=j2ee 4 | listen=true 5 | appserver=0V\=LUFWP]J(Z^V)[G?G5'C@ \n 6 | previous_sn= 7 | sn= 8 | vendor=0V\=LUFWP]J(Z^V)[G?G5'C@ \n 9 | -------------------------------------------------------------------------------- /resources/adobe2023/neo-cron.xml: -------------------------------------------------------------------------------- 1 |
log,txt -------------------------------------------------------------------------------- /resources/adobe2025/license.properties: -------------------------------------------------------------------------------- 1 | #CF License File 2 | #Fri Sep 29 17:11:13 CDT 2017 3 | installtype=j2ee 4 | listen=true 5 | appserver=0V\=LUFWP]J(Z^V)[G?G5'C@ \n 6 | previous_sn= 7 | sn= 8 | vendor=0V\=LUFWP]J(Z^V)[G?G5'C@ \n 9 | -------------------------------------------------------------------------------- /resources/adobe2025/neo-cron.xml: -------------------------------------------------------------------------------- 1 |
log,txt -------------------------------------------------------------------------------- /resources/adobe9/neo-cron.xml: -------------------------------------------------------------------------------- 1 |
log,txt 2 | -------------------------------------------------------------------------------- /resources/adobe10/neo-cron.xml: -------------------------------------------------------------------------------- 1 |
log,txt 2 | -------------------------------------------------------------------------------- /tests/resources/adobe9/serverHome/WEB-INF/cfusion/lib/neo-cron.xml: -------------------------------------------------------------------------------- 1 |
txt,log 2 | -------------------------------------------------------------------------------- /tests/resources/adobe10/server.json: -------------------------------------------------------------------------------- 1 | { 2 | "app":{ 3 | "serverHomeDirectory":"serverHome", 4 | "cfengine":"adobe@10" 5 | }, 6 | "name":"cfconfigadobe10", 7 | "web":{ 8 | "host":"cfconfigadobe10.local" 9 | } 10 | } -------------------------------------------------------------------------------- /tests/resources/adobe11/serverHome/WEB-INF/cfusion/lib/neo-cron.xml: -------------------------------------------------------------------------------- 1 |
log,txt -------------------------------------------------------------------------------- /tests/resources/adobe11/serverHome/WEB-INF/cfusion/lib/password.properties: -------------------------------------------------------------------------------- 1 | # 2 | #Fri Dec 14 14:10:31 CST 2018 3 | password=09DB9AA9FD7920A2E1C9F17F031124BC6EBACA69DC76AB159BEFC22C8544546B 4 | rdspassword=7/qs0Z1jE8rxKDaQTH/vdIdb6k0DGh65ybz6/XGTMrU\= 5 | encrypted=true 6 | -------------------------------------------------------------------------------- /tests/resources/adobe2016/server.json: -------------------------------------------------------------------------------- 1 | { 2 | "web":{ 3 | "host":"adobe2016cfconfig.local" 4 | }, 5 | "app":{ 6 | "serverHomeDirectory":"serverHome", 7 | "cfengine":"adobe@2016" 8 | }, 9 | "name":"cfconfigadobe2016" 10 | } -------------------------------------------------------------------------------- /tests/resources/adobe2018/server.json: -------------------------------------------------------------------------------- 1 | { 2 | "web":{ 3 | "host":"adobe2018cfconfig.local" 4 | }, 5 | "app":{ 6 | "serverHomeDirectory":"serverHome", 7 | "cfengine":"adobe@2018" 8 | }, 9 | "name":"cfconfigadobe2018" 10 | } -------------------------------------------------------------------------------- /tests/resources/adobe2018/serverHome/WEB-INF/cfusion/lib/neo-cron.xml: -------------------------------------------------------------------------------- 1 |
log,txt -------------------------------------------------------------------------------- /tests/resources/adobe2021/server.json: -------------------------------------------------------------------------------- 1 | { 2 | "web":{ 3 | "host":"adobe2021cfconfig.local" 4 | }, 5 | "app":{ 6 | "serverHomeDirectory":"serverHome", 7 | "cfengine":"adobe@2021" 8 | }, 9 | "name":"cfconfigadobe2021" 10 | } -------------------------------------------------------------------------------- /resources/adobe10/neo-jaxrs.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/adobe11/neo-jaxrs.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/adobe2016/neo-jaxrs.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/adobe2018/neo-jaxrs.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/adobe2020/neo-jaxrs.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/adobe2021/neo-jaxrs.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/adobe2023/neo-jaxrs.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/adobe2025/neo-jaxrs.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/adobe9/neo-jaxrs.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/resources/adobe10/serverHome/WEB-INF/cfusion/lib/neo-cron.xml: -------------------------------------------------------------------------------- 1 |
log,txt 2 | -------------------------------------------------------------------------------- /tests/resources/adobe2016/serverHome/WEB-INF/cfusion/lib/password.properties: -------------------------------------------------------------------------------- 1 | # 2 | #Thu Jun 20 09:58:42 CDT 2019 3 | rdspassword=DM3GhkB+tPJBW4HBr3K8c7WVOgJkqOiZWrHsVqB2u04\= 4 | password=6D06CC10E1B329DA48EE9E295B70EA4EEB54504584F0DFAFB6503FABE0C4B5B4 5 | encrypted=true 6 | -------------------------------------------------------------------------------- /tests/resources/adobe2018/serverHome/WEB-INF/cfusion/lib/password.properties: -------------------------------------------------------------------------------- 1 | # 2 | #Tue Mar 26 22:57:54 CDT 2019 3 | rdspassword=UZjYyEayWT4La/vIB4w8QhMEdasjmEjMka5lhL79BAQ\= 4 | password=5C5B8620B33D3884AAB8F9076520B25A8220016180D1E3A0D3E1D4825A55BAD1 5 | encrypted=true 6 | -------------------------------------------------------------------------------- /resources/adobe10/neo-document.xml: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /resources/adobe11/neo-datasource.xml: -------------------------------------------------------------------------------- 1 |
100.0 -------------------------------------------------------------------------------- /resources/adobe2016/neo-datasource.xml: -------------------------------------------------------------------------------- 1 |
100.0 -------------------------------------------------------------------------------- /resources/adobe2018/neo-datasource.xml: -------------------------------------------------------------------------------- 1 |
100.0 -------------------------------------------------------------------------------- /resources/adobe2020/neo-datasource.xml: -------------------------------------------------------------------------------- 1 |
100.0 -------------------------------------------------------------------------------- /resources/adobe2021/neo-datasource.xml: -------------------------------------------------------------------------------- 1 |
100.0 -------------------------------------------------------------------------------- /resources/adobe2023/neo-datasource.xml: -------------------------------------------------------------------------------- 1 |
100.0 -------------------------------------------------------------------------------- /resources/adobe2025/neo-datasource.xml: -------------------------------------------------------------------------------- 1 |
100.0 -------------------------------------------------------------------------------- /resources/adobe9/neo-document.xml: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /resources/adobe10/neo-datasource.xml: -------------------------------------------------------------------------------- 1 |
100.0 2 | -------------------------------------------------------------------------------- /resources/adobe9/neo-datasource.xml: -------------------------------------------------------------------------------- 1 |
100.0 2 | -------------------------------------------------------------------------------- /tests/resources/adobe2018/serverHome/WEB-INF/cfusion/lib/license.properties: -------------------------------------------------------------------------------- 1 | # 2 | #Tue Mar 26 22:57:54 CDT 2019 3 | listen=true 4 | installtype=j2ee 5 | lte=1531695732803 6 | appserver=0V\=LUFWP]J(Z^V)[G?G5'C@ \n 7 | sn= 8 | previous_sn= 9 | vendor=0V\=LUFWP]J(Z^V)[G?G5'C@ \n 10 | -------------------------------------------------------------------------------- /resources/adobe2016/license.properties: -------------------------------------------------------------------------------- 1 | #CF License File 2 | #Wed Feb 15 16:57:48 CST 2017 3 | installtype=j2ee 4 | listen=true 5 | code=-7320109322640376854 6 | lte=1464585226405 7 | appserver=0V\=LUFWP]J(Z^V)[G?G5'C@ \n 8 | previous_sn= 9 | sn= 10 | vendor=0V\=LUFWP]J(Z^V)[G?G5'C@ \n 11 | -------------------------------------------------------------------------------- /resources/adobe9/AdobeInfo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/adobe10/AdobeInfo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/adobe11/AdobeInfo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/adobe2016/AdobeInfo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/adobe2018/AdobeInfo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/adobe2020/AdobeInfo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/adobe2021/AdobeInfo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/adobe2023/AdobeInfo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/adobe2025/AdobeInfo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /tests/resources/adobe10/serverHome/WEB-INF/cfusion/lib/neo-jaxrs.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/resources/adobe11/serverHome/WEB-INF/cfusion/lib/neo-jaxrs.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/resources/adobe2016/serverHome/WEB-INF/cfusion/lib/neo-jaxrs.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/resources/adobe2018/serverHome/WEB-INF/cfusion/lib/neo-jaxrs.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/resources/adobe9/serverHome/WEB-INF/cfusion/lib/neo-document.xml: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /resources/adobe10/neo-registry.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 60000 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/adobe11/neo-registry.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 60000 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/adobe9/neo-registry.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 60000 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/resources/adobe10/serverHome/WEB-INF/cfusion/lib/neo-document.xml: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /resources/adobe2016/neo-registry.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 60000 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/adobe2018/neo-registry.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 60000 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/adobe2020/neo-registry.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 60000 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/adobe2021/neo-registry.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 60000 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/adobe2023/neo-registry.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 60000 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/adobe2025/neo-registry.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 60000 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/resources/adobe11/server.json: -------------------------------------------------------------------------------- 1 | { 2 | "app":{ 3 | "serverHomeDirectory":"serverHome", 4 | "cfengine":"adobe@11" 5 | }, 6 | "name":"cfconfigadobe11", 7 | "web":{ 8 | "host":"cfconfigadobe11.local" 9 | }, 10 | "JVM":{ 11 | "javaVersion":"openjdk8" 12 | } 13 | } -------------------------------------------------------------------------------- /tests/resources/adobe9/server.json: -------------------------------------------------------------------------------- 1 | { 2 | "app":{ 3 | "cfengine":"adobe@9", 4 | "serverHomeDirectory":"serverHome" 5 | }, 6 | "web":{ 7 | "host":"adobe9cfconfig.local" 8 | }, 9 | "name":"cfconfigadobe9", 10 | "jvm":{ 11 | "javaHome":"D:\\JRE9\\jre" 12 | } 13 | } -------------------------------------------------------------------------------- /resources/adobe2018/neo-monitoring.xml: -------------------------------------------------------------------------------- 1 |
localhost0 -------------------------------------------------------------------------------- /resources/adobe2020/neo-monitoring.xml: -------------------------------------------------------------------------------- 1 |
localhost0 -------------------------------------------------------------------------------- /resources/adobe2021/neo-monitoring.xml: -------------------------------------------------------------------------------- 1 |
localhost0 -------------------------------------------------------------------------------- /resources/adobe2023/neo-monitoring.xml: -------------------------------------------------------------------------------- 1 |
localhost0 -------------------------------------------------------------------------------- /resources/adobe2025/neo-monitoring.xml: -------------------------------------------------------------------------------- 1 |
localhost0 -------------------------------------------------------------------------------- /tests/resources/adobe2016/serverHome/WEB-INF/cfusion/lib/license.properties: -------------------------------------------------------------------------------- 1 | #CF License File 2 | #Thu Jun 20 09:58:48 CDT 2019 3 | listen=true 4 | installtype=j2ee 5 | lte=1464585226405 6 | code=-7320109322640376854 7 | appserver=0V\=LUFWP]J(Z^V)[G?G5'C@ \n 8 | sn= 9 | previous_sn= 10 | vendor=0V\=LUFWP]J(Z^V)[G?G5'C@ \n 11 | -------------------------------------------------------------------------------- /resources/adobe11/license.properties: -------------------------------------------------------------------------------- 1 | #CF License File 2 | #Wed Jan 18 18:08:28 CST 2017 3 | appserver=0YV\#Y\!,U&;_;YN@)&)B'"WP \n 4 | code=-7100955416611341334 5 | sn= 6 | listen=true 7 | user= 8 | trial_sn= 9 | installlanguage=en 10 | installtype=j2ee 11 | company= 12 | previous_sn= 13 | vendor=0YV\#Y\!,U&;_;YN@)&)B'"WP \n 14 | -------------------------------------------------------------------------------- /resources/adobe10/license.properties: -------------------------------------------------------------------------------- 1 | #CF License File 2 | #Sun Dec 25 18:24:30 UTC 2016 3 | appserver=0YV\#Y\!,U&;_;YN@)&)B'"WP \n 4 | code=-1556781626845905921 5 | sn=Developer 6 | listen=true 7 | user= 8 | trial_sn= 9 | installlanguage=en 10 | installtype=j2ee 11 | company= 12 | previous_sn= 13 | vendor=0YV\#Y\!,U&;_;YN@)&)B'"WP \n 14 | -------------------------------------------------------------------------------- /resources/adobe9/license.properties: -------------------------------------------------------------------------------- 1 | #CF License File 2 | #Sun Dec 25 18:24:30 UTC 2016 3 | appserver=0YV\#Y\!,U&;_;YN@)&)B'"WP \n 4 | code=-1556781626845905921 5 | sn=Developer 6 | listen=true 7 | user= 8 | trial_sn= 9 | installlanguage=en 10 | installtype=j2ee 11 | company= 12 | previous_sn= 13 | vendor=0YV\#Y\!,U&;_;YN@)&)B'"WP \n 14 | -------------------------------------------------------------------------------- /tests/resources/adobe9/serverHome/WEB-INF/cfusion/lib/license.properties: -------------------------------------------------------------------------------- 1 | #CF License File 2 | #Thu Jul 05 15:34:09 CDT 2018 3 | appserver=0YV\#Y\!,U&;_;YN@)&)B'"WP \n 4 | sn=Developer 5 | listen=true 6 | user= 7 | trial_sn= 8 | installlanguage=en 9 | installtype=jrun 10 | company= 11 | previous_sn= 12 | vendor=0YV\#Y\!,U&;_;YN@)&)B'"WP \n 13 | -------------------------------------------------------------------------------- /index.cfm: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /tests/resources/adobe10/serverHome/WEB-INF/cfusion/lib/neo-registry.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 60000 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/resources/adobe11/serverHome/WEB-INF/cfusion/lib/neo-registry.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 60000 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/resources/adobe2016/serverHome/WEB-INF/cfusion/lib/neo-registry.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 60000 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/resources/adobe2018/serverHome/WEB-INF/cfusion/lib/neo-registry.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 60000 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/resources/adobe9/serverHome/WEB-INF/cfusion/lib/neo-registry.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 60000 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /resources/adobe11/neo-graphing.xml: -------------------------------------------------------------------------------- 1 |
15.0150 2 | -------------------------------------------------------------------------------- /resources/adobe11/neo_updates.xml: -------------------------------------------------------------------------------- 1 | http://www.adobe.com/go/coldfusion-updateshttp://www.adobe.com/go/coldfusion-updates 2 | -------------------------------------------------------------------------------- /resources/adobe2016/neo_updates.xml: -------------------------------------------------------------------------------- 1 | https://www.adobe.com/go/coldfusion-updateshttps://www.adobe.com/go/coldfusion-updates -------------------------------------------------------------------------------- /resources/adobe2018/neo_updates.xml: -------------------------------------------------------------------------------- 1 | https://www.adobe.com/go/coldfusion-updateshttps://www.adobe.com/go/coldfusion-updates -------------------------------------------------------------------------------- /resources/adobe2020/neo_updates.xml: -------------------------------------------------------------------------------- 1 | https://www.adobe.com/go/coldfusion-updateshttps://www.adobe.com/go/coldfusion-updates -------------------------------------------------------------------------------- /resources/adobe2021/neo_updates.xml: -------------------------------------------------------------------------------- 1 | https://www.adobe.com/go/coldfusion-updateshttps://www.adobe.com/go/coldfusion-updates -------------------------------------------------------------------------------- /resources/adobe2023/neo_updates.xml: -------------------------------------------------------------------------------- 1 | https://www.adobe.com/go/coldfusion-updateshttps://www.adobe.com/go/coldfusion-updates -------------------------------------------------------------------------------- /resources/adobe2025/neo_updates.xml: -------------------------------------------------------------------------------- 1 | https://www.adobe.com/go/coldfusion-updateshttps://www.adobe.com/go/coldfusion-updates -------------------------------------------------------------------------------- /tests/resources/adobe11/serverHome/WEB-INF/cfusion/lib/license.properties: -------------------------------------------------------------------------------- 1 | # 2 | #Fri Dec 14 14:10:31 CST 2018 3 | trial_sn= 4 | code=-7100955416611341334 5 | vendor=0YV\#Y\!,U&;_;YN@)&)B'"WP \n 6 | installtype=j2ee 7 | previous_sn= 8 | appserver=0YV\#Y\!,U&;_;YN@)&)B'"WP \n 9 | installlanguage=en 10 | company= 11 | sn= 12 | user= 13 | listen=true 14 | -------------------------------------------------------------------------------- /resources/adobe2016/neo-graphing.xml: -------------------------------------------------------------------------------- 1 |
15.0150 2 | -------------------------------------------------------------------------------- /resources/adobe2018/neo-graphing.xml: -------------------------------------------------------------------------------- 1 |
15.0150 2 | -------------------------------------------------------------------------------- /resources/adobe2020/neo-graphing.xml: -------------------------------------------------------------------------------- 1 |
15.0150 2 | -------------------------------------------------------------------------------- /resources/adobe2021/neo-graphing.xml: -------------------------------------------------------------------------------- 1 |
15.0150 2 | -------------------------------------------------------------------------------- /resources/adobe2023/neo-graphing.xml: -------------------------------------------------------------------------------- 1 |
15.0150 2 | -------------------------------------------------------------------------------- /resources/adobe2025/neo-graphing.xml: -------------------------------------------------------------------------------- 1 |
15.0150 2 | -------------------------------------------------------------------------------- /tests/config/Coldbox.cfc: -------------------------------------------------------------------------------- 1 | /** 2 | ********************************************************************************* 3 | * Copyright Since 2017 CommandBox by Ortus Solutions, Corp 4 | * www.ortussolutions.com 5 | ******************************************************************************** 6 | * @author Brad Wood 7 | */ 8 | component { 9 | function configure(){} 10 | } -------------------------------------------------------------------------------- /resources/adobe10/neo-graphing.xml: -------------------------------------------------------------------------------- 1 |
14/CFIDE/GraphData.cfm50 2 | -------------------------------------------------------------------------------- /resources/adobe9/neo-graphing.xml: -------------------------------------------------------------------------------- 1 |
14/CFIDE/GraphData.cfm50 2 | -------------------------------------------------------------------------------- /tests/resources/adobe10/serverHome/WEB-INF/cfusion/lib/license.properties: -------------------------------------------------------------------------------- 1 | #CF License File 2 | #Fri Dec 14 16:24:49 CST 2018 3 | appserver=0YV\#Y\!,U&;_;YN@)&)B'"WP \n 4 | code=-8885951920842294400 5 | sn=Developer 6 | listen=true 7 | user= 8 | trial_sn= 9 | installlanguage=en 10 | installtype=j2ee 11 | company= 12 | previous_sn= 13 | vendor=0YV\#Y\!,U&;_;YN@)&)B'"WP \n 14 | -------------------------------------------------------------------------------- /resources/adobe9/neo-probe.xml: -------------------------------------------------------------------------------- 1 |
ColdFusionProbe@localhost -------------------------------------------------------------------------------- /resources/adobe10/neo-probe.xml: -------------------------------------------------------------------------------- 1 |
ColdFusionProbe@localhost -------------------------------------------------------------------------------- /resources/adobe11/neo-probe.xml: -------------------------------------------------------------------------------- 1 |
ColdFusionProbe@localhost -------------------------------------------------------------------------------- /resources/adobe2016/neo-probe.xml: -------------------------------------------------------------------------------- 1 |
ColdFusionProbe@localhost -------------------------------------------------------------------------------- /resources/adobe2018/neo-probe.xml: -------------------------------------------------------------------------------- 1 |
ColdFusionProbe@localhost -------------------------------------------------------------------------------- /resources/adobe2020/neo-probe.xml: -------------------------------------------------------------------------------- 1 |
ColdFusionProbe@localhost -------------------------------------------------------------------------------- /resources/adobe2021/neo-probe.xml: -------------------------------------------------------------------------------- 1 |
ColdFusionProbe@localhost -------------------------------------------------------------------------------- /resources/adobe2023/neo-probe.xml: -------------------------------------------------------------------------------- 1 |
ColdFusionProbe@localhost -------------------------------------------------------------------------------- /resources/adobe2025/neo-probe.xml: -------------------------------------------------------------------------------- 1 |
ColdFusionProbe@localhost -------------------------------------------------------------------------------- /tests/resources/adobe11/serverHome/WEB-INF/cfusion/lib/neo-graphing.xml: -------------------------------------------------------------------------------- 1 |
15.0150 2 | -------------------------------------------------------------------------------- /tests/resources/adobe2016/serverHome/WEB-INF/cfusion/lib/neo-graphing.xml: -------------------------------------------------------------------------------- 1 |
15.0150 2 | -------------------------------------------------------------------------------- /tests/resources/adobe2018/serverHome/WEB-INF/cfusion/lib/neo-graphing.xml: -------------------------------------------------------------------------------- 1 |
15.0150 2 | -------------------------------------------------------------------------------- /tests/resources/adobe9/serverHome/WEB-INF/cfusion/lib/neo-xmlrpc.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /tests/resources/adobe10/serverHome/WEB-INF/cfusion/lib/neo-graphing.xml: -------------------------------------------------------------------------------- 1 |
14/CFIDE/GraphData.cfm50 2 | -------------------------------------------------------------------------------- /tests/resources/adobe9/serverHome/WEB-INF/cfusion/lib/neo-graphing.xml: -------------------------------------------------------------------------------- 1 |
14/CFIDE/GraphData.cfm50 2 | -------------------------------------------------------------------------------- /resources/adobe9/pi-outline.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/adobe10/pi-outline.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/adobe11/pi-outline.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/adobe2016/pi-outline.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/adobe2018/pi-outline.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/adobe2020/pi-outline.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/adobe2021/pi-outline.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/adobe2023/pi-outline.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/adobe2025/pi-outline.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /tests/resources/adobe10/serverHome/WEB-INF/cfusion/lib/neo-probe.xml: -------------------------------------------------------------------------------- 1 |
ColdFusionProbe@localhost -------------------------------------------------------------------------------- /tests/resources/adobe11/serverHome/WEB-INF/cfusion/lib/neo-probe.xml: -------------------------------------------------------------------------------- 1 |
ColdFusionProbe@localhost -------------------------------------------------------------------------------- /tests/resources/adobe2016/serverHome/WEB-INF/cfusion/lib/neo-probe.xml: -------------------------------------------------------------------------------- 1 |
ColdFusionProbe@localhost -------------------------------------------------------------------------------- /tests/resources/adobe2018/serverHome/WEB-INF/cfusion/lib/neo-probe.xml: -------------------------------------------------------------------------------- 1 |
ColdFusionProbe@localhost -------------------------------------------------------------------------------- /tests/resources/adobe9/serverHome/WEB-INF/cfusion/lib/neo-probe.xml: -------------------------------------------------------------------------------- 1 |
ColdFusionProbe@localhost -------------------------------------------------------------------------------- /resources/adobe9/neo-watch.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 120.0 7 | 8 | 9 | xml,properties 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tests/resources/adobe2018/serverHome/WEB-INF/cfusion/lib/neo-monitoring.xml: -------------------------------------------------------------------------------- 1 |
localhost09265d1b-b0e6-4d1c-adc2-6e856c08cd860.0 -------------------------------------------------------------------------------- /resources/adobe10/neo-watch.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 120.0 7 | 8 | 9 | xml,properties 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /resources/adobe11/neo-watch.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 120.0 7 | 8 | 9 | xml,properties 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /resources/adobe2016/neo-watch.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 120.0 7 | 8 | 9 | xml,properties 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /resources/adobe2018/neo-watch.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 120.0 7 | 8 | 9 | xml,properties 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /resources/adobe2020/neo-watch.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 120.0 7 | 8 | 9 | xml,properties 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /resources/adobe2021/neo-watch.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 120.0 7 | 8 | 9 | xml,properties 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /resources/adobe2023/neo-watch.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 120.0 7 | 8 | 9 | xml,properties 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /resources/adobe2025/neo-watch.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 120.0 7 | 8 | 9 | xml,properties 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /resources/adobe10/neo_updates.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | http://www.adobe.com/go/coldfusion-updates 6 | 7 | http://www.adobe.com/go/coldfusion-updates 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /resources/adobe9/neo_updates.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | http://www.adobe.com/go/coldfusion-updates 6 | 7 | http://www.adobe.com/go/coldfusion-updates 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /tests/resources/adobe9/serverHome/WEB-INF/cfusion/lib/neo-watch.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 120.0 7 | 8 | 9 | xml,properties 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /resources/adobe10/adminconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | false 5 | false 6 | false 7 | false 8 | 9 | false 10 | false 11 | false 12 | 13 | 14 | -------------------------------------------------------------------------------- /resources/adobe10/neo-archivedeploy.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /resources/adobe11/neo-archivedeploy.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /resources/adobe9/adminconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | false 5 | false 6 | false 7 | false 8 | 9 | false 10 | false 11 | false 12 | 13 | 14 | -------------------------------------------------------------------------------- /resources/adobe9/neo-archivedeploy.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /resources/adobe2016/neo-archivedeploy.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /resources/adobe2018/neo-archivedeploy.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /resources/adobe2020/neo-archivedeploy.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /resources/adobe2021/neo-archivedeploy.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /resources/adobe2023/neo-archivedeploy.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /resources/adobe2025/neo-archivedeploy.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tests/resources/adobe9/serverHome/WEB-INF/cfusion/lib/neo-archivedeploy.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tests/resources/adobe10/serverHome/WEB-INF/cfusion/lib/neo-archivedeploy.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tests/resources/adobe11/serverHome/WEB-INF/cfusion/lib/neo-archivedeploy.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tests/resources/adobe2016/serverHome/WEB-INF/cfusion/lib/neo-archivedeploy.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tests/resources/adobe2018/serverHome/WEB-INF/cfusion/lib/neo-archivedeploy.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tests/resources/adobe10/serverHome/WEB-INF/cfusion/lib/neo-watch.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 120.0 10 | 11 | 12 | xml,properties 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tests/resources/adobe11/serverHome/WEB-INF/cfusion/lib/neo-watch.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 120.0 10 | 11 | 12 | xml,properties 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tests/resources/adobe2016/serverHome/WEB-INF/cfusion/lib/neo-watch.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 6.0 10 | 11 | 12 | xml,properties 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tests/resources/adobe2018/serverHome/WEB-INF/cfusion/lib/neo-watch.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 120.0 10 | 11 | 12 | xml,properties 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /resources/adobe11/adminconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | false 5 | false 6 | false 7 | false 8 | false 9 | 10 | false 11 | false 12 | false 13 | 14 | 15 | -------------------------------------------------------------------------------- /resources/adobe11/ehcache-default-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 16 | -------------------------------------------------------------------------------- /resources/adobe2021/pathfilter.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": "paths should be semi-colon seperated. To Allow a file: {path-of-file}; To Allow a directory & files in it: {path-to-directory}/*; To Allow a directory & sub-directories: {path-to-directory}/**; To Block a file: !{path-of-file}; To Block a directory & sub-directories: !{path-to-directory}/**; Precedence decreases from left to right. Suppose directory A has directory B & C inside it.To Allow B & Block C: !A/C/*;A/**;", 3 | 4 | "bytecodeexecutionpaths": "", 5 | 6 | "schedulerexecutionpaths": "" 7 | } -------------------------------------------------------------------------------- /resources/adobe2023/pathfilter.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": "paths should be semi-colon seperated. To Allow a file: {path-of-file}; To Allow a directory & files in it: {path-to-directory}/*; To Allow a directory & sub-directories: {path-to-directory}/**; To Block a file: !{path-of-file}; To Block a directory & sub-directories: !{path-to-directory}/**; Precedence decreases from left to right. Suppose directory A has directory B & C inside it.To Allow B & Block C: !A/C/*;A/**;", 3 | 4 | "bytecodeexecutionpaths": "", 5 | 6 | "schedulerexecutionpaths": "" 7 | } -------------------------------------------------------------------------------- /resources/adobe2025/pathfilter.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": "paths should be semi-colon seperated. To Allow a file: {path-of-file}; To Allow a directory & files in it: {path-to-directory}/*; To Allow a directory & sub-directories: {path-to-directory}/**; To Block a file: !{path-of-file}; To Block a directory & sub-directories: !{path-to-directory}/**; Precedence decreases from left to right. Suppose directory A has directory B & C inside it.To Allow B & Block C: !A/C/*;A/**;", 3 | 4 | "bytecodeexecutionpaths": "", 5 | 6 | "schedulerexecutionpaths": "" 7 | } -------------------------------------------------------------------------------- /resources/adobe2016/ehcache-default-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 16 | -------------------------------------------------------------------------------- /resources/adobe2018/ehcache-default-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 16 | -------------------------------------------------------------------------------- /resources/adobe2020/ehcache-default-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 16 | -------------------------------------------------------------------------------- /resources/adobe2021/ehcache-default-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 16 | -------------------------------------------------------------------------------- /resources/adobe2023/ehcache-default-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 16 | -------------------------------------------------------------------------------- /resources/adobe2025/ehcache-default-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 16 | -------------------------------------------------------------------------------- /resources/adobe2016/adminconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | true 5 | false 6 | false 7 | false 8 | false 9 | false 10 | 11 | false 12 | false 13 | false 14 | 15 | 16 | -------------------------------------------------------------------------------- /resources/adobe2018/adminconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | true 5 | false 6 | false 7 | false 8 | false 9 | false 10 | 11 | false 12 | false 13 | false 14 | 15 | 16 | -------------------------------------------------------------------------------- /resources/adobe2020/adminconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | true 5 | false 6 | false 7 | false 8 | false 9 | false 10 | 11 | false 12 | false 13 | false 14 | 15 | 16 | -------------------------------------------------------------------------------- /resources/adobe2021/adminconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | true 5 | false 6 | false 7 | false 8 | false 9 | false 10 | 11 | false 12 | false 13 | false 14 | 15 | 16 | -------------------------------------------------------------------------------- /resources/adobe2023/adminconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | true 5 | false 6 | false 7 | false 8 | false 9 | false 10 | 11 | false 12 | false 13 | false 14 | 15 | 16 | -------------------------------------------------------------------------------- /resources/adobe2025/adminconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | true 5 | false 6 | false 7 | false 8 | false 9 | false 10 | 11 | false 12 | false 13 | false 14 | 15 | 16 | -------------------------------------------------------------------------------- /tests/resources/adobe11/serverHome/WEB-INF/cfusion/lib/neo_updates.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | http://www.adobe.com/go/coldfusion-updates 4 | http://www.adobe.com/go/coldfusion-updates 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 0 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tests/resources/adobe2016/serverHome/WEB-INF/cfusion/lib/neo_updates.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | https://www.adobe.com/go/coldfusion-updates 4 | https://www.adobe.com/go/coldfusion-updates 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 0 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tests/resources/adobe2018/serverHome/WEB-INF/cfusion/lib/neo_updates.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | https://www.adobe.com/go/coldfusion-updates 4 | https://www.adobe.com/go/coldfusion-updates 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 0 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tests/resources/adobe10/serverHome/WEB-INF/cfusion/lib/neo_updates.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | http://www.adobe.com/go/coldfusion-updates 5 | 6 | http://www.adobe.com/go/coldfusion-updates 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 0 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /resources/adobe10/neo-xmlrpc.xml: -------------------------------------------------------------------------------- 1 |
2 2 | -------------------------------------------------------------------------------- /resources/adobe9/neo-xmlrpc.xml: -------------------------------------------------------------------------------- 1 |
2 2 | -------------------------------------------------------------------------------- /tests/resources/adobe2016/serverHome/WEB-INF/cfusion/lib/neo-dotnet.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | C:\commandbox-home 7 | 8 | 9 | tcp 10 | 11 | 12 | 5678 13 | 14 | 15 | 1234 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /tests/resources/adobe10/serverHome/WEB-INF/cfusion/lib/neo-dotnet.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | C:\Work\CF\depot\ColdFusion\cf_main\cfusion\jnbridge 7 | 8 | 9 | tcp 10 | 11 | 12 | 6085 13 | 14 | 15 | 6086 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /tests/resources/adobe10/serverHome/WEB-INF/cfusion/lib/neo-xmlrpc.xml: -------------------------------------------------------------------------------- 1 |
2 2 | -------------------------------------------------------------------------------- /tests/resources/adobe11/serverHome/WEB-INF/cfusion/lib/neo-dotnet.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | C:\Work\CF\depot\ColdFusion\cf_main\cfusion\jnbridge 7 | 8 | 9 | tcp 10 | 11 | 12 | 6085 13 | 14 | 15 | 6086 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /tests/resources/adobe2018/serverHome/WEB-INF/cfusion/lib/neo-dotnet.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | C:\Work\CF\depot\ColdFusion\cf_main\cfusion\jnbridge 7 | 8 | 9 | tcp 10 | 11 | 12 | 6085 13 | 14 | 15 | 6086 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /resources/adobe10/neo-dotnet.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 6085 8 | 9 | 10 | 6086 11 | 12 | 13 | tcp 14 | 15 | 16 | C:\Work\CF\depot\ColdFusion\cf_main\cfusion\jnbridge 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /resources/adobe11/neo-dotnet.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 6085 8 | 9 | 10 | 6086 11 | 12 | 13 | tcp 14 | 15 | 16 | C:\Work\CF\depot\ColdFusion\cf_main\cfusion\jnbridge 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /resources/adobe9/neo-dotnet.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 6085 8 | 9 | 10 | 6086 11 | 12 | 13 | tcp 14 | 15 | 16 | C:\Work\CF\depot\ColdFusion\cf_main\cfusion\jnbridge 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /resources/adobe2016/neo-dotnet.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 6085 8 | 9 | 10 | 6086 11 | 12 | 13 | tcp 14 | 15 | 16 | C:\Work\CF\depot\ColdFusion\cf_main\cfusion\jnbridge 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /resources/adobe2018/neo-dotnet.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 6085 8 | 9 | 10 | 6086 11 | 12 | 13 | tcp 14 | 15 | 16 | C:\Work\CF\depot\ColdFusion\cf_main\cfusion\jnbridge 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /resources/adobe2020/neo-dotnet.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 6085 8 | 9 | 10 | 6086 11 | 12 | 13 | tcp 14 | 15 | 16 | C:\Work\CF\depot\ColdFusion\cf_main\cfusion\jnbridge 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /resources/adobe2021/neo-dotnet.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 6085 8 | 9 | 10 | 6086 11 | 12 | 13 | tcp 14 | 15 | 16 | C:\Work\CF\depot\ColdFusion\cf_main\cfusion\jnbridge 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /resources/adobe2023/neo-dotnet.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 6085 8 | 9 | 10 | 6086 11 | 12 | 13 | tcp 14 | 15 | 16 | C:\Work\CF\depot\ColdFusion\cf_main\cfusion\jnbridge 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /resources/adobe2025/neo-dotnet.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 6085 8 | 9 | 10 | 6086 11 | 12 | 13 | tcp 14 | 15 | 16 | C:\Work\CF\depot\ColdFusion\cf_main\cfusion\jnbridge 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /resources/adobe11/neo-document.xml: -------------------------------------------------------------------------------- 1 |
127.0.0.18987.02.0localhost -------------------------------------------------------------------------------- /resources/adobe2016/neo-document.xml: -------------------------------------------------------------------------------- 1 |
127.0.0.18989.02.0localhost -------------------------------------------------------------------------------- /resources/adobe2018/neo-document.xml: -------------------------------------------------------------------------------- 1 |
127.0.0.18991.02.0localhost -------------------------------------------------------------------------------- /resources/adobe2020/neo-document.xml: -------------------------------------------------------------------------------- 1 |
127.0.0.18991.02.0localhost -------------------------------------------------------------------------------- /resources/adobe2021/neo-document.xml: -------------------------------------------------------------------------------- 1 |
127.0.0.18991.02.0localhost -------------------------------------------------------------------------------- /resources/adobe2023/neo-document.xml: -------------------------------------------------------------------------------- 1 |
127.0.0.18991.02.0localhost -------------------------------------------------------------------------------- /resources/adobe2025/neo-document.xml: -------------------------------------------------------------------------------- 1 |
127.0.0.18991.02.0localhost -------------------------------------------------------------------------------- /tests/resources/adobe9/serverHome/WEB-INF/cfusion/lib/neo-dotnet.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 6085 8 | 9 | 10 | 6086 11 | 12 | 13 | tcp 14 | 15 | 16 | C:\Work\CF\depot\ColdFusion\cf_main\cfusion\jnbridge 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /resources/adobe10/neo-logging.xml: -------------------------------------------------------------------------------- 1 |
"%p","%t",%d{"MM/dd/yy","HH:mm:ss"},%a,"%m%x"%n5000000.0information10.0%d{MMM d, yyyy HH:mm:ss a} %p [%t] - %m%n20.020 2 | -------------------------------------------------------------------------------- /resources/adobe11/neo-logging.xml: -------------------------------------------------------------------------------- 1 |
"%p","%t",%d{"MM/dd/yy","HH:mm:ss"},%a,"%m%x"%n5000000.0information10.0%d{MMM d, yyyy HH:mm:ss a} %p [%t] - %m%n20.020.0 2 | -------------------------------------------------------------------------------- /resources/adobe9/neo-logging.xml: -------------------------------------------------------------------------------- 1 |
"%p","%t",%d{"MM/dd/yy","HH:mm:ss"},%a,"%m%x"%n5000000.0information10.0%d{MMM d, yyyy HH:mm:ss a} %p [%t] - %m%n20.020 2 | -------------------------------------------------------------------------------- /resources/adobe10/neo-websocket.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 8575 10 | 11 | 12 | 300 13 | 14 | 15 | 1024 16 | 17 | 18 | 1243 19 | 20 | 21 | 22 | 23 | 24 | warning 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /resources/adobe2016/neo-logging.xml: -------------------------------------------------------------------------------- 1 |
"%p","%t",%d{"MM/dd/yy","HH:mm:ss"},"%a","%m%x"%n5000000.0information10.0%d{MMM d, yyyy HH:mm:ss a} %p [%t] - %m%n20.020.0 2 | -------------------------------------------------------------------------------- /resources/adobe2018/neo-logging.xml: -------------------------------------------------------------------------------- 1 |
"%p","%t",%d{"MM/dd/yy","HH:mm:ss"},"%a","%m%x"%n5000000.0information10.0%d{MMM d, yyyy HH:mm:ss a} %p [%t] - %m%n20.020.0 2 | -------------------------------------------------------------------------------- /resources/adobe2020/neo-logging.xml: -------------------------------------------------------------------------------- 1 |
"%p","%t",%d{"MM/dd/yy","HH:mm:ss"},"%a","%m%x"%n5000000.0information10.0%d{MMM d, yyyy HH:mm:ss a} %p [%t] - %m%n20.020.0 2 | -------------------------------------------------------------------------------- /resources/adobe2021/neo-logging.xml: -------------------------------------------------------------------------------- 1 |
"%p","%t",%d{"MM/dd/yy","HH:mm:ss"},"%a","%m%x"%n5000000.0information10.0%d{MMM d, yyyy HH:mm:ss a} %p [%t] - %m%n20.020.0 2 | -------------------------------------------------------------------------------- /resources/adobe2023/neo-logging.xml: -------------------------------------------------------------------------------- 1 |
"%p","%t",%d{"MM/dd/yy","HH:mm:ss"},"%a","%m%x"%n5000000.0information10.0%d{MMM d, yyyy HH:mm:ss a} %p [%t] - %m%n20.020.0 2 | -------------------------------------------------------------------------------- /resources/adobe2025/neo-logging.xml: -------------------------------------------------------------------------------- 1 |
"%p","%t",%d{"MM/dd/yy","HH:mm:ss"},"%a","%m%x"%n5000000.0information10.0%d{MMM d, yyyy HH:mm:ss a} %p [%t] - %m%n20.020.0 2 | -------------------------------------------------------------------------------- /resources/adobe9/neo-websocket.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 8575 10 | 11 | 12 | 300 13 | 14 | 15 | 1024 16 | 17 | 18 | 1243 19 | 20 | 21 | 22 | 23 | 24 | warning 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /resources/adobe9/neo-security.xml: -------------------------------------------------------------------------------- 1 |
falseadmin<InvalidTag 2 | -------------------------------------------------------------------------------- /tests/resources/adobe11/serverHome/WEB-INF/cfusion/lib/neo-document.xml: -------------------------------------------------------------------------------- 1 |
127.0.0.18987.02.0localhost -------------------------------------------------------------------------------- /tests/resources/adobe2016/serverHome/WEB-INF/cfusion/lib/neo-document.xml: -------------------------------------------------------------------------------- 1 |
127.0.0.18989.02.0localhost -------------------------------------------------------------------------------- /tests/resources/adobe2018/serverHome/WEB-INF/cfusion/lib/neo-document.xml: -------------------------------------------------------------------------------- 1 |
127.0.0.18991.02.0localhost -------------------------------------------------------------------------------- /tests/resources/adobe9/serverHome/WEB-INF/cfusion/lib/neo-logging.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | information 11 | 12 | 13 | 10.0 14 | 15 | 16 | "%p","%t",%d{"MM/dd/yy","HH:mm:ss"},%a,"%m%x"%n 17 | 18 | 19 | 20 | 21 | 22 | 5000000.0 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /resources/adobe9/neo-metric.xml: -------------------------------------------------------------------------------- 1 |
falsefalse5799550500200060.0101.0false 2 | -------------------------------------------------------------------------------- /ModuleConfig.cfc: -------------------------------------------------------------------------------- 1 | /** 2 | ********************************************************************************* 3 | * Copyright Since 2017 CommandBox by Ortus Solutions, Corp 4 | * www.ortussolutions.com 5 | ******************************************************************************** 6 | * @author Brad Wood 7 | * 8 | */ 9 | component { 10 | 11 | this.title = "CFConfig Services"; 12 | this.modelNamespace = "cfconfig-services"; 13 | this.cfmapping = "cfconfig-services"; 14 | this.autoMapModels = true; 15 | // Need these loaded up first so I can do my job. 16 | this.dependencies = [ 'PropertyFile','lucee-password-util','adobe-password-util' ]; 17 | 18 | function configure() { 19 | settings = { 20 | "redisCachePasswordAlwaysPlainText" : false 21 | }; 22 | } 23 | } -------------------------------------------------------------------------------- /resources/adobe10/neo-metric.xml: -------------------------------------------------------------------------------- 1 |
falsefalse5799550500200060.0101.0false 2 | -------------------------------------------------------------------------------- /resources/adobe11/neo-metric.xml: -------------------------------------------------------------------------------- 1 |
falsefalse5799550500200060.0101.0false 2 | -------------------------------------------------------------------------------- /models/providers/Adobe2018Beta.cfc: -------------------------------------------------------------------------------- 1 | /** 2 | ********************************************************************************* 3 | * Copyright Since 2017 CommandBox by Ortus Solutions, Corp 4 | * www.ortussolutions.com 5 | ******************************************************************************** 6 | * @author Brad Wood 7 | * 8 | * I represent the behavior of reading and writing CF engine config in the format compatible with an Adobe 2016.x server 9 | * I extend the BaseConfig class, which represents the data itself. 10 | */ 11 | component accessors=true extends='cfconfig-services.models.providers.Adobe2018' { 12 | 13 | /** 14 | * Constructor 15 | */ 16 | function init() { 17 | super.init(); 18 | 19 | setVersion( '2018-beta' ); 20 | 21 | return this; 22 | } 23 | 24 | } -------------------------------------------------------------------------------- /tests/resources/adobe9/serverHome/WEB-INF/cfusion/lib/neo-security.xml: -------------------------------------------------------------------------------- 1 |
falseadmin<InvalidTag 2 | -------------------------------------------------------------------------------- /tests/Application.cfc: -------------------------------------------------------------------------------- 1 | /** 2 | ********************************************************************************* 3 | * Copyright Since 2017 CommandBox by Ortus Solutions, Corp 4 | * www.ortussolutions.com 5 | ******************************************************************************** 6 | * @author Brad Wood 7 | */ 8 | component{ 9 | 10 | this.name = hash( getCurrentTemplatePath() ); 11 | this.sessionManagement = true; 12 | this.sessionTimeout = createTimeSpan(0,0,30,0); 13 | this.setClientCookies = true; 14 | this.mappings[ '/root/cfconfig' ] = expandPath( getDirectoryFromPath( getCurrentTemplatePath() ) & '../'); 15 | this.mappings[ '/root' ] = expandPath( getDirectoryFromPath( getCurrentTemplatePath() ) & '../../' ); 16 | this.mappings[ '/tests' ] = getDirectoryFromPath( getCurrentTemplatePath() ); 17 | } -------------------------------------------------------------------------------- /tests/resources/adobe10/serverHome/WEB-INF/cfusion/lib/neo-metric.xml: -------------------------------------------------------------------------------- 1 |
falsefalse5799550500200060.0101.0false 2 | -------------------------------------------------------------------------------- /tests/resources/adobe11/serverHome/WEB-INF/cfusion/lib/neo-metric.xml: -------------------------------------------------------------------------------- 1 |
falsefalse5799550500200060.0101.0false 2 | -------------------------------------------------------------------------------- /models/providers/Lucee7Server.cfc: -------------------------------------------------------------------------------- 1 | /** 2 | ********************************************************************************* 3 | * Copyright Since 2017 CommandBox by Ortus Solutions, Corp 4 | * www.ortussolutions.com 5 | ******************************************************************************** 6 | * @author Brad Wood 7 | * 8 | * I represent the behavior of reading and writing CF engine config in the format compatible with a Lucee 7.x server context 9 | * I extend the Lucee6Server class, which is when the JSON format started. 10 | */ 11 | component accessors=true extends='cfconfig-services.models.providers.Lucee6Server' { 12 | 13 | /** 14 | * Constructor 15 | */ 16 | function init() { 17 | super.init(); 18 | 19 | setFormat( 'luceeServer' ); 20 | setVersion( '7' ); 21 | 22 | return this; 23 | } 24 | 25 | } -------------------------------------------------------------------------------- /models/providers/Lucee7Server-snapshot.cfc: -------------------------------------------------------------------------------- 1 | /** 2 | ********************************************************************************* 3 | * Copyright Since 2017 CommandBox by Ortus Solutions, Corp 4 | * www.ortussolutions.com 5 | ******************************************************************************** 6 | * @author Brad Wood 7 | * 8 | * I represent the behavior of reading and writing CF engine config in the format compatible with a Lucee 7.x server context 9 | * I extend the Lucee6Server class, which is when the JSON format started. 10 | */ 11 | component accessors=true extends='cfconfig-services.models.providers.Lucee6Server' { 12 | 13 | /** 14 | * Constructor 15 | */ 16 | function init() { 17 | super.init(); 18 | 19 | setFormat( 'luceeServer' ); 20 | setVersion( '7-snapshot' ); 21 | 22 | return this; 23 | } 24 | 25 | } -------------------------------------------------------------------------------- /resources/adobe10/neo-security.xml: -------------------------------------------------------------------------------- 1 |
admintrue<InvalidTagfalse 2 | -------------------------------------------------------------------------------- /resources/adobe11/neo-xmlrpc.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 2 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /resources/adobe2016/neo-xmlrpc.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 2 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /resources/adobe2018/neo-xmlrpc.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 2 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /resources/adobe2020/neo-xmlrpc.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 2 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /resources/adobe2021/neo-xmlrpc.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 2 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /resources/adobe2023/neo-xmlrpc.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 2 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /resources/adobe2025/neo-xmlrpc.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 2 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /tests/resources/adobe11/serverHome/WEB-INF/cfusion/lib/neo-xmlrpc.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 2 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /tests/resources/adobe2016/serverHome/WEB-INF/cfusion/lib/neo-xmlrpc.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 2 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /tests/resources/adobe2018/serverHome/WEB-INF/cfusion/lib/neo-xmlrpc.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 2 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /tests/resources/adobe10/serverHome/WEB-INF/cfusion/lib/neo-websocket.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 1243 7 | 8 | 9 | 10 | 11 | 12 | 1024.0 13 | 14 | 15 | 16 | 17 | 18 | 8575 19 | 20 | 21 | warning 22 | 23 | 24 | 300.0 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /tests/resources/adobe11/serverHome/WEB-INF/cfusion/lib/neo-logging.xml: -------------------------------------------------------------------------------- 1 |
5000000.020.0"%p","%t",%d{"MM/dd/yy","HH:mm:ss"},%a,"%m%x"%n20.010.0%d{MMM d, yyyy HH:mm:ss a} %p [%t] - %m%ninformationC:\Users\Brad.development\Documents\GitHub\cfconfig\tests\resources\adobe11\serverHome\WEB-INF\cfusion\logs -------------------------------------------------------------------------------- /tests/resources/adobe10/serverHome/WEB-INF/cfusion/lib/neo-logging.xml: -------------------------------------------------------------------------------- 1 |
5001000.020.0"%p","%t",%d{"MM/dd/yy","HH:mm:ss"},%a,"%m%x"%n20.011.0%d{MMM d, yyyy HH:mm:ss a} %p [%t] - %m%ninformationC:\Users\Brad.development\Documents\GitHub\cfconfig\tests\resources\adobe10\serverHome\WEB-INF\cfusion\logs2 2 | -------------------------------------------------------------------------------- /tests/resources/adobe9/serverHome/WEB-INF/cfusion/lib/neo-metric.xml: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 500 5 | 6 | 7 | 5 8 | 9 | 10 | 10 11 | 12 | 13 | 50 14 | 15 | 200 16 | 17 | 18 | true 19 | 20 | 21 | 7997 22 | 23 | 24 | false 25 | 26 | 27 | 1.0 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /resources/adobe11/neo-websocket.xml: -------------------------------------------------------------------------------- 1 |
85771024.045566warning300.085431243 2 | -------------------------------------------------------------------------------- /resources/adobe2016/neo-websocket.xml: -------------------------------------------------------------------------------- 1 |
85798543warning12431024.0300.045566 2 | -------------------------------------------------------------------------------- /resources/adobe2018/neo-websocket.xml: -------------------------------------------------------------------------------- 1 |
85798543warning12431024.0300.045566 2 | -------------------------------------------------------------------------------- /resources/adobe2020/neo-websocket.xml: -------------------------------------------------------------------------------- 1 |
85798543warning12431024.0300.045566 2 | -------------------------------------------------------------------------------- /resources/adobe2021/neo-websocket.xml: -------------------------------------------------------------------------------- 1 |
85798543warning12431024.0300.045566 2 | -------------------------------------------------------------------------------- /resources/adobe2023/neo-websocket.xml: -------------------------------------------------------------------------------- 1 |
85798543warning12431024.0300.045566 2 | -------------------------------------------------------------------------------- /resources/adobe2025/neo-websocket.xml: -------------------------------------------------------------------------------- 1 |
85798543warning12431024.0300.045566 2 | -------------------------------------------------------------------------------- /models/providers/Lucee6Web.cfc: -------------------------------------------------------------------------------- 1 | /** 2 | ********************************************************************************* 3 | * Copyright Since 2017 CommandBox by Ortus Solutions, Corp 4 | * www.ortussolutions.com 5 | ******************************************************************************** 6 | * @author Brad Wood 7 | * 8 | * I represent the behavior of reading and writing CF engine config in the format compatible with a Lucee 6.x web context 9 | * I extend the BaseConfig class, which represents the data itself. 10 | */ 11 | component accessors=true extends='cfconfig-services.models.providers.Lucee6Server' { 12 | 13 | /** 14 | * Constructor 15 | */ 16 | function init() { 17 | // Call super first, then override 18 | super.init(); 19 | 20 | // This is where said config file is stored inside the server home 21 | setConfigRelativePathWithinServerHome( '/' ); 22 | setFormat( 'luceeWeb' ); 23 | setVersion( '6' ); 24 | 25 | return this; 26 | } 27 | 28 | } -------------------------------------------------------------------------------- /tests/resources/adobe2018/serverHome/WEB-INF/cfusion/lib/neo-mail.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | {neo.rootdir}/Mail/Undelivr 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | {neo.rootdir}/Mail/Spool 16 | 17 | 18 | warning 19 | 20 | 21 | 15.0 22 | 23 | 24 | 25.0 25 | 26 | 27 | 60.0 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /tests/resources/adobe9/serverHome/WEB-INF/cfusion/lib/neo-mail.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | {neo.rootdir}/Mail/Spool 7 | 8 | 9 | 25.0 10 | 11 | 12 | 15.0 13 | 14 | 15 | 16 | 17 | 18 | 60.0 19 | 20 | 21 | warning 22 | 23 | 24 | 25 | 26 | 27 | {neo.rootdir}/Mail/Undelivr 28 | 29 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /tests/BaseTest.cfc: -------------------------------------------------------------------------------- 1 | /** 2 | ********************************************************************************* 3 | * Copyright Since 2017 CommandBox by Ortus Solutions, Corp 4 | * www.ortussolutions.com 5 | ******************************************************************************** 6 | * @author Brad Wood 7 | */ 8 | component extends="coldbox.system.testing.BaseTestCase" appMapping="/tests" { 9 | 10 | /*********************************** LIFE CYCLE Methods ***********************************/ 11 | 12 | function beforeAll(){ 13 | structDelete( application, getColdboxAppKey() ); 14 | super.beforeAll(); 15 | //ApplicationStop(); 16 | if( directoryExists( '/tests/resources/tmp' ) ) { 17 | directoryDelete( '/tests/resources/tmp', true ); 18 | directoryCreate( '/tests/resources/tmp' ); 19 | fileWrite( '/tests/resources/tmp/.gitignore', '*#chr( 10 )#!/.gitignore' ); 20 | } 21 | controller.getModuleService().registerAndActivateModule( 'cfconfig', 'root' ); 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /resources/adobe9/neo-search.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 9953.0 7 | 8 | 9 | localhost 10 | 11 | 12 | ColdFusionK2_server1 13 | 14 | 15 | 9923.0 16 | 17 | 18 | 9963.0 19 | 20 | 21 | ColdFusionK2_indexserver1 22 | 23 | 24 | ColdFusionK2 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /resources/adobe10/neo-search.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 9953.0 7 | 8 | 9 | localhost 10 | 11 | 12 | ColdFusionK2_server1 13 | 14 | 15 | 9923.0 16 | 17 | 18 | 9963.0 19 | 20 | 21 | ColdFusionK2_indexserver1 22 | 23 | 24 | ColdFusionK2 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /resources/adobe11/neo-search.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 9953.0 7 | 8 | 9 | localhost 10 | 11 | 12 | ColdFusionK2_server1 13 | 14 | 15 | 9923.0 16 | 17 | 18 | 9963.0 19 | 20 | 21 | ColdFusionK2_indexserver1 22 | 23 | 24 | ColdFusionK2 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /resources/adobe2016/neo-search.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 9953.0 7 | 8 | 9 | localhost 10 | 11 | 12 | ColdFusionK2_server1 13 | 14 | 15 | 9923.0 16 | 17 | 18 | 9963.0 19 | 20 | 21 | ColdFusionK2_indexserver1 22 | 23 | 24 | ColdFusionK2 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /resources/adobe2018/neo-search.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 9953.0 7 | 8 | 9 | localhost 10 | 11 | 12 | ColdFusionK2_server1 13 | 14 | 15 | 9923.0 16 | 17 | 18 | 9963.0 19 | 20 | 21 | ColdFusionK2_indexserver1 22 | 23 | 24 | ColdFusionK2 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /resources/adobe2020/neo-search.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 9953.0 7 | 8 | 9 | localhost 10 | 11 | 12 | ColdFusionK2_server1 13 | 14 | 15 | 9923.0 16 | 17 | 18 | 9963.0 19 | 20 | 21 | ColdFusionK2_indexserver1 22 | 23 | 24 | ColdFusionK2 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /resources/adobe2021/neo-search.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 9953.0 7 | 8 | 9 | localhost 10 | 11 | 12 | ColdFusionK2_server1 13 | 14 | 15 | 9923.0 16 | 17 | 18 | 9963.0 19 | 20 | 21 | ColdFusionK2_indexserver1 22 | 23 | 24 | ColdFusionK2 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /resources/adobe2023/neo-search.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 9953.0 7 | 8 | 9 | localhost 10 | 11 | 12 | ColdFusionK2_server1 13 | 14 | 15 | 9923.0 16 | 17 | 18 | 9963.0 19 | 20 | 21 | ColdFusionK2_indexserver1 22 | 23 | 24 | ColdFusionK2 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /resources/adobe2025/neo-search.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 9953.0 7 | 8 | 9 | localhost 10 | 11 | 12 | ColdFusionK2_server1 13 | 14 | 15 | 9923.0 16 | 17 | 18 | 9963.0 19 | 20 | 21 | ColdFusionK2_indexserver1 22 | 23 | 24 | ColdFusionK2 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /resources/adobe10/neo-mail.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | {neo.rootdir}/Mail/Spool 7 | 8 | 9 | 25.0 10 | 11 | 12 | 15.0 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 60.0 22 | 23 | 24 | warning 25 | 26 | 27 | 28 | 29 | 30 | {neo.rootdir}/Mail/Undelivr 31 | 32 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /resources/adobe11/neo-mail.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | {neo.rootdir}/Mail/Spool 7 | 8 | 9 | 25.0 10 | 11 | 12 | 15.0 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 60.0 22 | 23 | 24 | warning 25 | 26 | 27 | 28 | 29 | 30 | {neo.rootdir}/Mail/Undelivr 31 | 32 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /resources/adobe9/neo-mail.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | {neo.rootdir}/Mail/Spool 7 | 8 | 9 | 25.0 10 | 11 | 12 | 15.0 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 60.0 22 | 23 | 24 | warning 25 | 26 | 27 | 28 | 29 | 30 | {neo.rootdir}/Mail/Undelivr 31 | 32 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /resources/adobe2016/neo-mail.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | {neo.rootdir}/Mail/Spool 7 | 8 | 9 | 25.0 10 | 11 | 12 | 15.0 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 60.0 22 | 23 | 24 | warning 25 | 26 | 27 | 28 | 29 | 30 | {neo.rootdir}/Mail/Undelivr 31 | 32 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /resources/adobe2018/neo-mail.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | {neo.rootdir}/Mail/Spool 7 | 8 | 9 | 25.0 10 | 11 | 12 | 15.0 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 60.0 22 | 23 | 24 | warning 25 | 26 | 27 | 28 | 29 | 30 | {neo.rootdir}/Mail/Undelivr 31 | 32 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /resources/adobe2020/neo-mail.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | {neo.rootdir}/Mail/Spool 7 | 8 | 9 | 25.0 10 | 11 | 12 | 15.0 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 60.0 22 | 23 | 24 | warning 25 | 26 | 27 | 28 | 29 | 30 | {neo.rootdir}/Mail/Undelivr 31 | 32 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /resources/adobe2021/neo-mail.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | {neo.rootdir}/Mail/Spool 7 | 8 | 9 | 25.0 10 | 11 | 12 | 15.0 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 60.0 22 | 23 | 24 | warning 25 | 26 | 27 | 28 | 29 | 30 | {neo.rootdir}/Mail/Undelivr 31 | 32 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /resources/adobe2023/neo-mail.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | {neo.rootdir}/Mail/Spool 7 | 8 | 9 | 25.0 10 | 11 | 12 | 15.0 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 60.0 22 | 23 | 24 | warning 25 | 26 | 27 | 28 | 29 | 30 | {neo.rootdir}/Mail/Undelivr 31 | 32 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /resources/adobe2025/neo-mail.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | {neo.rootdir}/Mail/Spool 7 | 8 | 9 | 25.0 10 | 11 | 12 | 15.0 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 60.0 22 | 23 | 24 | warning 25 | 26 | 27 | 28 | 29 | 30 | {neo.rootdir}/Mail/Undelivr 31 | 32 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /tests/resources/adobe10/serverHome/WEB-INF/cfusion/lib/neo-search.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 9953.0 7 | 8 | 9 | localhost 10 | 11 | 12 | ColdFusionK2_server1 13 | 14 | 15 | 9923.0 16 | 17 | 18 | 9963.0 19 | 20 | 21 | ColdFusionK2_indexserver1 22 | 23 | 24 | ColdFusionK2 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /tests/resources/adobe11/serverHome/WEB-INF/cfusion/lib/neo-search.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 9953.0 7 | 8 | 9 | localhost 10 | 11 | 12 | ColdFusionK2_server1 13 | 14 | 15 | 9923.0 16 | 17 | 18 | 9963.0 19 | 20 | 21 | ColdFusionK2_indexserver1 22 | 23 | 24 | ColdFusionK2 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /tests/resources/adobe2016/serverHome/WEB-INF/cfusion/lib/neo-search.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 9953.0 7 | 8 | 9 | localhost 10 | 11 | 12 | ColdFusionK2_server1 13 | 14 | 15 | 9923.0 16 | 17 | 18 | 9963.0 19 | 20 | 21 | ColdFusionK2_indexserver1 22 | 23 | 24 | ColdFusionK2 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /tests/resources/adobe2018/serverHome/WEB-INF/cfusion/lib/neo-search.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 9953.0 7 | 8 | 9 | localhost 10 | 11 | 12 | ColdFusionK2_server1 13 | 14 | 15 | 9923.0 16 | 17 | 18 | 9963.0 19 | 20 | 21 | ColdFusionK2_indexserver1 22 | 23 | 24 | ColdFusionK2 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /tests/resources/adobe9/serverHome/WEB-INF/cfusion/lib/neo-search.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 9953.0 7 | 8 | 9 | localhost 10 | 11 | 12 | ColdFusionK2_server1 13 | 14 | 15 | 9923.0 16 | 17 | 18 | 9963.0 19 | 20 | 21 | ColdFusionK2_indexserver1 22 | 23 | 24 | ColdFusionK2 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /resources/adobe11/neo-security.xml: -------------------------------------------------------------------------------- 1 |
admin<InvalidTagfalsetrue -------------------------------------------------------------------------------- /resources/adobe2016/neo-security.xml: -------------------------------------------------------------------------------- 1 |
admin<InvalidTagfalsetrue -------------------------------------------------------------------------------- /resources/adobe2018/neo-security.xml: -------------------------------------------------------------------------------- 1 |
admin<InvalidTagfalsetrue -------------------------------------------------------------------------------- /resources/adobe2020/neo-security.xml: -------------------------------------------------------------------------------- 1 |
admin<InvalidTagfalsetrue -------------------------------------------------------------------------------- /resources/adobe2021/neo-security.xml: -------------------------------------------------------------------------------- 1 |
admin<InvalidTagfalsetrue -------------------------------------------------------------------------------- /resources/adobe2023/neo-security.xml: -------------------------------------------------------------------------------- 1 |
admin<InvalidTagfalsetrue -------------------------------------------------------------------------------- /resources/adobe2025/neo-security.xml: -------------------------------------------------------------------------------- 1 |
admin<InvalidTagfalsetrue -------------------------------------------------------------------------------- /resources/adobe2016/neo-metric.xml: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 500 5 | 6 | 7 | 5 8 | 9 | 10 | 10 11 | 12 | 13 | 50 14 | 15 | 200 16 | 17 | 18 | true 19 | 20 | 21 | 7995 22 | 23 | 24 | 8500 25 | 26 | 27 | false 28 | 29 | 30 | 1.0 31 | 32 | 33 | false 34 | 35 | 36 | 60.0 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /resources/adobe2018/neo-metric.xml: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 500 5 | 6 | 7 | 5 8 | 9 | 10 | 10 11 | 12 | 13 | 50 14 | 15 | 200 16 | 17 | 18 | true 19 | 20 | 21 | 7995 22 | 23 | 24 | 8500 25 | 26 | 27 | false 28 | 29 | 30 | 1.0 31 | 32 | 33 | false 34 | 35 | 36 | 60.0 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /resources/adobe2020/neo-metric.xml: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 500 5 | 6 | 7 | 5 8 | 9 | 10 | 10 11 | 12 | 13 | 50 14 | 15 | 200 16 | 17 | 18 | true 19 | 20 | 21 | 7995 22 | 23 | 24 | 8500 25 | 26 | 27 | false 28 | 29 | 30 | 1.0 31 | 32 | 33 | false 34 | 35 | 36 | 60.0 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /resources/adobe2021/neo-metric.xml: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 500 5 | 6 | 7 | 5 8 | 9 | 10 | 10 11 | 12 | 13 | 50 14 | 15 | 200 16 | 17 | 18 | true 19 | 20 | 21 | 7995 22 | 23 | 24 | 8500 25 | 26 | 27 | false 28 | 29 | 30 | 1.0 31 | 32 | 33 | false 34 | 35 | 36 | 60.0 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /resources/adobe2023/neo-metric.xml: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 500 5 | 6 | 7 | 5 8 | 9 | 10 | 10 11 | 12 | 13 | 50 14 | 15 | 200 16 | 17 | 18 | true 19 | 20 | 21 | 7995 22 | 23 | 24 | 8500 25 | 26 | 27 | false 28 | 29 | 30 | 1.0 31 | 32 | 33 | false 34 | 35 | 36 | 60.0 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /resources/adobe2025/neo-metric.xml: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 500 5 | 6 | 7 | 5 8 | 9 | 10 | 10 11 | 12 | 13 | 50 14 | 15 | 200 16 | 17 | 18 | true 19 | 20 | 21 | 7995 22 | 23 | 24 | 8500 25 | 26 | 27 | false 28 | 29 | 30 | 1.0 31 | 32 | 33 | false 34 | 35 | 36 | 60.0 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /tests/resources/adobe2016/serverHome/WEB-INF/cfusion/lib/neo-metric.xml: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 500 5 | 6 | 7 | 5 8 | 9 | 10 | 10 11 | 12 | 13 | 50 14 | 15 | 200 16 | 17 | 18 | true 19 | 20 | 21 | 7995 22 | 23 | 24 | 8500 25 | 26 | 27 | false 28 | 29 | 30 | 1.0 31 | 32 | 33 | false 34 | 35 | 36 | 60.0 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /tests/resources/adobe2018/serverHome/WEB-INF/cfusion/lib/neo-metric.xml: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 500 5 | 6 | 7 | 5 8 | 9 | 10 | 10 11 | 12 | 13 | 50 14 | 15 | 200 16 | 17 | 18 | true 19 | 20 | 21 | 7995 22 | 23 | 24 | 8500 25 | 26 | 27 | false 28 | 29 | 30 | 1.0 31 | 32 | 33 | false 34 | 35 | 36 | 60.0 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /models/providers/Lucee4Server.cfc: -------------------------------------------------------------------------------- 1 | /** 2 | ********************************************************************************* 3 | * Copyright Since 2017 CommandBox by Ortus Solutions, Corp 4 | * www.ortussolutions.com 5 | ******************************************************************************** 6 | * @author Brad Wood 7 | * 8 | * I represent the behavior of reading and writing CF engine config in the format compatible with a Lucee 4.x server context 9 | * I extend the BaseConfig class, which represents the data itself. 10 | */ 11 | component accessors=true extends='cfconfig-services.models.BaseLucee' { 12 | 13 | /** 14 | * Constructor 15 | */ 16 | function init() { 17 | super.init(); 18 | 19 | // Used when writing out a Lucee server context config file from the generic config 20 | setConfigFileTemplate( expandPath( '/cfconfig-services/resources/lucee4/lucee-server-base.xml' ) ); 21 | 22 | // This is the file name used by this config file 23 | setConfigFileName( 'lucee-server.xml' ); 24 | // This is where said config file is stored inside the server home 25 | setConfigRelativePathWithinServerHome( '/context/' ); 26 | 27 | setFormat( 'luceeServer' ); 28 | setVersion( '4' ); 29 | 30 | return this; 31 | } 32 | } --------------------------------------------------------------------------------