You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bridges-commits@portals.apache.org by at...@apache.org on 2007/03/12 02:45:04 UTC

svn commit: r517068 [1/9] - in /portals/bridges/trunk: ./ applications/ applications/jpetstore/ applications/jpetstore/src/java/ applications/jpetstore/src/java/com/ibatis/jpetstore/domain/ applications/jpetstore/src/java/com/ibatis/jpetstore/persisten...

Author: ate
Date: Sun Mar 11 18:44:37 2007
New Revision: 517068

URL: http://svn.apache.org/viewvc?view=rev&rev=517068
Log:
JIRA issue PB-59: Compliance with http://www.apache.org/legal/src-headers.html
- fixed all source license headers
- provided NOTICE.txt which will be included in all produced artifacts (jars,wars)
  Note: this currently only works correctly when build with maven-1.
- bump version to 1.0.2-RC

AFAIK, this commit brings bridges fully inline with the requirements of http://www.apache.org/legal/src-headers.html,
so I'll close PB-59 hereafter.

I'll also tag this "release candidate" 1.0.2-RC, but (as the -RC already indicates) this will not lead to a new release (yet).
There are still *zero* code changes since the 1.0.1 release.
After setting the 1.0.2-RC tag, I'll bump the version to 1.0.2-dev for continued (real) development. 

Added:
    portals/bridges/trunk/NOTICE.txt   (with props)
Modified:
    portals/bridges/trunk/applications/jpetstore/maven.xml
    portals/bridges/trunk/applications/jpetstore/pom.xml
    portals/bridges/trunk/applications/jpetstore/project.properties
    portals/bridges/trunk/applications/jpetstore/project.xml
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Account.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Cart.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/CartItem.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Category.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Item.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/LineItem.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Order.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Product.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Sequence.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/DaoConfig.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/LocalHsqldbConfigurator.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/dao.xml
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/AccountDao.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/CategoryDao.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/ItemDao.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/OrderDao.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/ProductDao.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/SequenceDao.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/AccountSqlMapDao.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/BaseSqlMapDao.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/CategorySqlMapDao.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/ItemSqlMapDao.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/OrderSqlMapDao.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/ProductSqlMapDao.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/SequenceSqlMapDao.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Account.xml
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Category.xml
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Item.xml
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/LineItem.xml
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Order.xml
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Product.xml
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Sequence.xml
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/sql-map-config.xml
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/presentation/AccountBean.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/presentation/CartBean.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/presentation/CatalogBean.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/presentation/OrderBean.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/service/AccountService.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/service/CatalogService.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/service/OrderService.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/struts/ActionContext.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/struts/BaseBean.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/struts/BeanAction.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/struts/BeanActionException.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/struts/httpmap/ApplicationMap.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/struts/httpmap/BaseHttpMap.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/struts/httpmap/CookieMap.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/struts/httpmap/ParameterMap.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/struts/httpmap/RequestMap.java
    portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/struts/httpmap/SessionMap.java
    portals/bridges/trunk/applications/jpetstore/src/java/log4j.properties
    portals/bridges/trunk/applications/jpetstore/src/java/properties/application.properties
    portals/bridges/trunk/applications/jpetstore/src/webapp/META-INF/context.xml
    portals/bridges/trunk/applications/jpetstore/src/webapp/WEB-INF/db/jpetstore.script
    portals/bridges/trunk/applications/jpetstore/src/webapp/WEB-INF/portlet.xml
    portals/bridges/trunk/applications/jpetstore/src/webapp/WEB-INF/struts-config.xml
    portals/bridges/trunk/applications/jpetstore/src/webapp/WEB-INF/struts-portlet-config.xml
    portals/bridges/trunk/applications/jpetstore/src/webapp/WEB-INF/web.xml
    portals/bridges/trunk/applications/jpetstore/src/webapp/account/EditAccountForm.jsp
    portals/bridges/trunk/applications/jpetstore/src/webapp/account/IncludeAccountFields.jsp
    portals/bridges/trunk/applications/jpetstore/src/webapp/account/NewAccountForm.jsp
    portals/bridges/trunk/applications/jpetstore/src/webapp/account/SignonForm.jsp
    portals/bridges/trunk/applications/jpetstore/src/webapp/cart/Cart.jsp
    portals/bridges/trunk/applications/jpetstore/src/webapp/cart/Checkout.jsp
    portals/bridges/trunk/applications/jpetstore/src/webapp/cart/IncludeMyList.jsp
    portals/bridges/trunk/applications/jpetstore/src/webapp/catalog/Category.jsp
    portals/bridges/trunk/applications/jpetstore/src/webapp/catalog/Item.jsp
    portals/bridges/trunk/applications/jpetstore/src/webapp/catalog/Main.jsp
    portals/bridges/trunk/applications/jpetstore/src/webapp/catalog/Product.jsp
    portals/bridges/trunk/applications/jpetstore/src/webapp/catalog/SearchProducts.jsp
    portals/bridges/trunk/applications/jpetstore/src/webapp/common/Error.jsp
    portals/bridges/trunk/applications/jpetstore/src/webapp/common/IncludeBanner.jsp
    portals/bridges/trunk/applications/jpetstore/src/webapp/common/IncludeBottom.jsp
    portals/bridges/trunk/applications/jpetstore/src/webapp/common/IncludeQuickHeader.jsp
    portals/bridges/trunk/applications/jpetstore/src/webapp/common/IncludeTop.jsp
    portals/bridges/trunk/applications/jpetstore/src/webapp/help.jsp
    portals/bridges/trunk/applications/jpetstore/src/webapp/index.html
    portals/bridges/trunk/applications/jpetstore/src/webapp/index.jsp
    portals/bridges/trunk/applications/jpetstore/src/webapp/order/ConfirmOrder.jsp
    portals/bridges/trunk/applications/jpetstore/src/webapp/order/ListOrders.jsp
    portals/bridges/trunk/applications/jpetstore/src/webapp/order/NewOrderForm.jsp
    portals/bridges/trunk/applications/jpetstore/src/webapp/order/ShippingForm.jsp
    portals/bridges/trunk/applications/jpetstore/src/webapp/order/ViewOrder.jsp
    portals/bridges/trunk/applications/jpetstore/xdocs/navigation.xml
    portals/bridges/trunk/applications/jsf-demo/maven.xml
    portals/bridges/trunk/applications/jsf-demo/pom.xml
    portals/bridges/trunk/applications/jsf-demo/project.properties
    portals/bridges/trunk/applications/jsf-demo/project.xml
    portals/bridges/trunk/applications/jsf-demo/src/java/guessNumber/MessageFactory.java
    portals/bridges/trunk/applications/jsf-demo/src/java/guessNumber/TreeItem.java
    portals/bridges/trunk/applications/jsf-demo/src/java/guessNumber/TreeTable.java
    portals/bridges/trunk/applications/jsf-demo/src/java/guessNumber/UserNumberBean.java
    portals/bridges/trunk/applications/jsf-demo/src/java/org/apache/portals/applications/desktop/calendar/CalendarBean.java
    portals/bridges/trunk/applications/jsf-demo/src/java/org/apache/portals/applications/desktop/resources/Calendar.properties
    portals/bridges/trunk/applications/jsf-demo/src/java/org/apache/portals/applications/desktop/resources/Calendar_de.properties
    portals/bridges/trunk/applications/jsf-demo/src/java/org/apache/portals/applications/desktop/resources/Calendar_en.properties
    portals/bridges/trunk/applications/jsf-demo/src/java/org/apache/portals/applications/desktop/resources/Calendar_es.properties
    portals/bridges/trunk/applications/jsf-demo/src/java/org/apache/portals/applications/desktop/resources/Calendar_hu.properties
    portals/bridges/trunk/applications/jsf-demo/src/java/org/apache/portals/applications/desktop/resources/Calendar_it.properties
    portals/bridges/trunk/applications/jsf-demo/src/java/org/apache/portals/applications/desktop/resources/Calendar_ja.properties
    portals/bridges/trunk/applications/jsf-demo/src/java/org/apache/portals/applications/desktop/resources/Calendar_ko.properties
    portals/bridges/trunk/applications/jsf-demo/src/java/org/apache/portals/applications/desktop/resources/Calendar_zh.properties
    portals/bridges/trunk/applications/jsf-demo/src/webapp/WEB-INF/faces-config.xml
    portals/bridges/trunk/applications/jsf-demo/src/webapp/WEB-INF/portlet.xml
    portals/bridges/trunk/applications/jsf-demo/src/webapp/WEB-INF/tld/myfaces_ext.tld
    portals/bridges/trunk/applications/jsf-demo/src/webapp/WEB-INF/view/calendar-edit.jsp
    portals/bridges/trunk/applications/jsf-demo/src/webapp/WEB-INF/view/calendar-help.html
    portals/bridges/trunk/applications/jsf-demo/src/webapp/WEB-INF/view/calendar-notes.jsp
    portals/bridges/trunk/applications/jsf-demo/src/webapp/WEB-INF/view/calendar-view.jsp
    portals/bridges/trunk/applications/jsf-demo/src/webapp/WEB-INF/web.xml
    portals/bridges/trunk/applications/jsf-demo/src/webapp/greeting.jsp
    portals/bridges/trunk/applications/jsf-demo/src/webapp/index.jsp
    portals/bridges/trunk/applications/jsf-demo/src/webapp/response.jsp
    portals/bridges/trunk/applications/jsf-demo/src/webapp/tree.jsp
    portals/bridges/trunk/applications/jsf-demo/xdocs/index.xml
    portals/bridges/trunk/applications/jsf-demo/xdocs/navigation.xml
    portals/bridges/trunk/applications/perl/maven.xml
    portals/bridges/trunk/applications/perl/pom.xml
    portals/bridges/trunk/applications/perl/project.properties
    portals/bridges/trunk/applications/perl/project.xml
    portals/bridges/trunk/applications/perl/src/webapp/WEB-INF/conf/default-rewriter-rules.xml
    portals/bridges/trunk/applications/perl/src/webapp/WEB-INF/conf/rewriter-rules-mapping.xml
    portals/bridges/trunk/applications/perl/src/webapp/WEB-INF/jetspeed-portlet.xml
    portals/bridges/trunk/applications/perl/src/webapp/WEB-INF/portlet.xml
    portals/bridges/trunk/applications/perl/src/webapp/WEB-INF/web.xml
    portals/bridges/trunk/applications/perl/xdocs/navigation.xml
    portals/bridges/trunk/applications/php/maven.xml
    portals/bridges/trunk/applications/php/pom.xml
    portals/bridges/trunk/applications/php/project.properties
    portals/bridges/trunk/applications/php/project.xml
    portals/bridges/trunk/applications/php/src/webapp/WEB-INF/jetspeed-portlet.xml
    portals/bridges/trunk/applications/php/src/webapp/WEB-INF/portlet.xml
    portals/bridges/trunk/applications/php/src/webapp/WEB-INF/web.xml
    portals/bridges/trunk/applications/php/src/webapp/css/style.css
    portals/bridges/trunk/applications/php/src/webapp/hosts/clear_tables.pl
    portals/bridges/trunk/applications/php/src/webapp/hosts/code/hosts.php
    portals/bridges/trunk/applications/php/src/webapp/hosts/code/interfaces.php
    portals/bridges/trunk/applications/php/src/webapp/hosts/code/services.php
    portals/bridges/trunk/applications/php/src/webapp/hosts/common/forms.php
    portals/bridges/trunk/applications/php/src/webapp/hosts/common/functions.php
    portals/bridges/trunk/applications/php/src/webapp/hosts/conf/config.php
    portals/bridges/trunk/applications/php/src/webapp/hosts/index.html
    portals/bridges/trunk/applications/php/src/webapp/hosts/index.php
    portals/bridges/trunk/applications/php/src/webapp/hosts/install.php
    portals/bridges/trunk/applications/php/src/webapp/test.php
    portals/bridges/trunk/applications/php/xdocs/navigation.xml
    portals/bridges/trunk/applications/pom.xml
    portals/bridges/trunk/applications/project.xml
    portals/bridges/trunk/applications/springmvc/pom.xml
    portals/bridges/trunk/applications/springmvc/project.properties
    portals/bridges/trunk/applications/springmvc/project.xml
    portals/bridges/trunk/applications/springmvc/src/java/log4j.properties
    portals/bridges/trunk/applications/springmvc/src/java/messages.properties
    portals/bridges/trunk/applications/springmvc/src/java/messages_de.properties
    portals/bridges/trunk/applications/springmvc/src/java/org/apache/portals/applications/springmvc/DOMTree.java
    portals/bridges/trunk/applications/springmvc/src/java/org/apache/portals/applications/springmvc/DOMTreeDeleteController.java
    portals/bridges/trunk/applications/springmvc/src/java/org/apache/portals/applications/springmvc/DOMTreePrefsController.java
    portals/bridges/trunk/applications/springmvc/src/java/org/apache/portals/applications/springmvc/DOMTreePrefsListController.java
    portals/bridges/trunk/applications/springmvc/src/java/org/apache/portals/applications/springmvc/DOMTreeService.java
    portals/bridges/trunk/applications/springmvc/src/java/org/apache/portals/applications/springmvc/DOMTreeViewController.java
    portals/bridges/trunk/applications/springmvc/src/java/org/apache/portals/applications/springmvc/resources/DOMTree.properties
    portals/bridges/trunk/applications/springmvc/src/java/views.properties
    portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/context/applicationContext.xml
    portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/context/portlet/domtree.xml
    portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/data/test.xml
    portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/dtd/spring-beans.dtd
    portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/jetspeed-portlet.xml
    portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/jsp/dojo-includes.jsp
    portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/jsp/domTreeEdit.jsp
    portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/jsp/domTreeEditList.jsp
    portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/jsp/include.jsp
    portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/portlet.xml
    portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/tags/c.tld
    portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/tags/fmt.tld
    portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/tags/fn.tld
    portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/tags/html/attributes.tag
    portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/tags/html/errors.tag
    portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/tags/html/imagesPath.tag
    portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/tags/html/include.jsp
    portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/tags/html/input.tag
    portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/tags/html/rootPath.tag
    portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/tags/html/textarea.tag
    portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/tags/spring.tld
    portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/view/domTreeView.vm
    portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/web.xml
    portals/bridges/trunk/applications/springmvc/xdocs/navigation.xml
    portals/bridges/trunk/checkstyle.license
    portals/bridges/trunk/checkstyle.xml
    portals/bridges/trunk/common/pom.xml
    portals/bridges/trunk/common/project.properties
    portals/bridges/trunk/common/project.xml
    portals/bridges/trunk/common/src/java/org/apache/portals/bridges/beans/TabBean.java
    portals/bridges/trunk/common/src/java/org/apache/portals/bridges/common/GenericServletPortlet.java
    portals/bridges/trunk/common/src/java/org/apache/portals/bridges/common/ScriptPostProcess.java
    portals/bridges/trunk/common/src/java/org/apache/portals/bridges/common/ScriptRuntimeData.java
    portals/bridges/trunk/common/src/java/org/apache/portals/bridges/common/ServletContextProvider.java
    portals/bridges/trunk/common/src/java/org/apache/portals/bridges/util/PortletWindowUtils.java
    portals/bridges/trunk/common/src/java/org/apache/portals/bridges/util/PreferencesHelper.java
    portals/bridges/trunk/common/src/java/org/apache/portals/bridges/util/ServletPortletSessionProxy.java
    portals/bridges/trunk/common/src/java/org/apache/portals/messaging/PortletMessaging.java
    portals/bridges/trunk/common/xdocs/navigation.xml
    portals/bridges/trunk/frameworks/pom.xml
    portals/bridges/trunk/frameworks/project.properties
    portals/bridges/trunk/frameworks/project.xml
    portals/bridges/trunk/frameworks/src/java/org/apache/portals/bridges/frameworks/ExternalComponentSupport.java
    portals/bridges/trunk/frameworks/src/java/org/apache/portals/bridges/frameworks/ForwardConstants.java
    portals/bridges/trunk/frameworks/src/java/org/apache/portals/bridges/frameworks/ForwardTag.java
    portals/bridges/trunk/frameworks/src/java/org/apache/portals/bridges/frameworks/Forwarder.java
    portals/bridges/trunk/frameworks/src/java/org/apache/portals/bridges/frameworks/FrameworkConstants.java
    portals/bridges/trunk/frameworks/src/java/org/apache/portals/bridges/frameworks/GenericFrameworkPortlet.java
    portals/bridges/trunk/frameworks/src/java/org/apache/portals/bridges/frameworks/Lookup.java
    portals/bridges/trunk/frameworks/src/java/org/apache/portals/bridges/frameworks/VelocityFrameworkPortlet.java
    portals/bridges/trunk/frameworks/src/java/org/apache/portals/bridges/frameworks/model/ModelBean.java
    portals/bridges/trunk/frameworks/src/java/org/apache/portals/bridges/frameworks/model/PortletApplicationModel.java
    portals/bridges/trunk/frameworks/src/java/org/apache/portals/bridges/frameworks/spring/ModelBeanImpl.java
    portals/bridges/trunk/frameworks/src/java/org/apache/portals/bridges/frameworks/spring/PortletApplicationModelImpl.java
    portals/bridges/trunk/frameworks/src/java/org/apache/portals/bridges/frameworks/spring/validation/ValidationSupport.java
    portals/bridges/trunk/frameworks/webapp/WEB-INF/bridges-frameworks.tld
    portals/bridges/trunk/frameworks/xdocs/navigation.xml
    portals/bridges/trunk/jsf/pom.xml
    portals/bridges/trunk/jsf/project.properties
    portals/bridges/trunk/jsf/project.xml
    portals/bridges/trunk/jsf/src/java/META-INF/faces-config.xml
    portals/bridges/trunk/jsf/src/java/org/apache/portals/bridges/jsf/AbstractAttributeMap.java
    portals/bridges/trunk/jsf/src/java/org/apache/portals/bridges/jsf/ApplicationMap.java
    portals/bridges/trunk/jsf/src/java/org/apache/portals/bridges/jsf/EnumerationIterator.java
    portals/bridges/trunk/jsf/src/java/org/apache/portals/bridges/jsf/FacesContextFactoryImpl.java
    portals/bridges/trunk/jsf/src/java/org/apache/portals/bridges/jsf/FacesPortlet.java
    portals/bridges/trunk/jsf/src/java/org/apache/portals/bridges/jsf/InitParameterMap.java
    portals/bridges/trunk/jsf/src/java/org/apache/portals/bridges/jsf/NullEnumeration.java
    portals/bridges/trunk/jsf/src/java/org/apache/portals/bridges/jsf/NullIterator.java
    portals/bridges/trunk/jsf/src/java/org/apache/portals/bridges/jsf/PortletExternalContextImpl.java
    portals/bridges/trunk/jsf/src/java/org/apache/portals/bridges/jsf/PortletFacesContextImpl.java
    portals/bridges/trunk/jsf/src/java/org/apache/portals/bridges/jsf/PortletUIViewRoot.java
    portals/bridges/trunk/jsf/src/java/org/apache/portals/bridges/jsf/PortletViewHandlerImpl.java
    portals/bridges/trunk/jsf/src/java/org/apache/portals/bridges/jsf/RequestHeaderMap.java
    portals/bridges/trunk/jsf/src/java/org/apache/portals/bridges/jsf/RequestHeaderValuesMap.java
    portals/bridges/trunk/jsf/src/java/org/apache/portals/bridges/jsf/RequestMap.java
    portals/bridges/trunk/jsf/src/java/org/apache/portals/bridges/jsf/RequestParameterMap.java
    portals/bridges/trunk/jsf/src/java/org/apache/portals/bridges/jsf/RequestParameterValuesMap.java
    portals/bridges/trunk/jsf/src/java/org/apache/portals/bridges/jsf/SessionMap.java
    portals/bridges/trunk/jsf/xdocs/guide.xml
    portals/bridges/trunk/jsf/xdocs/index.xml
    portals/bridges/trunk/jsf/xdocs/navigation.xml
    portals/bridges/trunk/library/spring/exampleResources.properties
    portals/bridges/trunk/library/spring/exampleResources_en.properties
    portals/bridges/trunk/library/spring/exampleResources_es.properties
    portals/bridges/trunk/library/spring/exampleResources_fr.properties
    portals/bridges/trunk/library/spring/exampleResources_it.properties
    portals/bridges/trunk/library/spring/exampleResources_ja.properties
    portals/bridges/trunk/library/spring/exampleResources_ko.properties
    portals/bridges/trunk/library/spring/spring-portlet-configuration.xml
    portals/bridges/trunk/library/spring/validator-configuration.xml
    portals/bridges/trunk/library/velocity/macros/frameworks-macros.vm
    portals/bridges/trunk/library/velocity/templates/modes-states.vm
    portals/bridges/trunk/library/velocity/templates/preferences-form.vm
    portals/bridges/trunk/library/velocity/velocity.properties
    portals/bridges/trunk/mapserver/pom.xml
    portals/bridges/trunk/mapserver/project.properties
    portals/bridges/trunk/mapserver/project.xml
    portals/bridges/trunk/mapserver/src/java/org/apache/portals/bridges/mapserver/MapServerPortlet.java
    portals/bridges/trunk/mapserver/xdocs/navigation.xml
    portals/bridges/trunk/maven.xml
    portals/bridges/trunk/perl/pom.xml
    portals/bridges/trunk/perl/project.properties
    portals/bridges/trunk/perl/project.xml
    portals/bridges/trunk/perl/src/java/org/apache/portals/bridges/perl/PerlContentRewriter.java
    portals/bridges/trunk/perl/src/java/org/apache/portals/bridges/perl/PerlParameters.java
    portals/bridges/trunk/perl/src/java/org/apache/portals/bridges/perl/PerlPortlet.java
    portals/bridges/trunk/perl/xdocs/index.xml
    portals/bridges/trunk/perl/xdocs/navigation.xml
    portals/bridges/trunk/php/pom.xml
    portals/bridges/trunk/php/project.properties
    portals/bridges/trunk/php/project.xml
    portals/bridges/trunk/php/src/java/org/apache/portals/bridges/php/PHPApplicationPortlet.java
    portals/bridges/trunk/php/src/java/org/apache/portals/bridges/php/PHPParameters.java
    portals/bridges/trunk/php/src/java/org/apache/portals/bridges/php/PHPServletContextProviderImpl.java
    portals/bridges/trunk/php/src/java/org/apache/portals/bridges/php/ServletConfigImpl.java
    portals/bridges/trunk/php/xdocs/demo.xml
    portals/bridges/trunk/php/xdocs/getting-started.xml
    portals/bridges/trunk/php/xdocs/index.xml
    portals/bridges/trunk/php/xdocs/navigation.xml
    portals/bridges/trunk/php/xdocs/portlets.xml
    portals/bridges/trunk/pom.xml
    portals/bridges/trunk/portletfilter/pom.xml
    portals/bridges/trunk/portletfilter/project.properties
    portals/bridges/trunk/portletfilter/project.xml
    portals/bridges/trunk/portletfilter/src/java/org/apache/portals/bridges/portletfilter/FilterPortlet.java
    portals/bridges/trunk/portletfilter/src/java/org/apache/portals/bridges/portletfilter/PortletFilter.java
    portals/bridges/trunk/portletfilter/src/java/org/apache/portals/bridges/portletfilter/PortletFilterChain.java
    portals/bridges/trunk/portletfilter/src/java/org/apache/portals/bridges/portletfilter/PortletFilterConfig.java
    portals/bridges/trunk/portletfilter/xdocs/index.xml
    portals/bridges/trunk/portletfilter/xdocs/navigation.xml
    portals/bridges/trunk/project.properties
    portals/bridges/trunk/project.xml
    portals/bridges/trunk/struts/README.txt
    portals/bridges/trunk/struts/maven.xml
    portals/bridges/trunk/struts/pom.xml
    portals/bridges/trunk/struts/project.properties
    portals/bridges/trunk/struts/project.xml
    portals/bridges/trunk/struts/src/archived/struts-1.2.4/struts-portlet-el.tld
    portals/bridges/trunk/struts/src/archived/struts-1.2.4/struts-portlet-html-el.tld
    portals/bridges/trunk/struts/src/archived/struts-1.2.4/struts-portlet-html.tld
    portals/bridges/trunk/struts/src/archived/struts-1.2.4/struts-portlet.tld
    portals/bridges/trunk/struts/src/java/META-INF/tlds/struts-1.2.7/struts-portlet-el.tld
    portals/bridges/trunk/struts/src/java/META-INF/tlds/struts-1.2.7/struts-portlet-html-el.tld
    portals/bridges/trunk/struts/src/java/META-INF/tlds/struts-1.2.7/struts-portlet-html.tld
    portals/bridges/trunk/struts/src/java/META-INF/tlds/struts-1.2.7/struts-portlet.tld
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/PortletRequestProcessor.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/PortletServlet.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/PortletServletConfigImpl.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/PortletServletContextImpl.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/PortletServletRequestDispatcher.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/PortletServletRequestWrapper.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/PortletServletResponseWrapper.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/PortletTilesRequestProcessor.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/StrutsPortlet.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/StrutsPortletErrorContext.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/StrutsPortletRenderContext.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/StrutsPortletURL.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/config/AbstractConfigComponent.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/config/PortletURLTypes.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/config/RenderContextAttributes.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/config/StrutsPortletConfig.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/taglib/ELFormTag.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/taglib/ELImageTag.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/taglib/ELImgTag.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/taglib/ELLinkTag.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/taglib/ELRewriteTag.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/taglib/FormTag.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/taglib/ImageTag.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/taglib/ImgTag.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/taglib/LinkTag.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/taglib/RewriteTag.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/taglib/ScriptTag.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/taglib/TagsSupport.java
    portals/bridges/trunk/struts/src/java/org/apache/portals/bridges/struts/util/EmptyHttpServletResponseWrapper.java
    portals/bridges/trunk/struts/xdocs/features.xml
    portals/bridges/trunk/struts/xdocs/index.xml
    portals/bridges/trunk/struts/xdocs/navigation.xml
    portals/bridges/trunk/velocity/pom.xml
    portals/bridges/trunk/velocity/project.properties
    portals/bridges/trunk/velocity/project.xml
    portals/bridges/trunk/velocity/src/java/org/apache/portals/bridges/velocity/AbstractVelocityMessagingPortlet.java
    portals/bridges/trunk/velocity/src/java/org/apache/portals/bridges/velocity/BridgesVelocityViewServlet.java
    portals/bridges/trunk/velocity/src/java/org/apache/portals/bridges/velocity/GenericVelocityPortlet.java
    portals/bridges/trunk/velocity/xdocs/index.xml
    portals/bridges/trunk/velocity/xdocs/navigation.xml
    portals/bridges/trunk/xdocs/download.xml
    portals/bridges/trunk/xdocs/index.xml
    portals/bridges/trunk/xdocs/navigation.xml
    portals/bridges/trunk/xdocs/release-notes.xml
    portals/bridges/trunk/xdocs/style/maven-bridges.css
    portals/bridges/trunk/xdocs/style/project.css

Added: portals/bridges/trunk/NOTICE.txt
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/NOTICE.txt?view=auto&rev=517068
==============================================================================
--- portals/bridges/trunk/NOTICE.txt (added)
+++ portals/bridges/trunk/NOTICE.txt Sun Mar 11 18:44:37 2007
@@ -0,0 +1,6 @@
+Apache Portals Bridges
+   Copyright 2005-2007 The Apache Software Foundation
+
+   This product includes software developed at
+   The Apache Software Foundation (http://www.apache.org/).
+   
\ No newline at end of file

Propchange: portals/bridges/trunk/NOTICE.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: portals/bridges/trunk/NOTICE.txt
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: portals/bridges/trunk/applications/jpetstore/maven.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/maven.xml?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/maven.xml (original)
+++ portals/bridges/trunk/applications/jpetstore/maven.xml Sun Mar 11 18:44:37 2007
@@ -1,3 +1,20 @@
+<?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 default="war"
          xmlns:j="jelly:core"
          xmlns:define="jelly:define">

Modified: portals/bridges/trunk/applications/jpetstore/pom.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/pom.xml?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/pom.xml (original)
+++ portals/bridges/trunk/applications/jpetstore/pom.xml Sun Mar 11 18:44:37 2007
@@ -1,10 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-Copyright 2006 The Apache Software Foundation
-
-Licensed 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
+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
 
@@ -31,7 +32,7 @@
     <parent>
         <groupId>org.apache.portals.bridges</groupId>
         <artifactId>portals-bridges-applications</artifactId>
-        <version>1.0.1</version>
+        <version>1.0.2-RC</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <packaging>war</packaging>

Modified: portals/bridges/trunk/applications/jpetstore/project.properties
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/project.properties?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/project.properties (original)
+++ portals/bridges/trunk/applications/jpetstore/project.properties Sun Mar 11 18:44:37 2007
@@ -1,8 +1,9 @@
-# Copyright 2004 The Apache Software Foundation
-#
-# Licensed 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
+# 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
 #

Modified: portals/bridges/trunk/applications/jpetstore/project.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/project.xml?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/project.xml (original)
+++ portals/bridges/trunk/applications/jpetstore/project.xml Sun Mar 11 18:44:37 2007
@@ -1,10 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-    Copyright 2004 The Apache Software Foundation
-    
-    Licensed 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
+    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
     
@@ -231,6 +232,7 @@
         <targetPath>../${pom.artifactId}/META-INF</targetPath>
         <includes>
           <include>LICENSE.TXT</include>
+          <include>NOTICE.txt</include>
         </includes>
       </resource>
     </resources>

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Account.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Account.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Account.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Account.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Cart.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Cart.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Cart.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Cart.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/CartItem.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/CartItem.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/CartItem.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/CartItem.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Category.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Category.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Category.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Category.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Item.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Item.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Item.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Item.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/LineItem.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/LineItem.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/LineItem.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/LineItem.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Order.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Order.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Order.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Order.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Product.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Product.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Product.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Product.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Sequence.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Sequence.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Sequence.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/domain/Sequence.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/DaoConfig.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/DaoConfig.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/DaoConfig.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/DaoConfig.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/LocalHsqldbConfigurator.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/LocalHsqldbConfigurator.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/LocalHsqldbConfigurator.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/LocalHsqldbConfigurator.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/dao.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/dao.xml?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/dao.xml (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/dao.xml Sun Mar 11 18:44:37 2007
@@ -3,11 +3,12 @@
     PUBLIC "-//iBATIS.com//DTD DAO Configuration 2.0//EN"
     "http://www.ibatis.com/dtd/dao-2.dtd">
 <!--
- Copyright 2000-2004 Apache Software Foundation
-
- Licensed 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
+ 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
 

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/AccountDao.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/AccountDao.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/AccountDao.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/AccountDao.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/CategoryDao.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/CategoryDao.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/CategoryDao.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/CategoryDao.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/ItemDao.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/ItemDao.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/ItemDao.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/ItemDao.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/OrderDao.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/OrderDao.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/OrderDao.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/OrderDao.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/ProductDao.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/ProductDao.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/ProductDao.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/ProductDao.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/SequenceDao.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/SequenceDao.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/SequenceDao.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/iface/SequenceDao.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/AccountSqlMapDao.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/AccountSqlMapDao.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/AccountSqlMapDao.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/AccountSqlMapDao.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/BaseSqlMapDao.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/BaseSqlMapDao.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/BaseSqlMapDao.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/BaseSqlMapDao.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/CategorySqlMapDao.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/CategorySqlMapDao.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/CategorySqlMapDao.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/CategorySqlMapDao.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/ItemSqlMapDao.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/ItemSqlMapDao.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/ItemSqlMapDao.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/ItemSqlMapDao.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/OrderSqlMapDao.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/OrderSqlMapDao.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/OrderSqlMapDao.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/OrderSqlMapDao.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/ProductSqlMapDao.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/ProductSqlMapDao.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/ProductSqlMapDao.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/ProductSqlMapDao.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/SequenceSqlMapDao.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/SequenceSqlMapDao.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/SequenceSqlMapDao.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/SequenceSqlMapDao.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Account.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Account.xml?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Account.xml (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Account.xml Sun Mar 11 18:44:37 2007
@@ -1,11 +1,12 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-2.dtd">
 <!--
- Copyright 2000-2004 Apache Software Foundation
-
- Licensed 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
+ 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
 

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Category.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Category.xml?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Category.xml (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Category.xml Sun Mar 11 18:44:37 2007
@@ -1,11 +1,12 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-2.dtd">
 <!--
- Copyright 2000-2004 Apache Software Foundation
-
- Licensed 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
+ 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
 

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Item.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Item.xml?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Item.xml (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Item.xml Sun Mar 11 18:44:37 2007
@@ -1,11 +1,12 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-2.dtd">
 <!--
- Copyright 2000-2004 Apache Software Foundation
-
- Licensed 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
+ 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
 

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/LineItem.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/LineItem.xml?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/LineItem.xml (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/LineItem.xml Sun Mar 11 18:44:37 2007
@@ -1,11 +1,12 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-2.dtd">
 <!--
- Copyright 2000-2004 Apache Software Foundation
-
- Licensed 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
+ 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
 

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Order.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Order.xml?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Order.xml (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Order.xml Sun Mar 11 18:44:37 2007
@@ -1,11 +1,12 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-2.dtd">
 <!--
- Copyright 2000-2004 Apache Software Foundation
-
- Licensed 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
+ 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
 

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Product.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Product.xml?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Product.xml (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Product.xml Sun Mar 11 18:44:37 2007
@@ -1,11 +1,12 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-2.dtd">
 <!--
- Copyright 2000-2004 Apache Software Foundation
-
- Licensed 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
+ 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
 

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Sequence.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Sequence.xml?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Sequence.xml (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/Sequence.xml Sun Mar 11 18:44:37 2007
@@ -1,11 +1,12 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-2.dtd">
 <!--
- Copyright 2000-2004 Apache Software Foundation
-
- Licensed 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
+ 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
 

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/sql-map-config.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/sql-map-config.xml?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/sql-map-config.xml (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/persistence/sqlmapdao/sql/sql-map-config.xml Sun Mar 11 18:44:37 2007
@@ -1,11 +1,12 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd">
 <!--
- Copyright 2000-2004 Apache Software Foundation
-
- Licensed 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
+ 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
 

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/presentation/AccountBean.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/presentation/AccountBean.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/presentation/AccountBean.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/presentation/AccountBean.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/presentation/CartBean.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/presentation/CartBean.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/presentation/CartBean.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/presentation/CartBean.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/presentation/CatalogBean.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/presentation/CatalogBean.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/presentation/CatalogBean.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/presentation/CatalogBean.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *

Modified: portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/presentation/OrderBean.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/presentation/OrderBean.java?view=diff&rev=517068&r1=517067&r2=517068
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/presentation/OrderBean.java (original)
+++ portals/bridges/trunk/applications/jpetstore/src/java/com/ibatis/jpetstore/presentation/OrderBean.java Sun Mar 11 18:44:37 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
  *



---------------------------------------------------------------------
To unsubscribe, e-mail: bridges-commits-unsubscribe@portals.apache.org
For additional commands, e-mail: bridges-commits-help@portals.apache.org