adding apache license
Project: http://git-wip-us.apache.org/repos/asf/helix/repo Commit: http://git-wip-us.apache.org/repos/asf/helix/commit/3d7626cb Tree: http://git-wip-us.apache.org/repos/asf/helix/tree/3d7626cb Diff: http://git-wip-us.apache.org/repos/asf/helix/diff/3d7626cb Branch: refs/heads/master Commit: 3d7626cbf52041789ac4d3b92179f7533de78a87 Parents: e2a033f Author: Jon Heise <[email protected]> Authored: Thu Dec 4 23:43:46 2014 -0800 Committer: Jon Heise <[email protected]> Committed: Thu Dec 4 23:43:46 2014 -0800 ---------------------------------------------------------------------- contributors/py-helix-admin/helix/__init__.py | 18 ++++++++++++++++++ contributors/py-helix-admin/helix/cluster.py | 18 ++++++++++++++++++ contributors/py-helix-admin/helix/functions.py | 19 +++++++++++++++++++ .../py-helix-admin/helix/helixexceptions.py | 19 +++++++++++++++++++ contributors/py-helix-admin/helix/participant.py | 19 +++++++++++++++++++ contributors/py-helix-admin/helix/partition.py | 19 +++++++++++++++++++ .../py-helix-admin/helix/resourcegroup.py | 19 +++++++++++++++++++ 7 files changed, 131 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/helix/blob/3d7626cb/contributors/py-helix-admin/helix/__init__.py ---------------------------------------------------------------------- diff --git a/contributors/py-helix-admin/helix/__init__.py b/contributors/py-helix-admin/helix/__init__.py index e69de29..fe95886 100644 --- a/contributors/py-helix-admin/helix/__init__.py +++ b/contributors/py-helix-admin/helix/__init__.py @@ -0,0 +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. +# http://git-wip-us.apache.org/repos/asf/helix/blob/3d7626cb/contributors/py-helix-admin/helix/cluster.py ---------------------------------------------------------------------- diff --git a/contributors/py-helix-admin/helix/cluster.py b/contributors/py-helix-admin/helix/cluster.py index f2b931e..7db7014 100644 --- a/contributors/py-helix-admin/helix/cluster.py +++ b/contributors/py-helix-admin/helix/cluster.py @@ -1,3 +1,21 @@ +# +# 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. +# """base class for anything that connects to helix""" from participant import Participant http://git-wip-us.apache.org/repos/asf/helix/blob/3d7626cb/contributors/py-helix-admin/helix/functions.py ---------------------------------------------------------------------- diff --git a/contributors/py-helix-admin/helix/functions.py b/contributors/py-helix-admin/helix/functions.py index b66cca7..5e36404 100644 --- a/contributors/py-helix-admin/helix/functions.py +++ b/contributors/py-helix-admin/helix/functions.py @@ -1,3 +1,22 @@ +# +# 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. +# + """library to handle helix commands""" import json from restkit import Resource http://git-wip-us.apache.org/repos/asf/helix/blob/3d7626cb/contributors/py-helix-admin/helix/helixexceptions.py ---------------------------------------------------------------------- diff --git a/contributors/py-helix-admin/helix/helixexceptions.py b/contributors/py-helix-admin/helix/helixexceptions.py index 63ffec1..8483991 100644 --- a/contributors/py-helix-admin/helix/helixexceptions.py +++ b/contributors/py-helix-admin/helix/helixexceptions.py @@ -1,3 +1,22 @@ +# +# 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. +# + """library to handle helix exceptions""" http://git-wip-us.apache.org/repos/asf/helix/blob/3d7626cb/contributors/py-helix-admin/helix/participant.py ---------------------------------------------------------------------- diff --git a/contributors/py-helix-admin/helix/participant.py b/contributors/py-helix-admin/helix/participant.py index 678f93b..6695432 100644 --- a/contributors/py-helix-admin/helix/participant.py +++ b/contributors/py-helix-admin/helix/participant.py @@ -1,3 +1,22 @@ +# +# 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. +# + """base class for anything that connects to helix""" from helixexceptions import HelixException http://git-wip-us.apache.org/repos/asf/helix/blob/3d7626cb/contributors/py-helix-admin/helix/partition.py ---------------------------------------------------------------------- diff --git a/contributors/py-helix-admin/helix/partition.py b/contributors/py-helix-admin/helix/partition.py index e028567..fbc0e66 100644 --- a/contributors/py-helix-admin/helix/partition.py +++ b/contributors/py-helix-admin/helix/partition.py @@ -1,3 +1,22 @@ +# +# 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. +# + """base class for anything that connects to helix""" http://git-wip-us.apache.org/repos/asf/helix/blob/3d7626cb/contributors/py-helix-admin/helix/resourcegroup.py ---------------------------------------------------------------------- diff --git a/contributors/py-helix-admin/helix/resourcegroup.py b/contributors/py-helix-admin/helix/resourcegroup.py index 62c447f..feb9f09 100644 --- a/contributors/py-helix-admin/helix/resourcegroup.py +++ b/contributors/py-helix-admin/helix/resourcegroup.py @@ -1,3 +1,22 @@ +# +# 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. +# + """base class for anything that connects to helix""" import partition
