diff options
| author | 2009-09-17 18:53:03 +0000 | |
|---|---|---|
| committer | 2009-09-17 18:53:03 +0000 | |
| commit | 99cc17be60390b2e1a83df474528b2a447c0aa92 (patch) | |
| tree | af2e7e1a413d34e9d3242c84d31210d6cc8e52e8 /admin | |
| parent | reverted r3447 and r3472; fixes #550 and #560, but reopens #519 (diff) | |
| download | KVIrc-99cc17be60390b2e1a83df474528b2a447c0aa92.tar.gz KVIrc-99cc17be60390b2e1a83df474528b2a447c0aa92.tar.bz2 KVIrc-99cc17be60390b2e1a83df474528b2a447c0aa92.zip | |
fixed license
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@3505 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'admin')
| -rwxr-xr-x | admin/convert.sh | 27 | ||||
| -rwxr-xr-x | admin/convert2unix.sh | 27 | ||||
| -rwxr-xr-x | admin/gendoc.pl | 24 | ||||
| -rw-r--r-- | admin/gensrc.pl | 24 | ||||
| -rwxr-xr-x | admin/sedfiles.sh | 26 | ||||
| -rw-r--r-- | admin/svn_fixsvnignore.sh | 26 |
6 files changed, 151 insertions, 3 deletions
diff --git a/admin/convert.sh b/admin/convert.sh index aafc32efa..ffbf61780 100755 --- a/admin/convert.sh +++ b/admin/convert.sh @@ -1,4 +1,29 @@ -#!/bin/bash +#!/bin/sh + +#============================================================================ +# +# File : convert.sh +# Creation date : Sun 17 Dec 2006 20:36:07 by Szymon Stefanek +# +# This file is part of the KVIrc IRC Client distribution +# Copyright (C) 2000-2009 Szymon Stefanek <pragma at kvirc dot net> +# +# This program 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; either version 2 +# of the License, or (at your opinion) any later version. +# +# This program 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 this program. If not, write to the Free Software Foundation, +# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# +#============================================================================ + for aa in $*; do file $aa dos2unix $aa diff --git a/admin/convert2unix.sh b/admin/convert2unix.sh index 0b376a537..0e1df628d 100755 --- a/admin/convert2unix.sh +++ b/admin/convert2unix.sh @@ -1,4 +1,29 @@ -#!/bin/bash +#!/bin/sh + +#============================================================================ +# +# File : convert2unix.sh +# Creation date : Sun 17 Dec 2006 20:36:07 by Szymon Stefanek +# +# This file is part of the KVIrc IRC Client distribution +# Copyright (C) 2000-2009 Szymon Stefanek <pragma at kvirc dot net> +# +# This program 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; either version 2 +# of the License, or (at your opinion) any later version. +# +# This program 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 this program. If not, write to the Free Software Foundation, +# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# +#============================================================================ + admin/convert.sh `find -name "*.h"` admin/convert.sh `find -name "*.cpp"` admin/convert.sh `find -name "*.cc"`
\ No newline at end of file diff --git a/admin/gendoc.pl b/admin/gendoc.pl index 89f809523..941abb423 100755 --- a/admin/gendoc.pl +++ b/admin/gendoc.pl @@ -1,5 +1,29 @@ #!/usr/bin/perl +#============================================================================ +# +# File : gendoc.pl +# Creation date : Sun 17 Dec 2006 20:36:07 by Szymon Stefanek +# +# This file is part of the KVIrc IRC Client distribution +# Copyright (C) 2000-2009 Szymon Stefanek <pragma at kvirc dot net> +# +# This program 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; either version 2 +# of the License, or (at your opinion) any later version. +# +# This program 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 this program. If not, write to the Free Software Foundation, +# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# +#============================================================================ + ################################################################################################# # GLOBAL CONFIGS ################################################################################################# diff --git a/admin/gensrc.pl b/admin/gensrc.pl index bd7a0f4a0..94292d4e5 100644 --- a/admin/gensrc.pl +++ b/admin/gensrc.pl @@ -1,5 +1,29 @@ #!/usr/bin/perl +#============================================================================ +# +# File : gensrc.pl +# Creation date : Sun 17 Dec 2006 20:36:07 by Szymon Stefanek +# +# This file is part of the KVIrc IRC Client distribution +# Copyright (C) 2000-2009 Szymon Stefanek <pragma at kvirc dot net> +# +# This program 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; either version 2 +# of the License, or (at your opinion) any later version. +# +# This program 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 this program. If not, write to the Free Software Foundation, +# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# +#============================================================================ + $name = $ARGV[0]; if($name eq "") diff --git a/admin/sedfiles.sh b/admin/sedfiles.sh index 00cf942f3..aa2f0fc5f 100755 --- a/admin/sedfiles.sh +++ b/admin/sedfiles.sh @@ -1,4 +1,28 @@ -#!/bin/bash +#!/bin/sh + +#============================================================================ +# +# File : sedfiles.sh +# Creation date : Sun 17 Dec 2006 20:36:07 by Szymon Stefanek +# +# This file is part of the KVIrc IRC Client distribution +# Copyright (C) 2000-2009 Szymon Stefanek <pragma at kvirc dot net> +# +# This program 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; either version 2 +# of the License, or (at your opinion) any later version. +# +# This program 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 this program. If not, write to the Free Software Foundation, +# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# +#============================================================================ if test -z "$*"; then echo "No files to parse" diff --git a/admin/svn_fixsvnignore.sh b/admin/svn_fixsvnignore.sh index db3d2f883..64400671d 100644 --- a/admin/svn_fixsvnignore.sh +++ b/admin/svn_fixsvnignore.sh @@ -1,3 +1,29 @@ +#!/bin/sh + +#============================================================================ +# +# File : svn_fixsvnignore.sh +# Creation date : Sat 30 Dec 2006 16:17:52 by Szymon Stefanek +# +# This file is part of the KVIrc IRC Client distribution +# Copyright (C) 2000-2009 Szymon Stefanek <pragma at kvirc dot net> +# +# This program 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; either version 2 +# of the License, or (at your opinion) any later version. +# +# This program 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 this program. If not, write to the Free Software Foundation, +# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# +#============================================================================ + export BASEDIR=$(pwd) for a in $(find ./ -name ".svnignore"); do |
