You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by we...@apache.org on 2012/12/05 13:36:25 UTC

svn commit: r1417389 - in /myfaces/extensions/scripting/trunk/src/site/mdtext: download.mdtext installation.mdtext mojarra.mdtext owbSpring.mdtext

Author: werpu
Date: Wed Dec  5 12:36:24 2012
New Revision: 1417389

URL: http://svn.apache.org/viewvc?rev=1417389&view=rev
Log:
EXTSCRIPT-185
updating mdtext

Added:
    myfaces/extensions/scripting/trunk/src/site/mdtext/owbSpring.mdtext
Removed:
    myfaces/extensions/scripting/trunk/src/site/mdtext/download.mdtext
Modified:
    myfaces/extensions/scripting/trunk/src/site/mdtext/installation.mdtext
    myfaces/extensions/scripting/trunk/src/site/mdtext/mojarra.mdtext

Modified: myfaces/extensions/scripting/trunk/src/site/mdtext/installation.mdtext
URL: http://svn.apache.org/viewvc/myfaces/extensions/scripting/trunk/src/site/mdtext/installation.mdtext?rev=1417389&r1=1417388&r2=1417389&view=diff
==============================================================================
--- myfaces/extensions/scripting/trunk/src/site/mdtext/installation.mdtext (original)
+++ myfaces/extensions/scripting/trunk/src/site/mdtext/installation.mdtext Wed Dec  5 12:36:24 2012
@@ -21,7 +21,7 @@
 #Navigation Top
  [<<Back to the Start Page](./index.html)
  or
- [On to the General Users Guide>>](./usingGeneral.html)
+ [On to the Openwebbeans Spring Guide >>](./owbSpring.html)
  
 #General information
  This page covers the general installation and integration process, it does not
@@ -140,7 +140,7 @@
          <dependency>
             <groupId>org.apache.myfaces.extensions.scripting</groupId>
             <artifactId>extscript-myfaces20-bundle</artifactId>
-            <version>1.0.4</version>
+            <version>1.0.5</version>
          </dependency>
  Additional language libraries
  
@@ -169,7 +169,7 @@
                          <dependency>
                             <groupId>org.apache.myfaces.extensions.scripting</groupId>
                             <artifactId>extscript-cdi</artifactId>
-                            <version>1.0.4</version>
+                            <version>1.0.5</version>
                         </dependency>
                      
  
@@ -374,6 +374,6 @@
 #Navigation Bottom
  [&lt;&lt;Back to the Start Page](./index.html)
  or
- [On to the General Users Guide&gt;&gt;](./usingGeneral.html)
+ [On to the Openwebbeans Spring Guide &gt;&gt;](./owbSpring.html)
  
  

Modified: myfaces/extensions/scripting/trunk/src/site/mdtext/mojarra.mdtext
URL: http://svn.apache.org/viewvc/myfaces/extensions/scripting/trunk/src/site/mdtext/mojarra.mdtext?rev=1417389&r1=1417388&r2=1417389&view=diff
==============================================================================
--- myfaces/extensions/scripting/trunk/src/site/mdtext/mojarra.mdtext (original)
+++ myfaces/extensions/scripting/trunk/src/site/mdtext/mojarra.mdtext Wed Dec  5 12:36:24 2012
@@ -19,7 +19,7 @@
  
  
 #General Information
- As of Ext-Scripting 1.0.5 basic Mojarra support has been implemented.
+ As of Ext-Scripting 1.0.6 basic Mojarra support has been implemented.
  For now not the entire spectrum of services Ext-Scripting provides are enabled for Mojarra
  but basic Ext-Scripting works out of the box.
  Following compatibility diagram shows what
@@ -38,7 +38,6 @@
  support which utilizes the same paths. (This was a design decision to keep Mojarra compatibility
  at a time Mojarra support was not really under discussion)
  So here is an example configuration for Mojarra:
-
     <web-app xmlns="http://java.sun.com/xml/ns/javaee"
              xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
              xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"

Added: myfaces/extensions/scripting/trunk/src/site/mdtext/owbSpring.mdtext
URL: http://svn.apache.org/viewvc/myfaces/extensions/scripting/trunk/src/site/mdtext/owbSpring.mdtext?rev=1417389&view=auto
==============================================================================
--- myfaces/extensions/scripting/trunk/src/site/mdtext/owbSpring.mdtext (added)
+++ myfaces/extensions/scripting/trunk/src/site/mdtext/owbSpring.mdtext Wed Dec  5 12:36:24 2012
@@ -0,0 +1,137 @@
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+ 
+ 
+#Navigation Top
+#Navigation Top
+ [&lt;&lt;Installation Guide](./installation.html)
+ or
+ [On to the General Users Guide&gt;&gt;](./usingGeneral.html)
+ 
+ 
+#OpenWebbeans
+## Introduction
+ As of Version 1.0.4 Ext-Scripting has introduced basic openwebbeans support.
+ This support is considered to be experimental so use it with care.
+ 
+ This means you can define CDI Beans within the supported scripting languages
+ and you can provide dynamic reloading (in a more simplified manner)
+ to OWB.
+ 
+ The reloading is different to standard JSF due to CDI limitations, in case
+ of a changed bean the entire container is reloaded instead of the bean
+ and its dependencies. This has to be taken into consideration if you use
+ the OWB support module.
+ 
+ Also Ext-Scripting OWB is an extension module, it is not part of the core distribution you get
+ if you include theextscript-myfaces20-bundle.
+ So a separate include of the OWB support
+ module extscript-cdi
+ is needed.
+ 
+## Setup
+ To setup the OWB support module, you have to drop the extscript-cdi.jar into your
+ WEB-INF/lib or you have to add following code into maven.
+    <dependency>
+        <groupId>org.apache.myfaces.extensions.scripting</groupId>
+        <artifactId>extscript-cdi</artifactId>
+        <version>1.0.5</version>
+    </dependency>
+                    
+ And of course OpenWebbeans must be properly present, either via the app server
+ or simply by a Maven include.
+ No further setup needs to be done for the OWB integration, all other configuration
+ entries stay the same.
+ 
+## Example Project
+ An Example Kickstarter project has been provided which shows the capabilities of the
+ plugin.
+ You can use it as kickstarter for your own OWB based Ext-Scripting projects.
+ It can be found under
+ extscript-examples/cdi-example
+ from the root
+ dir of the project.
+ You can start it with mvn
+ jetty:run-exploded
+ and you can edit the files in the
+ target/&lt;webappname;gt;/WEB-INF...
+ folder on the fly.
+ 
+ 
+#Spring
+## Introduction
+ As of version 1.0.5 basic spring support has been provided to Ext-Scripting.
+ This support is considered to be experimental so use it with care.
+ 
+ Spring support means you can define Spring Beans within the supported scripting languages
+ and you can provide dynamic reloading to Spring.
+ 
+ Also Spring support is an extension module, it is not part of the core distribution you get
+ if you include theextscript-myfaces20-bundle.
+ So a separate include of the Spring support
+ module extscript-spring
+ 
+## setup
+ To setup the Spring support you have to add following dependencies:
+ 
+ Either the extscript-spring.jar to your project additionally to the
+ Ext-Script bundle jar.
+ 
+ Or add following to your Maven configuration file:
+    <dependency>
+        <groupId>org.apache.myfaces.extensions.scripting</groupId>
+        <artifactId>extscript-spring</artifactId>
+        <version>1.0.5</version>
+    </dependency>
+                    
+ And of course Spring must be properly present, either via the app server
+ or simply by a Maven include.
+ 
+ Also following parameter must be added to your web.xml:
+    <listener>
+        <!-- this listener class enables our spring reloading -->
+        <listener-class>
+            org.apache.myfaces.extensions.scripting.spring.context.CompilationAwareContextLoaderListener
+        </listener-class>
+    </listener>
+                    
+ 
+## Example Project
+ An Example Kickstarter project has been provided which shows the capabilities of the
+ plugin.
+ You can use it as kickstarter for your own OWB based Ext-Scripting projects.
+ It can be found under
+ extscript-examples/spring-example
+ from the root
+ dir of the project.
+ You can start it with mvn
+ jetty:run-exploded
+ and you can edit the files located under the
+ target/&lt;webappname;gt;/WEB-INF...
+ folder on the fly.
+ 
+ 
+#Navigation Bottom
+#Navigation Top
+ [&lt;&lt;Installation Guide](./installation.html)
+ or
+ [On to the General Users Guide&gt;&gt;](./usingGeneral.html)
+ 
+ 
+