You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jb...@apache.org on 2008/06/07 05:40:40 UTC

svn commit: r664269 - in /geronimo/samples/branches/2.1/samples: myphonebook/myphonebook-ear/src/main/resources/PhoneBook.sql timereport/timereport-war/src/main/webapp/WEB-INF/TimeReportDB.sql

Author: jbohn
Date: Fri Jun  6 20:40:39 2008
New Revision: 664269

URL: http://svn.apache.org/viewvc?rev=664269&view=rev
Log:
fix license headers in sql files

Modified:
    geronimo/samples/branches/2.1/samples/myphonebook/myphonebook-ear/src/main/resources/PhoneBook.sql
    geronimo/samples/branches/2.1/samples/timereport/timereport-war/src/main/webapp/WEB-INF/TimeReportDB.sql

Modified: geronimo/samples/branches/2.1/samples/myphonebook/myphonebook-ear/src/main/resources/PhoneBook.sql
URL: http://svn.apache.org/viewvc/geronimo/samples/branches/2.1/samples/myphonebook/myphonebook-ear/src/main/resources/PhoneBook.sql?rev=664269&r1=664268&r2=664269&view=diff
==============================================================================
--- geronimo/samples/branches/2.1/samples/myphonebook/myphonebook-ear/src/main/resources/PhoneBook.sql (original)
+++ geronimo/samples/branches/2.1/samples/myphonebook/myphonebook-ear/src/main/resources/PhoneBook.sql Fri Jun  6 20:40:39 2008
@@ -1,19 +1,18 @@
-/**
- *  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.
- */
+
+--  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.
 
 CREATE TABLE phonebook (name VARCHAR(255) PRIMARY KEY, number VARCHAR(255)) ;
 INSERT INTO phonebook VALUES('John', '1234');

Modified: geronimo/samples/branches/2.1/samples/timereport/timereport-war/src/main/webapp/WEB-INF/TimeReportDB.sql
URL: http://svn.apache.org/viewvc/geronimo/samples/branches/2.1/samples/timereport/timereport-war/src/main/webapp/WEB-INF/TimeReportDB.sql?rev=664269&r1=664268&r2=664269&view=diff
==============================================================================
--- geronimo/samples/branches/2.1/samples/timereport/timereport-war/src/main/webapp/WEB-INF/TimeReportDB.sql (original)
+++ geronimo/samples/branches/2.1/samples/timereport/timereport-war/src/main/webapp/WEB-INF/TimeReportDB.sql Fri Jun  6 20:40:39 2008
@@ -1,19 +1,18 @@
-/**
- *  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.
- */
+
+--  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.
 
 CREATE TABLE users(
 	userid VARCHAR(15) PRIMARY KEY,