You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2016/11/27 15:02:07 UTC

svn commit: r1771600 - in /myfaces/tobago/trunk: tobago-example/tobago-example-addressbook/ tobago-example/tobago-example-addressbook/src/main/webapp/ tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/ tobago-example/tobago-example-...

Author: lofwyr
Date: Sun Nov 27 15:02:06 2016
New Revision: 1771600

URL: http://svn.apache.org/viewvc?rev=1771600&view=rev
Log:
TOBAGO-1641: Remove tango icon lib

Modified:
    myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/pom.xml
    myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/editor.xhtml
    myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/layout/basic.xhtml
    myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/list.xhtml
    myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/start.xhtml
    myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/tab/business.xhtml
    myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/tab/misc.xhtml
    myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/tab/personal.xhtml
    myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/auth/error.xhtml
    myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/auth/login.xhtml
    myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/auth/logout.xhtml
    myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/error.xhtml
    myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/cell/3x3-center.xhtml
    myfaces/tobago/trunk/tobago-theme/tobago-theme-speyside/pom.xml
    myfaces/tobago/trunk/tobago-theme/tobago-theme-speyside/src/main/appended-resources/META-INF/NOTICE

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/pom.xml?rev=1771600&r1=1771599&r2=1771600&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/pom.xml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/pom.xml Sun Nov 27 15:02:06 2016
@@ -74,31 +74,6 @@
         <dependencies>
        </dependencies>
       </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-dependency-plugin</artifactId>
-        <executions>
-          <execution>
-            <id>unpack</id>
-            <phase>package</phase>
-            <goals>
-              <goal>unpack</goal>
-            </goals>
-            <configuration>
-              <artifactItems>
-                <artifactItem>
-                  <groupId>org.tango-project</groupId>
-                  <artifactId>tango-icon-theme</artifactId>
-                  <version>0.8.0</version>
-                </artifactItem>
-              </artifactItems>
-              <outputDirectory>
-                ${project.build.directory}/${project.build.finalName}/image
-              </outputDirectory>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
     </plugins>
   </build>
 
@@ -199,12 +174,6 @@
       <version>${deltaspike.version}</version>
     </dependency>
 
-    <!-- which repository-->
-    <dependency>
-        <groupId>org.tango-project</groupId>
-        <artifactId>tango-icon-theme</artifactId>
-        <version>0.8.0</version>
-    </dependency>
     <dependency>
     	<groupId>org.apache.geronimo.specs</groupId>
     	<artifactId>geronimo-jpa_3.0_spec</artifactId>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/editor.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/editor.xhtml?rev=1771600&r1=1771599&r2=1771600&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/editor.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/editor.xhtml Sun Nov 27 15:02:06 2016
@@ -31,7 +31,7 @@
 
     <tc:buttons> <!-- XXX merge with the other toolbar on list.xhtml !!! -->
       <tc:button tip="Logout" action="#{controller.logout}" immediate="true"
-                 image="image/org/tango-project/tango-icon-theme/16x16/actions/system-log-out.png">
+                 image="fa-question">
         <tc:style customClass="btn-danger"/>
       </tc:button>
     </tc:buttons>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/layout/basic.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/layout/basic.xhtml?rev=1771600&r1=1771599&r2=1771600&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/layout/basic.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/layout/basic.xhtml Sun Nov 27 15:02:06 2016
@@ -21,7 +21,6 @@
                 xmlns:tc="http://myfaces.apache.org/tobago/component"
                 xmlns:ui="http://java.sun.com/jsf/facelets">
   <f:view locale="#{controller.language}">
-    <tc:loadBundle basename="resource" var="bundle"/>
 
     <tc:page applicationIcon="icon/favicon.ico" label="${title}" id="page">
 
@@ -29,20 +28,20 @@
 
         <tc:script file="auth/logout.js"/>
 
-        <!--
+<!--
               <f:facet name="menuBar">
                 <tc:menuBar>
                   <tc:form>
                     <tc:menu label="#{bundle.menuFile}">
                       <tc:menuCommand label="#{bundle.menuFileNew}" action="#{controller.createAddress}" immediate="true"
-                                   image="image/org/tango-project/tango-icon-theme/16x16/actions/contact-new.png"/>
+                                   image="fa-question"/>
                       <tc:menuCommand label="Add Dummy Addresses" action="#{controller.addDummyAddresses}" immediate="true"/>
                       <tc:menuSeparator/>
                       <tc:menuCommand label="#{bundle.admin}" action="#{admin.admin}"
-                                   image="image/org/tango-project/tango-icon-theme/16x16/categories/preferences-system.png"/>
+                                   image="fa-question"/>
                       <tc:menuSeparator/>
                       <tc:menuCommand label="Logout" action="#{controller.logout}"
-                                   image="image/org/tango-project/tango-icon-theme/16x16/actions/system-log-out.png"/>
+                                   image="fa-question"/>
                     </tc:menu>
 
                     <tc:menu label="#{bundle.menuSettings}">
@@ -63,14 +62,14 @@
 
                     <tc:menu label="#{bundle.menuHelp}">
                       <tc:menuCommand label="#{bundle.menuHelpAbout}"
-                                   image="image/org/tango-project/tango-icon-theme/16x16/apps/help-browser.png">
+                                   image="fa-question">
                         <tc:popupReference for=":page:about"/>
                       </tc:menuCommand>
                     </tc:menu>
                   </tc:form>
                 </tc:menuBar>
               </f:facet>
-        -->
+-->
 
         <tc:flowLayout>
           <ui:insert/>
@@ -106,7 +105,7 @@
                 </tc:form>
           -->
           <tc:button label="Dummy" action="#{controller.addDummyAddresses}" immediate="true"
-                     image="image/org/tango-project/tango-icon-theme/16x16/actions/contact-new.png"/>
+                     image="fa-user"/>
 
         </tc:panel>
 
@@ -117,8 +116,9 @@
                 <tc:gridLayout rows="150px;*;auto" columns="150px;*"/>
               </f:facet>
 
-              <tc:image value="image/org/tango-project/tango-icon-theme/address-book-splash-screen.png" width="150"
-                        height="150"/>
+              <tc:image value="fa-user">
+                <tc:style width="150" height="150"/>
+              </tc:image>
               <tc:panel>
                 <f:facet name="layout">
                   <tc:gridLayout rows="auto;auto;auto;*"/>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/list.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/list.xhtml?rev=1771600&r1=1771599&r2=1771600&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/list.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/list.xhtml Sun Nov 27 15:02:06 2016
@@ -27,32 +27,32 @@
     <tc:buttons>
 <!--
       <tc:button label="#{bundle.toolbarAddressList}" action="#{controller.search}" immediate="true"
-                 image="image/org/tango-project/tango-icon-theme/32x32/mimetypes/x-office-address-book.png"
+                 image="fa-question"
                  disabled="#{facesContext.viewRoot.viewId == '/addressbook/list.xhtml'}"/>
 -->
       <tc:button label="#{bundle.listNew}" action="#{controller.createAddress}"
-                 image="image/org/tango-project/tango-icon-theme/16x16/actions/contact-new.png"/>
+                 image="fa-question"/>
       <tc:button label="#{bundle.listEdit}" action="#{controller.editAddress}"
-                         image="image/org/tango-project/tango-icon-theme/16x16/apps/accessories-text-editor.png"/>
+                         image="fa-question"/>
       <tc:button label="#{bundle.listDelete}" action="#{controller.deleteAddresses}"
-                         image="image/org/tango-project/tango-icon-theme/16x16/places/user-trash.png">
+                         image="fa-question">
         <f:facet name="confirmation">
           <tc:out value="#{bundle.listDeleteConfirmation}"/>
         </f:facet>
         <tc:style customClass="btn-danger"/>
       </tc:button>
       <tc:button label="#{bundle.toolbarAbout}"
-                 image="image/org/tango-project/tango-icon-theme/16x16/apps/help-browser.png">
+                 image="fa-question">
         <tc:popupReference for=":page:about"/>
       </tc:button>
       <tc:button label="#{bundle.admin}" action="#{admin.admin}"
-                 image="image/org/tango-project/tango-icon-theme/16x16/categories/preferences-system.png"/>
+                 image="fa-question"/>
 
       <tc:in value="#{controller.searchCriterion}" placeholder="#{bundle.listFilter}" tip="#{bundle.listFilter}"/>
       <tc:button action="#{controller.search}" label="#{bundle.listSearch}"
                  defaultCommand="true"/>
       <tc:button tip="Logout" action="#{controller.logout}" immediate="true"
-                      image="image/org/tango-project/tango-icon-theme/16x16/actions/system-log-out.png"/>
+                      image="fa-question"/>
       <tc:style customClass="btn-danger"/>
     </tc:buttons>
 
@@ -64,17 +64,17 @@
       <f:facet name="toolBar">
         <tc:toolBar>
           <tc:toolBarCommand label="#{bundle.listNew}" action="#{controller.createAddress}"
-                             image="image/org/tango-project/tango-icon-theme/16x16/actions/contact-new.png"/>
+                             image="fa-question"/>
           <tc:toolBarCommand label="#{bundle.listEdit}" action="#{controller.editAddress}"
-                             image="image/org/tango-project/tango-icon-theme/16x16/apps/accessories-text-editor.png"/>
+                             image="fa-question"/>
           <tc:toolBarCommand label="#{bundle.listDelete}" action="#{controller.deleteAddresses}"
-                             image="image/org/tango-project/tango-icon-theme/16x16/places/user-trash.png">
+                             image="fa-question">
             <f:facet name="confirmation">
               <tc:out value="#{bundle.listDeleteConfirmation}"/>
             </f:facet>
           </tc:toolBarCommand>
           <tc:toolBarCommand label="Select Columns" action="#{controller.selectColumns}"
-                             image="image/org/tango-project/tango-icon-theme/16x16/categories/applications-system.png">
+                             image="fa-question">
             <f:facet name="popup">
               <tc:popup width="300" height="200" left="200" top="200"
                         rendered="#{controller.renderPopup}" id="popup">

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/start.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/start.xhtml?rev=1771600&r1=1771599&r2=1771600&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/start.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/start.xhtml Sun Nov 27 15:02:06 2016
@@ -20,8 +20,6 @@
 <f:view xmlns:tc="http://myfaces.apache.org/tobago/component"
         xmlns:f="http://java.sun.com/jsf/core">
 
-  <tc:loadBundle basename="addressbook" var="bundle"/>
-
   <tc:page label="#{bundle.editorTitle}">
     <f:facet name="load">
       <tc:link action="list"/>
@@ -42,8 +40,9 @@
           <tc:gridLayout rows="150px" columns="150px;250px"/>
         </f:facet>
 
-        <tc:image value="image/org/tango-project/tango-icon-theme/address-book-splash-screen.png" width="150"
-                  height="150"/>
+        <tc:image value="fa-address-book">
+          <tc:style width="150" height="150"/>
+        </tc:image>
         <tc:panel>
           <f:facet name="layout">
             <tc:gridLayout rows="auto;auto;auto;*"/>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/tab/business.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/tab/business.xhtml?rev=1771600&r1=1771599&r2=1771600&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/tab/business.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/tab/business.xhtml Sun Nov 27 15:02:06 2016
@@ -20,7 +20,7 @@
 <ui:composition xmlns:f="http://java.sun.com/jsf/core"
                 xmlns:tc="http://myfaces.apache.org/tobago/component"
                 xmlns:ui="http://java.sun.com/jsf/facelets">
-  <tc:loadBundle basename="resource" var="bundle"/>
+
   <tc:panel>
     <f:facet name="layout">
       <tc:gridLayout rows="auto;auto;auto;auto;auto;1*"/>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/tab/misc.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/tab/misc.xhtml?rev=1771600&r1=1771599&r2=1771600&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/tab/misc.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/tab/misc.xhtml Sun Nov 27 15:02:06 2016
@@ -21,7 +21,6 @@
                 xmlns:tc="http://myfaces.apache.org/tobago/component"
                 xmlns:ui="http://java.sun.com/jsf/facelets">
 
-  <tc:loadBundle basename="resource" var="bundle"/>
   <tc:panel>
     <f:facet name="layout">
       <tc:gridLayout rows="1*"/>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/tab/personal.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/tab/personal.xhtml?rev=1771600&r1=1771599&r2=1771600&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/tab/personal.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/addressbook/tab/personal.xhtml Sun Nov 27 15:02:06 2016
@@ -21,7 +21,6 @@
                 xmlns:tc="http://myfaces.apache.org/tobago/component"
                 xmlns:ui="http://java.sun.com/jsf/facelets">
 
-  <tc:loadBundle basename="resource" var="bundle"/>
   <tc:flowLayout>
     <tc:panel>
         <f:facet name="layout">

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/auth/error.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/auth/error.xhtml?rev=1771600&r1=1771599&r2=1771600&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/auth/error.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/auth/error.xhtml Sun Nov 27 15:02:06 2016
@@ -21,8 +21,6 @@
         xmlns:f="http://java.sun.com/jsf/core"
         locale="#{controller.language}">
 
-  <tc:loadBundle basename="resource" var="bundle"/>
-
   <tc:page label="Login Error">
     <f:facet name="layout">
       <tc:gridLayout rows="*;auto;*" columns="*;400px;*"/>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/auth/login.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/auth/login.xhtml?rev=1771600&r1=1771599&r2=1771600&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/auth/login.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/auth/login.xhtml Sun Nov 27 15:02:06 2016
@@ -21,8 +21,6 @@
         xmlns:f="http://java.sun.com/jsf/core"
         locale="#{controller.language}">
 
-  <tc:loadBundle basename="resource" var="bundle"/>
-
   <tc:page id="page" label="Login">
     <tc:flexLayout rows="*;auto;*">
 
@@ -41,12 +39,12 @@
             <tc:flowLayout>
               <tc:out value="#{bundle.loginIntro}"/>
               (
-              <tc:link label="guest/guest" image="image/org/tango-project/tango-icon-theme/16x16/apps/system-users.png"
+              <tc:link label="guest/guest" image="fa-user"
                        omit="true">
                 <tc:dataAttribute name="login" value='{"username": "guest", "password": "guest"}'/>
               </tc:link>
               or
-              <tc:link label="admin/admin" image="image/org/tango-project/tango-icon-theme/16x16/apps/system-users.png"
+              <tc:link label="admin/admin" image="fa-user"
                        omit="true">
                 <tc:dataAttribute name="login" value='{"username": "admin", "password": "admin"}'/>
               </tc:link>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/auth/logout.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/auth/logout.xhtml?rev=1771600&r1=1771599&r2=1771600&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/auth/logout.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/auth/logout.xhtml Sun Nov 27 15:02:06 2016
@@ -20,7 +20,6 @@
 <f:view xmlns:tc="http://myfaces.apache.org/tobago/component"
         xmlns:f="http://java.sun.com/jsf/core"
         locale="#{controller.language}">
-  <tc:loadBundle basename="resource" var="bundle"/>
 
   <tc:page label="#{bundle.loginLogoutTitle}">
     <f:facet name="layout">

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/error.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/error.xhtml?rev=1771600&r1=1771599&r2=1771600&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/error.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-addressbook/src/main/webapp/error.xhtml Sun Nov 27 15:02:06 2016
@@ -19,7 +19,6 @@
 
 <f:view xmlns:tc="http://myfaces.apache.org/tobago/component"
         xmlns:f="http://java.sun.com/jsf/core">
-  <tc:loadBundle basename="resource" var="bundle"/>
 
   <tc:page label="Error">
     <f:facet name="layout">

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/cell/3x3-center.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/cell/3x3-center.xhtml?rev=1771600&r1=1771599&r2=1771600&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/cell/3x3-center.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/cell/3x3-center.xhtml Sun Nov 27 15:02:06 2016
@@ -18,11 +18,8 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 
-  <tc:loadBundle var="test" basename="test"/>
-
   <tc:page id="page">
     <f:facet name="layout">
       <tc:gridLayout rows="*;100px;*" columns="*;100px;*"/>

Modified: myfaces/tobago/trunk/tobago-theme/tobago-theme-speyside/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-theme/tobago-theme-speyside/pom.xml?rev=1771600&r1=1771599&r2=1771600&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-theme/tobago-theme-speyside/pom.xml (original)
+++ myfaces/tobago/trunk/tobago-theme/tobago-theme-speyside/pom.xml Sun Nov 27 15:02:06 2016
@@ -42,62 +42,6 @@
   <build>
     <plugins>
       <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-dependency-plugin</artifactId>
-        <executions>
-          <execution>
-            <id>unpack-external-images</id>
-            <phase>process-resources</phase>
-            <goals>
-              <goal>unpack</goal>
-            </goals>
-            <configuration>
-              <artifactItems>
-                <artifactItem>
-                  <groupId>org.tango-project</groupId>
-                  <artifactId>tango-icon-theme</artifactId>
-                  <version>0.8.0</version>
-                </artifactItem>
-              </artifactItems>
-              <outputDirectory>${project.build.directory}/external-images</outputDirectory>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-      <plugin>
-        <artifactId>maven-resources-plugin</artifactId>
-        <executions>
-          <execution>
-            <id>copy-external-images</id>
-            <phase>process-resources</phase>
-            <goals>
-              <goal>copy-resources</goal>
-            </goals>
-            <configuration>
-              <outputDirectory>${project.build.outputDirectory}</outputDirectory>
-              <resources>
-                <resource>
-                  <targetPath>org/apache/myfaces/tobago/renderkit/html/speyside/standard/image</targetPath>
-                  <directory>${project.build.directory}/external-images/org/tango-project/tango-icon-theme/16x16/status</directory>
-                  <includes>
-                    <include>dialog-error.png</include>
-                    <include>dialog-information.png</include>
-                    <include>dialog-warning.png</include>
-                  </includes>
-                </resource>
-                <resource>
-                  <targetPath>org/apache/myfaces/tobago/renderkit/html/speyside/standard/image</targetPath>
-                  <directory>${project.build.directory}/external-images/org/tango-project/tango-icon-theme/16x16/actions</directory>
-                  <includes>
-                    <include>process-stop.png</include>
-                  </includes>
-                </resource>
-              </resources>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-      <plugin>
         <groupId>org.lesscss</groupId>
         <artifactId>lesscss-maven-plugin</artifactId>
         <version>1.7.0.1.1</version>

Modified: myfaces/tobago/trunk/tobago-theme/tobago-theme-speyside/src/main/appended-resources/META-INF/NOTICE
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-theme/tobago-theme-speyside/src/main/appended-resources/META-INF/NOTICE?rev=1771600&r1=1771599&r2=1771600&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-theme/tobago-theme-speyside/src/main/appended-resources/META-INF/NOTICE (original)
+++ myfaces/tobago/trunk/tobago-theme/tobago-theme-speyside/src/main/appended-resources/META-INF/NOTICE Sun Nov 27 15:02:06 2016
@@ -1,6 +1,3 @@
 Based on source code originally developed by
 Atanion GmbH (http://www.atanion.com/)
 Copyright 2002-2005 Atanion GmbH.
-
-This product includes images developed by
-the Tango Desktop Project (http://tango.freedesktop.org/).