
From: Paulo Vital <pvital@linux.vnet.ibm.com> Signed-off-by: Paulo Vital <pvital@linux.vnet.ibm.com> --- Makefile.am | 6 ++++-- autogen.sh | 20 ++++++++++++++++++++ configure.ac | 4 +++- contrib/DEBIAN/Makefile.am | 7 ++++++- contrib/DEBIAN/postrm | 6 ++++-- contrib/Makefile.am | 7 ++++++- contrib/check_i18n.py | 4 +++- docs/Makefile.am | 6 ++++-- src/Makefile.am | 4 +++- src/nginx/Makefile.am | 4 +++- src/nginx/wok.conf.in | 4 +++- src/wok/Makefile.am | 6 ++++-- src/wok/__init__.py | 6 ++++-- src/wok/asynctask.py | 6 ++++-- src/wok/auth.py | 4 +++- src/wok/basemodel.py | 6 ++++-- src/wok/cachebust.py | 6 ++++-- src/wok/config.py.in | 4 +++- src/wok/control/Makefile.am | 6 ++++-- src/wok/control/__init__.py | 6 ++++-- src/wok/control/base.py | 4 +++- src/wok/control/plugins.py | 6 ++++-- src/wok/control/tasks.py | 6 ++++-- src/wok/control/utils.py | 6 ++++-- src/wok/exception.py | 6 ++++-- src/wok/i18n.py | 4 +++- src/wok/model/Makefile.am | 6 ++++-- src/wok/model/__init__.py | 6 ++++-- src/wok/model/model.py | 4 +++- src/wok/model/plugins.py | 6 ++++-- src/wok/model/tasks.py | 6 ++++-- src/wok/objectstore.py | 6 ++++-- src/wok/plugins/Makefile.am | 6 ++++-- src/wok/plugins/__init__.py | 6 ++++-- src/wok/plugins/sample/Makefile.am | 6 ++++-- src/wok/plugins/sample/__init__.py | 6 ++++-- src/wok/plugins/sample/i18n.py | 4 +++- src/wok/plugins/sample/model.py | 6 ++++-- src/wok/plugins/sample/ui/Makefile.am | 8 ++++---- src/wok/plugins/sample/ui/config/Makefile.am | 7 ++++--- src/wok/plugins/sample/ui/js/Makefile.am | 6 ++++-- src/wok/plugins/sample/ui/js/util.js | 6 ++++-- src/wok/plugins/sample/ui/pages/Makefile.am | 6 ++++-- src/wok/plugins/sample/ui/pages/i18n.json.tmpl | 6 ++++-- .../plugins/sample/ui/pages/sample-tab1.html.tmpl | 6 ++++-- .../plugins/sample/ui/pages/sample-tab2.html.tmpl | 6 ++++-- src/wok/proxy.py | 4 +++- src/wok/rollbackcontext.py | 6 ++++-- src/wok/root.py | 4 +++- src/wok/server.py | 6 ++++-- src/wok/sslcert.py | 6 ++++-- src/wok/template.py | 6 ++++-- src/wok/utils.py | 4 +++- src/wok/xmlutils/Makefile.am | 6 ++++-- src/wok/xmlutils/__init__.py | 6 ++++-- src/wok/xmlutils/utils.py | 6 ++++-- src/wokd.in | 4 +++- 57 files changed, 233 insertions(+), 98 deletions(-) diff --git a/Makefile.am b/Makefile.am index 337aa24..38a072c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,7 +1,9 @@ # -# Kimchi +# Project Wok # -# Copyright IBM Corp, 2013 +# Copyright IBM Corp, 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/autogen.sh b/autogen.sh index 0f22dba..92500f5 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,4 +1,24 @@ #!/bin/bash +# +# Project Wok +# +# Copyright IBM Corp, 2013-2015 +# +# Code delivered from Project Kimchi +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA aclocal automake --add-missing diff --git a/configure.ac b/configure.ac index 8b2302f..4c19310 100644 --- a/configure.ac +++ b/configure.ac @@ -1,8 +1,10 @@ # -# Kimchi +# Project Wok # # Copyright IBM Corp, 2013-2015 # +# Code delivered from Project Kimchi +# # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either diff --git a/contrib/DEBIAN/Makefile.am b/contrib/DEBIAN/Makefile.am index ca89552..3d00aa8 100644 --- a/contrib/DEBIAN/Makefile.am +++ b/contrib/DEBIAN/Makefile.am @@ -1,4 +1,9 @@ -# Copyright IBM Corp, 2013 +# +# Project Wok +# +# Copyright IBM Corp, 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/contrib/DEBIAN/postrm b/contrib/DEBIAN/postrm index 256a234..381c5d7 100755 --- a/contrib/DEBIAN/postrm +++ b/contrib/DEBIAN/postrm @@ -1,8 +1,10 @@ #!/bin/sh -e # -# Project Kimchi +# Project Wok # -# Copyright IBM, Corp. 2013 +# Copyright IBM, Corp. 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/contrib/Makefile.am b/contrib/Makefile.am index b537df5..8a7f830 100644 --- a/contrib/Makefile.am +++ b/contrib/Makefile.am @@ -1,4 +1,9 @@ -# Copyright IBM Corp, 2013 +# +# Project Wok +# +# Copyright IBM Corp, 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/contrib/check_i18n.py b/contrib/check_i18n.py index 6a2603c..c7ea3d1 100755 --- a/contrib/check_i18n.py +++ b/contrib/check_i18n.py @@ -1,9 +1,11 @@ #!/usr/bin/env python2 # -# Project Kimchi +# Project Wok # # Copyright IBM, Corp. 2014-2015 # +# Code delivered from Project Kimchi +# # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either diff --git a/docs/Makefile.am b/docs/Makefile.am index db23721..78af3e9 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -1,7 +1,9 @@ # -# Kimchi +# Project Wok # -# Copyright IBM Corp, 2013 +# Copyright IBM Corp, 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/Makefile.am b/src/Makefile.am index 2fed7d5..9e5e5ac 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,8 +1,10 @@ # -# Kimchi +# Project Wok # # Copyright IBM Corp, 2013-2015 # +# Code delivered from Project Kimchi +# # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either diff --git a/src/nginx/Makefile.am b/src/nginx/Makefile.am index 0f36b44..568dc70 100644 --- a/src/nginx/Makefile.am +++ b/src/nginx/Makefile.am @@ -1,8 +1,10 @@ # -# Kimchi +# Project Wok # # Copyright IBM Corp, 2015 # +# Code delivered from Project Kimchi +# # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either diff --git a/src/nginx/wok.conf.in b/src/nginx/wok.conf.in index ce99115..96c9703 100644 --- a/src/nginx/wok.conf.in +++ b/src/nginx/wok.conf.in @@ -1,7 +1,9 @@ -# Project Kimchi +# Project Wok # # Copyright IBM, Corp. 2014-2015 # +# Code delivered from Project Kimchi +# # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either diff --git a/src/wok/Makefile.am b/src/wok/Makefile.am index 47aefd5..e4fc520 100644 --- a/src/wok/Makefile.am +++ b/src/wok/Makefile.am @@ -1,7 +1,9 @@ # -# Kimchi +# Project Wok # -# Copyright IBM Corp, 2013 +# Copyright IBM Corp, 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/__init__.py b/src/wok/__init__.py index edf8e5d..3c9fe27 100644 --- a/src/wok/__init__.py +++ b/src/wok/__init__.py @@ -1,7 +1,9 @@ # -# Project Kimchi +# Project Wok # -# Copyright IBM, Corp. 2013-2014 +# Copyright IBM, Corp. 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/asynctask.py b/src/wok/asynctask.py index e3e10d5..666993d 100644 --- a/src/wok/asynctask.py +++ b/src/wok/asynctask.py @@ -1,7 +1,9 @@ # -# Project Kimchi +# Project Wok # -# Copyright IBM, Corp. 2013-2014 +# Copyright IBM, Corp. 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/auth.py b/src/wok/auth.py index 6ae8bfc..03f4ea4 100644 --- a/src/wok/auth.py +++ b/src/wok/auth.py @@ -1,8 +1,10 @@ # -# Project Kimchi +# Project Wok # # Copyright IBM, Corp. 2013-2015 # +# Code delivered from Project Kimchi +# # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either diff --git a/src/wok/basemodel.py b/src/wok/basemodel.py index 096c66b..a50f7d5 100644 --- a/src/wok/basemodel.py +++ b/src/wok/basemodel.py @@ -1,7 +1,9 @@ # -# Project Kimchi +# Project Wok # -# Copyright IBM, Corp. 2014 +# Copyright IBM, Corp. 2014-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/cachebust.py b/src/wok/cachebust.py index 26cb232..4957408 100644 --- a/src/wok/cachebust.py +++ b/src/wok/cachebust.py @@ -1,7 +1,9 @@ # -# Project Kimchi +# Project Wok # -# Copyright IBM, Corp. 2013-2014 +# Copyright IBM, Corp. 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/config.py.in b/src/wok/config.py.in index 3540aea..48efb76 100644 --- a/src/wok/config.py.in +++ b/src/wok/config.py.in @@ -1,8 +1,10 @@ # -# Project Kimchi +# Project Wok # # Copyright IBM, Corp. 2013-2015 # +# Code delivered from Project Kimchi +# # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either diff --git a/src/wok/control/Makefile.am b/src/wok/control/Makefile.am index d6cb3f0..07bcf7b 100644 --- a/src/wok/control/Makefile.am +++ b/src/wok/control/Makefile.am @@ -1,7 +1,9 @@ # -# Kimchi +# Project Wok # -# Copyright IBM Corp, 2013 +# Copyright IBM Corp, 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/control/__init__.py b/src/wok/control/__init__.py index 4ad9459..f193149 100644 --- a/src/wok/control/__init__.py +++ b/src/wok/control/__init__.py @@ -1,7 +1,9 @@ # -# Project Kimchi +# Project Wok # -# Copyright IBM, Corp. 2013-2014 +# Copyright IBM, Corp. 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/control/base.py b/src/wok/control/base.py index f2ad552..255b5c6 100644 --- a/src/wok/control/base.py +++ b/src/wok/control/base.py @@ -1,8 +1,10 @@ # -# Project Kimchi +# Project Wok # # Copyright IBM, Corp. 2013-2015 # +# Code delivered from Project Kimchi +# # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either diff --git a/src/wok/control/plugins.py b/src/wok/control/plugins.py index 1cc1d5a..1e44cdb 100644 --- a/src/wok/control/plugins.py +++ b/src/wok/control/plugins.py @@ -1,7 +1,9 @@ # -# Project Kimchi +# Project Wok # -# Copyright IBM, Corp. 2013-2014 +# Copyright IBM, Corp. 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/control/tasks.py b/src/wok/control/tasks.py index f6e8a80..ad30e36 100644 --- a/src/wok/control/tasks.py +++ b/src/wok/control/tasks.py @@ -1,7 +1,9 @@ # -# Project Kimchi +# Project Wok # -# Copyright IBM, Corp. 2013-2014 +# Copyright IBM, Corp. 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/control/utils.py b/src/wok/control/utils.py index 56f9e7f..96a101e 100644 --- a/src/wok/control/utils.py +++ b/src/wok/control/utils.py @@ -1,7 +1,9 @@ # -# Project Kimchi +# Project Wok # -# Copyright IBM, Corp. 2013-2014 +# Copyright IBM, Corp. 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/exception.py b/src/wok/exception.py index 6f5e9d9..824e616 100644 --- a/src/wok/exception.py +++ b/src/wok/exception.py @@ -1,7 +1,9 @@ # -# Kimchi +# Project Wok # -# Copyright IBM, Corp. 2013-2014 +# Copyright IBM, Corp. 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/i18n.py b/src/wok/i18n.py index a6376bd..82536c7 100644 --- a/src/wok/i18n.py +++ b/src/wok/i18n.py @@ -1,8 +1,10 @@ # -# Project Kimchi +# Project Wok # # Copyright IBM, Corp. 2014-2015 # +# Code delivered from Project Kimchi +# # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either diff --git a/src/wok/model/Makefile.am b/src/wok/model/Makefile.am index 8f0f102..d0b7127 100644 --- a/src/wok/model/Makefile.am +++ b/src/wok/model/Makefile.am @@ -1,7 +1,9 @@ # -# Kimchi +# Project Wok # -# Copyright IBM Corp, 2013 +# Copyright IBM Corp, 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/model/__init__.py b/src/wok/model/__init__.py index ca7ede4..687ee47 100644 --- a/src/wok/model/__init__.py +++ b/src/wok/model/__init__.py @@ -1,7 +1,9 @@ # -# Project Kimchi +# Project Wok # -# Copyright IBM, Corp. 2014 +# Copyright IBM, Corp. 2014-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/model/model.py b/src/wok/model/model.py index 09c4c1e..37a9707 100644 --- a/src/wok/model/model.py +++ b/src/wok/model/model.py @@ -1,8 +1,10 @@ # -# Project Kimchi +# Project Wok # # Copyright IBM, Corp. 2014-2015 # +# Code delivered from Project Kimchi +# # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either diff --git a/src/wok/model/plugins.py b/src/wok/model/plugins.py index e350f1e..981f200 100644 --- a/src/wok/model/plugins.py +++ b/src/wok/model/plugins.py @@ -1,7 +1,9 @@ # -# Project Kimchi +# Project Wok # -# Copyright IBM, Corp. 2014 +# Copyright IBM, Corp. 2014-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/model/tasks.py b/src/wok/model/tasks.py index d57c908..96f598c 100644 --- a/src/wok/model/tasks.py +++ b/src/wok/model/tasks.py @@ -1,7 +1,9 @@ # -# Project Kimchi +# Project Wok # -# Copyright IBM, Corp. 2014 +# Copyright IBM, Corp. 2014-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/objectstore.py b/src/wok/objectstore.py index aa2a21c..4af3040 100644 --- a/src/wok/objectstore.py +++ b/src/wok/objectstore.py @@ -1,6 +1,8 @@ -# Project Kimchi +# Project Wok # -# Copyright IBM, Corp. 2013-2014 +# Copyright IBM, Corp. 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/plugins/Makefile.am b/src/wok/plugins/Makefile.am index 21a6ece..12eda52 100644 --- a/src/wok/plugins/Makefile.am +++ b/src/wok/plugins/Makefile.am @@ -1,7 +1,9 @@ # -# Kimchi +# Project Wok # -# Copyright IBM Corp, 2013 +# Copyright IBM Corp, 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/plugins/__init__.py b/src/wok/plugins/__init__.py index 0539a76..ec9bcaf 100644 --- a/src/wok/plugins/__init__.py +++ b/src/wok/plugins/__init__.py @@ -1,7 +1,9 @@ # -# Project Kimchi +# Project Wok # -# Copyright IBM, Corp. 2013-2014 +# Copyright IBM, Corp. 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/plugins/sample/Makefile.am b/src/wok/plugins/sample/Makefile.am index 876ab54..a524d13 100644 --- a/src/wok/plugins/sample/Makefile.am +++ b/src/wok/plugins/sample/Makefile.am @@ -1,7 +1,9 @@ # -# Kimchi +# Project Wok # -# Copyright IBM Corp, 2013 +# Copyright IBM Corp, 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/plugins/sample/__init__.py b/src/wok/plugins/sample/__init__.py index a3a8f05..f6eae0b 100644 --- a/src/wok/plugins/sample/__init__.py +++ b/src/wok/plugins/sample/__init__.py @@ -1,7 +1,9 @@ # -# Project Kimchi +# Project Wok # -# Copyright IBM, Corp. 2013-2014 +# Copyright IBM, Corp. 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/plugins/sample/i18n.py b/src/wok/plugins/sample/i18n.py index 763970f..f00feaf 100644 --- a/src/wok/plugins/sample/i18n.py +++ b/src/wok/plugins/sample/i18n.py @@ -1,8 +1,10 @@ # -# Project Kimchi +# Project Wok # # Copyright IBM, Corp. 2014 # +# Code delivered from Project Kimchi +# # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either diff --git a/src/wok/plugins/sample/model.py b/src/wok/plugins/sample/model.py index 4ada648..f46a4d9 100644 --- a/src/wok/plugins/sample/model.py +++ b/src/wok/plugins/sample/model.py @@ -1,7 +1,9 @@ # -# Project Kimchi +# Project Wok # -# Copyright IBM, Corp. 2013-2014 +# Copyright IBM, Corp. 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/plugins/sample/ui/Makefile.am b/src/wok/plugins/sample/ui/Makefile.am index 37fec98..8d30d60 100644 --- a/src/wok/plugins/sample/ui/Makefile.am +++ b/src/wok/plugins/sample/ui/Makefile.am @@ -1,7 +1,9 @@ # -# Kimchi +# Project Wok # -# Copyright IBM Corp, 2013 +# Copyright IBM Corp, 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -18,5 +20,3 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA SUBDIRS = config js pages - - diff --git a/src/wok/plugins/sample/ui/config/Makefile.am b/src/wok/plugins/sample/ui/config/Makefile.am index cf9e09e..660f561 100644 --- a/src/wok/plugins/sample/ui/config/Makefile.am +++ b/src/wok/plugins/sample/ui/config/Makefile.am @@ -1,7 +1,9 @@ # -# Kimchi +# Project Wok # -# Copyright IBM Corp, 2013 +# Copyright IBM Corp, 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -18,4 +20,3 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA EXTRA_DIST = tab-ext.xml - diff --git a/src/wok/plugins/sample/ui/js/Makefile.am b/src/wok/plugins/sample/ui/js/Makefile.am index 4d536ae..dce514e 100644 --- a/src/wok/plugins/sample/ui/js/Makefile.am +++ b/src/wok/plugins/sample/ui/js/Makefile.am @@ -1,7 +1,9 @@ # -# Kimchi +# Project Wok # -# Copyright IBM Corp, 2014 +# Copyright IBM Corp, 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/plugins/sample/ui/js/util.js b/src/wok/plugins/sample/ui/js/util.js index 7689a81..801c2df 100644 --- a/src/wok/plugins/sample/ui/js/util.js +++ b/src/wok/plugins/sample/ui/js/util.js @@ -1,7 +1,9 @@ /* - * Project Kimchi + * Project Wok * - * Copyright IBM, Corp. 2014 + * Copyright IBM, Corp. 2014-2015 + * + * Code delivered from Project Kimchi * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/wok/plugins/sample/ui/pages/Makefile.am b/src/wok/plugins/sample/ui/pages/Makefile.am index 3da95a2..27f3dee 100644 --- a/src/wok/plugins/sample/ui/pages/Makefile.am +++ b/src/wok/plugins/sample/ui/pages/Makefile.am @@ -1,7 +1,9 @@ # -# Kimchi +# Project Wok # -# Copyright IBM Corp, 2014 +# Copyright IBM Corp, 2014-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/plugins/sample/ui/pages/i18n.json.tmpl b/src/wok/plugins/sample/ui/pages/i18n.json.tmpl index 737bb39..5a0cd5c 100644 --- a/src/wok/plugins/sample/ui/pages/i18n.json.tmpl +++ b/src/wok/plugins/sample/ui/pages/i18n.json.tmpl @@ -1,7 +1,9 @@ #* - * Kimchi + * Project Wok * - * Copyright IBM, Corp. 2014 + * Copyright IBM, Corp. 2014-2015 + * + * Code delivered from Project Kimchi * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/wok/plugins/sample/ui/pages/sample-tab1.html.tmpl b/src/wok/plugins/sample/ui/pages/sample-tab1.html.tmpl index 4354d81..a1cd002 100644 --- a/src/wok/plugins/sample/ui/pages/sample-tab1.html.tmpl +++ b/src/wok/plugins/sample/ui/pages/sample-tab1.html.tmpl @@ -1,7 +1,9 @@ #* - * Project Kimchi + * Project Wok * - * Copyright IBM, Corp. 2014 + * Copyright IBM, Corp. 2014-2015 + * + * Code delivered from Project Kimchi * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/wok/plugins/sample/ui/pages/sample-tab2.html.tmpl b/src/wok/plugins/sample/ui/pages/sample-tab2.html.tmpl index 4354d81..a1cd002 100644 --- a/src/wok/plugins/sample/ui/pages/sample-tab2.html.tmpl +++ b/src/wok/plugins/sample/ui/pages/sample-tab2.html.tmpl @@ -1,7 +1,9 @@ #* - * Project Kimchi + * Project Wok * - * Copyright IBM, Corp. 2014 + * Copyright IBM, Corp. 2014-2015 + * + * Code delivered from Project Kimchi * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/wok/proxy.py b/src/wok/proxy.py index 961f8a7..ad5bc86 100644 --- a/src/wok/proxy.py +++ b/src/wok/proxy.py @@ -1,9 +1,11 @@ #!/usr/bin/python # -# Project Kimchi +# Project Wok # # Copyright IBM, Corp. 2014-2015 # +# Code delivered from Project Kimchi +# # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either diff --git a/src/wok/rollbackcontext.py b/src/wok/rollbackcontext.py index 2f3e8bc..a4c25d1 100644 --- a/src/wok/rollbackcontext.py +++ b/src/wok/rollbackcontext.py @@ -1,7 +1,9 @@ # -# Project Kimchi +# Project Wok # -# Copyright IBM, Corp. 2013-2014 +# Copyright IBM, Corp. 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/root.py b/src/wok/root.py index 4262bd0..6d170c2 100644 --- a/src/wok/root.py +++ b/src/wok/root.py @@ -1,8 +1,10 @@ # -# Project Kimchi +# Project Wok # # Copyright IBM, Corp. 2013-2015 # +# Code delivered from Project Kimchi +# # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either diff --git a/src/wok/server.py b/src/wok/server.py index e18ecb5..e9ef528 100644 --- a/src/wok/server.py +++ b/src/wok/server.py @@ -1,7 +1,9 @@ # -# Project Kimchi +# Project Wok # -# Copyright IBM, Corp. 2013-2014 +# Copyright IBM, Corp. 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/sslcert.py b/src/wok/sslcert.py index 6b64796..60c986f 100644 --- a/src/wok/sslcert.py +++ b/src/wok/sslcert.py @@ -1,9 +1,11 @@ # -# Project Kimchi +# Project Wok # -# Copyright IBM, Corp. 2013-2014 +# Copyright IBM, Corp. 2013-2015 # Copyright (C) 2004-2005 OSAF. All Rights Reserved. # +# Code delivered from Project Kimchi +# # Portions of this file were derived from the python-m2crypto unit tests: # http://svn.osafoundation.org/m2crypto/trunk/tests/test_x509.py # diff --git a/src/wok/template.py b/src/wok/template.py index c743f73..b72482b 100644 --- a/src/wok/template.py +++ b/src/wok/template.py @@ -1,7 +1,9 @@ # -# Project Kimchi +# Project Wok # -# Copyright IBM, Corp. 2013-2014 +# Copyright IBM, Corp. 2013-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/utils.py b/src/wok/utils.py index 89ab15d..6ccf6ad 100644 --- a/src/wok/utils.py +++ b/src/wok/utils.py @@ -1,8 +1,10 @@ # -# Project Kimchi +# Project Wok # # Copyright IBM, Corp. 2013-2015 # +# Code delivered from Project Kimchi +# # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either diff --git a/src/wok/xmlutils/Makefile.am b/src/wok/xmlutils/Makefile.am index 69aa524..c139096 100644 --- a/src/wok/xmlutils/Makefile.am +++ b/src/wok/xmlutils/Makefile.am @@ -1,7 +1,9 @@ # -# Kimchi +# Project Wok # -# Copyright IBM Corp, 2014 +# Copyright IBM Corp, 2014-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/xmlutils/__init__.py b/src/wok/xmlutils/__init__.py index ca7ede4..687ee47 100644 --- a/src/wok/xmlutils/__init__.py +++ b/src/wok/xmlutils/__init__.py @@ -1,7 +1,9 @@ # -# Project Kimchi +# Project Wok # -# Copyright IBM, Corp. 2014 +# Copyright IBM, Corp. 2014-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wok/xmlutils/utils.py b/src/wok/xmlutils/utils.py index be08a14..e09dccb 100644 --- a/src/wok/xmlutils/utils.py +++ b/src/wok/xmlutils/utils.py @@ -1,7 +1,9 @@ # -# Project Kimchi +# Project Wok # -# Copyright IBM, Corp. 2014 +# Copyright IBM, Corp. 2014-2015 +# +# Code delivered from Project Kimchi # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/src/wokd.in b/src/wokd.in index f225361..351054b 100644 --- a/src/wokd.in +++ b/src/wokd.in @@ -1,9 +1,11 @@ #!/usr/bin/env python2 # -# Project Kimchi +# Project Wok # # Copyright IBM, Corp. 2013-2015 # +# Code delivered from Project Kimchi +# # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either -- 2.4.3