You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by de...@apache.org on 2017/09/16 05:46:43 UTC

[myfaces-tobago] tag tobago-1.0.12 created (now 0971ab4)

This is an automated email from the ASF dual-hosted git repository.

deki pushed a change to tag tobago-1.0.12
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git.


      at 0971ab4  (commit)
This tag includes the following new commits:

     new 36dfa61  [maven-scm] copy for tag tobago-1.0.12
     new a2f7949  prepare release
     new 0971ab4  Backport TOBAGO-517: made popup background cover whole client area in IE and SELECT controls

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


-- 
To stop receiving notification emails like this one, please contact
['"commits@myfaces.apache.org" <co...@myfaces.apache.org>'].

[myfaces-tobago] 03/03: Backport TOBAGO-517: made popup background cover whole client area in IE and SELECT controls

Posted by de...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

deki pushed a commit to tag tobago-1.0.12
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git

commit 0971ab473ceec48c831e3efab02c0f6820a7f109
Author: Bernd Bohmann <bo...@apache.org>
AuthorDate: Thu Oct 18 18:37:31 2007 +0000

    Backport TOBAGO-517: made popup background cover whole client area in IE and SELECT controls
---
 .../tobago/renderkit/html/HtmlAttributes.java      |  1 +
 example/demo/src/main/webapp/reference/popup.jsp   | 38 ++++++++++++++++++++--
 .../scarborough/standard/tag/PopupRenderer.java    | 33 ++++++++++++++-----
 .../html/scarborough/standard/style/style.css      |  3 +-
 .../html/standard/standard/script/tobago.js        | 12 +++----
 5 files changed, 69 insertions(+), 18 deletions(-)

diff --git a/core/src/main/java/org/apache/myfaces/tobago/renderkit/html/HtmlAttributes.java b/core/src/main/java/org/apache/myfaces/tobago/renderkit/html/HtmlAttributes.java
index 1b628dd..f5286f1 100644
--- a/core/src/main/java/org/apache/myfaces/tobago/renderkit/html/HtmlAttributes.java
+++ b/core/src/main/java/org/apache/myfaces/tobago/renderkit/html/HtmlAttributes.java
@@ -74,5 +74,6 @@ public final class HtmlAttributes {
   public static final String MAXLENGTH = "maxlength";
   public static final String LABEL = "label";
   public static final String TABINDEX = "tabindex";
+  public static final String FRAMEBORDER = "frameborder";
 }
 
diff --git a/example/demo/src/main/webapp/reference/popup.jsp b/example/demo/src/main/webapp/reference/popup.jsp
index 5ee7305..b339aa7 100644
--- a/example/demo/src/main/webapp/reference/popup.jsp
+++ b/example/demo/src/main/webapp/reference/popup.jsp
@@ -24,7 +24,7 @@
   <jsp:body>
     <tc:box label="Popups">
       <f:facet name="layout">
-        <tc:gridLayout columns="100px;*" rows="fixed;fixed;fixed;fixed;*"/>
+        <tc:gridLayout columns="100px;*" rows="fixed;fixed;fixed;fixed;*;fixed;*"/>
       </f:facet>
 
       <tc:button label="Open">
@@ -70,7 +70,35 @@
         </tc:menu>
       </tc:menuBar>
 
-      <tc:cell/>
+      <tc:button label="Open modeless">
+        <f:facet name="popup">
+          <tc:popup width="300" height="270" id="popup2" modal="false">
+            <tc:box label="Text input">
+              <f:facet name="layout">
+                <tc:gridLayout rows="fixed;*;fixed"/>
+              </f:facet>
+
+              <tx:in label="Field" required="true"/>
+              <tc:cell/>
+              <tc:panel>
+                <f:facet name="layout">
+                  <tc:gridLayout columns="*;fixed;fixed"/>
+                </f:facet>
+                <tc:cell/>
+                <tc:button label="Cancel">
+                  <tc:attribute name="popupClose" value="immediate"/>
+                </tc:button>
+                <tc:button label="Ok">
+                  <tc:attribute name="popupClose" value="afterSubmit"/>
+                </tc:button>
+              </tc:panel>
+
+            </tc:box>
+          </tc:popup>
+        </f:facet>
+      </tc:button>
+
+
       <tc:out value="here is the boolean >>#{reference.bool}<<"/>
 
       <tc:cell/>
@@ -97,6 +125,12 @@
 
       <tc:cell/>
       <tc:cell/>
+      
+      <tc:cell/>
+      <tx:selectOneChoice label="Select"/>
+
+      <tc:cell/>
+      <tc:cell/>
 
     </tc:box>
   </jsp:body>
diff --git a/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/PopupRenderer.java b/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/PopupRenderer.java
index 3cf3ce9..170c923 100644
--- a/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/PopupRenderer.java
+++ b/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/PopupRenderer.java
@@ -27,7 +27,9 @@ import org.apache.commons.logging.LogFactory;
 import static org.apache.myfaces.tobago.TobagoConstants.SUBCOMPONENT_SEP;
 import org.apache.myfaces.tobago.ajax.api.AjaxRenderer;
 import org.apache.myfaces.tobago.ajax.api.AjaxUtils;
+import org.apache.myfaces.tobago.component.ComponentUtil;
 import org.apache.myfaces.tobago.component.UIPopup;
+import org.apache.myfaces.tobago.component.UIPage;
 import org.apache.myfaces.tobago.context.ClientProperties;
 import org.apache.myfaces.tobago.context.ResourceManagerUtil;
 import org.apache.myfaces.tobago.renderkit.LayoutableRendererBase;
@@ -95,20 +97,33 @@ public class PopupRenderer extends LayoutableRendererBase implements AjaxRendere
           + bgImage + "', sizingMethod='scale');", false);
       }
       writer.endElement(HtmlConstants.DIV);
-      if (ClientProperties.getInstance(facesContext).getUserAgent().isMsie()) {
-        writer.startElement(HtmlConstants.IFRAME, component);
-        writer.writeIdAttribute(clientId + SUBCOMPONENT_SEP + HtmlConstants.IFRAME);
-        writer.writeClassAttribute("tobago-popup-iframe tobago-popup-none");
-        writer.writeAttribute(HtmlAttributes.STYLE, contentStyle.toString(), false);
-        writer.writeAttribute(HtmlAttributes.SRC, "javascript:false;", false);
-        writer.endElement(HtmlConstants.IFRAME);
+    }
+    if (ClientProperties.getInstance(facesContext).getUserAgent().isMsie()) {
+      writer.startElement(HtmlConstants.IFRAME, component);
+      writer.writeIdAttribute(clientId + SUBCOMPONENT_SEP + HtmlConstants.IFRAME);
+      writer.writeClassAttribute("tobago-popup-iframe tobago-popup-none");
+      UIPage page = ComponentUtil.findPage(facesContext);
+      final StringBuilder frameSize = new StringBuilder();
+      if (component.isModal()) {
+        // full client area
+        frameSize.append("width: ");
+        frameSize.append(page.getWidth());
+        frameSize.append("; ");
+        frameSize.append("height: ");
+        frameSize.append(page.getHeight());
+        frameSize.append("; ");
+      } else {
+        frameSize.append(contentStyle); // size of the popup
       }
+      writer.writeAttribute(HtmlAttributes.STYLE, frameSize.toString(), false);
+      writer.writeAttribute(HtmlAttributes.SRC, "javascript:false;", false);
+      writer.writeAttribute(HtmlAttributes.FRAMEBORDER, "0", false);
+      writer.endElement(HtmlConstants.IFRAME);
     }
     writer.startElement(HtmlConstants.DIV, component);
     writer.writeIdAttribute(contentDivId);
     writer.writeClassAttribute("tobago-popup-content tobago-popup-none");
 
-
     writer.writeAttribute(HtmlAttributes.STYLE, contentStyle.toString(), false);
   }
 
@@ -121,7 +136,7 @@ public class PopupRenderer extends LayoutableRendererBase implements AjaxRendere
     writer.endElement(HtmlConstants.DIV);
 
     String setupScript = "Tobago.setupPopup('" + clientId + "', '"
-        + component.getLeft() + "', '" + component.getTop() + "');";
+        + component.getLeft() + "', '" + component.getTop() + "', " + component.isModal() + ");";
     writer.writeJavascript(setupScript);
   }
 
diff --git a/theme/scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/style/style.css b/theme/scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/style/style.css
index 1382d7b..ec70c63 100644
--- a/theme/scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/style/style.css
+++ b/theme/scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/style/style.css
@@ -525,11 +525,12 @@ label.tobago-label-inline {
 
 .tobago-popup-iframe {
   z-index: 2;
+  position: absolute;
   width: 100%;
   height: 100%;
-  position: absolute;
   top: 0px;
   left: 0px;
+  filter: progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0);
 }
 
 .tobago-popup-content {
diff --git a/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js b/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js
index 8b758b7..6c8132c 100644
--- a/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js
+++ b/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js
@@ -810,7 +810,7 @@ var Tobago = {
   /**
     * Setup popup size
     */
-  setupPopup: function(id, left, top) {
+  setupPopup: function(id, left, top, modal) {
 //  alert("tobagoSetupPopup('" + id + "', '" + left + "', '"+ top + "')");
     var hidden = Tobago.element(id + Tobago.SUB_COMPONENT_SEP + "hidden");
     if (hidden && hidden.type == "hidden") {
@@ -820,8 +820,8 @@ var Tobago = {
     // extend background into scrollable area
     var background = this.element(id);
     if (background) {
-      background.style.width = document.body.scrollWidth + 'px';
-      background.style.height = document.body.scrollHeight + 'px';
+      background.style.width = Math.max(document.body.scrollWidth, document.body.clientWidth) + 'px';
+      background.style.height = Math.max(document.body.scrollHeight, document.body.clientHeight) + 'px';
       this.popupResizeStub = function() {Tobago.doResizePopupBackground(id);}
       Tobago.addEventListener(window, "resize", this.popupResizeStub);
     }
@@ -863,7 +863,7 @@ var Tobago = {
 
       var iframeId = id + Tobago.SUB_COMPONENT_SEP + "iframe";
       var iframe = this.element(iframeId);
-      if (iframe) {
+      if (iframe && !modal) {
         iframe.style.left = div.style.left;
         iframe.style.top = div.style.top;
       }
@@ -880,8 +880,8 @@ var Tobago = {
   doResizePopupBackground: function(id) {
     var background = Tobago.element(id);
     if (background) {
-      background.style.width = document.body.scrollWidth + 'px';
-      background.style.height = document.body.scrollHeight + 'px';
+      background.style.width = Math.max(document.body.scrollWidth, document.body.clientWidth) + 'px';
+      background.style.height = Math.max(document.body.scrollHeight, document.body.clientHeight) + 'px';
     }
   },
 

-- 
To stop receiving notification emails like this one, please contact
"commits@myfaces.apache.org" <co...@myfaces.apache.org>.

[myfaces-tobago] 01/03: [maven-scm] copy for tag tobago-1.0.12

Posted by de...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

deki pushed a commit to tag tobago-1.0.12
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git

commit 36dfa61a558ddbcaea9f6b2e3169ccf872dbc77d
Author: Bernd Bohmann <bo...@apache.org>
AuthorDate: Mon Oct 15 18:30:45 2007 +0000

    [maven-scm] copy for tag tobago-1.0.12
---
 core/pom.xml                               |  8 +++---
 core/src/site/site.xml                     |  4 +--
 example/addressbook/pom.xml                | 30 ++++------------------
 example/blank/pom.xml                      |  8 +++---
 example/demo/pom.xml                       |  8 +++---
 example/facelets/pom.xml                   |  8 +++---
 example/foreach/pom.xml                    |  8 +++---
 example/nonfacesrequest/pom.xml            |  8 +++---
 example/pom.xml                            |  8 +++---
 example/sandbox/pom.xml                    |  8 +++---
 example/security/pom.xml                   |  8 +++---
 example/test/pom.xml                       |  8 +++---
 example/tobago-example-assembly/pom.xml    |  2 +-
 example/tobago-theme-example/pom.xml       |  8 +++---
 extension/facelets/pom.xml                 |  8 +++---
 extension/fileupload/pom.xml               |  8 +++---
 extension/message-fix/pom.xml              |  8 +++---
 extension/pom.xml                          |  8 +++---
 extension/security/pom.xml                 |  8 +++---
 pom.xml                                    | 41 ++++++++----------------------
 sandbox/pom.xml                            |  8 +++---
 src/site/site.xml                          |  4 +--
 theme/charlotteville/pom.xml               |  8 +++---
 theme/pom.xml                              |  8 +++---
 theme/richmond/pom.xml                     |  8 +++---
 theme/scarborough/pom.xml                  |  8 +++---
 theme/speyside/pom.xml                     |  8 +++---
 theme/standard/pom.xml                     |  8 +++---
 tobago-assembly/pom.xml                    |  2 +-
 tobago-tool/maven-apt-plugin/pom.xml       |  2 +-
 tobago-tool/maven-theme-plugin/pom.xml     |  2 +-
 tobago-tool/pom.xml                        |  2 +-
 tobago-tool/tobago-tool-annotation/pom.xml |  2 +-
 tobago-tool/tobago-tool-apt/pom.xml        |  2 +-
 34 files changed, 119 insertions(+), 158 deletions(-)

diff --git a/core/pom.xml b/core/pom.xml
index f5d925c..20ffb53 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <artifactId>tobago-core</artifactId>
   <packaging>jar</packaging>
@@ -137,9 +137,9 @@
   </reporting>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/trunk/core</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk/core</developerConnection>
-    <url>http://svn.apache.org/viewvc/myfaces/tobago/trunk/core</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</developerConnection>
+    <url>http://svn.apache.org/viewvc/myfaces/tobago/tags/tobago-1.0.12</url>
   </scm>
 
   <dependencies>
diff --git a/core/src/site/site.xml b/core/src/site/site.xml
index 39dd699..99ef0e9 100644
--- a/core/src/site/site.xml
+++ b/core/src/site/site.xml
@@ -28,11 +28,11 @@
     <href>http://myfaces.apache.org/tobago</href>
   </bannerRight>
   <publishDate format="dd MMM yyyy" />
-  <skin>
+  <!--<skin>
     <groupId>org.apache.myfaces.maven</groupId>
     <artifactId>tobago-site-skin</artifactId>
     <version>1.0.5-SNAPSHOT</version>
-  </skin>
+  </skin>-->
   <body>
     <menu name="Tobago">
       <item name="Introduction" href="http://myfaces.apache.org/tobago/index.html"/>
diff --git a/example/addressbook/pom.xml b/example/addressbook/pom.xml
index bb0803a..728e443 100644
--- a/example/addressbook/pom.xml
+++ b/example/addressbook/pom.xml
@@ -1,28 +1,9 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- * 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.
--->
-
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago-example</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <artifactId>tobago-example-addressbook</artifactId>
   <packaging>war</packaging>
@@ -104,8 +85,7 @@
             <phase>process-classes</phase>
             <configuration>
               <tasks>
-                <java classname="org.apache.openjpa.enhance.PCEnhancer" classpathref="maven.runtime.classpath"
-                      dir="target/classes" fork="true" />
+                <java classname="org.apache.openjpa.enhance.PCEnhancer" classpathref="maven.runtime.classpath" dir="target/classes" fork="true" />
               </tasks>
             </configuration>
             <goals>
@@ -118,9 +98,9 @@
   </build>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/addressbook</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/addressbook</developerConnection>
-    <url>http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/addressbook</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</developerConnection>
+    <url>http://svn.apache.org/viewvc/myfaces/tobago/tags/tobago-1.0.12</url>
   </scm>
   <dependencies>
    <!-- <dependency>
diff --git a/example/blank/pom.xml b/example/blank/pom.xml
index 453a03e..8556f8c 100644
--- a/example/blank/pom.xml
+++ b/example/blank/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago-example</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <artifactId>tobago-example-blank</artifactId>
   <packaging>war</packaging>
@@ -41,9 +41,9 @@
   </build>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/blank</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/blank</developerConnection>
-    <url>http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/blank</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</developerConnection>
+    <url>http://svn.apache.org/viewvc/myfaces/tobago/tags/tobago-1.0.12</url>
   </scm>
   
   <dependencies>
diff --git a/example/demo/pom.xml b/example/demo/pom.xml
index a98b54b..0bf7da0 100644
--- a/example/demo/pom.xml
+++ b/example/demo/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago-example</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <artifactId>tobago-example-demo</artifactId>
   <packaging>war</packaging>
@@ -66,9 +66,9 @@
     </plugins>
   </build>
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/demo</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/demo</developerConnection>
-    <url>http://svn.apache.org/viewcvs.cgi/myfaces/tobago/trunk/example/demo</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/myfaces/tobago/tags/tobago-1.0.12</url>
   </scm>
 
   <dependencies>
diff --git a/example/facelets/pom.xml b/example/facelets/pom.xml
index 98170a6..282bc73 100644
--- a/example/facelets/pom.xml
+++ b/example/facelets/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago-example</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <artifactId>tobago-example-facelets</artifactId>
   <packaging>war</packaging>
@@ -43,9 +43,9 @@
   </build>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/facelets</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/facelets</developerConnection>
-    <url>http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/facelets</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</developerConnection>
+    <url>http://svn.apache.org/viewvc/myfaces/tobago/tags/tobago-1.0.12</url>
   </scm>
 
   <repositories>
diff --git a/example/foreach/pom.xml b/example/foreach/pom.xml
index bc0e613..d5624d5 100644
--- a/example/foreach/pom.xml
+++ b/example/foreach/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago-example</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <artifactId>tobago-example-foreach</artifactId>
   <packaging>war</packaging>
@@ -43,9 +43,9 @@
   </build>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/foreach</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/foreach</developerConnection>
-    <url>http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/foreach</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</developerConnection>
+    <url>http://svn.apache.org/viewvc/myfaces/tobago/tags/tobago-1.0.12</url>
   </scm>
 
   <dependencies>
diff --git a/example/nonfacesrequest/pom.xml b/example/nonfacesrequest/pom.xml
index 42613d1..5b4aa3b 100644
--- a/example/nonfacesrequest/pom.xml
+++ b/example/nonfacesrequest/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago-example</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <artifactId>tobago-example-nonfacesrequest</artifactId>
   <packaging>war</packaging>
@@ -41,9 +41,9 @@
   </build>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/nonfacesrequest</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/nonfacesrequest</developerConnection>
-    <url>http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/nonfacesrequest</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</developerConnection>
+    <url>http://svn.apache.org/viewvc/myfaces/tobago/tags/tobago-1.0.12</url>
   </scm>
   
   <dependencies>
diff --git a/example/pom.xml b/example/pom.xml
index 0e9ebe5..63a380d 100644
--- a/example/pom.xml
+++ b/example/pom.xml
@@ -20,16 +20,16 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <packaging>pom</packaging>
   <name>Tobago Examples</name>
   <artifactId>tobago-example</artifactId>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/trunk/example</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk/example</developerConnection>
-    <url>http://svn.apache.org/viewvc/myfaces/tobago/trunk/example</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</developerConnection>
+    <url>http://svn.apache.org/viewvc/myfaces/tobago/tags/tobago-1.0.12</url>
   </scm>
 
   <build>
diff --git a/example/sandbox/pom.xml b/example/sandbox/pom.xml
index 53cbda5..87bdc8d 100644
--- a/example/sandbox/pom.xml
+++ b/example/sandbox/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago-example</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <artifactId>tobago-example-sandbox</artifactId>
   <packaging>war</packaging>
@@ -41,9 +41,9 @@
   </build>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/sandbox</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/sandbox</developerConnection>
-    <url>http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/sandbox</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</developerConnection>
+    <url>http://svn.apache.org/viewvc/myfaces/tobago/tags/tobago-1.0.12</url>
   </scm>
   
   <dependencies>
diff --git a/example/security/pom.xml b/example/security/pom.xml
index 081dd76..c24b252 100644
--- a/example/security/pom.xml
+++ b/example/security/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago-example</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <artifactId>tobago-example-security</artifactId>
   <packaging>war</packaging>
@@ -43,9 +43,9 @@
   </build>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/security</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/security</developerConnection>
-    <url>http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/security</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</developerConnection>
+    <url>http://svn.apache.org/viewvc/myfaces/tobago/tags/tobago-1.0.12</url>
   </scm>
 
   <dependencies>
diff --git a/example/test/pom.xml b/example/test/pom.xml
index b1ecbd0..2272c86 100644
--- a/example/test/pom.xml
+++ b/example/test/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago-example</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <artifactId>tobago-example-test</artifactId>
   <packaging>war</packaging>
@@ -41,9 +41,9 @@
   </build>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/test</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/test</developerConnection>
-    <url>http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/test</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</developerConnection>
+    <url>http://svn.apache.org/viewvc/myfaces/tobago/tags/tobago-1.0.12</url>
   </scm>
 
   <dependencies>
diff --git a/example/tobago-example-assembly/pom.xml b/example/tobago-example-assembly/pom.xml
index d8ba583..6bd7bd9 100644
--- a/example/tobago-example-assembly/pom.xml
+++ b/example/tobago-example-assembly/pom.xml
@@ -25,7 +25,7 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago-example</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
 
   <build>
diff --git a/example/tobago-theme-example/pom.xml b/example/tobago-theme-example/pom.xml
index af72897..5d63af2 100644
--- a/example/tobago-theme-example/pom.xml
+++ b/example/tobago-theme-example/pom.xml
@@ -21,15 +21,15 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago-example</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <artifactId>tobago-theme-example</artifactId>
   <name>Theme Example</name>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/tobago-theme-example</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/tobago-theme-example</developerConnection>
-    <url>http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/tobago-theme-example</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</developerConnection>
+    <url>http://svn.apache.org/viewvc/myfaces/tobago/tags/tobago-1.0.12</url>
   </scm>
 
   <dependencies>
diff --git a/extension/facelets/pom.xml b/extension/facelets/pom.xml
index caa17b9..6c8b7eb 100644
--- a/extension/facelets/pom.xml
+++ b/extension/facelets/pom.xml
@@ -20,16 +20,16 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago-extension</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <artifactId>tobago-facelets</artifactId>
   <packaging>jar</packaging>
   <name>Tobago Facelets</name>
   <description>Tobago-facelets contains the facelets TagHandler for the tobago components and the facelets variant(tf) for the tobago extension taglib.</description>
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/trunk/extension/facelets</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk/extension/facelets</developerConnection>
-    <url>http://svn.apache.org/viewvc/myfaces/tobago/trunk/extension/facelets</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</developerConnection>
+    <url>http://svn.apache.org/viewvc/myfaces/tobago/tags/tobago-1.0.12</url>
   </scm>
 
   <build>
diff --git a/extension/fileupload/pom.xml b/extension/fileupload/pom.xml
index cfff2f7..5d7bd45 100644
--- a/extension/fileupload/pom.xml
+++ b/extension/fileupload/pom.xml
@@ -22,15 +22,15 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago-extension</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <packaging>jar</packaging>
   <name>Tobago Fileupload</name>
   <artifactId>tobago-fileupload</artifactId>
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/trunk/extension/fileupload</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk/extension/fileupload</developerConnection>
-    <url>http://svn.apache.org/viewvc/myfaces/tobago/trunk/extension/fileupload</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</developerConnection>
+    <url>http://svn.apache.org/viewvc/myfaces/tobago/tags/tobago-1.0.12</url>
   </scm>
   <dependencies>
     <dependency>
diff --git a/extension/message-fix/pom.xml b/extension/message-fix/pom.xml
index 795dbab..3efafe2 100644
--- a/extension/message-fix/pom.xml
+++ b/extension/message-fix/pom.xml
@@ -22,16 +22,16 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago-extension</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <packaging>jar</packaging>
   <name>Tobago FacesMessage Ordering Fix</name>
   <description>Tobago FacesMessage ordering fix for the RI (before the 1.2 version)</description>
   <artifactId>tobago-message-fix</artifactId>
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/trunk/extension/message-fix</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk/extension/message-fix</developerConnection>
-    <url>http://svn.apache.org/viewvc/myfaces/tobago/trunk/extension/message-fix</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</developerConnection>
+    <url>http://svn.apache.org/viewvc/myfaces/tobago/tags/tobago-1.0.12</url>
   </scm>
   <dependencies>
     <dependency>
diff --git a/extension/pom.xml b/extension/pom.xml
index 2e98bed..ca39924 100644
--- a/extension/pom.xml
+++ b/extension/pom.xml
@@ -20,15 +20,15 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <packaging>pom</packaging>
   <name>Tobago Extensions</name>
   <artifactId>tobago-extension</artifactId>
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/trunk/extension</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk/extension</developerConnection>
-    <url>http://svn.apache.org/viewvc/myfaces/tobago/trunk/extension</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</developerConnection>
+    <url>http://svn.apache.org/viewvc/myfaces/tobago/tags/tobago-1.0.12</url>
   </scm>
   <modules>
     <module>facelets</module>
diff --git a/extension/security/pom.xml b/extension/security/pom.xml
index abb4e04..876ed66 100644
--- a/extension/security/pom.xml
+++ b/extension/security/pom.xml
@@ -20,15 +20,15 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago-extension</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <packaging>jar</packaging>
   <name>Tobago Security</name>
   <artifactId>tobago-security</artifactId>
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/trunk/extension/security</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk/extension/security</developerConnection>
-    <url>http://svn.apache.org/viewvc/myfaces/tobago/trunk/extension/security</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</developerConnection>
+    <url>http://svn.apache.org/viewvc/myfaces/tobago/tags/tobago-1.0.12</url>
   </scm>
   <dependencies>
     <dependency>
diff --git a/pom.xml b/pom.xml
index 835151b..be516a9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,29 +1,10 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- * 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.
--->
-
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.myfaces.tobago</groupId>
   <artifactId>tobago</artifactId>
   <packaging>pom</packaging>
   <name>Apache Tobago</name>
-  <version>1.0.12-SNAPSHOT</version>
+  <version>1.0.12</version>
   <description>The goal of Tobago is to provide the community with a well designed set of user interface components based on JSF and run on MyFaces.</description>
   <prerequisites>
     <maven>2.0.6</maven>
@@ -497,9 +478,9 @@
 
   <scm>
 
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/trunk</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk</developerConnection>
-    <url>http://svn.apache.org/viewvc/myfaces/tobago/trunk</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</developerConnection>
+    <url>http://svn.apache.org/viewvc/myfaces/tobago/tags/tobago-1.0.12</url>
 
   </scm>
 
@@ -804,7 +785,7 @@
                 <phase>package</phase>
                 <configuration>
                   <tasks>
-                    <mkdir dir="${project.build.directory}/site/docbook"></mkdir>
+                    <mkdir dir="${project.build.directory}/site/docbook" />
                   </tasks>
                 </configuration>
                 <goals>
@@ -816,10 +797,10 @@
                 <phase>install</phase>
                 <configuration>
                   <tasks>
-                    <mkdir dir="${project.build.directory}/site/docbook/resources"/>
+                    <mkdir dir="${project.build.directory}/site/docbook/resources" />
                     <copy verbose="true" todir="${project.build.directory}/site/docbook/resources">
                       <fileset dir="${project.build.directory}/site/docbook">
-                        <include name="*.png"/>
+                        <include name="*.png" />
                       </fileset>
                     </copy>
                   </tasks>
@@ -867,7 +848,7 @@
                 <configuration>
                   <tasks>
                     <copy todir="${project.build.directory}/staging/images/resources">
-                      <fileset dir="${basedir}/src/docbook/resources"/>
+                      <fileset dir="${basedir}/src/docbook/resources" />
                     </copy>
                   </tasks>
                 </configuration>
@@ -947,10 +928,10 @@
                   <chunkedOutput>true</chunkedOutput>
                   <chunkQuietly>false</chunkQuietly>
                   <postProcess>
-                    <mkdir dir="${docbook.target}/resources"/>
+                    <mkdir dir="${docbook.target}/resources" />
                     <copy todir="${docbook.target}/resources">
                       <fileset dir="${docbook.source}/resources">
-                        <include name="*.png"/>
+                        <include name="*.png" />
                       </fileset>
                     </copy>
                   </postProcess>
@@ -996,4 +977,4 @@
     <commons-digester.version>1.7</commons-digester.version>
     <commons-collection.version>3.1</commons-collection.version>
   </properties>
-</project>
+</project>
\ No newline at end of file
diff --git a/sandbox/pom.xml b/sandbox/pom.xml
index e1a7659..f199e22 100644
--- a/sandbox/pom.xml
+++ b/sandbox/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <artifactId>tobago-sandbox</artifactId>
   <packaging>jar</packaging>
@@ -150,9 +150,9 @@
   </reporting>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/trunk/sandbox</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk/sandbox</developerConnection>
-    <url>http://svn.apache.org/viewvc/myfaces/tobago/trunk/sandbox</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</developerConnection>
+    <url>http://svn.apache.org/viewvc/myfaces/tobago/tags/tobago-1.0.12</url>
   </scm>
 
   <dependencies>
diff --git a/src/site/site.xml b/src/site/site.xml
index 7dee94e..49e692b 100644
--- a/src/site/site.xml
+++ b/src/site/site.xml
@@ -28,11 +28,11 @@
     <href>http://myfaces.apache.org/tobago</href>
   </bannerRight>
   <publishDate format="dd MMM yyyy" />
-  <skin>
+  <!--<skin>
     <groupId>org.apache.myfaces.maven</groupId>
     <artifactId>tobago-site-skin</artifactId>
     <version>1.0.5-SNAPSHOT</version>
-  </skin>
+  </skin>-->
   <body>
     <links>
       <item name="Apache" href="http://www.apache.org/"/>
diff --git a/theme/charlotteville/pom.xml b/theme/charlotteville/pom.xml
index e7a3b99..efb25eb 100644
--- a/theme/charlotteville/pom.xml
+++ b/theme/charlotteville/pom.xml
@@ -21,15 +21,15 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago-theme</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <artifactId>tobago-theme-charlotteville</artifactId>
   <name>Theme Charlotteville</name>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/trunk/theme/charlotteville</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk/theme/charlotteville</developerConnection>
-    <url>http://svn.apache.org/viewvc/myfaces/tobago/trunk/theme/charlotteville</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</developerConnection>
+    <url>http://svn.apache.org/viewvc/myfaces/tobago/tags/tobago-1.0.12</url>
   </scm>
 
   <dependencies>
diff --git a/theme/pom.xml b/theme/pom.xml
index 847e92b..2f2f530 100644
--- a/theme/pom.xml
+++ b/theme/pom.xml
@@ -21,16 +21,16 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <packaging>pom</packaging>
   <name>Tobago Themes</name>
   <artifactId>tobago-theme</artifactId>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/trunk/theme</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk/theme</developerConnection>
-    <url>http://svn.apache.org/viewvc/myfaces/tobago/trunk/theme</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</developerConnection>
+    <url>http://svn.apache.org/viewvc/myfaces/tobago/tags/tobago-1.0.12</url>
   </scm>
 
   <modules>
diff --git a/theme/richmond/pom.xml b/theme/richmond/pom.xml
index e14d9f6..1f94268 100644
--- a/theme/richmond/pom.xml
+++ b/theme/richmond/pom.xml
@@ -21,16 +21,16 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago-theme</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <artifactId>tobago-theme-richmond</artifactId>
   <packaging>jar</packaging>
   <name>Theme Richmond</name>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/trunk/theme/richmond</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk/theme/richmond</developerConnection>
-    <url>http://svn.apache.org/viewvc/myfaces/tobago/trunk/theme/richmond</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</developerConnection>
+    <url>http://svn.apache.org/viewvc/myfaces/tobago/tags/tobago-1.0.12</url>
   </scm>
 
   <dependencies>
diff --git a/theme/scarborough/pom.xml b/theme/scarborough/pom.xml
index a9acd56..fabaa5b 100644
--- a/theme/scarborough/pom.xml
+++ b/theme/scarborough/pom.xml
@@ -21,16 +21,16 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago-theme</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <artifactId>tobago-theme-scarborough</artifactId>
   <packaging>jar</packaging>
   <name>Theme Scarborough</name>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/trunk/theme/scarborough</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk/theme/scarborough</developerConnection>
-    <url>http://svn.apache.org/viewvc/myfaces/tobago/trunk/theme/scarborough</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</developerConnection>
+    <url>http://svn.apache.org/viewvc/myfaces/tobago/tags/tobago-1.0.12</url>
   </scm>
 
   <build>
diff --git a/theme/speyside/pom.xml b/theme/speyside/pom.xml
index 59effb7..1e6635d 100644
--- a/theme/speyside/pom.xml
+++ b/theme/speyside/pom.xml
@@ -21,16 +21,16 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago-theme</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <artifactId>tobago-theme-speyside</artifactId>
   <packaging>jar</packaging>
   <name>Theme Speyside</name>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/trunk/theme/speyside</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk/theme/speyside</developerConnection>
-    <url>http://svn.apache.org/viewvc/myfaces/tobago/trunk/theme/speyside</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</developerConnection>
+    <url>http://svn.apache.org/viewvc/myfaces/tobago/tags/tobago-1.0.12</url>
   </scm>
 
   <dependencies>
diff --git a/theme/standard/pom.xml b/theme/standard/pom.xml
index 58467e0..0a57f0a 100644
--- a/theme/standard/pom.xml
+++ b/theme/standard/pom.xml
@@ -21,16 +21,16 @@
    <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago-theme</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <artifactId>tobago-theme-standard</artifactId>
   <packaging>jar</packaging>
   <name>Theme Standard</name>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/trunk/theme/standard</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk/theme/standard</developerConnection>
-    <url>http://svn.apache.org/viewvc/myfaces/tobago/trunk/theme/standard</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.12</developerConnection>
+    <url>http://svn.apache.org/viewvc/myfaces/tobago/tags/tobago-1.0.12</url>
   </scm>
 
   <dependencies>
diff --git a/tobago-assembly/pom.xml b/tobago-assembly/pom.xml
index 26e629d..5c211c1 100644
--- a/tobago-assembly/pom.xml
+++ b/tobago-assembly/pom.xml
@@ -25,7 +25,7 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
 
   <build>
diff --git a/tobago-tool/maven-apt-plugin/pom.xml b/tobago-tool/maven-apt-plugin/pom.xml
index b951470..9b1bf6b 100644
--- a/tobago-tool/maven-apt-plugin/pom.xml
+++ b/tobago-tool/maven-apt-plugin/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago-tool</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <artifactId>maven-apt-plugin</artifactId>
   <packaging>maven-plugin</packaging>
diff --git a/tobago-tool/maven-theme-plugin/pom.xml b/tobago-tool/maven-theme-plugin/pom.xml
index 017f755..09cddbd 100644
--- a/tobago-tool/maven-theme-plugin/pom.xml
+++ b/tobago-tool/maven-theme-plugin/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago-tool</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <artifactId>maven-theme-plugin</artifactId>
   <packaging>maven-plugin</packaging>
diff --git a/tobago-tool/pom.xml b/tobago-tool/pom.xml
index bfc9d7c..086c4b7 100644
--- a/tobago-tool/pom.xml
+++ b/tobago-tool/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <packaging>pom</packaging>
   <name>Tobago Tool</name>
diff --git a/tobago-tool/tobago-tool-annotation/pom.xml b/tobago-tool/tobago-tool-annotation/pom.xml
index 5fde66a..9b53130 100644
--- a/tobago-tool/tobago-tool-annotation/pom.xml
+++ b/tobago-tool/tobago-tool-annotation/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago-tool</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <artifactId>tobago-tool-annotation</artifactId>
   <packaging>jar</packaging>
diff --git a/tobago-tool/tobago-tool-apt/pom.xml b/tobago-tool/tobago-tool-apt/pom.xml
index cf5a9e8..b5ff64b 100644
--- a/tobago-tool/tobago-tool-apt/pom.xml
+++ b/tobago-tool/tobago-tool-apt/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.myfaces.tobago</groupId>
     <artifactId>tobago-tool</artifactId>
-    <version>1.0.12-SNAPSHOT</version>
+    <version>1.0.12</version>
   </parent>
   <artifactId>tobago-tool-apt</artifactId>
   <packaging>jar</packaging>

-- 
To stop receiving notification emails like this one, please contact
"commits@myfaces.apache.org" <co...@myfaces.apache.org>.

[myfaces-tobago] 02/03: prepare release

Posted by de...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

deki pushed a commit to tag tobago-1.0.12
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git

commit a2f7949970600622a91180953ee4b6ea812672fc
Author: Bernd Bohmann <bo...@apache.org>
AuthorDate: Mon Oct 15 18:40:46 2007 +0000

    prepare release
---
 release.properties | 169 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 169 insertions(+)

diff --git a/release.properties b/release.properties
new file mode 100644
index 0000000..c1337dd
--- /dev/null
+++ b/release.properties
@@ -0,0 +1,169 @@
+#release configuration
+#Mon Oct 15 20:32:18 CEST 2007
+scm.tag=tobago-1.0.12
+project.rel.org.apache.myfaces.tobago\:tobago-example-blank=1.0.12
+project.rel.org.apache.myfaces.tobago\:tobago-sandbox=1.0.12
+project.scm.org.apache.myfaces.tobago\:tobago-theme-richmond.tag=HEAD
+project.scm.org.apache.myfaces.tobago\:tobago-fileupload.tag=HEAD
+project.scm.org.apache.myfaces.tobago\:tobago-security.connection=scm\:svn\:http\://svn.apache.org/repos/asf/myfaces/tobago/trunk/extension/security
+project.rel.org.apache.myfaces.tobago\:maven-apt-plugin=1.0.12
+project.scm.org.apache.myfaces.tobago\:tobago-example-security.url=http\://svn.apache.org/viewvc/myfaces/tobago/trunk/example/security
+project.rel.org.apache.myfaces.tobago\:tobago-facelets=1.0.12
+project.scm.org.apache.myfaces.tobago\:tobago-theme.developerConnection=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk/theme
+project.dev.org.apache.myfaces.tobago\:tobago-theme-scarborough=1.0.13-SNAPSHOT
+project.scm.org.apache.myfaces.tobago\:tobago-facelets.tag=HEAD
+project.scm.org.apache.myfaces.tobago\:tobago.tag=HEAD
+project.scm.org.apache.myfaces.tobago\:tobago-example-foreach.connection=scm\:svn\:http\://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/foreach
+project.scm.org.apache.myfaces.tobago\:tobago-example-addressbook.developerConnection=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/addressbook
+project.dev.org.apache.myfaces.tobago\:tobago-theme-speyside=1.0.13-SNAPSHOT
+project.dev.org.apache.myfaces.tobago\:tobago-example-sandbox=1.0.13-SNAPSHOT
+project.rel.org.apache.myfaces.tobago\:tobago-tool-annotation=1.0.12
+project.scm.org.apache.myfaces.tobago\:tobago-example-nonfacesrequest.tag=HEAD
+project.scm.org.apache.myfaces.tobago\:tobago-facelets.connection=scm\:svn\:http\://svn.apache.org/repos/asf/myfaces/tobago/trunk/extension/facelets
+scm.url=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk
+project.scm.org.apache.myfaces.tobago\:tobago-theme-richmond.url=http\://svn.apache.org/viewvc/myfaces/tobago/trunk/theme/richmond
+project.scm.org.apache.myfaces.tobago\:tobago-fileupload.url=http\://svn.apache.org/viewvc/myfaces/tobago/trunk/extension/fileupload
+project.rel.org.apache.myfaces.tobago\:maven-theme-plugin=1.0.12
+project.scm.org.apache.myfaces.tobago\:tobago.connection=scm\:svn\:http\://svn.apache.org/repos/asf/myfaces/tobago/trunk
+project.scm.org.apache.myfaces.tobago\:tobago-facelets.url=http\://svn.apache.org/viewvc/myfaces/tobago/trunk/extension/facelets
+project.scm.org.apache.myfaces.tobago\:tobago-message-fix.connection=scm\:svn\:http\://svn.apache.org/repos/asf/myfaces/tobago/trunk/extension/message-fix
+project.scm.org.apache.myfaces.tobago\:tobago.url=http\://svn.apache.org/viewvc/myfaces/tobago/trunk
+project.dev.org.apache.myfaces.tobago\:tobago-theme-charlotteville=1.0.13-SNAPSHOT
+project.scm.org.apache.myfaces.tobago\:tobago-theme-charlotteville.connection=scm\:svn\:http\://svn.apache.org/repos/asf/myfaces/tobago/trunk/theme/charlotteville
+project.scm.org.apache.myfaces.tobago\:tobago-example-nonfacesrequest.url=http\://svn.apache.org/viewvc/myfaces/tobago/trunk/example/nonfacesrequest
+project.rel.org.apache.myfaces.tobago\:tobago-example-security=1.0.12
+project.dev.org.apache.myfaces.tobago\:tobago-extension=1.0.13-SNAPSHOT
+project.scm.org.apache.myfaces.tobago\:tobago-example-sandbox.tag=HEAD
+project.rel.org.apache.myfaces.tobago\:tobago-example-sandbox=1.0.12
+project.scm.org.apache.myfaces.tobago\:tobago-fileupload.connection=scm\:svn\:http\://svn.apache.org/repos/asf/myfaces/tobago/trunk/extension/fileupload
+project.scm.org.apache.myfaces.tobago\:tobago-theme-richmond.developerConnection=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk/theme/richmond
+project.dev.org.apache.myfaces.tobago\:tobago-example-security=1.0.13-SNAPSHOT
+project.scm.org.apache.myfaces.tobago\:tobago-example-security.connection=scm\:svn\:http\://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/security
+project.rel.org.apache.myfaces.tobago\:tobago-example-assembly=1.0.12
+project.scm.org.apache.myfaces.tobago\:tobago-example-nonfacesrequest.connection=scm\:svn\:http\://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/nonfacesrequest
+project.scm.org.apache.myfaces.tobago\:tobago-example.connection=scm\:svn\:http\://svn.apache.org/repos/asf/myfaces/tobago/trunk/example
+project.scm.org.apache.myfaces.tobago\:tobago-example-facelets.tag=HEAD
+project.scm.org.apache.myfaces.tobago\:tobago-example-sandbox.connection=scm\:svn\:http\://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/sandbox
+project.scm.org.apache.myfaces.tobago\:tobago-fileupload.developerConnection=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk/extension/fileupload
+project.dev.org.apache.myfaces.tobago\:tobago-theme=1.0.13-SNAPSHOT
+project.rel.org.apache.myfaces.tobago\:tobago-theme-charlotteville=1.0.12
+project.scm.org.apache.myfaces.tobago\:tobago-theme-scarborough.connection=scm\:svn\:http\://svn.apache.org/repos/asf/myfaces/tobago/trunk/theme/scarborough
+project.rel.org.apache.myfaces.tobago\:tobago-theme-example=1.0.12
+project.scm.org.apache.myfaces.tobago\:tobago-example-blank.tag=HEAD
+project.scm.org.apache.myfaces.tobago\:tobago-example-demo.connection=scm\:svn\:http\://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/demo
+project.dev.org.apache.myfaces.tobago\:tobago-example-assembly=1.0.13-SNAPSHOT
+project.scm.org.apache.myfaces.tobago\:tobago-theme-example.connection=scm\:svn\:http\://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/tobago-theme-example
+project.dev.org.apache.myfaces.tobago\:maven-theme-plugin=1.0.13-SNAPSHOT
+project.scm.org.apache.myfaces.tobago\:tobago-example-sandbox.url=http\://svn.apache.org/viewvc/myfaces/tobago/trunk/example/sandbox
+completedPhase=scm-commit-development
+project.scm.org.apache.myfaces.tobago\:tobago-example-facelets.connection=scm\:svn\:http\://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/facelets
+project.dev.org.apache.myfaces.tobago\:tobago-fileupload=1.0.13-SNAPSHOT
+project.dev.org.apache.myfaces.tobago\:tobago-example=1.0.13-SNAPSHOT
+project.scm.org.apache.myfaces.tobago\:tobago-example-security.developerConnection=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/security
+project.scm.org.apache.myfaces.tobago\:tobago-example-facelets.url=http\://svn.apache.org/viewvc/myfaces/tobago/trunk/example/facelets
+project.scm.org.apache.myfaces.tobago\:tobago-example-facelets.developerConnection=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/facelets
+project.dev.org.apache.myfaces.tobago\:tobago-sandbox=1.0.13-SNAPSHOT
+project.dev.org.apache.myfaces.tobago\:tobago-example-test=1.0.13-SNAPSHOT
+project.rel.org.apache.myfaces.tobago\:tobago-example-nonfacesrequest=1.0.12
+project.scm.org.apache.myfaces.tobago\:tobago-example-blank.url=http\://svn.apache.org/viewvc/myfaces/tobago/trunk/example/blank
+project.rel.org.apache.myfaces.tobago\:tobago-message-fix=1.0.12
+project.rel.org.apache.myfaces.tobago\:tobago-example-test=1.0.12
+project.dev.org.apache.myfaces.tobago\:tobago-example-demo=1.0.13-SNAPSHOT
+project.scm.org.apache.myfaces.tobago\:tobago-core.connection=scm\:svn\:http\://svn.apache.org/repos/asf/myfaces/tobago/trunk/core
+project.scm.org.apache.myfaces.tobago\:tobago-example-test.developerConnection=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/test
+project.rel.org.apache.myfaces.tobago\:tobago-theme-standard=1.0.12
+project.rel.org.apache.myfaces.tobago\:tobago-example-demo=1.0.12
+project.scm.org.apache.myfaces.tobago\:tobago.developerConnection=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk
+project.scm.org.apache.myfaces.tobago\:tobago-core.tag=HEAD
+project.scm.org.apache.myfaces.tobago\:tobago-example.tag=HEAD
+project.scm.org.apache.myfaces.tobago\:tobago-theme-charlotteville.developerConnection=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk/theme/charlotteville
+project.scm.org.apache.myfaces.tobago\:tobago-sandbox.tag=HEAD
+project.dev.org.apache.myfaces.tobago\:tobago-security=1.0.13-SNAPSHOT
+project.dev.org.apache.myfaces.tobago\:tobago-example-blank=1.0.13-SNAPSHOT
+project.scm.org.apache.myfaces.tobago\:tobago-message-fix.tag=HEAD
+project.rel.org.apache.myfaces.tobago\:tobago-tool=1.0.12
+project.rel.org.apache.myfaces.tobago\:tobago-example-addressbook=1.0.12
+project.scm.org.apache.myfaces.tobago\:tobago-theme.connection=scm\:svn\:http\://svn.apache.org/repos/asf/myfaces/tobago/trunk/theme
+project.dev.org.apache.myfaces.tobago\:maven-apt-plugin=1.0.13-SNAPSHOT
+project.rel.org.apache.myfaces.tobago\:tobago=1.0.12
+project.dev.org.apache.myfaces.tobago\:tobago-assembly=1.0.13-SNAPSHOT
+project.scm.org.apache.myfaces.tobago\:tobago-example-test.connection=scm\:svn\:http\://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/test
+project.rel.org.apache.myfaces.tobago\:tobago-fileupload=1.0.12
+project.scm.org.apache.myfaces.tobago\:tobago-example-addressbook.tag=HEAD
+project.scm.org.apache.myfaces.tobago\:tobago-example-blank.connection=scm\:svn\:http\://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/blank
+project.scm.org.apache.myfaces.tobago\:tobago-core.url=http\://svn.apache.org/viewvc/myfaces/tobago/trunk/core
+project.scm.org.apache.myfaces.tobago\:tobago-example.url=http\://svn.apache.org/viewvc/myfaces/tobago/trunk/example
+project.scm.org.apache.myfaces.tobago\:tobago-sandbox.url=http\://svn.apache.org/viewvc/myfaces/tobago/trunk/sandbox
+project.scm.org.apache.myfaces.tobago\:tobago-message-fix.url=http\://svn.apache.org/viewvc/myfaces/tobago/trunk/extension/message-fix
+project.scm.org.apache.myfaces.tobago\:tobago-example-foreach.tag=HEAD
+project.rel.org.apache.myfaces.tobago\:tobago-security=1.0.12
+project.rel.org.apache.myfaces.tobago\:tobago-core=1.0.12
+project.rel.org.apache.myfaces.tobago\:tobago-example-facelets=1.0.12
+project.scm.org.apache.myfaces.tobago\:tobago-extension.developerConnection=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk/extension
+project.scm.org.apache.myfaces.tobago\:tobago-theme-standard.tag=HEAD
+project.scm.org.apache.myfaces.tobago\:tobago-theme-speyside.connection=scm\:svn\:http\://svn.apache.org/repos/asf/myfaces/tobago/trunk/theme/speyside
+project.dev.org.apache.myfaces.tobago\:tobago-example-foreach=1.0.13-SNAPSHOT
+project.scm.org.apache.myfaces.tobago\:tobago-example-addressbook.connection=scm\:svn\:http\://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/addressbook
+project.scm.org.apache.myfaces.tobago\:tobago-example-nonfacesrequest.developerConnection=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/nonfacesrequest
+project.dev.org.apache.myfaces.tobago\:tobago-tool-apt=1.0.13-SNAPSHOT
+project.scm.org.apache.myfaces.tobago\:tobago-theme.tag=HEAD
+project.rel.org.apache.myfaces.tobago\:tobago-assembly=1.0.12
+project.scm.org.apache.myfaces.tobago\:tobago-example-addressbook.url=http\://svn.apache.org/viewvc/myfaces/tobago/trunk/example/addressbook
+project.scm.org.apache.myfaces.tobago\:tobago-theme-scarborough.tag=HEAD
+project.scm.org.apache.myfaces.tobago\:tobago-example-sandbox.developerConnection=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/sandbox
+project.scm.org.apache.myfaces.tobago\:tobago-theme-example.developerConnection=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/tobago-theme-example
+project.scm.org.apache.myfaces.tobago\:tobago-theme-speyside.developerConnection=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk/theme/speyside
+project.scm.org.apache.myfaces.tobago\:tobago-extension.connection=scm\:svn\:http\://svn.apache.org/repos/asf/myfaces/tobago/trunk/extension
+project.dev.org.apache.myfaces.tobago\:tobago-message-fix=1.0.13-SNAPSHOT
+project.dev.org.apache.myfaces.tobago\:tobago-tool=1.0.13-SNAPSHOT
+project.scm.org.apache.myfaces.tobago\:tobago-theme-standard.connection=scm\:svn\:http\://svn.apache.org/repos/asf/myfaces/tobago/trunk/theme/standard
+project.scm.org.apache.myfaces.tobago\:tobago-extension.tag=HEAD
+project.scm.org.apache.myfaces.tobago\:tobago-example.developerConnection=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk/example
+project.scm.org.apache.myfaces.tobago\:tobago-theme-example.tag=HEAD
+project.scm.org.apache.myfaces.tobago\:tobago-example-foreach.developerConnection=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/foreach
+project.scm.org.apache.myfaces.tobago\:tobago-security.developerConnection=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk/extension/security
+project.rel.org.apache.myfaces.tobago\:tobago-theme-richmond=1.0.12
+project.scm.org.apache.myfaces.tobago\:tobago-example-foreach.url=http\://svn.apache.org/viewvc/myfaces/tobago/trunk/example/foreach
+project.scm.org.apache.myfaces.tobago\:tobago-core.developerConnection=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk/core
+project.rel.org.apache.myfaces.tobago\:tobago-theme-speyside=1.0.12
+project.rel.org.apache.myfaces.tobago\:tobago-example-foreach=1.0.12
+project.dev.org.apache.myfaces.tobago\:tobago-theme-standard=1.0.13-SNAPSHOT
+project.scm.org.apache.myfaces.tobago\:tobago-security.tag=HEAD
+project.scm.org.apache.myfaces.tobago\:tobago-sandbox.connection=scm\:svn\:http\://svn.apache.org/repos/asf/myfaces/tobago/trunk/sandbox
+project.scm.org.apache.myfaces.tobago\:tobago-example-demo.developerConnection=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/demo
+project.dev.org.apache.myfaces.tobago\:tobago-example-addressbook=1.0.13-SNAPSHOT
+project.scm.org.apache.myfaces.tobago\:tobago-message-fix.developerConnection=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk/extension/message-fix
+project.scm.org.apache.myfaces.tobago\:tobago-theme-standard.url=http\://svn.apache.org/viewvc/myfaces/tobago/trunk/theme/standard
+project.dev.org.apache.myfaces.tobago\:tobago-example-facelets=1.0.13-SNAPSHOT
+project.scm.org.apache.myfaces.tobago\:tobago-theme.url=http\://svn.apache.org/viewvc/myfaces/tobago/trunk/theme
+project.rel.org.apache.myfaces.tobago\:tobago-extension=1.0.12
+project.scm.org.apache.myfaces.tobago\:tobago-theme-scarborough.url=http\://svn.apache.org/viewvc/myfaces/tobago/trunk/theme/scarborough
+project.scm.org.apache.myfaces.tobago\:tobago-theme-speyside.tag=HEAD
+project.scm.org.apache.myfaces.tobago\:tobago-example-test.tag=HEAD
+project.rel.org.apache.myfaces.tobago\:tobago-tool-apt=1.0.12
+project.dev.org.apache.myfaces.tobago\:tobago-core=1.0.13-SNAPSHOT
+project.scm.org.apache.myfaces.tobago\:tobago-extension.url=http\://svn.apache.org/viewvc/myfaces/tobago/trunk/extension
+project.scm.org.apache.myfaces.tobago\:tobago-facelets.developerConnection=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk/extension/facelets
+project.dev.org.apache.myfaces.tobago\:tobago-example-nonfacesrequest=1.0.13-SNAPSHOT
+project.scm.org.apache.myfaces.tobago\:tobago-theme-example.url=http\://svn.apache.org/viewvc/myfaces/tobago/trunk/example/tobago-theme-example
+project.dev.org.apache.myfaces.tobago\:tobago-theme-example=1.0.13-SNAPSHOT
+project.scm.org.apache.myfaces.tobago\:tobago-theme-charlotteville.tag=HEAD
+project.scm.org.apache.myfaces.tobago\:tobago-theme-richmond.connection=scm\:svn\:http\://svn.apache.org/repos/asf/myfaces/tobago/trunk/theme/richmond
+project.scm.org.apache.myfaces.tobago\:tobago-security.url=http\://svn.apache.org/viewvc/myfaces/tobago/trunk/extension/security
+project.scm.org.apache.myfaces.tobago\:tobago-example-demo.tag=HEAD
+project.scm.org.apache.myfaces.tobago\:tobago-theme-standard.developerConnection=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk/theme/standard
+project.scm.org.apache.myfaces.tobago\:tobago-theme-speyside.url=http\://svn.apache.org/viewvc/myfaces/tobago/trunk/theme/speyside
+project.scm.org.apache.myfaces.tobago\:tobago-example-test.url=http\://svn.apache.org/viewvc/myfaces/tobago/trunk/example/test
+project.scm.org.apache.myfaces.tobago\:tobago-example-blank.developerConnection=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/blank
+project.rel.org.apache.myfaces.tobago\:tobago-theme-scarborough=1.0.12
+project.scm.org.apache.myfaces.tobago\:tobago-theme-charlotteville.url=http\://svn.apache.org/viewvc/myfaces/tobago/trunk/theme/charlotteville
+project.dev.org.apache.myfaces.tobago\:tobago-facelets=1.0.13-SNAPSHOT
+project.scm.org.apache.myfaces.tobago\:tobago-example-security.tag=HEAD
+project.scm.org.apache.myfaces.tobago\:tobago-example-demo.url=http\://svn.apache.org/viewcvs.cgi/myfaces/tobago/trunk/example/demo
+project.scm.org.apache.myfaces.tobago\:tobago-sandbox.developerConnection=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk/sandbox
+project.dev.org.apache.myfaces.tobago\:tobago-tool-annotation=1.0.13-SNAPSHOT
+project.rel.org.apache.myfaces.tobago\:tobago-theme=1.0.12
+project.scm.org.apache.myfaces.tobago\:tobago-theme-scarborough.developerConnection=scm\:svn\:https\://svn.apache.org/repos/asf/myfaces/tobago/trunk/theme/scarborough
+project.dev.org.apache.myfaces.tobago\:tobago=1.0.13-SNAPSHOT
+project.rel.org.apache.myfaces.tobago\:tobago-example=1.0.12
+project.dev.org.apache.myfaces.tobago\:tobago-theme-richmond=1.0.13-SNAPSHOT

-- 
To stop receiving notification emails like this one, please contact
"commits@myfaces.apache.org" <co...@myfaces.apache.org>.