diff options
author | Tobias Schlitt <toby@php.net> | 2010-07-30 15:40:47 +0000 |
---|---|---|
committer | Tobias Schlitt <toby@php.net> | 2010-07-30 15:40:47 +0000 |
commit | db7903aff0a3ba7fa4e1b9048bc2b8daffc90786 (patch) | |
tree | d5ddb56cf36c92c4c7ebaaed6fc5cbf371caa0d0 /src/driver | |
parent | 68371c25a8fa827151b1479f82223133b72d43fd (diff) | |
download | zetacomponents-graph-db7903aff0a3ba7fa4e1b9048bc2b8daffc90786.zip zetacomponents-graph-db7903aff0a3ba7fa4e1b9048bc2b8daffc90786.tar.gz |
- Fixed: Adjusted source headers of Graph to Apache license.
Diffstat (limited to 'src/driver')
-rw-r--r-- | src/driver/cairo.php | 19 | ||||
-rw-r--r-- | src/driver/cairo_oo.php | 19 | ||||
-rw-r--r-- | src/driver/flash.php | 19 | ||||
-rw-r--r-- | src/driver/gd.php | 19 | ||||
-rw-r--r-- | src/driver/svg.php | 19 | ||||
-rw-r--r-- | src/driver/svg_font.php | 19 | ||||
-rw-r--r-- | src/driver/verbose.php | 19 |
7 files changed, 126 insertions, 7 deletions
diff --git a/src/driver/cairo.php b/src/driver/cairo.php index 818d6b6..c70a611 100644 --- a/src/driver/cairo.php +++ b/src/driver/cairo.php @@ -2,10 +2,27 @@ /** * File containing the ezcGraphCairoDriver 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. + * * @package Graph * @version //autogentag// * @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved. - * @license http://ez.no/licenses/new_bsd New BSD License + * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0 */ /** * Extension of the basic driver package to utilize the cairo library. diff --git a/src/driver/cairo_oo.php b/src/driver/cairo_oo.php index e956022..123bfe1 100644 --- a/src/driver/cairo_oo.php +++ b/src/driver/cairo_oo.php @@ -2,10 +2,27 @@ /** * File containing the ezcGraphCairoOODriver 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. + * * @package Graph * @version //autogentag// * @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved. - * @license http://ez.no/licenses/new_bsd New BSD License + * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0 */ /** diff --git a/src/driver/flash.php b/src/driver/flash.php index 8a05f58..1c98e66 100644 --- a/src/driver/flash.php +++ b/src/driver/flash.php @@ -2,10 +2,27 @@ /** * File containing the ezcGraphFlashDriver 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. + * * @package Graph * @version //autogentag// * @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved. - * @license http://ez.no/licenses/new_bsd New BSD License + * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0 */ /** * Driver to create Flash4 (SWF) files as graph output. The options of this diff --git a/src/driver/gd.php b/src/driver/gd.php index bc81ce3..5685e7c 100644 --- a/src/driver/gd.php +++ b/src/driver/gd.php @@ -2,10 +2,27 @@ /** * File containing the ezcGraphGdDriver 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. + * * @package Graph * @version //autogentag// * @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved. - * @license http://ez.no/licenses/new_bsd New BSD License + * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0 */ /** * Driver using PHPs ext/gd to draw images. The GD extension is available on diff --git a/src/driver/svg.php b/src/driver/svg.php index 2a9cdf3..6b4dadf 100644 --- a/src/driver/svg.php +++ b/src/driver/svg.php @@ -2,10 +2,27 @@ /** * File containing the ezcGraphSVGDriver 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. + * * @package Graph * @version //autogentag// * @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved. - * @license http://ez.no/licenses/new_bsd New BSD License + * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0 */ /** * Extension of the basic Driver package to utilize the SVGlib. diff --git a/src/driver/svg_font.php b/src/driver/svg_font.php index c806691..5b6afdb 100644 --- a/src/driver/svg_font.php +++ b/src/driver/svg_font.php @@ -2,11 +2,28 @@ /** * File containing the ezcGraphSVGDriver 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. + * * @package Graph * @version //autogentag// * @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved. * @author Freddie Witherden - * @license http://ez.no/licenses/new_bsd New BSD License + * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0 */ /** diff --git a/src/driver/verbose.php b/src/driver/verbose.php index 83a7c4f..46d7ef1 100644 --- a/src/driver/verbose.php +++ b/src/driver/verbose.php @@ -2,10 +2,27 @@ /** * File containing the ezcGraphSVGDriver 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. + * * @package Graph * @version //autogentag// * @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved. - * @license http://ez.no/licenses/new_bsd New BSD License + * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0 * @access private */ /** |