Added GPL v3 according to Debian Policy Manual, thanks to Roger Kalt
This commit is contained in:
@@ -1,6 +1,22 @@
|
||||
# elog2sql
|
||||
# global configuration vars
|
||||
|
||||
# Copyright 2000 + Stefan Ritt
|
||||
#
|
||||
# ELOG 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 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# ELOG 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 ELOG. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
|
||||
#
|
||||
# set the database table names to "$table_prefix<logbookname>"
|
||||
|
||||
@@ -1,5 +1,21 @@
|
||||
#!/usr/bin/perl -w
|
||||
|
||||
# Copyright 2000 + Stefan Ritt
|
||||
#
|
||||
# ELOG 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 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# ELOG 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 ELOG. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
=head1 NAME
|
||||
|
||||
doelog - save a mime message to elog
|
||||
|
||||
@@ -1,5 +1,21 @@
|
||||
#!/usr/bin/perl
|
||||
|
||||
# Copyright 2000 + Stefan Ritt
|
||||
#
|
||||
# ELOG 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 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# ELOG 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 ELOG. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
=head1 NAME
|
||||
|
||||
parsecfg.pl - create a sql db template from a elog.cfg file
|
||||
|
||||
@@ -1,5 +1,21 @@
|
||||
#!/usr/bin/perl
|
||||
|
||||
# Copyright 2000 + Stefan Ritt
|
||||
#
|
||||
# ELOG 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 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# ELOG 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 ELOG. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
=head1 NAME
|
||||
|
||||
parselog.pl - create a sql db input file from a elog logbook
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
Name: elog
|
||||
Summary: elog is a standalone electronic web logbook
|
||||
Version: 2.8.1
|
||||
Release: 1
|
||||
Version: 2.9.2
|
||||
Release: test
|
||||
License: GPL
|
||||
Group: Applications/Networking
|
||||
Source: http://midas.psi.ch/elog/download/elog-%{version}.tar.gz
|
||||
|
||||
+15
@@ -2,6 +2,21 @@
|
||||
|
||||
Name: auth.c
|
||||
Created by: Stefan Ritt
|
||||
Copyright 2000 + Stefan Ritt
|
||||
|
||||
ELOG 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 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
ELOG 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 ELOG. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
Contents: Authentication subroutines. Currently supported:
|
||||
|
||||
|
||||
+18
@@ -1,6 +1,24 @@
|
||||
/* SHA256-based Unix crypt implementation.
|
||||
Released into the Public Domain by Ulrich Drepper <drepper@redhat.com>.
|
||||
Adapted for MS Windows by Stefan Ritt <stefan.ritt@psi.ch>
|
||||
|
||||
Copyrights Ulrich Drepper
|
||||
Copyright 2000 + Stefan Ritt
|
||||
|
||||
ELOG 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 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
ELOG 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 ELOG. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
$Id$ */
|
||||
|
||||
#ifdef _MSC_VER
|
||||
|
||||
@@ -2,6 +2,22 @@
|
||||
|
||||
Name: elconv.c
|
||||
Created by: Stefan Ritt
|
||||
Copyright 2000 + Stefan Ritt
|
||||
|
||||
ELOG 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 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
ELOG 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 ELOG. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
|
||||
Contents: Conversion program for ELOG messages
|
||||
|
||||
|
||||
@@ -2,6 +2,22 @@
|
||||
|
||||
Name: elog-version.h
|
||||
Created by: Stefan Ritt
|
||||
Copyright 2000 + Stefan Ritt
|
||||
|
||||
ELOG 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 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
ELOG 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 ELOG. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
|
||||
Contents: Version file for all ELOG programs
|
||||
|
||||
|
||||
+15
@@ -2,6 +2,21 @@
|
||||
|
||||
Name: elog.c
|
||||
Created by: Stefan Ritt
|
||||
Copyright 2000 + Stefan Ritt
|
||||
|
||||
ELOG 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 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
ELOG 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 ELOG. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
Contents: Electronic logbook utility
|
||||
|
||||
|
||||
+16
@@ -2,6 +2,22 @@
|
||||
|
||||
Name: elogd.c
|
||||
Created by: Stefan Ritt
|
||||
Copyright 2000 + Stefan Ritt
|
||||
|
||||
ELOG 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 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
ELOG 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 ELOG. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
|
||||
Contents: Web server program for Electronic Logbook ELOG
|
||||
|
||||
|
||||
+16
@@ -2,6 +2,22 @@
|
||||
|
||||
Name: elogd.h
|
||||
Created by: Stefan Ritt
|
||||
Copyright 2000 + Stefan Ritt
|
||||
|
||||
ELOG 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 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
ELOG 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 ELOG. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
|
||||
Contents: Header file for ELOG program
|
||||
|
||||
|
||||
@@ -1 +1,23 @@
|
||||
/********************************************************************\
|
||||
|
||||
Name: git-revision.h
|
||||
Created by: Stefan Ritt
|
||||
Copyright 2000 + Stefan Ritt
|
||||
|
||||
ELOG 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 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
ELOG 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 ELOG. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
\********************************************************************/
|
||||
|
||||
#define GIT_REVISION "Mon Jan 13 09:25:57 2014 +0100 - a738232"
|
||||
|
||||
@@ -2,6 +2,23 @@
|
||||
|
||||
Name: locext.c
|
||||
Created by: Stefan Ritt
|
||||
Copyright 2000 + Stefan Ritt
|
||||
|
||||
ELOG 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 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
ELOG 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 ELOG. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
|
||||
|
||||
Contents: Extract all localization strings from elogd and put
|
||||
them into eloglang.xxxx
|
||||
|
||||
Reference in New Issue
Block a user