Skip to content

Commit 931969d

Browse files
authored
🔒 Fix missing HTTPS on wikipedia.org links (#1033)
1 parent 21aeeba commit 931969d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
```luceescript+trycf
22
3-
html_paragraph = "<p>The Lucee project is led by the Lucee Association&nbsp;Switzerland a non-profit&nbsp;<a href=""http://en.wikipedia.org/wiki/Swiss_Verein"">swiss association</a>. A growing project which is committed to the success of its community by delivering quality software and a nurturing&nbsp;and supportive environment for developers to get involved.</p>";
3+
html_paragraph = "<p>The Lucee project is led by the Lucee Association&nbsp;Switzerland a non-profit&nbsp;<a href=""https://en.wikipedia.org/wiki/Swiss_Verein"">swiss association</a>. A growing project which is committed to the success of its community by delivering quality software and a nurturing&nbsp;and supportive environment for developers to get involved.</p>";
44
writeOutput(html_paragraph);
55
66
```

docs/04.guides/08.lucee-5/12.osgi/page.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ menuTitle: OSGi
99

1010
## OSGi ##
1111

12-
**Lucee 5 is completely [OSGi](http://en.wikipedia.org/wiki/OSGi) based, OSGi is the defacto standard in most Java enterprise environments, to manage bundles (jar libraries) used by the environment.**
12+
**Lucee 5 is completely [OSGi](https://en.wikipedia.org/wiki/OSGi) based, OSGi is the defacto standard in most Java enterprise environments, to manage bundles (jar libraries) used by the environment.**
1313

1414
This means all libraries used are managed by Lucee itself as OSGi bundles, but this does not end with 3rd party libraries. Lucee handles it's own core as an OSGi bundle, Lucee archives (.lar files) and even our Java based extensions are all OSGi based.
1515

docs/04.guides/08.lucee-5/chapter.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ This brings Lucee and CFML to a whole new level! <https://download.lucee.org>.
1313

1414
Lucee 5 has had a complete overhaul under the hood. A lot of the existing functionality has been completely re-worked, as well as extending the interfaces to the engine to make way for a lot of possible functionality in the future.
1515

16-
* [[lucee-5-osgi]] - Lucee 5 is completely [OSGi](http://en.wikipedia.org/wiki/OSGi) based, OSGi is the defacto standard in most Java enterprise environments, to manage bundles (jar libraries) used by the environment.
16+
* [[lucee-5-osgi]] - Lucee 5 is completely [OSGi](https://en.wikipedia.org/wiki/OSGi) based, OSGi is the defacto standard in most Java enterprise environments, to manage bundles (jar libraries) used by the environment.
1717

1818
* Modularity - CFML is come a long way over the years and along the way it has collected a lot of very useful functionality, but every bit of functionality you are not using is a burden. With Lucee 5, and in part thanks to OSGi, we have been able to moved a lot of functionality out of the core and into extensions. All these extensions are installed by default, so you have the same experience as you had before out of the box. However now you can uninstall what you are not using to reduce Lucee's footprint. Functionality that has so far been moved to extensions are Hibernate (ORM), Lucene (Search), all datasource drivers, S3 Resource, PDF/Document tags and chart tags. This is simply the beginning and we will be moving more functionality out into extensions over the coming months.
1919

20-
* Scripting (JSR 223) - Lucee 5 fully supports the [Java Scripting](http://en.wikipedia.org/wiki/Scripting_for_the_Java_Platform) standard. Java scripting allows you to use Lucee in places you could not previously. For example, the interface used by the Lucee build process within ANT, to run the CFML testcases and the CFML code has full access to the ANT environment.
20+
* Scripting (JSR 223) - Lucee 5 fully supports the [Java Scripting](https://en.wikipedia.org/wiki/Scripting_for_the_Java_Platform) standard. Java scripting allows you to use Lucee in places you could not previously. For example, the interface used by the Lucee build process within ANT, to run the CFML testcases and the CFML code has full access to the ANT environment.
2121

2222
* [[lucee-5-class-updating]] - Previously an optional feature in Lucee 4, class updating is now an integral part of Lucee 5. Lucee 5 is able to update existing classes and this has a large impact on memory consumption, particularly in environments where a lot of CFML templates are used. This feature no longer requires any configuration and is "always on".
2323

docs/04.guides/12.deploying-lucee-server-apps/01.securing-lucee-server-apps/page.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ And then there's [Realms and whatnot](https://docs.oracle.com/javaee/6/tutorial/
6060

6161
## Other options ##
6262

63-
There's the WS-Security standard, with a project implementing this for CFML here <http://wss4cf.riaforge.org/> as well. Check out [OWASP](https://www.owasp.org/index.php/ColdFusion_Security_Resources). Terminology: [CSRF](http://en.wikipedia.org/wiki/Cross-site_request_forgery) [XSS](http://en.wikipedia.org/wiki/Cross-site_scripting) [SQL Injection](http://en.wikipedia.org/wiki/SQL_injection)
63+
There's the WS-Security standard, with a project implementing this for CFML here <http://wss4cf.riaforge.org/> as well. Check out [OWASP](https://www.owasp.org/index.php/ColdFusion_Security_Resources). Terminology: [CSRF](https://en.wikipedia.org/wiki/Cross-site_request_forgery) [XSS](https://en.wikipedia.org/wiki/Cross-site_scripting) [SQL Injection](https://en.wikipedia.org/wiki/SQL_injection)
6464

6565
### More Resources ###
6666

0 commit comments

Comments
 (0)