fix copyright headers
This commit is contained in:
parent
41c0b3e704
commit
245ae36cf4
@ -1 +1,21 @@
|
|||||||
|
#
|
||||||
|
# Tibia
|
||||||
|
#
|
||||||
|
# Copyright (C) 2024 Orastron Srl unipersonale
|
||||||
|
#
|
||||||
|
# Tibia is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, version 3 of the License.
|
||||||
|
#
|
||||||
|
# Tibia 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 General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with Tibia. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
# File author: Stefano D'Angelo
|
||||||
|
#
|
||||||
|
|
||||||
include rules-extra-web-demo.mk
|
include rules-extra-web-demo.mk
|
||||||
|
20
test/run.sh
20
test/run.sh
@ -1,5 +1,25 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
#
|
||||||
|
# Tibia
|
||||||
|
#
|
||||||
|
# Copyright (C) 2023-2025 Orastron Srl unipersonale
|
||||||
|
#
|
||||||
|
# Tibia is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, version 3 of the License.
|
||||||
|
#
|
||||||
|
# Tibia 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 General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with Tibia. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
# File author: Stefano D'Angelo
|
||||||
|
#
|
||||||
|
|
||||||
dir=`dirname $0`
|
dir=`dirname $0`
|
||||||
|
|
||||||
$dir/../tibia $dir/product.json,$dir/company.json $dir/../templates/api $dir/../out/api
|
$dir/../tibia $dir/product.json,$dir/company.json $dir/../templates/api $dir/../out/api
|
||||||
|
@ -1 +1,21 @@
|
|||||||
|
#
|
||||||
|
# Tibia
|
||||||
|
#
|
||||||
|
# Copyright (C) 2024 Orastron Srl unipersonale
|
||||||
|
#
|
||||||
|
# Tibia is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, version 3 of the License.
|
||||||
|
#
|
||||||
|
# Tibia 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 General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with Tibia. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
# File author: Stefano D'Angelo
|
||||||
|
#
|
||||||
|
|
||||||
include vars-extra-web-demo.mk
|
include vars-extra-web-demo.mk
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
#
|
||||||
|
# Tibia
|
||||||
|
#
|
||||||
|
# Copyright (C) 2024, 2025 Orastron Srl unipersonale
|
||||||
|
#
|
||||||
|
# Tibia is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, version 3 of the License.
|
||||||
|
#
|
||||||
|
# Tibia 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 General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with Tibia. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
# File author: Stefano D'Angelo
|
||||||
|
#
|
||||||
|
|
||||||
API_DIR := ../api
|
API_DIR := ../api
|
||||||
|
|
||||||
VINCI_DIR := ../../../vinci
|
VINCI_DIR := ../../../vinci
|
||||||
|
20
tibia
20
tibia
@ -1,5 +1,25 @@
|
|||||||
#!/usr/bin/env node
|
#!/usr/bin/env node
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Tibia
|
||||||
|
*
|
||||||
|
* Copyright (C) 2023-2025 Orastron Srl unipersonale
|
||||||
|
*
|
||||||
|
* Tibia is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, version 3 of the License.
|
||||||
|
*
|
||||||
|
* Tibia 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Tibia. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* File author: Stefano D'Angelo
|
||||||
|
*/
|
||||||
|
|
||||||
function usage() {
|
function usage() {
|
||||||
console.log("Usage:");
|
console.log("Usage:");
|
||||||
console.log(" tibia file1.json,file2.json,...filen.json template outDirectory [override1=value1] [override2=value2] ...");
|
console.log(" tibia file1.json,file2.json,...filen.json template outDirectory [override1=value1] [override2=value2] ...");
|
||||||
|
Loading…
Reference in New Issue
Block a user