[Bedework-commit] davutil r109 - in
trunk/davio/src/org/bedework/http/client: . carddav dav
svnadmin at bedework.org
svnadmin at bedework.org
Fri Mar 4 16:44:07 EST 2011
Author: bleibson
Date: 2011-03-04 16:43:55 -0500 (Fri, 04 Mar 2011)
New Revision: 109
Modified:
trunk/davio/src/org/bedework/http/client/Client.java
trunk/davio/src/org/bedework/http/client/DavioBadResponse.java
trunk/davio/src/org/bedework/http/client/DavioException.java
trunk/davio/src/org/bedework/http/client/DepthHttpMethod.java
trunk/davio/src/org/bedework/http/client/HttpManager.java
trunk/davio/src/org/bedework/http/client/carddav/CardDavClient.java
trunk/davio/src/org/bedework/http/client/dav/DavClient.java
trunk/davio/src/org/bedework/http/client/dav/DavIo.java
trunk/davio/src/org/bedework/http/client/dav/DavReq.java
trunk/davio/src/org/bedework/http/client/dav/DavResp.java
trunk/davio/src/org/bedework/http/client/dav/MkColMethod.java
trunk/davio/src/org/bedework/http/client/dav/MkcalendarMethod.java
trunk/davio/src/org/bedework/http/client/dav/PostMethod.java
trunk/davio/src/org/bedework/http/client/dav/PropFindMethod.java
trunk/davio/src/org/bedework/http/client/dav/PropPatchMethod.java
trunk/davio/src/org/bedework/http/client/dav/ReportMethod.java
Log:
o Replace copyright notice in all java files with Jasig's
Modified: trunk/davio/src/org/bedework/http/client/Client.java
===================================================================
--- trunk/davio/src/org/bedework/http/client/Client.java 2011-01-11 04:45:07 UTC (rev 108)
+++ trunk/davio/src/org/bedework/http/client/Client.java 2011-03-04 21:43:55 UTC (rev 109)
@@ -1,3 +1,21 @@
+/* ********************************************************************
+ Licensed to Jasig under one or more contributor license
+ agreements. See the NOTICE file distributed with this work
+ for additional information regarding copyright ownership.
+ Jasig 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.
+*/
/*
Copyright (c) 2000-2005 University of Washington. All rights reserved.
Modified: trunk/davio/src/org/bedework/http/client/DavioBadResponse.java
===================================================================
--- trunk/davio/src/org/bedework/http/client/DavioBadResponse.java 2011-01-11 04:45:07 UTC (rev 108)
+++ trunk/davio/src/org/bedework/http/client/DavioBadResponse.java 2011-03-04 21:43:55 UTC (rev 109)
@@ -1,3 +1,21 @@
+/* ********************************************************************
+ Licensed to Jasig under one or more contributor license
+ agreements. See the NOTICE file distributed with this work
+ for additional information regarding copyright ownership.
+ Jasig 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.
+*/
/*
Copyright (c) 2000-2005 University of Washington. All rights reserved.
@@ -71,4 +89,4 @@
public DavioBadResponse(String s) {
super(s);
}
-}
\ No newline at end of file
+}
Modified: trunk/davio/src/org/bedework/http/client/DavioException.java
===================================================================
--- trunk/davio/src/org/bedework/http/client/DavioException.java 2011-01-11 04:45:07 UTC (rev 108)
+++ trunk/davio/src/org/bedework/http/client/DavioException.java 2011-03-04 21:43:55 UTC (rev 109)
@@ -1,3 +1,21 @@
+/* ********************************************************************
+ Licensed to Jasig under one or more contributor license
+ agreements. See the NOTICE file distributed with this work
+ for additional information regarding copyright ownership.
+ Jasig 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.
+*/
/*
Copyright (c) 2000-2005 University of Washington. All rights reserved.
@@ -114,4 +132,4 @@
return s;
}
-}
\ No newline at end of file
+}
Modified: trunk/davio/src/org/bedework/http/client/DepthHttpMethod.java
===================================================================
--- trunk/davio/src/org/bedework/http/client/DepthHttpMethod.java 2011-01-11 04:45:07 UTC (rev 108)
+++ trunk/davio/src/org/bedework/http/client/DepthHttpMethod.java 2011-03-04 21:43:55 UTC (rev 109)
@@ -1,3 +1,21 @@
+/* ********************************************************************
+ Licensed to Jasig under one or more contributor license
+ agreements. See the NOTICE file distributed with this work
+ for additional information regarding copyright ownership.
+ Jasig 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.
+*/
/*
Copyright (c) 2000-2005 University of Washington. All rights reserved.
Modified: trunk/davio/src/org/bedework/http/client/HttpManager.java
===================================================================
--- trunk/davio/src/org/bedework/http/client/HttpManager.java 2011-01-11 04:45:07 UTC (rev 108)
+++ trunk/davio/src/org/bedework/http/client/HttpManager.java 2011-03-04 21:43:55 UTC (rev 109)
@@ -1,3 +1,21 @@
+/* ********************************************************************
+ Licensed to Jasig under one or more contributor license
+ agreements. See the NOTICE file distributed with this work
+ for additional information regarding copyright ownership.
+ Jasig 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.
+*/
/*
Copyright (c) 2000-2005 University of Washington. All rights reserved.
Modified: trunk/davio/src/org/bedework/http/client/carddav/CardDavClient.java
===================================================================
--- trunk/davio/src/org/bedework/http/client/carddav/CardDavClient.java 2011-01-11 04:45:07 UTC (rev 108)
+++ trunk/davio/src/org/bedework/http/client/carddav/CardDavClient.java 2011-03-04 21:43:55 UTC (rev 109)
@@ -1,27 +1,20 @@
-/* **********************************************************************
- Copyright 2006 Rensselaer Polytechnic Institute. All worldwide rights reserved.
-
- Redistribution and use of this distribution in source and binary forms,
- with or without modification, are permitted provided that:
- The above copyright notice and this permission notice appear in all
- copies and supporting documentation;
-
- The name, identifiers, and trademarks of Rensselaer Polytechnic
- Institute are not used in advertising or publicity without the
- express prior written permission of Rensselaer Polytechnic Institute;
-
- DISCLAIMER: The software is distributed" AS IS" without any express or
- implied warranty, including but not limited to, any implied warranties
- of merchantability or fitness for a particular purpose or any warrant)'
- of non-infringement of any current or pending patent rights. The authors
- of the software make no representations about the suitability of this
- software for any particular purpose. The entire risk as to the quality
- and performance of the software is with the user. Should the software
- prove defective, the user assumes the cost of all necessary servicing,
- repair or correction. In particular, neither Rensselaer Polytechnic
- Institute, nor the authors of the software are liable for any indirect,
- special, consequential, or incidental damages related to the software,
- to the maximum extent the law permits.
+/* ********************************************************************
+ Licensed to Jasig under one or more contributor license
+ agreements. See the NOTICE file distributed with this work
+ for additional information regarding copyright ownership.
+ Jasig 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 org.bedework.http.client.carddav;
Modified: trunk/davio/src/org/bedework/http/client/dav/DavClient.java
===================================================================
--- trunk/davio/src/org/bedework/http/client/dav/DavClient.java 2011-01-11 04:45:07 UTC (rev 108)
+++ trunk/davio/src/org/bedework/http/client/dav/DavClient.java 2011-03-04 21:43:55 UTC (rev 109)
@@ -1,27 +1,20 @@
-/* **********************************************************************
- Copyright 2006 Rensselaer Polytechnic Institute. All worldwide rights reserved.
-
- Redistribution and use of this distribution in source and binary forms,
- with or without modification, are permitted provided that:
- The above copyright notice and this permission notice appear in all
- copies and supporting documentation;
-
- The name, identifiers, and trademarks of Rensselaer Polytechnic
- Institute are not used in advertising or publicity without the
- express prior written permission of Rensselaer Polytechnic Institute;
-
- DISCLAIMER: The software is distributed" AS IS" without any express or
- implied warranty, including but not limited to, any implied warranties
- of merchantability or fitness for a particular purpose or any warrant)'
- of non-infringement of any current or pending patent rights. The authors
- of the software make no representations about the suitability of this
- software for any particular purpose. The entire risk as to the quality
- and performance of the software is with the user. Should the software
- prove defective, the user assumes the cost of all necessary servicing,
- repair or correction. In particular, neither Rensselaer Polytechnic
- Institute, nor the authors of the software are liable for any indirect,
- special, consequential, or incidental damages related to the software,
- to the maximum extent the law permits.
+/* ********************************************************************
+ Licensed to Jasig under one or more contributor license
+ agreements. See the NOTICE file distributed with this work
+ for additional information regarding copyright ownership.
+ Jasig 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 org.bedework.http.client.dav;
Modified: trunk/davio/src/org/bedework/http/client/dav/DavIo.java
===================================================================
--- trunk/davio/src/org/bedework/http/client/dav/DavIo.java 2011-01-11 04:45:07 UTC (rev 108)
+++ trunk/davio/src/org/bedework/http/client/dav/DavIo.java 2011-03-04 21:43:55 UTC (rev 109)
@@ -1,27 +1,20 @@
-/* **********************************************************************
- Copyright 2006 Rensselaer Polytechnic Institute. All worldwide rights reserved.
-
- Redistribution and use of this distribution in source and binary forms,
- with or without modification, are permitted provided that:
- The above copyright notice and this permission notice appear in all
- copies and supporting documentation;
-
- The name, identifiers, and trademarks of Rensselaer Polytechnic
- Institute are not used in advertising or publicity without the
- express prior written permission of Rensselaer Polytechnic Institute;
-
- DISCLAIMER: The software is distributed" AS IS" without any express or
- implied warranty, including but not limited to, any implied warranties
- of merchantability or fitness for a particular purpose or any warrant)'
- of non-infringement of any current or pending patent rights. The authors
- of the software make no representations about the suitability of this
- software for any particular purpose. The entire risk as to the quality
- and performance of the software is with the user. Should the software
- prove defective, the user assumes the cost of all necessary servicing,
- repair or correction. In particular, neither Rensselaer Polytechnic
- Institute, nor the authors of the software are liable for any indirect,
- special, consequential, or incidental damages related to the software,
- to the maximum extent the law permits.
+/* ********************************************************************
+ Licensed to Jasig under one or more contributor license
+ agreements. See the NOTICE file distributed with this work
+ for additional information regarding copyright ownership.
+ Jasig 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 org.bedework.http.client.dav;
Modified: trunk/davio/src/org/bedework/http/client/dav/DavReq.java
===================================================================
--- trunk/davio/src/org/bedework/http/client/dav/DavReq.java 2011-01-11 04:45:07 UTC (rev 108)
+++ trunk/davio/src/org/bedework/http/client/dav/DavReq.java 2011-03-04 21:43:55 UTC (rev 109)
@@ -1,27 +1,20 @@
-/* **********************************************************************
- Copyright 2006 Rensselaer Polytechnic Institute. All worldwide rights reserved.
-
- Redistribution and use of this distribution in source and binary forms,
- with or without modification, are permitted provided that:
- The above copyright notice and this permission notice appear in all
- copies and supporting documentation;
-
- The name, identifiers, and trademarks of Rensselaer Polytechnic
- Institute are not used in advertising or publicity without the
- express prior written permission of Rensselaer Polytechnic Institute;
-
- DISCLAIMER: The software is distributed" AS IS" without any express or
- implied warranty, including but not limited to, any implied warranties
- of merchantability or fitness for a particular purpose or any warrant)'
- of non-infringement of any current or pending patent rights. The authors
- of the software make no representations about the suitability of this
- software for any particular purpose. The entire risk as to the quality
- and performance of the software is with the user. Should the software
- prove defective, the user assumes the cost of all necessary servicing,
- repair or correction. In particular, neither Rensselaer Polytechnic
- Institute, nor the authors of the software are liable for any indirect,
- special, consequential, or incidental damages related to the software,
- to the maximum extent the law permits.
+/* ********************************************************************
+ Licensed to Jasig under one or more contributor license
+ agreements. See the NOTICE file distributed with this work
+ for additional information regarding copyright ownership.
+ Jasig 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 org.bedework.http.client.dav;
Modified: trunk/davio/src/org/bedework/http/client/dav/DavResp.java
===================================================================
--- trunk/davio/src/org/bedework/http/client/dav/DavResp.java 2011-01-11 04:45:07 UTC (rev 108)
+++ trunk/davio/src/org/bedework/http/client/dav/DavResp.java 2011-03-04 21:43:55 UTC (rev 109)
@@ -1,29 +1,21 @@
-/* **********************************************************************
- Copyright 2005 Rensselaer Polytechnic Institute. All worldwide rights reserved.
-
- Redistribution and use of this distribution in source and binary forms,
- with or without modification, are permitted provided that:
- The above copyright notice and this permission notice appear in all
- copies and supporting documentation;
-
- The name, identifiers, and trademarks of Rensselaer Polytechnic
- Institute are not used in advertising or publicity without the
- express prior written permission of Rensselaer Polytechnic Institute;
-
- DISCLAIMER: The software is distributed" AS IS" without any express or
- implied warranty, including but not limited to, any implied warranties
- of merchantability or fitness for a particular purpose or any warrant)'
- of non-infringement of any current or pending patent rights. The authors
- of the software make no representations about the suitability of this
- software for any particular purpose. The entire risk as to the quality
- and performance of the software is with the user. Should the software
- prove defective, the user assumes the cost of all necessary servicing,
- repair or correction. In particular, neither Rensselaer Polytechnic
- Institute, nor the authors of the software are liable for any indirect,
- special, consequential, or incidental damages related to the software,
- to the maximum extent the law permits.
+/* ********************************************************************
+ Licensed to Jasig under one or more contributor license
+ agreements. See the NOTICE file distributed with this work
+ for additional information regarding copyright ownership.
+ Jasig 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 org.bedework.http.client.dav;
import org.bedework.http.client.DavioException;
Modified: trunk/davio/src/org/bedework/http/client/dav/MkColMethod.java
===================================================================
--- trunk/davio/src/org/bedework/http/client/dav/MkColMethod.java 2011-01-11 04:45:07 UTC (rev 108)
+++ trunk/davio/src/org/bedework/http/client/dav/MkColMethod.java 2011-03-04 21:43:55 UTC (rev 109)
@@ -1,27 +1,20 @@
-/* **********************************************************************
- Copyright 2009 Rensselaer Polytechnic Institute. All worldwide rights reserved.
-
- Redistribution and use of this distribution in source and binary forms,
- with or without modification, are permitted provided that:
- The above copyright notice and this permission notice appear in all
- copies and supporting documentation;
-
- The name, identifiers, and trademarks of Rensselaer Polytechnic
- Institute are not used in advertising or publicity without the
- express prior written permission of Rensselaer Polytechnic Institute;
-
- DISCLAIMER: The software is distributed" AS IS" without any express or
- implied warranty, including but not limited to, any implied warranties
- of merchantability or fitness for a particular purpose or any warrant)'
- of non-infringement of any current or pending patent rights. The authors
- of the software make no representations about the suitability of this
- software for any particular purpose. The entire risk as to the quality
- and performance of the software is with the user. Should the software
- prove defective, the user assumes the cost of all necessary servicing,
- repair or correction. In particular, neither Rensselaer Polytechnic
- Institute, nor the authors of the software are liable for any indirect,
- special, consequential, or incidental damages related to the software,
- to the maximum extent the law permits.
+/* ********************************************************************
+ Licensed to Jasig under one or more contributor license
+ agreements. See the NOTICE file distributed with this work
+ for additional information regarding copyright ownership.
+ Jasig 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 org.bedework.http.client.dav;
Modified: trunk/davio/src/org/bedework/http/client/dav/MkcalendarMethod.java
===================================================================
--- trunk/davio/src/org/bedework/http/client/dav/MkcalendarMethod.java 2011-01-11 04:45:07 UTC (rev 108)
+++ trunk/davio/src/org/bedework/http/client/dav/MkcalendarMethod.java 2011-03-04 21:43:55 UTC (rev 109)
@@ -1,27 +1,20 @@
-/* **********************************************************************
- Copyright 2009 Rensselaer Polytechnic Institute. All worldwide rights reserved.
-
- Redistribution and use of this distribution in source and binary forms,
- with or without modification, are permitted provided that:
- The above copyright notice and this permission notice appear in all
- copies and supporting documentation;
-
- The name, identifiers, and trademarks of Rensselaer Polytechnic
- Institute are not used in advertising or publicity without the
- express prior written permission of Rensselaer Polytechnic Institute;
-
- DISCLAIMER: The software is distributed" AS IS" without any express or
- implied warranty, including but not limited to, any implied warranties
- of merchantability or fitness for a particular purpose or any warrant)'
- of non-infringement of any current or pending patent rights. The authors
- of the software make no representations about the suitability of this
- software for any particular purpose. The entire risk as to the quality
- and performance of the software is with the user. Should the software
- prove defective, the user assumes the cost of all necessary servicing,
- repair or correction. In particular, neither Rensselaer Polytechnic
- Institute, nor the authors of the software are liable for any indirect,
- special, consequential, or incidental damages related to the software,
- to the maximum extent the law permits.
+/* ********************************************************************
+ Licensed to Jasig under one or more contributor license
+ agreements. See the NOTICE file distributed with this work
+ for additional information regarding copyright ownership.
+ Jasig 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 org.bedework.http.client.dav;
Modified: trunk/davio/src/org/bedework/http/client/dav/PostMethod.java
===================================================================
--- trunk/davio/src/org/bedework/http/client/dav/PostMethod.java 2011-01-11 04:45:07 UTC (rev 108)
+++ trunk/davio/src/org/bedework/http/client/dav/PostMethod.java 2011-03-04 21:43:55 UTC (rev 109)
@@ -1,3 +1,21 @@
+/* ********************************************************************
+ Licensed to Jasig under one or more contributor license
+ agreements. See the NOTICE file distributed with this work
+ for additional information regarding copyright ownership.
+ Jasig 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.
+*/
/*
Copyright (c) 2000-2005 University of Washington. All rights reserved.
Modified: trunk/davio/src/org/bedework/http/client/dav/PropFindMethod.java
===================================================================
--- trunk/davio/src/org/bedework/http/client/dav/PropFindMethod.java 2011-01-11 04:45:07 UTC (rev 108)
+++ trunk/davio/src/org/bedework/http/client/dav/PropFindMethod.java 2011-03-04 21:43:55 UTC (rev 109)
@@ -1,27 +1,20 @@
-/* **********************************************************************
- Copyright 2008 Rensselaer Polytechnic Institute. All worldwide rights reserved.
-
- Redistribution and use of this distribution in source and binary forms,
- with or without modification, are permitted provided that:
- The above copyright notice and this permission notice appear in all
- copies and supporting documentation;
-
- The name, identifiers, and trademarks of Rensselaer Polytechnic
- Institute are not used in advertising or publicity without the
- express prior written permission of Rensselaer Polytechnic Institute;
-
- DISCLAIMER: The software is distributed" AS IS" without any express or
- implied warranty, including but not limited to, any implied warranties
- of merchantability or fitness for a particular purpose or any warrant)'
- of non-infringement of any current or pending patent rights. The authors
- of the software make no representations about the suitability of this
- software for any particular purpose. The entire risk as to the quality
- and performance of the software is with the user. Should the software
- prove defective, the user assumes the cost of all necessary servicing,
- repair or correction. In particular, neither Rensselaer Polytechnic
- Institute, nor the authors of the software are liable for any indirect,
- special, consequential, or incidental damages related to the software,
- to the maximum extent the law permits.
+/* ********************************************************************
+ Licensed to Jasig under one or more contributor license
+ agreements. See the NOTICE file distributed with this work
+ for additional information regarding copyright ownership.
+ Jasig 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 org.bedework.http.client.dav;
Modified: trunk/davio/src/org/bedework/http/client/dav/PropPatchMethod.java
===================================================================
--- trunk/davio/src/org/bedework/http/client/dav/PropPatchMethod.java 2011-01-11 04:45:07 UTC (rev 108)
+++ trunk/davio/src/org/bedework/http/client/dav/PropPatchMethod.java 2011-03-04 21:43:55 UTC (rev 109)
@@ -1,27 +1,20 @@
-/* **********************************************************************
- Copyright 2008 Rensselaer Polytechnic Institute. All worldwide rights reserved.
-
- Redistribution and use of this distribution in source and binary forms,
- with or without modification, are permitted provided that:
- The above copyright notice and this permission notice appear in all
- copies and supporting documentation;
-
- The name, identifiers, and trademarks of Rensselaer Polytechnic
- Institute are not used in advertising or publicity without the
- express prior written permission of Rensselaer Polytechnic Institute;
-
- DISCLAIMER: The software is distributed" AS IS" without any express or
- implied warranty, including but not limited to, any implied warranties
- of merchantability or fitness for a particular purpose or any warrant)'
- of non-infringement of any current or pending patent rights. The authors
- of the software make no representations about the suitability of this
- software for any particular purpose. The entire risk as to the quality
- and performance of the software is with the user. Should the software
- prove defective, the user assumes the cost of all necessary servicing,
- repair or correction. In particular, neither Rensselaer Polytechnic
- Institute, nor the authors of the software are liable for any indirect,
- special, consequential, or incidental damages related to the software,
- to the maximum extent the law permits.
+/* ********************************************************************
+ Licensed to Jasig under one or more contributor license
+ agreements. See the NOTICE file distributed with this work
+ for additional information regarding copyright ownership.
+ Jasig 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 org.bedework.http.client.dav;
Modified: trunk/davio/src/org/bedework/http/client/dav/ReportMethod.java
===================================================================
--- trunk/davio/src/org/bedework/http/client/dav/ReportMethod.java 2011-01-11 04:45:07 UTC (rev 108)
+++ trunk/davio/src/org/bedework/http/client/dav/ReportMethod.java 2011-03-04 21:43:55 UTC (rev 109)
@@ -1,3 +1,21 @@
+/* ********************************************************************
+ Licensed to Jasig under one or more contributor license
+ agreements. See the NOTICE file distributed with this work
+ for additional information regarding copyright ownership.
+ Jasig 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.
+*/
/*
Copyright (c) 2000-2005 University of Washington. All rights reserved.
More information about the Bedework-commit
mailing list