You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ra...@apache.org on 2016/09/06 14:35:50 UTC

svn commit: r1759438 - in /sling/site/trunk/content: .htaccess news/sling-ide-tooling-11-released.mdtext news/sling-launchpad-8-released.mdtext

Author: radu
Date: Tue Sep  6 14:35:50 2016
New Revision: 1759438

URL: http://svn.apache.org/viewvc?rev=1759438&view=rev
Log:
SLING-6028 - Replace Sightly references with HTL in both code and documentation

* reverted changes to sling-ide-tooling-11-released and sling-launchpad-8-released
* added permanent redirect from /documentation/bundles/scripting/scripting-sightly.html to /documentation/bundles/scripting/scripting-htl.html

Modified:
    sling/site/trunk/content/.htaccess
    sling/site/trunk/content/news/sling-ide-tooling-11-released.mdtext
    sling/site/trunk/content/news/sling-launchpad-8-released.mdtext

Modified: sling/site/trunk/content/.htaccess
URL: http://svn.apache.org/viewvc/sling/site/trunk/content/.htaccess?rev=1759438&r1=1759437&r2=1759438&view=diff
==============================================================================
--- sling/site/trunk/content/.htaccess (original)
+++ sling/site/trunk/content/.htaccess Tue Sep  6 14:35:50 2016
@@ -5,3 +5,4 @@ Redirect Permanent /downloads.html /down
 Redirect Permanent /media.html /
 Redirect Permanent /plugins.html /
 Redirect Permanent /documentation/the-sling-engine/eventing-and-jobs.html /documentation/bundles/apache-sling-eventing-and-job-handling.html
+Redirect Permanent /documentation/bundles/scripting/scripting-sightly.html /documentation/bundles/scripting/scripting-htl.html

Modified: sling/site/trunk/content/news/sling-ide-tooling-11-released.mdtext
URL: http://svn.apache.org/viewvc/sling/site/trunk/content/news/sling-ide-tooling-11-released.mdtext?rev=1759438&r1=1759437&r2=1759438&view=diff
==============================================================================
--- sling/site/trunk/content/news/sling-ide-tooling-11-released.mdtext (original)
+++ sling/site/trunk/content/news/sling-ide-tooling-11-released.mdtext Tue Sep  6 14:35:50 2016
@@ -2,21 +2,20 @@ Title: Apache Sling IDE Tooling 1.1 rele
 
 Here are some of the more noteworthy things available in this release.
 
-HTL support
+Sightly support
 ==
 
-Support for HTL (formerly known as Sightly) has been added through an additional, optional, feature named
-_Sling IDE Tools - Sightly Integration_.
+Sightly support has been added through an additional, optional, feature named _Sling IDE Tools - Sightly Integration_.
 
 This feature provides the following enhancements:
 
 * auto-completion of tag named and attributes names in the HTML Editor
-* wizards for creating new HTL scripts and Use Classes ( Java and Javascript )
-* HTL-aware validation for HTML files
+* wizards for creating new Sightly scripts and Use Classes ( Java and Javascript )
+* Sightly-aware validation for HTML files
 
-![HTL Editor](../documentation/development/ide-tooling/sightly-editor.png)
+![Sightly Editor](../documentation/development/ide-tooling/sightly-editor.png)
 
-These enhancements are enabled once the HTL facet is added to a project. This is done automatically when converting a project to content project, but can also be done manually via the project properties, under the _Project Facets_ page.
+These enhancements are enabled once the Sightly facet is added to a project. This is done automatically when converting a project to content project, but can also be done manually via the project properties, under the _Project Facets_ page.
 
 Automatic configuration of debug classpath based on the bundles deployed on the server
 ==

Modified: sling/site/trunk/content/news/sling-launchpad-8-released.mdtext
URL: http://svn.apache.org/viewvc/sling/site/trunk/content/news/sling-launchpad-8-released.mdtext?rev=1759438&r1=1759437&r2=1759438&view=diff
==============================================================================
--- sling/site/trunk/content/news/sling-launchpad-8-released.mdtext (original)
+++ sling/site/trunk/content/news/sling-launchpad-8-released.mdtext Tue Sep  6 14:35:50 2016
@@ -12,22 +12,18 @@ Provisioning model
 
 Sling is now provisioned using a simple, text-based, model. See See [the Sling Provisioning Model documentation](http://sling.apache.org/documentation/development/slingstart.html) for details.
 
-HTL
+Sightly
 ---
 
-The HTML Template Language, similar to JSP (Java Server Pages) and ESP (ECMAScript Server Pages), is a new server-side templating language
-whose purpose is to offer a highly productive enterprise-level web framework that increases security, and allows web developers without
-Java knowledge to better participate in Sling projects.
-
-The cornerstones of HTL are:
-
-- Secure by default: HTL automatically filters and escapes all variables being output to the presentation layer to prevent
-cross-site-scripting (XSS) vulnerabilities
-- Supports separation of concerns: The expressiveness of the HTL template language is purposely limited, in order to make sure that a real programming language is used to express the corresponding presentation logic
-- Built on HTML 5: An HTL file is itself a valid HTML5 file. All HTL-specific syntax is expressed either within a data attribute, or within
-HTML text.
+Sightly is an HTML templating language, similar to JSP (Java Server Pages) and ESP (ECMAScript Server Pages). The name “Sightly” (meaning “pleasing to the eye”) highlights its focus on keeping your markup beautiful, and thus maintainable, once made dynamic.
 
-See [the HTML Template Language Specification](https://github.com/Adobe-Marketing-Cloud/htl-spec/blob/master/SPECIFICATION.md) for details.
+The cornerstones of Sightly are:
+
+- Secure by default: Sightly automatically filters and escapes all variables being output to the presentation layer to prevent cross-site-scripting (XSS) vulnerabilities
+- Supports separation of concerns: The expressiveness of the Sightly template language is purposely limited, in order to make sure that a real programming language is used to express the corresponding presentation logic
+- Built on HTML 5: A Sightly file is itself a valid HTML5 file. All Sightly-specific syntax is expressed either within a data attribute, or within HTML text.
+
+See [the Sightly HTML Templating Language Specification](https://github.com/Adobe-Marketing-Cloud/htl-spec/blob/master/SPECIFICATION.md) for details.
 
 Versioning support in the Resource API
 ---