From 377e2f65271bdaeae431c0befc1af3faa10ff632 Mon Sep 17 00:00:00 2001 From: Peter Nashaat Date: Tue, 25 Oct 2022 10:43:44 +0000 Subject: [PATCH 01/17] adding autodeployment --- .github/workflows/tf_update.yml | 23 +++++++++++++++++++++++ .gitignore | 5 +++++ 2 files changed, 28 insertions(+) create mode 100644 .github/workflows/tf_update.yml create mode 100644 .gitignore diff --git a/.github/workflows/tf_update.yml b/.github/workflows/tf_update.yml new file mode 100644 index 0000000..9457a54 --- /dev/null +++ b/.github/workflows/tf_update.yml @@ -0,0 +1,23 @@ +name: event2.ourworld.tf +on: + push: + branch: [ development ] + +jobs: + job_one: + name: Deploy + runs-on: ubuntu-latest + steps: + - name: pushing latest change on event2.ourworld.tf + uses: appleboy/ssh-action@master + with: + host: event2.ourworld.tf + username: webuser + key: ${{ secrets.TF_SECRET }} + port: 34022 + script: | + cd /home/webuser/websites/www2/www_ourworld_ictc + git log -1 + git pull + name=$(basename "$PWD") + if [ -z $(tmux list-sessions | grep $name | awk '{ print $1 }') ]; then echo tmux new-session -d -s $name 'bash run.sh' ; else tmux kill-session -t $name ; tmux new-session -d -s $name 'bash run.sh' ; fi diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..24266c2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +templates/tickets.html +static/css/index.css +www_ourworld_ictc +ticket +tailwindcss From 887c70417cd31187a485e58956afdaaac4878c33 Mon Sep 17 00:00:00 2001 From: Peter Nashaat Date: Tue, 25 Oct 2022 10:44:51 +0000 Subject: [PATCH 02/17] adding autodeployment --- .github/workflows/tf_update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tf_update.yml b/.github/workflows/tf_update.yml index 9457a54..28c2136 100644 --- a/.github/workflows/tf_update.yml +++ b/.github/workflows/tf_update.yml @@ -20,4 +20,4 @@ jobs: git log -1 git pull name=$(basename "$PWD") - if [ -z $(tmux list-sessions | grep $name | awk '{ print $1 }') ]; then echo tmux new-session -d -s $name 'bash run.sh' ; else tmux kill-session -t $name ; tmux new-session -d -s $name 'bash run.sh' ; fi + if [ -z $(tmux list-sessions | grep $name | awk '{ print $1 }') ]; then tmux new-session -d -s $name 'bash run.sh' ; else tmux kill-session -t $name ; tmux new-session -d -s $name 'bash run.sh' ; fi From 8862fd92586f26ceeb3aef6d83c21ca24ab64cab Mon Sep 17 00:00:00 2001 From: Peter Nashaat Date: Tue, 25 Oct 2022 10:52:03 +0000 Subject: [PATCH 03/17] adding autodeployment --- .github/workflows/tf_update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tf_update.yml b/.github/workflows/tf_update.yml index 28c2136..66b5181 100644 --- a/.github/workflows/tf_update.yml +++ b/.github/workflows/tf_update.yml @@ -20,4 +20,4 @@ jobs: git log -1 git pull name=$(basename "$PWD") - if [ -z $(tmux list-sessions | grep $name | awk '{ print $1 }') ]; then tmux new-session -d -s $name 'bash run.sh' ; else tmux kill-session -t $name ; tmux new-session -d -s $name 'bash run.sh' ; fi + if [ -z $(tmux list-sessions | grep $name | awk '{ print $1 }') > /dev/null 2>&1 ]; then tmux new-session -d -s $name 'bash run.sh' ; else tmux kill-session -t $name ; tmux new-session -d -s $name 'bash run.sh' ; fi From 5914cd11d8c56ed98716ae09c84ccfbf89ed7d65 Mon Sep 17 00:00:00 2001 From: Peter Nashaat Date: Tue, 25 Oct 2022 11:01:49 +0000 Subject: [PATCH 04/17] adding autodeployment --- .github/workflows/tf_update.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tf_update.yml b/.github/workflows/tf_update.yml index 66b5181..d98cf39 100644 --- a/.github/workflows/tf_update.yml +++ b/.github/workflows/tf_update.yml @@ -10,6 +10,7 @@ jobs: steps: - name: pushing latest change on event2.ourworld.tf uses: appleboy/ssh-action@master + continue-on-error: true with: host: event2.ourworld.tf username: webuser From 1d7d29d58d2360e7d1c408a291ef2d245ad442fe Mon Sep 17 00:00:00 2001 From: Peter Nashaat Date: Tue, 25 Oct 2022 11:24:57 +0000 Subject: [PATCH 05/17] adding autodeployment --- .github/workflows/tf_update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tf_update.yml b/.github/workflows/tf_update.yml index d98cf39..938c5d6 100644 --- a/.github/workflows/tf_update.yml +++ b/.github/workflows/tf_update.yml @@ -10,12 +10,12 @@ jobs: steps: - name: pushing latest change on event2.ourworld.tf uses: appleboy/ssh-action@master - continue-on-error: true with: host: event2.ourworld.tf username: webuser key: ${{ secrets.TF_SECRET }} port: 34022 + continue-on-error: true script: | cd /home/webuser/websites/www2/www_ourworld_ictc git log -1 From 3c3ff997b2eb036d0360ba37fe7b84ebab391d28 Mon Sep 17 00:00:00 2001 From: Peter Nashaat Date: Tue, 25 Oct 2022 11:41:03 +0000 Subject: [PATCH 06/17] adding autodeployment --- .github/workflows/tf_update.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tf_update.yml b/.github/workflows/tf_update.yml index 938c5d6..bb08d88 100644 --- a/.github/workflows/tf_update.yml +++ b/.github/workflows/tf_update.yml @@ -15,10 +15,10 @@ jobs: username: webuser key: ${{ secrets.TF_SECRET }} port: 34022 - continue-on-error: true script: | cd /home/webuser/websites/www2/www_ourworld_ictc git log -1 git pull name=$(basename "$PWD") - if [ -z $(tmux list-sessions | grep $name | awk '{ print $1 }') > /dev/null 2>&1 ]; then tmux new-session -d -s $name 'bash run.sh' ; else tmux kill-session -t $name ; tmux new-session -d -s $name 'bash run.sh' ; fi + tmux has-session -t $name > /dev/null 2>&1 + if [ $? != 0 ]; then tmux new-session -d -s $name 'bash run.sh' ; else tmux kill-session -t $name ; tmux new-session -d -s $name 'bash run.sh' ; fi From acdcd3ad82bf7cb466ed702fe58a310a872c599f Mon Sep 17 00:00:00 2001 From: Peter Nashaat Date: Tue, 25 Oct 2022 11:54:37 +0000 Subject: [PATCH 07/17] adding autodeployment --- .github/workflows/push_update.yml | 22 ++++++++++++++++++++++ .github/workflows/tf_update.yml | 3 --- 2 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/push_update.yml diff --git a/.github/workflows/push_update.yml b/.github/workflows/push_update.yml new file mode 100644 index 0000000..bf49697 --- /dev/null +++ b/.github/workflows/push_update.yml @@ -0,0 +1,22 @@ +name: event2.ourworld.tf +on: + push: + branch: [ development ] + +jobs: + job_one: + name: Deploy + runs-on: ubuntu-latest + steps: + - name: pushing latest change on event2.ourworld.tf + uses: appleboy/ssh-action@master + with: + host: event2.ourworld.tf + username: webuser + key: ${{ secrets.TF_SECRET }} + port: 34022 + script: | + cd /home/webuser/websites/www2/www_ourworld_ictc + name=$(basename "$PWD") + tmux has-session -t $name > /dev/null 2>&1 + if [ $? != 0 ]; then tmux new-session -d -s $name 'bash run.sh' ; else tmux kill-session -t $name ; tmux new-session -d -s $name 'bash run.sh' ; fi diff --git a/.github/workflows/tf_update.yml b/.github/workflows/tf_update.yml index bb08d88..7605909 100644 --- a/.github/workflows/tf_update.yml +++ b/.github/workflows/tf_update.yml @@ -19,6 +19,3 @@ jobs: cd /home/webuser/websites/www2/www_ourworld_ictc git log -1 git pull - name=$(basename "$PWD") - tmux has-session -t $name > /dev/null 2>&1 - if [ $? != 0 ]; then tmux new-session -d -s $name 'bash run.sh' ; else tmux kill-session -t $name ; tmux new-session -d -s $name 'bash run.sh' ; fi From 9b228e286796d3de84b9ea136484671035b6ad47 Mon Sep 17 00:00:00 2001 From: Peter Nashaat Date: Tue, 25 Oct 2022 12:11:02 +0000 Subject: [PATCH 08/17] adding auto deployment to www2 --- .github/workflows/push_update.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/push_update.yml b/.github/workflows/push_update.yml index bf49697..8dd5329 100644 --- a/.github/workflows/push_update.yml +++ b/.github/workflows/push_update.yml @@ -20,3 +20,4 @@ jobs: name=$(basename "$PWD") tmux has-session -t $name > /dev/null 2>&1 if [ $? != 0 ]; then tmux new-session -d -s $name 'bash run.sh' ; else tmux kill-session -t $name ; tmux new-session -d -s $name 'bash run.sh' ; fi + sleep 100 From eadfaea0648e6665b295cecf25e4fa6ba89de562 Mon Sep 17 00:00:00 2001 From: Peter Nashaat Date: Tue, 25 Oct 2022 12:15:17 +0000 Subject: [PATCH 09/17] adding auto deployment --- .github/workflows/push_update.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/push_update.yml b/.github/workflows/push_update.yml index 8dd5329..75e74ef 100644 --- a/.github/workflows/push_update.yml +++ b/.github/workflows/push_update.yml @@ -18,6 +18,5 @@ jobs: script: | cd /home/webuser/websites/www2/www_ourworld_ictc name=$(basename "$PWD") - tmux has-session -t $name > /dev/null 2>&1 - if [ $? != 0 ]; then tmux new-session -d -s $name 'bash run.sh' ; else tmux kill-session -t $name ; tmux new-session -d -s $name 'bash run.sh' ; fi - sleep 100 + kill-session -t $name + tmux new-session -d -s $name 'bash run.sh' From 2e13212bd834da614f55242107911c57b3b8ca97 Mon Sep 17 00:00:00 2001 From: Peter Nashaat Date: Tue, 25 Oct 2022 12:16:18 +0000 Subject: [PATCH 10/17] adding auto deployment --- .github/workflows/push_update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push_update.yml b/.github/workflows/push_update.yml index 75e74ef..873f5c4 100644 --- a/.github/workflows/push_update.yml +++ b/.github/workflows/push_update.yml @@ -18,5 +18,5 @@ jobs: script: | cd /home/webuser/websites/www2/www_ourworld_ictc name=$(basename "$PWD") - kill-session -t $name + tmux kill-session -t $name tmux new-session -d -s $name 'bash run.sh' From 18131dc8410c85f55abce56554c956238f7a9b35 Mon Sep 17 00:00:00 2001 From: Peter Nashaat Date: Tue, 25 Oct 2022 12:18:00 +0000 Subject: [PATCH 11/17] adding auto deployment --- .github/workflows/push_update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push_update.yml b/.github/workflows/push_update.yml index 873f5c4..9132758 100644 --- a/.github/workflows/push_update.yml +++ b/.github/workflows/push_update.yml @@ -18,5 +18,5 @@ jobs: script: | cd /home/webuser/websites/www2/www_ourworld_ictc name=$(basename "$PWD") - tmux kill-session -t $name + tmux kill-session -t $name > /dev/null 2>&1 tmux new-session -d -s $name 'bash run.sh' From 8f20c5529b3183bd366ef9cf10a78c222a75d595 Mon Sep 17 00:00:00 2001 From: Peter Nashaat Date: Tue, 25 Oct 2022 12:28:13 +0000 Subject: [PATCH 12/17] adding auto deployment --- .github/workflows/push_update.yml | 22 ---------------------- .github/workflows/tf_update.yml | 1 + start.sh | 2 ++ 3 files changed, 3 insertions(+), 22 deletions(-) delete mode 100644 .github/workflows/push_update.yml create mode 100644 start.sh diff --git a/.github/workflows/push_update.yml b/.github/workflows/push_update.yml deleted file mode 100644 index 9132758..0000000 --- a/.github/workflows/push_update.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: event2.ourworld.tf -on: - push: - branch: [ development ] - -jobs: - job_one: - name: Deploy - runs-on: ubuntu-latest - steps: - - name: pushing latest change on event2.ourworld.tf - uses: appleboy/ssh-action@master - with: - host: event2.ourworld.tf - username: webuser - key: ${{ secrets.TF_SECRET }} - port: 34022 - script: | - cd /home/webuser/websites/www2/www_ourworld_ictc - name=$(basename "$PWD") - tmux kill-session -t $name > /dev/null 2>&1 - tmux new-session -d -s $name 'bash run.sh' diff --git a/.github/workflows/tf_update.yml b/.github/workflows/tf_update.yml index 7605909..395d393 100644 --- a/.github/workflows/tf_update.yml +++ b/.github/workflows/tf_update.yml @@ -19,3 +19,4 @@ jobs: cd /home/webuser/websites/www2/www_ourworld_ictc git log -1 git pull + bash start diff --git a/start.sh b/start.sh new file mode 100644 index 0000000..1af2ecf --- /dev/null +++ b/start.sh @@ -0,0 +1,2 @@ +name=$(basename "$PWD") +if [ -z $(tmux list-sessions | grep $name | awk '{ print $1 }') ]; then tmux new-session -d -s $name 'bash run.sh' ; else tmux kill-session -t $name ; tmux new-session -d -s $name 'bash run.sh' ; fi From 90c9d7da440a0d026fa45f5584cfe994c2e91a90 Mon Sep 17 00:00:00 2001 From: Peter Nashaat Date: Tue, 25 Oct 2022 12:30:06 +0000 Subject: [PATCH 13/17] adding auto deployment --- .github/workflows/tf_update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tf_update.yml b/.github/workflows/tf_update.yml index 395d393..bdeabca 100644 --- a/.github/workflows/tf_update.yml +++ b/.github/workflows/tf_update.yml @@ -19,4 +19,4 @@ jobs: cd /home/webuser/websites/www2/www_ourworld_ictc git log -1 git pull - bash start + bash start.sh From f7eabe5c7e9d6abad30323eb035911a0d3a10655 Mon Sep 17 00:00:00 2001 From: Peter Nashaat Date: Tue, 25 Oct 2022 12:49:06 +0000 Subject: [PATCH 14/17] adding auto deployment --- start.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/start.sh b/start.sh index 1af2ecf..9bd250e 100644 --- a/start.sh +++ b/start.sh @@ -1,2 +1,2 @@ -name=$(basename "$PWD") -if [ -z $(tmux list-sessions | grep $name | awk '{ print $1 }') ]; then tmux new-session -d -s $name 'bash run.sh' ; else tmux kill-session -t $name ; tmux new-session -d -s $name 'bash run.sh' ; fi +tmux kill-session -t www_ourworld_ictc > /dev/null 2>&1 +tmux new-session -d -s www_ourworld_ictc 'bash run.sh' From b8850be903e4e5a584021a3a44dd239fa215a762 Mon Sep 17 00:00:00 2001 From: Peter Nashaat Date: Tue, 25 Oct 2022 12:56:45 +0000 Subject: [PATCH 15/17] fixing issue --- .github/workflows/tf_update.yml | 22 ---------------------- start.sh | 2 -- 2 files changed, 24 deletions(-) delete mode 100644 .github/workflows/tf_update.yml delete mode 100644 start.sh diff --git a/.github/workflows/tf_update.yml b/.github/workflows/tf_update.yml deleted file mode 100644 index bdeabca..0000000 --- a/.github/workflows/tf_update.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: event2.ourworld.tf -on: - push: - branch: [ development ] - -jobs: - job_one: - name: Deploy - runs-on: ubuntu-latest - steps: - - name: pushing latest change on event2.ourworld.tf - uses: appleboy/ssh-action@master - with: - host: event2.ourworld.tf - username: webuser - key: ${{ secrets.TF_SECRET }} - port: 34022 - script: | - cd /home/webuser/websites/www2/www_ourworld_ictc - git log -1 - git pull - bash start.sh diff --git a/start.sh b/start.sh deleted file mode 100644 index 9bd250e..0000000 --- a/start.sh +++ /dev/null @@ -1,2 +0,0 @@ -tmux kill-session -t www_ourworld_ictc > /dev/null 2>&1 -tmux new-session -d -s www_ourworld_ictc 'bash run.sh' From a3e6123eaf04d49a3617a6c7888435e94a3e5b5a Mon Sep 17 00:00:00 2001 From: Peter Nashaat Date: Wed, 2 Nov 2022 10:19:44 +0000 Subject: [PATCH 16/17] adding auto deployment feature --- .github/workflows/tf_update.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/tf_update.yml diff --git a/.github/workflows/tf_update.yml b/.github/workflows/tf_update.yml new file mode 100644 index 0000000..eeac543 --- /dev/null +++ b/.github/workflows/tf_update.yml @@ -0,0 +1,22 @@ +name: event2.ourworld.tf +on: + push: + branch: [ development ] + +jobs: + job_one: + name: Deploy + runs-on: ubuntu-latest + steps: + - name: pushing latest change on event2.ourworld.tf + uses: appleboy/ssh-action@master + with: + host: event2.ourworld.tf + username: webuser + key: ${{ secrets.TF_SECRET }} + port: 34022 + script: | + cd /home/webuser/websites/www2/www_ourworld_ictc + git log -1 + git pull + systemctl --user restart event2-ourworldtf.service From 3458743e2ba989896bc24436e8a28b596bd0dc75 Mon Sep 17 00:00:00 2001 From: Reem Khamis Date: Mon, 7 Aug 2023 15:23:51 +0300 Subject: [PATCH 17/17] add LICENSE --- LICENSE | 201 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 201 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..b38adaa --- /dev/null +++ b/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright Incubaid NV Belgium + + 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.