From 1fd1798d6c37130317ba18cd13042db77805e0cc Mon Sep 17 00:00:00 2001
From: Lahmizzar Muinela <lahmizzar@devxive.com>
Date: Tue, 07 Jan 2014 17:48:39 -0500
Subject: [PATCH] added license info, updated year

---
 builder/buildManifest |   33 ++++++++--
 builder/create        |   33 ++++++++--
 build                 |   33 ++++++++--
 builder/pull          |   31 ++++++++--
 4 files changed, 100 insertions(+), 30 deletions(-)

diff --git a/build b/build
index 5ad452f..323a267 100755
--- a/build
+++ b/build
@@ -1,18 +1,37 @@
 #!/bin/bash
-clear
-  ######################################
-  # Author: devXive, Lahmizzar Muinela #
-  # Email: support@devxive.com         #
-  # Twitter: @devXive                  #
-  # Website: http://www.devxive.com    #
-  ######################################
 
+# Copyright (C) 1997 - 2014 devXive - research and development
+#
+# The scriptfile is licensed 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 content of static vars and/or static echo output is licensed under the
+# devXive Proprietary Use License (http://devxive.com/legal/license)
+#
+# Author:  devXive, Lahmizzar Muinela
+# Email:   support@devxive.com
+# Twitter: @devxive
+# Website: http://devxive.com
+#
+#
+# Description:
 # Simple script to build an appropriate language manifest
 #
 # How to use
 # ./build update 4.2.0b4 2013-12-06 (Fetch Updates from transifex and create the install file)
 # ./build 4.2.0b4 2013-12-06 (Create the install file from current languages folder)
 
+clear
+
 # Name as used in builder/create
 tempDir="pkg_projectfork_languages"
 version="$2"
diff --git a/builder/buildManifest b/builder/buildManifest
index 2b966af..0d68763 100755
--- a/builder/buildManifest
+++ b/builder/buildManifest
@@ -1,12 +1,29 @@
 #!/bin/bash
 
-  ######################################
-  # Author: devXive, Lahmizzar Muinela #
-  # Email: support@devxive.com         #
-  # Twitter: @devXive                  #
-  # Website: http://www.devxive.com    #
-  ######################################
-
+# Copyright (C) 1997 - 2014 devXive - research and development
+#
+# The scriptfile is licensed 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 content of static vars and/or static echo output is licensed under the
+# devXive Proprietary Use License (http://devxive.com/legal/license)
+#
+# Author:  devXive, Lahmizzar Muinela
+# Email:   support@devxive.com
+# Twitter: @devxive
+# Website: http://devxive.com
+#
+#
+# Description:
 # Simple script to build an appropriate language manifest
 #
 # How to use
@@ -24,7 +41,7 @@
 author='Projectfork Translation Team'
 authorEmail='support@projectfork.net'
 authorUrl='www.projectfork.net'
-copyright='(C) 2012 - 2013 by the Projectfork Translation Team. All rights reserved.'
+copyright='(C) 2012 - 2014 by the Projectfork Translation Team. All rights reserved.'
 
 # Advanced Settings
 filePrefix='lang_pf4_'
diff --git a/builder/create b/builder/create
index 0532390..4a12af3 100755
--- a/builder/create
+++ b/builder/create
@@ -1,12 +1,29 @@
 #!/bin/bash
 
-  ######################################
-  # Author: devXive, Lahmizzar Muinela #
-  # Email: support@devxive.com         #
-  # Twitter: @devXive                  #
-  # Website: http://www.devxive.com    #
-  ######################################
-
+# Copyright (C) 1997 - 2014 devXive - research and development
+#
+# The scriptfile is licensed 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 content of static vars and/or static echo output is licensed under the
+# devXive Proprietary Use License (http://devxive.com/legal/license)
+#
+# Author:  devXive, Lahmizzar Muinela
+# Email:   support@devxive.com
+# Twitter: @devxive
+# Website: http://devxive.com
+#
+#
+# Description:
 # Simple script to build an appropriate language manifest
 #
 # How to use
@@ -69,7 +86,7 @@
 echo '	<author>Projectfork Translation Team</author>' >> "$file"
 echo '	<authorEmail>support@projectfork.net</authorEmail>' >> "$file"
 echo '	<authorUrl>http://www.projectfork.net</authorUrl>' >> "$file"
-echo '	<copyright>(C) 2012 - 2013 by the Projectfork Translation Team. All rights reserved.</copyright>' >> "$file"
+echo '	<copyright>(C) 2012 - 2014 by the Projectfork Translation Team. All rights reserved.</copyright>' >> "$file"
 echo "	<version>$version</version>" >> "$file"
 echo '	<updateable>fullupdate</updateable>' >> "$file"
 echo '	<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license>' >> "$file"
diff --git a/builder/pull b/builder/pull
index 2091cd0..07d77cb 100755
--- a/builder/pull
+++ b/builder/pull
@@ -1,12 +1,29 @@
 #!/bin/bash
 
-  ######################################
-  # Author: devXive, Lahmizzar Muinela #
-  # Email: support@devxive.com         #
-  # Twitter: @devXive                  #
-  # Website: http://www.devxive.com    #
-  ######################################
-
+# Copyright (C) 1997 - 2014 devXive - research and development
+#
+# The scriptfile is licensed 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 content of static vars and/or static echo output is licensed under the
+# devXive Proprietary Use License (http://devxive.com/legal/license)
+#
+# Author:  devXive, Lahmizzar Muinela
+# Email:   support@devxive.com
+# Twitter: @devxive
+# Website: http://devxive.com
+#
+#
+# Description:
 # Simple script to pull tx translatons and build manifest files
 # This script is to take control about what language will be pulled and stored in the language pack
 # If you add a language, please have a look at the .tx/config file first and check if the language exists.

--
Gitblit v1.9.1