From zeta-commits-return-35-apmail-incubator-zeta-commits-archive=incubator.apache.org@incubator.apache.org Fri Jul 30 15:32:27 2010 Return-Path: Delivered-To: apmail-incubator-zeta-commits-archive@minotaur.apache.org Received: (qmail 45919 invoked from network); 30 Jul 2010 15:32:27 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 30 Jul 2010 15:32:27 -0000 Received: (qmail 43116 invoked by uid 500); 30 Jul 2010 15:32:27 -0000 Delivered-To: apmail-incubator-zeta-commits-archive@incubator.apache.org Received: (qmail 43094 invoked by uid 500); 30 Jul 2010 15:32:27 -0000 Mailing-List: contact zeta-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: zeta-dev@incubator.apache.org Delivered-To: mailing list zeta-commits@incubator.apache.org Received: (qmail 43086 invoked by uid 99); 30 Jul 2010 15:32:27 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Jul 2010 15:32:27 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Jul 2010 15:32:22 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id EC6FD2388900; Fri, 30 Jul 2010 15:31:04 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Date: Fri, 30 Jul 2010 15:31:03 -0000 To: zeta-commits@incubator.apache.org From: toby@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100730153104.EC6FD2388900@eris.apache.org> Subject: [zeta-commits] svn commit: r980840 [1/3] - in /incubator/zetacomponents/trunk/MvcTools: design/ src/ src/dispatchers/ src/exceptions/ src/interfaces/ src/request_parsers/ src/response_filters/ src/response_writers/ src/result_types/ src/routes/ src/structs/ src/view_... Author: toby Date: Fri Jul 30 15:31:00 2010 New Revision: 980840 URL: http://svn.apache.org/viewvc?rev=980840&view=rev Log: - Fixed: Adjusted source headers of MvcTools to Apache license. Modified: incubator/zetacomponents/trunk/MvcTools/design/controller.php incubator/zetacomponents/trunk/MvcTools/design/dispatcher-configuration.php incubator/zetacomponents/trunk/MvcTools/design/dispatcher.php incubator/zetacomponents/trunk/MvcTools/design/request-accept.php incubator/zetacomponents/trunk/MvcTools/design/request-authentication.php incubator/zetacomponents/trunk/MvcTools/design/request-file.php incubator/zetacomponents/trunk/MvcTools/design/request-filter.php incubator/zetacomponents/trunk/MvcTools/design/request-parser.php incubator/zetacomponents/trunk/MvcTools/design/request-raw-http.php incubator/zetacomponents/trunk/MvcTools/design/request-raw-mail.php incubator/zetacomponents/trunk/MvcTools/design/request-raw.php incubator/zetacomponents/trunk/MvcTools/design/request-user-agent.php incubator/zetacomponents/trunk/MvcTools/design/request.php incubator/zetacomponents/trunk/MvcTools/design/response-filter.php incubator/zetacomponents/trunk/MvcTools/design/response.php incubator/zetacomponents/trunk/MvcTools/design/result-filter.php incubator/zetacomponents/trunk/MvcTools/design/router.php incubator/zetacomponents/trunk/MvcTools/src/dispatchers/configurable.php incubator/zetacomponents/trunk/MvcTools/src/exceptions/action_not_found.php incubator/zetacomponents/trunk/MvcTools/src/exceptions/controller.php incubator/zetacomponents/trunk/MvcTools/src/exceptions/exception.php incubator/zetacomponents/trunk/MvcTools/src/exceptions/fatal_error_loop.php incubator/zetacomponents/trunk/MvcTools/src/exceptions/filter_has_no_options.php incubator/zetacomponents/trunk/MvcTools/src/exceptions/infinite_loop.php incubator/zetacomponents/trunk/MvcTools/src/exceptions/invalid_configuration.php incubator/zetacomponents/trunk/MvcTools/src/exceptions/invalid_encoding.php incubator/zetacomponents/trunk/MvcTools/src/exceptions/missing_route_argument.php incubator/zetacomponents/trunk/MvcTools/src/exceptions/named_route_not_found.php incubator/zetacomponents/trunk/MvcTools/src/exceptions/named_route_not_reversable.php incubator/zetacomponents/trunk/MvcTools/src/exceptions/no_routes.php incubator/zetacomponents/trunk/MvcTools/src/exceptions/no_zones.php incubator/zetacomponents/trunk/MvcTools/src/exceptions/regexp_route.php incubator/zetacomponents/trunk/MvcTools/src/exceptions/route_not_found.php incubator/zetacomponents/trunk/MvcTools/src/interfaces/controller.php incubator/zetacomponents/trunk/MvcTools/src/interfaces/dispatcher.php incubator/zetacomponents/trunk/MvcTools/src/interfaces/dispatcher_configuration.php incubator/zetacomponents/trunk/MvcTools/src/interfaces/request_filter.php incubator/zetacomponents/trunk/MvcTools/src/interfaces/request_parser.php incubator/zetacomponents/trunk/MvcTools/src/interfaces/response_filter.php incubator/zetacomponents/trunk/MvcTools/src/interfaces/response_writer.php incubator/zetacomponents/trunk/MvcTools/src/interfaces/result_filter.php incubator/zetacomponents/trunk/MvcTools/src/interfaces/result_status_object.php incubator/zetacomponents/trunk/MvcTools/src/interfaces/reversed_route.php incubator/zetacomponents/trunk/MvcTools/src/interfaces/route.php incubator/zetacomponents/trunk/MvcTools/src/interfaces/view_handler.php incubator/zetacomponents/trunk/MvcTools/src/mvc_autoload.php incubator/zetacomponents/trunk/MvcTools/src/request_parsers/http.php incubator/zetacomponents/trunk/MvcTools/src/response_filters/gzdeflate.php incubator/zetacomponents/trunk/MvcTools/src/response_filters/gzip.php incubator/zetacomponents/trunk/MvcTools/src/response_filters/recode.php incubator/zetacomponents/trunk/MvcTools/src/response_writers/http.php incubator/zetacomponents/trunk/MvcTools/src/result_types/external_redirect.php incubator/zetacomponents/trunk/MvcTools/src/result_types/unauthorized.php incubator/zetacomponents/trunk/MvcTools/src/router.php incubator/zetacomponents/trunk/MvcTools/src/routes/catchall.php incubator/zetacomponents/trunk/MvcTools/src/routes/rails.php incubator/zetacomponents/trunk/MvcTools/src/routes/regexp.php incubator/zetacomponents/trunk/MvcTools/src/structs/filter_definition.php incubator/zetacomponents/trunk/MvcTools/src/structs/internal_redirect.php incubator/zetacomponents/trunk/MvcTools/src/structs/request.php incubator/zetacomponents/trunk/MvcTools/src/structs/request_accept.php incubator/zetacomponents/trunk/MvcTools/src/structs/request_authentication.php incubator/zetacomponents/trunk/MvcTools/src/structs/request_cookie.php incubator/zetacomponents/trunk/MvcTools/src/structs/request_file.php incubator/zetacomponents/trunk/MvcTools/src/structs/request_raw_http.php incubator/zetacomponents/trunk/MvcTools/src/structs/request_user_agent.php incubator/zetacomponents/trunk/MvcTools/src/structs/response.php incubator/zetacomponents/trunk/MvcTools/src/structs/result.php incubator/zetacomponents/trunk/MvcTools/src/structs/result_cache.php incubator/zetacomponents/trunk/MvcTools/src/structs/result_content.php incubator/zetacomponents/trunk/MvcTools/src/structs/result_content_disposition.php incubator/zetacomponents/trunk/MvcTools/src/structs/result_cookie.php incubator/zetacomponents/trunk/MvcTools/src/structs/routing_information.php incubator/zetacomponents/trunk/MvcTools/src/view.php incubator/zetacomponents/trunk/MvcTools/src/view_handlers/json.php incubator/zetacomponents/trunk/MvcTools/src/view_handlers/php.php incubator/zetacomponents/trunk/MvcTools/tests/controller.php incubator/zetacomponents/trunk/MvcTools/tests/dispatchers/configurable.php incubator/zetacomponents/trunk/MvcTools/tests/request_parsers/http.php incubator/zetacomponents/trunk/MvcTools/tests/response_filters/gzdeflate.php incubator/zetacomponents/trunk/MvcTools/tests/response_filters/gzip.php incubator/zetacomponents/trunk/MvcTools/tests/response_filters/recode.php incubator/zetacomponents/trunk/MvcTools/tests/response_writers/http.php incubator/zetacomponents/trunk/MvcTools/tests/router.php incubator/zetacomponents/trunk/MvcTools/tests/routes/catchall.php incubator/zetacomponents/trunk/MvcTools/tests/routes/rails.php incubator/zetacomponents/trunk/MvcTools/tests/routes/regexp.php incubator/zetacomponents/trunk/MvcTools/tests/structs/external_redirect.php incubator/zetacomponents/trunk/MvcTools/tests/structs/filter_definition.php incubator/zetacomponents/trunk/MvcTools/tests/structs/internal_redirect.php incubator/zetacomponents/trunk/MvcTools/tests/structs/request.php incubator/zetacomponents/trunk/MvcTools/tests/structs/request_accept.php incubator/zetacomponents/trunk/MvcTools/tests/structs/request_authentication.php incubator/zetacomponents/trunk/MvcTools/tests/structs/request_file.php incubator/zetacomponents/trunk/MvcTools/tests/structs/request_raw_http.php incubator/zetacomponents/trunk/MvcTools/tests/structs/request_user_agent.php incubator/zetacomponents/trunk/MvcTools/tests/structs/response.php incubator/zetacomponents/trunk/MvcTools/tests/structs/result.php incubator/zetacomponents/trunk/MvcTools/tests/structs/result_cache.php incubator/zetacomponents/trunk/MvcTools/tests/structs/result_content.php incubator/zetacomponents/trunk/MvcTools/tests/structs/result_cookie.php incubator/zetacomponents/trunk/MvcTools/tests/structs/routing_information.php incubator/zetacomponents/trunk/MvcTools/tests/suite.php incubator/zetacomponents/trunk/MvcTools/tests/view.php incubator/zetacomponents/trunk/MvcTools/tests/views/json.php incubator/zetacomponents/trunk/MvcTools/tests/views/php.php Modified: incubator/zetacomponents/trunk/MvcTools/design/controller.php URL: http://svn.apache.org/viewvc/incubator/zetacomponents/trunk/MvcTools/design/controller.php?rev=980840&r1=980839&r2=980840&view=diff ============================================================================== --- incubator/zetacomponents/trunk/MvcTools/design/controller.php (original) +++ incubator/zetacomponents/trunk/MvcTools/design/controller.php Fri Jul 30 15:31:00 2010 @@ -11,6 +11,23 @@ * nor private methods. The result of running a controller is an instance of * ezcMvcResult. * + * 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 MvcTools * @version //autogen// * @mainclass Modified: incubator/zetacomponents/trunk/MvcTools/design/dispatcher-configuration.php URL: http://svn.apache.org/viewvc/incubator/zetacomponents/trunk/MvcTools/design/dispatcher-configuration.php?rev=980840&r1=980839&r2=980840&view=diff ============================================================================== --- incubator/zetacomponents/trunk/MvcTools/design/dispatcher-configuration.php (original) +++ incubator/zetacomponents/trunk/MvcTools/design/dispatcher-configuration.php Fri Jul 30 15:31:00 2010 @@ -4,6 +4,24 @@ * interface. * * You can use any dispatcher with the same configuration class. + * + * 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. + * */ interface ezcMvcDispatcherConfiguration { Modified: incubator/zetacomponents/trunk/MvcTools/design/dispatcher.php URL: http://svn.apache.org/viewvc/incubator/zetacomponents/trunk/MvcTools/design/dispatcher.php?rev=980840&r1=980839&r2=980840&view=diff ============================================================================== --- incubator/zetacomponents/trunk/MvcTools/design/dispatcher.php (original) +++ incubator/zetacomponents/trunk/MvcTools/design/dispatcher.php Fri Jul 30 15:31:00 2010 @@ -1,6 +1,24 @@