Author: pquerna
Date: Mon Aug 24 04:08:41 2009
New Revision: 807070

URL: http://svn.apache.org/viewvc?rev=807070&view=rev
Log:
Apply Apache License header to all my python files.

Modified:
    labs/mboxed/trunk/mboxed/mboxed/bin/mboxed-import.py
    labs/mboxed/trunk/mboxed/mboxed/config/environment.py
    labs/mboxed/trunk/mboxed/mboxed/config/routing.py
    labs/mboxed/trunk/mboxed/mboxed/controllers/error.py
    labs/mboxed/trunk/mboxed/mboxed/controllers/mbox.py
    labs/mboxed/trunk/mboxed/mboxed/controllers/site.py
    labs/mboxed/trunk/mboxed/mboxed/lib/app_globals.py
    labs/mboxed/trunk/mboxed/mboxed/lib/base.py
    labs/mboxed/trunk/mboxed/mboxed/lib/helpers.py
    labs/mboxed/trunk/mboxed/mboxed/lib/mbox.py
    labs/mboxed/trunk/mboxed/mboxed/lib/threading.py
    labs/mboxed/trunk/mboxed/mboxed/model/__init__.py
    labs/mboxed/trunk/mboxed/mboxed/websetup.py

Modified: labs/mboxed/trunk/mboxed/mboxed/bin/mboxed-import.py
URL: 
http://svn.apache.org/viewvc/labs/mboxed/trunk/mboxed/mboxed/bin/mboxed-import.py?rev=807070&r1=807069&r2=807070&view=diff
==============================================================================
--- labs/mboxed/trunk/mboxed/mboxed/bin/mboxed-import.py (original)
+++ labs/mboxed/trunk/mboxed/mboxed/bin/mboxed-import.py Mon Aug 24 04:08:41 
2009
@@ -1,3 +1,20 @@
+#
+# 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.
+#
+
 from paste.deploy import appconfig
 from pylons import config
 import sys

Modified: labs/mboxed/trunk/mboxed/mboxed/config/environment.py
URL: 
http://svn.apache.org/viewvc/labs/mboxed/trunk/mboxed/mboxed/config/environment.py?rev=807070&r1=807069&r2=807070&view=diff
==============================================================================
--- labs/mboxed/trunk/mboxed/mboxed/config/environment.py (original)
+++ labs/mboxed/trunk/mboxed/mboxed/config/environment.py Mon Aug 24 04:08:41 
2009
@@ -1,3 +1,20 @@
+#
+# 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.
+#
+
 """Pylons environment configuration"""
 import os
 

Modified: labs/mboxed/trunk/mboxed/mboxed/config/routing.py
URL: 
http://svn.apache.org/viewvc/labs/mboxed/trunk/mboxed/mboxed/config/routing.py?rev=807070&r1=807069&r2=807070&view=diff
==============================================================================
--- labs/mboxed/trunk/mboxed/mboxed/config/routing.py (original)
+++ labs/mboxed/trunk/mboxed/mboxed/config/routing.py Mon Aug 24 04:08:41 2009
@@ -1,3 +1,19 @@
+#
+# 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.
+#
 """Routes configuration
 
 The more specific and detailed routes should be defined first so they

Modified: labs/mboxed/trunk/mboxed/mboxed/controllers/error.py
URL: 
http://svn.apache.org/viewvc/labs/mboxed/trunk/mboxed/mboxed/controllers/error.py?rev=807070&r1=807069&r2=807070&view=diff
==============================================================================
--- labs/mboxed/trunk/mboxed/mboxed/controllers/error.py (original)
+++ labs/mboxed/trunk/mboxed/mboxed/controllers/error.py Mon Aug 24 04:08:41 
2009
@@ -1,3 +1,19 @@
+#
+# 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.
+#
 import cgi
 
 from paste.urlparser import PkgResourcesParser

Modified: labs/mboxed/trunk/mboxed/mboxed/controllers/mbox.py
URL: 
http://svn.apache.org/viewvc/labs/mboxed/trunk/mboxed/mboxed/controllers/mbox.py?rev=807070&r1=807069&r2=807070&view=diff
==============================================================================
--- labs/mboxed/trunk/mboxed/mboxed/controllers/mbox.py (original)
+++ labs/mboxed/trunk/mboxed/mboxed/controllers/mbox.py Mon Aug 24 04:08:41 2009
@@ -1,3 +1,19 @@
+#
+# 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.
+#
 import cgi
 
 from paste.urlparser import PkgResourcesParser

Modified: labs/mboxed/trunk/mboxed/mboxed/controllers/site.py
URL: 
http://svn.apache.org/viewvc/labs/mboxed/trunk/mboxed/mboxed/controllers/site.py?rev=807070&r1=807069&r2=807070&view=diff
==============================================================================
--- labs/mboxed/trunk/mboxed/mboxed/controllers/site.py (original)
+++ labs/mboxed/trunk/mboxed/mboxed/controllers/site.py Mon Aug 24 04:08:41 2009
@@ -1,3 +1,19 @@
+#
+# 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.
+#
 import cgi
 
 from paste.urlparser import PkgResourcesParser

Modified: labs/mboxed/trunk/mboxed/mboxed/lib/app_globals.py
URL: 
http://svn.apache.org/viewvc/labs/mboxed/trunk/mboxed/mboxed/lib/app_globals.py?rev=807070&r1=807069&r2=807070&view=diff
==============================================================================
--- labs/mboxed/trunk/mboxed/mboxed/lib/app_globals.py (original)
+++ labs/mboxed/trunk/mboxed/mboxed/lib/app_globals.py Mon Aug 24 04:08:41 2009
@@ -1,3 +1,19 @@
+#
+# 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.
+#
 """The application's Globals object"""
 
 class Globals(object):

Modified: labs/mboxed/trunk/mboxed/mboxed/lib/base.py
URL: 
http://svn.apache.org/viewvc/labs/mboxed/trunk/mboxed/mboxed/lib/base.py?rev=807070&r1=807069&r2=807070&view=diff
==============================================================================
--- labs/mboxed/trunk/mboxed/mboxed/lib/base.py (original)
+++ labs/mboxed/trunk/mboxed/mboxed/lib/base.py Mon Aug 24 04:08:41 2009
@@ -1,3 +1,20 @@
+#
+# 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.
+#
+
 """The base Controller API
 
 Provides the BaseController class for subclassing.

Modified: labs/mboxed/trunk/mboxed/mboxed/lib/helpers.py
URL: 
http://svn.apache.org/viewvc/labs/mboxed/trunk/mboxed/mboxed/lib/helpers.py?rev=807070&r1=807069&r2=807070&view=diff
==============================================================================
--- labs/mboxed/trunk/mboxed/mboxed/lib/helpers.py (original)
+++ labs/mboxed/trunk/mboxed/mboxed/lib/helpers.py Mon Aug 24 04:08:41 2009
@@ -1,3 +1,20 @@
+#
+# 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.
+#
+
 """Helper functions
 
 Consists of functions to typically be used within templates, but also

Modified: labs/mboxed/trunk/mboxed/mboxed/lib/mbox.py
URL: 
http://svn.apache.org/viewvc/labs/mboxed/trunk/mboxed/mboxed/lib/mbox.py?rev=807070&r1=807069&r2=807070&view=diff
==============================================================================
--- labs/mboxed/trunk/mboxed/mboxed/lib/mbox.py (original)
+++ labs/mboxed/trunk/mboxed/mboxed/lib/mbox.py Mon Aug 24 04:08:41 2009
@@ -1,7 +1,18 @@
-#!/usr/bin/env python
 #
+# 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.
 #
 
 import email

Modified: labs/mboxed/trunk/mboxed/mboxed/lib/threading.py
URL: 
http://svn.apache.org/viewvc/labs/mboxed/trunk/mboxed/mboxed/lib/threading.py?rev=807070&r1=807069&r2=807070&view=diff
==============================================================================
--- labs/mboxed/trunk/mboxed/mboxed/lib/threading.py (original)
+++ labs/mboxed/trunk/mboxed/mboxed/lib/threading.py Mon Aug 24 04:08:41 2009
@@ -1,3 +1,19 @@
+#
+# 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.
+#
 
 
 #

Modified: labs/mboxed/trunk/mboxed/mboxed/model/__init__.py
URL: 
http://svn.apache.org/viewvc/labs/mboxed/trunk/mboxed/mboxed/model/__init__.py?rev=807070&r1=807069&r2=807070&view=diff
==============================================================================
--- labs/mboxed/trunk/mboxed/mboxed/model/__init__.py (original)
+++ labs/mboxed/trunk/mboxed/mboxed/model/__init__.py Mon Aug 24 04:08:41 2009
@@ -1,3 +1,20 @@
+#
+# 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.
+#
+
 import sqlalchemy as sa
 from sqlalchemy import orm
 from sqlalchemy.ext.declarative import declarative_base

Modified: labs/mboxed/trunk/mboxed/mboxed/websetup.py
URL: 
http://svn.apache.org/viewvc/labs/mboxed/trunk/mboxed/mboxed/websetup.py?rev=807070&r1=807069&r2=807070&view=diff
==============================================================================
--- labs/mboxed/trunk/mboxed/mboxed/websetup.py (original)
+++ labs/mboxed/trunk/mboxed/mboxed/websetup.py Mon Aug 24 04:08:41 2009
@@ -1,3 +1,20 @@
+#
+# 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.
+#
+
 """Setup the mboxed application"""
 import logging
 



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to