Author: mgentry
Date: Wed Jul 19 07:47:15 2006
New Revision: 423478
URL: http://svn.apache.org/viewvc?rev=423478&view=rev
Log:
Added ASF header.
Modified:
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial-client/src/cayenne/tutorial/client/Main.java
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/README-tutorial-rop.txt
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/jetty-run-config.xml
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/src/cayenne/tutorial/Main.java
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/webapp/WEB-INF/web.xml
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/webapp/detail.jsp
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/webapp/index.jsp
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start/cayenne-tutorial/README-tutorial.txt
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start/cayenne-tutorial/src/cayenne/tutorial/Main.java
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start/cayenne-tutorial/webapp/WEB-INF/web.xml
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start/cayenne-tutorial/webapp/detail.jsp
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start/cayenne-tutorial/webapp/index.jsp
Modified:
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial-client/src/cayenne/tutorial/client/Main.java
URL:
http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial-client/src/cayenne/tutorial/client/Main.java?rev=423478&r1=423477&r2=423478&view=diff
==============================================================================
---
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial-client/src/cayenne/tutorial/client/Main.java
(original)
+++
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial-client/src/cayenne/tutorial/client/Main.java
Wed Jul 19 07:47:15 2006
@@ -1,3 +1,23 @@
+/*****************************************************************
+ * 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.
+ ****************************************************************/
+
+
package cayenne.tutorial.client;
import java.util.Calendar;
@@ -119,4 +139,4 @@
context.commitChanges();
}
}
-}
\ No newline at end of file
+}
Modified:
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/README-tutorial-rop.txt
URL:
http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/README-tutorial-rop.txt?rev=423478&r1=423477&r2=423478&view=diff
==============================================================================
---
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/README-tutorial-rop.txt
(original)
+++
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/README-tutorial-rop.txt
Wed Jul 19 07:47:15 2006
@@ -1,3 +1,21 @@
+ 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.
+
+
This is a Cayenne tutorial source code.
The tutorial documentation is available as a part of Cayenne release and also
on the web:
Modified:
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/jetty-run-config.xml
URL:
http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/jetty-run-config.xml?rev=423478&r1=423477&r2=423478&view=diff
==============================================================================
---
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/jetty-run-config.xml
(original)
+++
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/jetty-run-config.xml
Wed Jul 19 07:47:15 2006
@@ -1,6 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN"
"http://jetty.mortbay.org/configure.dtd">
+<!--
+ 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.
+-->
+
<Configure class="org.mortbay.jetty.Server">
<Call name="addListener">
@@ -38,4 +57,4 @@
<Arg>/</Arg>
<Arg>webapp</Arg>
</Call>
-</Configure>
\ No newline at end of file
+</Configure>
Modified:
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/src/cayenne/tutorial/Main.java
URL:
http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/src/cayenne/tutorial/Main.java?rev=423478&r1=423477&r2=423478&view=diff
==============================================================================
---
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/src/cayenne/tutorial/Main.java
(original)
+++
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/src/cayenne/tutorial/Main.java
Wed Jul 19 07:47:15 2006
@@ -1,3 +1,23 @@
+/*****************************************************************
+ * 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.
+ ****************************************************************/
+
+
package cayenne.tutorial;
import java.util.Calendar;
Modified:
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/webapp/WEB-INF/web.xml
URL:
http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/webapp/WEB-INF/web.xml?rev=423478&r1=423477&r2=423478&view=diff
==============================================================================
---
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/webapp/WEB-INF/web.xml
(original)
+++
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/webapp/WEB-INF/web.xml
Wed Jul 19 07:47:15 2006
@@ -2,6 +2,24 @@
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">
+<!--
+ 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.
+-->
<web-app>
<display-name>Cayenne Tutorial</display-name>
<filter>
@@ -49,4 +67,4 @@
<role-name>cayenne-service-user</role-name>
</security-role>
-</web-app>
\ No newline at end of file
+</web-app>
Modified:
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/webapp/detail.jsp
URL:
http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/webapp/detail.jsp?rev=423478&r1=423477&r2=423478&view=diff
==============================================================================
---
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/webapp/detail.jsp
(original)
+++
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/webapp/detail.jsp
Wed Jul 19 07:47:15 2006
@@ -1,3 +1,22 @@
+<!--
+ 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.
+-->
+
<%@ page language="java" contentType="text/html" %>
<%@ page import="cayenne.tutorial.*" %>
<%@ page import="org.objectstyle.cayenne.*" %>
@@ -65,4 +84,4 @@
</table>
</form>
</body>
-</html>
\ No newline at end of file
+</html>
Modified:
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/webapp/index.jsp
URL:
http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/webapp/index.jsp?rev=423478&r1=423477&r2=423478&view=diff
==============================================================================
---
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/webapp/index.jsp
(original)
+++
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start-rop/cayenne-tutorial/webapp/index.jsp
Wed Jul 19 07:47:15 2006
@@ -1,3 +1,22 @@
+<!--
+ 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.
+-->
+
<%@ page language="java" contentType="text/html" %>
<%@ page import="cayenne.tutorial.*" %>
<%@ page import="org.objectstyle.cayenne.*" %>
@@ -34,4 +53,4 @@
<hr>
<p><a href="detail.jsp">Create new artist...</a></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified:
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start/cayenne-tutorial/README-tutorial.txt
URL:
http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/cayenne/tutorials/quick-start/cayenne-tutorial/README-tutorial.txt?rev=423478&r1=423477&r2=423478&view=diff
==============================================================================
---
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start/cayenne-tutorial/README-tutorial.txt
(original)
+++
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start/cayenne-tutorial/README-tutorial.txt
Wed Jul 19 07:47:15 2006
@@ -1,3 +1,22 @@
+ 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.
+
+
+
This is a Cayenne tutorial source code.
The tutorial documentation is available as a part of Cayenne release and also
on the web:
@@ -8,4 +27,4 @@
* import this project to Eclipse, and open project properties
* delete dependency on "cayenne-java" project
-* add dependencies on two external Jars - cayenne.jar and derby.jar
\ No newline at end of file
+* add dependencies on two external Jars - cayenne.jar and derby.jar
Modified:
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start/cayenne-tutorial/src/cayenne/tutorial/Main.java
URL:
http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/cayenne/tutorials/quick-start/cayenne-tutorial/src/cayenne/tutorial/Main.java?rev=423478&r1=423477&r2=423478&view=diff
==============================================================================
---
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start/cayenne-tutorial/src/cayenne/tutorial/Main.java
(original)
+++
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start/cayenne-tutorial/src/cayenne/tutorial/Main.java
Wed Jul 19 07:47:15 2006
@@ -1,3 +1,23 @@
+/*****************************************************************
+ * 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.
+ ****************************************************************/
+
+
package cayenne.tutorial;
import java.util.Calendar;
Modified:
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start/cayenne-tutorial/webapp/WEB-INF/web.xml
URL:
http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/cayenne/tutorials/quick-start/cayenne-tutorial/webapp/WEB-INF/web.xml?rev=423478&r1=423477&r2=423478&view=diff
==============================================================================
---
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start/cayenne-tutorial/webapp/WEB-INF/web.xml
(original)
+++
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start/cayenne-tutorial/webapp/WEB-INF/web.xml
Wed Jul 19 07:47:15 2006
@@ -2,6 +2,24 @@
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">
+<!--
+ 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.
+-->
<web-app>
<display-name>Cayenne Tutorial</display-name>
<filter>
@@ -15,4 +33,4 @@
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
-</web-app>
\ No newline at end of file
+</web-app>
Modified:
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start/cayenne-tutorial/webapp/detail.jsp
URL:
http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/cayenne/tutorials/quick-start/cayenne-tutorial/webapp/detail.jsp?rev=423478&r1=423477&r2=423478&view=diff
==============================================================================
---
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start/cayenne-tutorial/webapp/detail.jsp
(original)
+++
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start/cayenne-tutorial/webapp/detail.jsp
Wed Jul 19 07:47:15 2006
@@ -1,3 +1,22 @@
+<!--
+ 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.
+-->
+
<%@ page language="java" contentType="text/html" %>
<%@ page import="cayenne.tutorial.*" %>
<%@ page import="org.objectstyle.cayenne.*" %>
@@ -65,4 +84,4 @@
</table>
</form>
</body>
-</html>
\ No newline at end of file
+</html>
Modified:
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start/cayenne-tutorial/webapp/index.jsp
URL:
http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/cayenne/tutorials/quick-start/cayenne-tutorial/webapp/index.jsp?rev=423478&r1=423477&r2=423478&view=diff
==============================================================================
---
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start/cayenne-tutorial/webapp/index.jsp
(original)
+++
incubator/cayenne/main/trunk/cayenne/tutorials/quick-start/cayenne-tutorial/webapp/index.jsp
Wed Jul 19 07:47:15 2006
@@ -1,3 +1,22 @@
+<!--
+ 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.
+-->
+
<%@ page language="java" contentType="text/html" %>
<%@ page import="cayenne.tutorial.*" %>
<%@ page import="org.objectstyle.cayenne.*" %>
@@ -34,4 +53,4 @@
<hr>
<p><a href="detail.jsp">Create new artist...</a></p>
</body>
-</html>
\ No newline at end of file
+</html>