dansguardian-2.10.1.1/ 0000777 0011650 0011650 00000000000 11212164550 011374 5 0000000 0000000 dansguardian-2.10.1.1/NEWS 0000644 0011650 0011650 00000000121 11110523211 011767 0000000 0000000 For news go to http://dansguardian.org/
This file is required by the autotools.
dansguardian-2.10.1.1/missing 0000644 0011650 0011650 00000024533 11110523211 012701 0000000 0000000 #! /bin/sh
# Common stub for a few missing GNU programs while installing.
scriptversion=2004-09-07.08
# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004
# Free Software Foundation, Inc.
# Originally by Fran,cois Pinard , 1996.
# 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, or (at your option)
# 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., 59 Temple Place - Suite 330, Boston, MA
# 02111-1307, USA.
# As a special exception to the GNU General Public License, if you
# distribute this file as part of a program that contains a
# configuration script generated by Autoconf, you may include it under
# the same distribution terms that you use for the rest of that program.
if test $# -eq 0; then
echo 1>&2 "Try \`$0 --help' for more information"
exit 1
fi
run=:
# In the cases where this matters, `missing' is being run in the
# srcdir already.
if test -f configure.ac; then
configure_ac=configure.ac
else
configure_ac=configure.in
fi
msg="missing on your system"
case "$1" in
--run)
# Try to run requested program, and just exit if it succeeds.
run=
shift
"$@" && exit 0
# Exit code 63 means version mismatch. This often happens
# when the user try to use an ancient version of a tool on
# a file that requires a minimum version. In this case we
# we should proceed has if the program had been absent, or
# if --run hadn't been passed.
if test $? = 63; then
run=:
msg="probably too old"
fi
;;
-h|--h|--he|--hel|--help)
echo "\
$0 [OPTION]... PROGRAM [ARGUMENT]...
Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an
error status if there is no known handling for PROGRAM.
Options:
-h, --help display this help and exit
-v, --version output version information and exit
--run try to run the given command, and emulate it if it fails
Supported PROGRAM values:
aclocal touch file \`aclocal.m4'
autoconf touch file \`configure'
autoheader touch file \`config.h.in'
automake touch all \`Makefile.in' files
bison create \`y.tab.[ch]', if possible, from existing .[ch]
flex create \`lex.yy.c', if possible, from existing .c
help2man touch the output file
lex create \`lex.yy.c', if possible, from existing .c
makeinfo touch the output file
tar try tar, gnutar, gtar, then tar without non-portable flags
yacc create \`y.tab.[ch]', if possible, from existing .[ch]
Send bug reports to ."
exit 0
;;
-v|--v|--ve|--ver|--vers|--versi|--versio|--version)
echo "missing $scriptversion (GNU Automake)"
exit 0
;;
-*)
echo 1>&2 "$0: Unknown \`$1' option"
echo 1>&2 "Try \`$0 --help' for more information"
exit 1
;;
esac
# Now exit if we have it, but it failed. Also exit now if we
# don't have it and --version was passed (most likely to detect
# the program).
case "$1" in
lex|yacc)
# Not GNU programs, they don't have --version.
;;
tar)
if test -n "$run"; then
echo 1>&2 "ERROR: \`tar' requires --run"
exit 1
elif test "x$2" = "x--version" || test "x$2" = "x--help"; then
exit 1
fi
;;
*)
if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
# We have it, but it failed.
exit 1
elif test "x$2" = "x--version" || test "x$2" = "x--help"; then
# Could not run --version or --help. This is probably someone
# running `$TOOL --version' or `$TOOL --help' to check whether
# $TOOL exists and not knowing $TOOL uses missing.
exit 1
fi
;;
esac
# If it does not exist, or fails to run (possibly an outdated version),
# try to emulate it.
case "$1" in
aclocal*)
echo 1>&2 "\
WARNING: \`$1' is $msg. You should only need it if
you modified \`acinclude.m4' or \`${configure_ac}'. You might want
to install the \`Automake' and \`Perl' packages. Grab them from
any GNU archive site."
touch aclocal.m4
;;
autoconf)
echo 1>&2 "\
WARNING: \`$1' is $msg. You should only need it if
you modified \`${configure_ac}'. You might want to install the
\`Autoconf' and \`GNU m4' packages. Grab them from any GNU
archive site."
touch configure
;;
autoheader)
echo 1>&2 "\
WARNING: \`$1' is $msg. You should only need it if
you modified \`acconfig.h' or \`${configure_ac}'. You might want
to install the \`Autoconf' and \`GNU m4' packages. Grab them
from any GNU archive site."
files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}`
test -z "$files" && files="config.h"
touch_files=
for f in $files; do
case "$f" in
*:*) touch_files="$touch_files "`echo "$f" |
sed -e 's/^[^:]*://' -e 's/:.*//'`;;
*) touch_files="$touch_files $f.in";;
esac
done
touch $touch_files
;;
automake*)
echo 1>&2 "\
WARNING: \`$1' is $msg. You should only need it if
you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'.
You might want to install the \`Automake' and \`Perl' packages.
Grab them from any GNU archive site."
find . -type f -name Makefile.am -print |
sed 's/\.am$/.in/' |
while read f; do touch "$f"; done
;;
autom4te)
echo 1>&2 "\
WARNING: \`$1' is needed, but is $msg.
You might have modified some files without having the
proper tools for further handling them.
You can get \`$1' as part of \`Autoconf' from any GNU
archive site."
file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'`
test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'`
if test -f "$file"; then
touch $file
else
test -z "$file" || exec >$file
echo "#! /bin/sh"
echo "# Created by GNU Automake missing as a replacement of"
echo "# $ $@"
echo "exit 0"
chmod +x $file
exit 1
fi
;;
bison|yacc)
echo 1>&2 "\
WARNING: \`$1' $msg. You should only need it if
you modified a \`.y' file. You may need the \`Bison' package
in order for those modifications to take effect. You can get
\`Bison' from any GNU archive site."
rm -f y.tab.c y.tab.h
if [ $# -ne 1 ]; then
eval LASTARG="\${$#}"
case "$LASTARG" in
*.y)
SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'`
if [ -f "$SRCFILE" ]; then
cp "$SRCFILE" y.tab.c
fi
SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'`
if [ -f "$SRCFILE" ]; then
cp "$SRCFILE" y.tab.h
fi
;;
esac
fi
if [ ! -f y.tab.h ]; then
echo >y.tab.h
fi
if [ ! -f y.tab.c ]; then
echo 'main() { return 0; }' >y.tab.c
fi
;;
lex|flex)
echo 1>&2 "\
WARNING: \`$1' is $msg. You should only need it if
you modified a \`.l' file. You may need the \`Flex' package
in order for those modifications to take effect. You can get
\`Flex' from any GNU archive site."
rm -f lex.yy.c
if [ $# -ne 1 ]; then
eval LASTARG="\${$#}"
case "$LASTARG" in
*.l)
SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'`
if [ -f "$SRCFILE" ]; then
cp "$SRCFILE" lex.yy.c
fi
;;
esac
fi
if [ ! -f lex.yy.c ]; then
echo 'main() { return 0; }' >lex.yy.c
fi
;;
help2man)
echo 1>&2 "\
WARNING: \`$1' is $msg. You should only need it if
you modified a dependency of a manual page. You may need the
\`Help2man' package in order for those modifications to take
effect. You can get \`Help2man' from any GNU archive site."
file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
if test -z "$file"; then
file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'`
fi
if [ -f "$file" ]; then
touch $file
else
test -z "$file" || exec >$file
echo ".ab help2man is required to generate this page"
exit 1
fi
;;
makeinfo)
echo 1>&2 "\
WARNING: \`$1' is $msg. You should only need it if
you modified a \`.texi' or \`.texinfo' file, or any other file
indirectly affecting the aspect of the manual. The spurious
call might also be the consequence of using a buggy \`make' (AIX,
DU, IRIX). You might want to install the \`Texinfo' package or
the \`GNU make' package. Grab either from any GNU archive site."
file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
if test -z "$file"; then
file=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $file`
fi
touch $file
;;
tar)
shift
# We have already tried tar in the generic part.
# Look for gnutar/gtar before invocation to avoid ugly error
# messages.
if (gnutar --version > /dev/null 2>&1); then
gnutar "$@" && exit 0
fi
if (gtar --version > /dev/null 2>&1); then
gtar "$@" && exit 0
fi
firstarg="$1"
if shift; then
case "$firstarg" in
*o*)
firstarg=`echo "$firstarg" | sed s/o//`
tar "$firstarg" "$@" && exit 0
;;
esac
case "$firstarg" in
*h*)
firstarg=`echo "$firstarg" | sed s/h//`
tar "$firstarg" "$@" && exit 0
;;
esac
fi
echo 1>&2 "\
WARNING: I can't seem to be able to run \`tar' with the given arguments.
You may want to install GNU tar or Free paxutils, or check the
command line arguments."
exit 1
;;
*)
echo 1>&2 "\
WARNING: \`$1' is needed, and is $msg.
You might have modified some files without having the
proper tools for further handling them. Check the \`README' file,
it often tells you about the needed prerequisites for installing
this package. You may also peek at any GNU archive site, in case
some other package would contain this missing \`$1' program."
exit 1
;;
esac
exit 0
# Local variables:
# eval: (add-hook 'write-file-hooks 'time-stamp)
# time-stamp-start: "scriptversion="
# time-stamp-format: "%:y-%02m-%02d.%02H"
# time-stamp-end: "$"
# End:
dansguardian-2.10.1.1/data/ 0000777 0011650 0011650 00000000000 11212164547 012313 5 0000000 0000000 dansguardian-2.10.1.1/data/scripts/ 0000777 0011650 0011650 00000000000 11212164547 014002 5 0000000 0000000 dansguardian-2.10.1.1/data/scripts/Makefile.in 0000644 0011650 0011650 00000037611 11212164522 015764 0000000 0000000 # Makefile.in generated by automake 1.10.2 from Makefile.am.
# @configure_input@
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
@SET_MAKE@
VPATH = @srcdir@
pkgdatadir = $(datadir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
subdir = data/scripts
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
$(srcdir)/bsd-init.in $(srcdir)/dansguardian.in \
$(srcdir)/logrotation.in $(srcdir)/solaris-init.in \
$(srcdir)/systemv-init.in
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
$(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/dgconfig.h
CONFIG_CLEAN_FILES = bsd-init dansguardian logrotation solaris-init \
systemv-init
SOURCES =
DIST_SOURCES =
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
html-recursive info-recursive install-data-recursive \
install-dvi-recursive install-exec-recursive \
install-html-recursive install-info-recursive \
install-pdf-recursive install-ps-recursive install-recursive \
installcheck-recursive installdirs-recursive pdf-recursive \
ps-recursive uninstall-recursive
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
distclean-recursive maintainer-clean-recursive
ETAGS = etags
CTAGS = ctags
DIST_SUBDIRS = $(SUBDIRS)
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CLAMAVSHM = @CLAMAVSHM@
CLAMAVSUPPORT = @CLAMAVSUPPORT@
CLAMAV_CFLAGS = @CLAMAV_CFLAGS@
CLAMAV_LIBS = @CLAMAV_LIBS@
CLAMDSUPPORT = @CLAMDSUPPORT@
COMMANDLINESUPPORT = @COMMANDLINESUPPORT@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CXX = @CXX@
CXXCPP = @CXXCPP@
CXXDEPMODE = @CXXDEPMODE@
CXXFLAGS = @CXXFLAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DGBINDIR = @DGBINDIR@
DGCONFDIR = @DGCONFDIR@
DGCONFFILE = @DGCONFFILE@
DGDATADIR = @DGDATADIR@
DGLIBDIR = @DGLIBDIR@
DGLOGLOCATION = @DGLOGLOCATION@
DGPIDDIR = @DGPIDDIR@
DGPROXYGROUP = @DGPROXYGROUP@
DGPROXYUSER = @DGPROXYUSER@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EMAILSUPPORT = @EMAILSUPPORT@
EXEEXT = @EXEEXT@
FANCYSUPPORT = @FANCYSUPPORT@
GREP = @GREP@
ICAPSUPPORT = @ICAPSUPPORT@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
KAVAVSUPPORT = @KAVAVSUPPORT@
KAVDSUPPORT = @KAVDSUPPORT@
LDFLAGS = @LDFLAGS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
MAKEINFO = @MAKEINFO@
MKDIR_P = @MKDIR_P@
NTLMSUPPORT = @NTLMSUPPORT@
OBJEXT = @OBJEXT@
ORIGIPSUPPORT = @ORIGIPSUPPORT@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PCRE_CFLAGS = @PCRE_CFLAGS@
PCRE_LIBS = @PCRE_LIBS@
PKG_CONFIG = @PKG_CONFIG@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
TRICKLESUPPORT = @TRICKLESUPPORT@
VERSION = @VERSION@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_CC = @ac_ct_CC@
ac_ct_CXX = @ac_ct_CXX@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
host_alias = @host_alias@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
MAINTAINERCLEANFILES = Makefile.in
SUBDIRS = .
DATATOPDIR = $(datadir)/$(PACKAGE_NAME)/scripts
FLISTS = dansguardian logrotation bsd-init\
solaris-init systemv-init
EXTRA_DIST = dansguardian.in logrotation.in bsd-init.in\
solaris-init.in systemv-init.in
all: all-recursive
.SUFFIXES:
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
&& { if test -f $@; then exit 0; else break; fi; }; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/scripts/Makefile'; \
cd $(top_srcdir) && \
$(AUTOMAKE) --gnu data/scripts/Makefile
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(top_srcdir)/configure: $(am__configure_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
bsd-init: $(top_builddir)/config.status $(srcdir)/bsd-init.in
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
dansguardian: $(top_builddir)/config.status $(srcdir)/dansguardian.in
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
logrotation: $(top_builddir)/config.status $(srcdir)/logrotation.in
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
solaris-init: $(top_builddir)/config.status $(srcdir)/solaris-init.in
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
systemv-init: $(top_builddir)/config.status $(srcdir)/systemv-init.in
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
# This directory's subdirectories are mostly independent; you can cd
# into them and run `make' without going through this Makefile.
# To change the values of `make' variables: instead of editing Makefiles,
# (1) if the variable is set in `config.status', edit `config.status'
# (which will cause the Makefiles to be regenerated when you run `make');
# (2) otherwise, pass the desired values on the `make' command line.
$(RECURSIVE_TARGETS):
@failcom='exit 1'; \
for f in x $$MAKEFLAGS; do \
case $$f in \
*=* | --[!k]*);; \
*k*) failcom='fail=yes';; \
esac; \
done; \
dot_seen=no; \
target=`echo $@ | sed s/-recursive//`; \
list='$(SUBDIRS)'; for subdir in $$list; do \
echo "Making $$target in $$subdir"; \
if test "$$subdir" = "."; then \
dot_seen=yes; \
local_target="$$target-am"; \
else \
local_target="$$target"; \
fi; \
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|| eval $$failcom; \
done; \
if test "$$dot_seen" = "no"; then \
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
fi; test -z "$$fail"
$(RECURSIVE_CLEAN_TARGETS):
@failcom='exit 1'; \
for f in x $$MAKEFLAGS; do \
case $$f in \
*=* | --[!k]*);; \
*k*) failcom='fail=yes';; \
esac; \
done; \
dot_seen=no; \
case "$@" in \
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
*) list='$(SUBDIRS)' ;; \
esac; \
rev=''; for subdir in $$list; do \
if test "$$subdir" = "."; then :; else \
rev="$$subdir $$rev"; \
fi; \
done; \
rev="$$rev ."; \
target=`echo $@ | sed s/-recursive//`; \
for subdir in $$rev; do \
echo "Making $$target in $$subdir"; \
if test "$$subdir" = "."; then \
local_target="$$target-am"; \
else \
local_target="$$target"; \
fi; \
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|| eval $$failcom; \
done && test -z "$$fail"
tags-recursive:
list='$(SUBDIRS)'; for subdir in $$list; do \
test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
done
ctags-recursive:
list='$(SUBDIRS)'; for subdir in $$list; do \
test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
done
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
mkid -fID $$unique
tags: TAGS
TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
tags=; \
here=`pwd`; \
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
include_option=--etags-include; \
empty_fix=.; \
else \
include_option=--include; \
empty_fix=; \
fi; \
list='$(SUBDIRS)'; for subdir in $$list; do \
if test "$$subdir" = .; then :; else \
test ! -f $$subdir/TAGS || \
tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
fi; \
done; \
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
test -n "$$unique" || unique=$$empty_fix; \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
$$tags $$unique; \
fi
ctags: CTAGS
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
tags=; \
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$tags $$unique
GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& cd $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) $$here
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
distdir: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
dist_files=`for file in $$list; do echo $$file; done | \
sed -e "s|^$$srcdirstrip/||;t" \
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
case $$dist_files in \
*/*) $(MKDIR_P) `echo "$$dist_files" | \
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
sort -u` ;; \
esac; \
for file in $$dist_files; do \
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
if test -d $$d/$$file; then \
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
fi; \
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
else \
test -f $(distdir)/$$file \
|| cp -p $$d/$$file $(distdir)/$$file \
|| exit 1; \
fi; \
done
list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
if test "$$subdir" = .; then :; else \
test -d "$(distdir)/$$subdir" \
|| $(MKDIR_P) "$(distdir)/$$subdir" \
|| exit 1; \
distdir=`$(am__cd) $(distdir) && pwd`; \
top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
(cd $$subdir && \
$(MAKE) $(AM_MAKEFLAGS) \
top_distdir="$$top_distdir" \
distdir="$$distdir/$$subdir" \
am__remove_distdir=: \
am__skip_length_check=: \
distdir) \
|| exit 1; \
fi; \
done
check-am: all-am
check: check-recursive
all-am: Makefile
installdirs: installdirs-recursive
installdirs-am:
install: install-recursive
install-exec: install-exec-recursive
install-data: install-data-recursive
uninstall: uninstall-recursive
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-recursive
install-strip:
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
`test -z '$(STRIP)' || \
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
mostlyclean-generic:
clean-generic:
distclean-generic:
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
clean: clean-recursive
clean-am: clean-generic mostlyclean-am
distclean: distclean-recursive
-rm -f Makefile
distclean-am: clean-am distclean-generic distclean-tags
dvi: dvi-recursive
dvi-am:
html: html-recursive
info: info-recursive
info-am:
install-data-am: install-data-local
install-dvi: install-dvi-recursive
install-exec-am:
install-html: install-html-recursive
install-info: install-info-recursive
install-man:
install-pdf: install-pdf-recursive
install-ps: install-ps-recursive
installcheck-am:
maintainer-clean: maintainer-clean-recursive
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
mostlyclean: mostlyclean-recursive
mostlyclean-am: mostlyclean-generic
pdf: pdf-recursive
pdf-am:
ps: ps-recursive
ps-am:
uninstall-am: uninstall-local
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
install-strip
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
all all-am check check-am clean clean-generic ctags \
ctags-recursive distclean distclean-generic distclean-tags \
distdir dvi dvi-am html html-am info info-am install \
install-am install-data install-data-am install-data-local \
install-dvi install-dvi-am install-exec install-exec-am \
install-html install-html-am install-info install-info-am \
install-man install-pdf install-pdf-am install-ps \
install-ps-am install-strip installcheck installcheck-am \
installdirs installdirs-am maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \
uninstall-local
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(DATATOPDIR) && \
for l in $(FLISTS) ; do \
echo "$(INSTALL_DATA) $$l $(DESTDIR)$(DATATOPDIR)/$$l"; \
$(INSTALL_DATA) $$l $(DESTDIR)$(DATATOPDIR)/$$l; \
done
uninstall-local:
for l in $(FLISTS) ; do \
rm -f $(DESTDIR)$(DATATOPDIR)/$$l ; \
done
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
dansguardian-2.10.1.1/data/scripts/bsd-init.in 0000644 0011650 0011650 00000001423 11110523211 015737 0000000 0000000 #!/bin/sh
#
# BSD startup script for dansguardian
# partly based on httpd startup script
#
# description: A web content filtering plugin for web \
# proxies, developed to filter using lists of \
# banned phrases, MIME types, filename \
# extensions and PICS labelling.
# processname: dansguardian
# See how we were called.
case "$1" in
start)
[ -x @DGBINDIR@/dansguardian ] && @DGBINDIR@/dansguardian > /dev/null && echo -e ' dansguardian\c'
;;
stop)
@DGBINDIR@/dansguardian -q
[ -r /tmp/.dguardianipc ] && echo -e ' dansguardian\c'
rm -f /tmp/.dguardianipc
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: configure {start|stop|restart}" >&2
;;
esac
exit 0
dansguardian-2.10.1.1/data/scripts/Makefile.am 0000644 0011650 0011650 00000001116 11110523211 015731 0000000 0000000 MAINTAINERCLEANFILES = Makefile.in
SUBDIRS= .
DATATOPDIR = $(datadir)/$(PACKAGE_NAME)/scripts
FLISTS = dansguardian logrotation bsd-init\
solaris-init systemv-init
EXTRA_DIST = dansguardian.in logrotation.in bsd-init.in\
solaris-init.in systemv-init.in
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(DATATOPDIR) && \
for l in $(FLISTS) ; do \
echo "$(INSTALL_DATA) $$l $(DESTDIR)$(DATATOPDIR)/$$l"; \
$(INSTALL_DATA) $$l $(DESTDIR)$(DATATOPDIR)/$$l; \
done
uninstall-local:
for l in $(FLISTS) ; do \
rm -f $(DESTDIR)$(DATATOPDIR)/$$l ; \
done
dansguardian-2.10.1.1/data/scripts/solaris-init.in 0000644 0011650 0011650 00000002215 11110523211 016643 0000000 0000000 #!/bin/sh
#
# Solaris startup script for dansguardian
# partly based on httpd startup script
#
# description: A web content filtering plugin for web \
# proxies, developed to filter using lists of \
# banned phrases, MIME types, filename \
# extensions and PICS labelling.
#ident "@(#)dansguardian @PACKAGE_VERSION@ 02/08/05 DB"
# See how we were called.
case "$1" in
start)
if [ -f @DGBINDIR@/dansguardian ] &&
[ -f @DGCONFDIR@/dansguardian.conf ]; then
@DGBINDIR@/dansguardian
echo "DansGuardian started."
fi
;;
stop)
if [ -f @DGPIDDIR@/dansguardian.pid ]; then
@DGBINDIR@/dansguardian -q
/bin/rm -f @DGPIDDIR@/dansguardian.pid
/bin/rm -f /tmp/.dguardianipc
echo "DansGuardian stopped."
fi
;;
restart)
$0 stop
sleep 3
$0 start
;;
status)
if [ -f @DGBINDIR@/dansguardian ]; then
@DGBINDIR@/dansguardian -s
fi
;;
*)
echo "Usage: $0 {start|stop|restart}" >&2
;;
esac
exit 0
dansguardian-2.10.1.1/data/scripts/systemv-init.in 0000644 0011650 0011650 00000006730 11110523211 016707 0000000 0000000 #!/bin/sh
#
# Startup script for dansguardian
#
# chkconfig: 35 92 8
# description: A web content filtering plugin for web \
# proxies, developed to filter using lists of \
# banned phrases, MIME types, filename \
# extensions and PICS labelling.
# processname: dansguardian
# pidfile: @DGPIDDIR@/dansguardian.pid
# config: @DGCONFDIR@/dansguardian.conf
### BEGIN INIT INFO
# Provides: dansguardian
# Required-Start: squid
# Should-Start:
# Required-Stop: squid
# Should-Stop:
# Default-Start: 3 5
# Default-Stop: 0 1 2 6
# Short-Description: Dansguardian web content filter
# Description: Dansguardian web content filter
### END INIT INFO
# File includes changes by Thomas Jarosch
function wait_for_pid()
{
local PID=$1
local RET=0
if [ $PID -eq 0 ] ; then
return $RET
fi
# give 60 secs then KILL
local COUNTDOWN=60
while [ -d /proc/${PID} ] && [ $COUNTDOWN -gt 0 ] ; do
sleep 1
COUNTDOWN=$[$COUNTDOWN-1]
done
if [ -d /proc/${PID} ]; then
COMMAND=`ps h -o command ${PID}`
logger "dansguardian: timeout waiting for PID ${PID}: ${COMMAND}; sending SIGKILL"
kill -KILL $PID >/dev/null 2>&1
RET=1
fi
return $RET
}
# See how we were called.
case "$1" in
start)
if [ -f @DGBINDIR@/dansguardian ] &&
[ -f @DGCONFDIR@/dansguardian.conf ]; then
echo -n "Starting dansguardian: "
if @DGBINDIR@/dansguardian 2> /dev/null; then
echo -e "\\033[60G\c"
echo -e "[ \\033[1;32m\c"
echo -e "OK\c"
echo -e "\\033[0;39m\c"
echo " ]"
[ -d /var/lock/subsys ] && touch /var/lock/subsys/dansguardian
else
echo -e "\\033[60G\c"
echo -e "[ \\033[1;31m\c"
echo -e "FAILED\c"
echo -e "\\033[0;39m\c"
echo " ]"
fi
fi
;;
stop)
echo -n "Shutting down dansguardian: "
WAITPID=0
if [ -f @DGPIDDIR@/dansguardian.pid ] ; then
WAITPID=`cat @DGPIDDIR@/dansguardian.pid`
fi
if @DGBINDIR@/dansguardian -q 2> /dev/null; then
if wait_for_pid $WAITPID ; then
echo -e "\\033[60G\c"
echo -e "[ \\033[1;32m\c"
echo -e "OK\c"
echo -e "\\033[0;39m\c"
echo " ]"
else
echo -e "\\033[60G\c"
echo -e "[ \\033[1;31m\c"
echo -e "FAILED\c"
echo -e "\\033[0;39m\c"
echo " ]"
fi
/bin/rm -f @DGPIDDIR@/dansguardian.pid
/bin/rm -f /tmp/.dguardianipc
[ -d /var/lock/subsys ] && /bin/rm -f /var/lock/subsys/dansguardian
else
echo -e "\\033[60G\c"
echo -e "[ \\033[1;31m\c"
echo -e "FAILED\c"
echo -e "\\033[0;39m\c"
echo " ]"
fi
;;
restart)
$0 stop
$0 start
;;
status)
if [ -f @DGBINDIR@/dansguardian ]; then
@DGBINDIR@/dansguardian -s
fi
;;
*)
echo "Usage: $0 {start|stop|restart|status}" >&2
;;
esac
exit 0
dansguardian-2.10.1.1/data/scripts/logrotation.in 0000644 0011650 0011650 00000000730 11110523211 016567 0000000 0000000 #!/bin/sh
# DansGuardian logrotation script for version @PACKAGE_VERSION@
LOG_DIR=@DGLOGLOCATION@
NUM_LOGS=4
LOG=$LOG_DIR/access.log
@DGBINDIR@/dansguardian -q
# Keep a maximum of $NUM_LOGS logs around.
if [ -f $LOG.$NUM_LOGS ]; then rm -f $LOG.$NUM_LOGS; fi
n=$(( $NUM_LOGS - 1 ))
while [ $n -gt 0 ]; do
if [ -f $LOG.$n ]; then
mv $LOG.$n $LOG.$(( $n + 1 ))
fi
n=$(( $n - 1 ))
done
if [ -f $LOG ]; then
mv $LOG $LOG.1
fi
sleep 5
@DGBINDIR@/dansguardian
dansguardian-2.10.1.1/data/scripts/dansguardian.in 0000644 0011650 0011650 00000000316 11110523211 016666 0000000 0000000 @DGLOGLOCATION@/access.log {
rotate 4
weekly
sharedscripts
prerotate
killall dansguardian > /dev/null
sleep 5
endscript
postrotate
@DGBINDIR@/dansguardian > /dev/null
endscript
}
dansguardian-2.10.1.1/data/Makefile.in 0000644 0011650 0011650 00000036030 11212164522 014267 0000000 0000000 # Makefile.in generated by automake 1.10.2 from Makefile.am.
# @configure_input@
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
@SET_MAKE@
VPATH = @srcdir@
pkgdatadir = $(datadir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
subdir = data
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
$(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/dgconfig.h
CONFIG_CLEAN_FILES =
SOURCES =
DIST_SOURCES =
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
html-recursive info-recursive install-data-recursive \
install-dvi-recursive install-exec-recursive \
install-html-recursive install-info-recursive \
install-pdf-recursive install-ps-recursive install-recursive \
installcheck-recursive installdirs-recursive pdf-recursive \
ps-recursive uninstall-recursive
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
distclean-recursive maintainer-clean-recursive
ETAGS = etags
CTAGS = ctags
DIST_SUBDIRS = $(SUBDIRS)
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CLAMAVSHM = @CLAMAVSHM@
CLAMAVSUPPORT = @CLAMAVSUPPORT@
CLAMAV_CFLAGS = @CLAMAV_CFLAGS@
CLAMAV_LIBS = @CLAMAV_LIBS@
CLAMDSUPPORT = @CLAMDSUPPORT@
COMMANDLINESUPPORT = @COMMANDLINESUPPORT@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CXX = @CXX@
CXXCPP = @CXXCPP@
CXXDEPMODE = @CXXDEPMODE@
CXXFLAGS = @CXXFLAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DGBINDIR = @DGBINDIR@
DGCONFDIR = @DGCONFDIR@
DGCONFFILE = @DGCONFFILE@
DGDATADIR = @DGDATADIR@
DGLIBDIR = @DGLIBDIR@
DGLOGLOCATION = @DGLOGLOCATION@
DGPIDDIR = @DGPIDDIR@
DGPROXYGROUP = @DGPROXYGROUP@
DGPROXYUSER = @DGPROXYUSER@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EMAILSUPPORT = @EMAILSUPPORT@
EXEEXT = @EXEEXT@
FANCYSUPPORT = @FANCYSUPPORT@
GREP = @GREP@
ICAPSUPPORT = @ICAPSUPPORT@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
KAVAVSUPPORT = @KAVAVSUPPORT@
KAVDSUPPORT = @KAVDSUPPORT@
LDFLAGS = @LDFLAGS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
MAKEINFO = @MAKEINFO@
MKDIR_P = @MKDIR_P@
NTLMSUPPORT = @NTLMSUPPORT@
OBJEXT = @OBJEXT@
ORIGIPSUPPORT = @ORIGIPSUPPORT@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PCRE_CFLAGS = @PCRE_CFLAGS@
PCRE_LIBS = @PCRE_LIBS@
PKG_CONFIG = @PKG_CONFIG@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
TRICKLESUPPORT = @TRICKLESUPPORT@
VERSION = @VERSION@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_CC = @ac_ct_CC@
ac_ct_CXX = @ac_ct_CXX@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
host_alias = @host_alias@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
MAINTAINERCLEANFILES = Makefile.in
SUBDIRS = languages . scripts
DATATOPDIR = $(datadir)/$(PACKAGE_NAME)
FLISTS = transparent1x1.gif dansguardian.pl
EXTRA_DIST = $(FLISTS)
all: all-recursive
.SUFFIXES:
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
&& { if test -f $@; then exit 0; else break; fi; }; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/Makefile'; \
cd $(top_srcdir) && \
$(AUTOMAKE) --gnu data/Makefile
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(top_srcdir)/configure: $(am__configure_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
# This directory's subdirectories are mostly independent; you can cd
# into them and run `make' without going through this Makefile.
# To change the values of `make' variables: instead of editing Makefiles,
# (1) if the variable is set in `config.status', edit `config.status'
# (which will cause the Makefiles to be regenerated when you run `make');
# (2) otherwise, pass the desired values on the `make' command line.
$(RECURSIVE_TARGETS):
@failcom='exit 1'; \
for f in x $$MAKEFLAGS; do \
case $$f in \
*=* | --[!k]*);; \
*k*) failcom='fail=yes';; \
esac; \
done; \
dot_seen=no; \
target=`echo $@ | sed s/-recursive//`; \
list='$(SUBDIRS)'; for subdir in $$list; do \
echo "Making $$target in $$subdir"; \
if test "$$subdir" = "."; then \
dot_seen=yes; \
local_target="$$target-am"; \
else \
local_target="$$target"; \
fi; \
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|| eval $$failcom; \
done; \
if test "$$dot_seen" = "no"; then \
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
fi; test -z "$$fail"
$(RECURSIVE_CLEAN_TARGETS):
@failcom='exit 1'; \
for f in x $$MAKEFLAGS; do \
case $$f in \
*=* | --[!k]*);; \
*k*) failcom='fail=yes';; \
esac; \
done; \
dot_seen=no; \
case "$@" in \
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
*) list='$(SUBDIRS)' ;; \
esac; \
rev=''; for subdir in $$list; do \
if test "$$subdir" = "."; then :; else \
rev="$$subdir $$rev"; \
fi; \
done; \
rev="$$rev ."; \
target=`echo $@ | sed s/-recursive//`; \
for subdir in $$rev; do \
echo "Making $$target in $$subdir"; \
if test "$$subdir" = "."; then \
local_target="$$target-am"; \
else \
local_target="$$target"; \
fi; \
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|| eval $$failcom; \
done && test -z "$$fail"
tags-recursive:
list='$(SUBDIRS)'; for subdir in $$list; do \
test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
done
ctags-recursive:
list='$(SUBDIRS)'; for subdir in $$list; do \
test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
done
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
mkid -fID $$unique
tags: TAGS
TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
tags=; \
here=`pwd`; \
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
include_option=--etags-include; \
empty_fix=.; \
else \
include_option=--include; \
empty_fix=; \
fi; \
list='$(SUBDIRS)'; for subdir in $$list; do \
if test "$$subdir" = .; then :; else \
test ! -f $$subdir/TAGS || \
tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
fi; \
done; \
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
test -n "$$unique" || unique=$$empty_fix; \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
$$tags $$unique; \
fi
ctags: CTAGS
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
tags=; \
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$tags $$unique
GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& cd $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) $$here
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
distdir: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
dist_files=`for file in $$list; do echo $$file; done | \
sed -e "s|^$$srcdirstrip/||;t" \
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
case $$dist_files in \
*/*) $(MKDIR_P) `echo "$$dist_files" | \
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
sort -u` ;; \
esac; \
for file in $$dist_files; do \
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
if test -d $$d/$$file; then \
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
fi; \
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
else \
test -f $(distdir)/$$file \
|| cp -p $$d/$$file $(distdir)/$$file \
|| exit 1; \
fi; \
done
list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
if test "$$subdir" = .; then :; else \
test -d "$(distdir)/$$subdir" \
|| $(MKDIR_P) "$(distdir)/$$subdir" \
|| exit 1; \
distdir=`$(am__cd) $(distdir) && pwd`; \
top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
(cd $$subdir && \
$(MAKE) $(AM_MAKEFLAGS) \
top_distdir="$$top_distdir" \
distdir="$$distdir/$$subdir" \
am__remove_distdir=: \
am__skip_length_check=: \
distdir) \
|| exit 1; \
fi; \
done
check-am: all-am
check: check-recursive
all-am: Makefile
installdirs: installdirs-recursive
installdirs-am:
install: install-recursive
install-exec: install-exec-recursive
install-data: install-data-recursive
uninstall: uninstall-recursive
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-recursive
install-strip:
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
`test -z '$(STRIP)' || \
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
mostlyclean-generic:
clean-generic:
distclean-generic:
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
clean: clean-recursive
clean-am: clean-generic mostlyclean-am
distclean: distclean-recursive
-rm -f Makefile
distclean-am: clean-am distclean-generic distclean-tags
dvi: dvi-recursive
dvi-am:
html: html-recursive
info: info-recursive
info-am:
install-data-am: install-data-local
install-dvi: install-dvi-recursive
install-exec-am:
install-html: install-html-recursive
install-info: install-info-recursive
install-man:
install-pdf: install-pdf-recursive
install-ps: install-ps-recursive
installcheck-am:
maintainer-clean: maintainer-clean-recursive
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
mostlyclean: mostlyclean-recursive
mostlyclean-am: mostlyclean-generic
pdf: pdf-recursive
pdf-am:
ps: ps-recursive
ps-am:
uninstall-am: uninstall-local
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
install-strip
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
all all-am check check-am clean clean-generic ctags \
ctags-recursive distclean distclean-generic distclean-tags \
distdir dvi dvi-am html html-am info info-am install \
install-am install-data install-data-am install-data-local \
install-dvi install-dvi-am install-exec install-exec-am \
install-html install-html-am install-info install-info-am \
install-man install-pdf install-pdf-am install-ps \
install-ps-am install-strip installcheck installcheck-am \
installdirs installdirs-am maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \
uninstall-local
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(DATATOPDIR) && \
$(mkinstalldirs) $(DESTDIR)$(DGLOGLOCATION) && \
$(mkinstalldirs) $(DESTDIR)$(DGPIDDIR) && \
for l in $(FLISTS) ; do \
echo "$(INSTALL_DATA) $$l $(DESTDIR)$(DATATOPDIR)/$$l"; \
$(INSTALL_DATA) $$l $(DESTDIR)$(DATATOPDIR)/$$l; \
done
uninstall-local:
for l in $(FLISTS) ; do \
rm -f $(DESTDIR)$(DATATOPDIR)/$$l ; \
done
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
dansguardian-2.10.1.1/data/Makefile.am 0000644 0011650 0011650 00000001100 11110523211 014233 0000000 0000000 MAINTAINERCLEANFILES = Makefile.in
SUBDIRS= languages . scripts
DATATOPDIR = $(datadir)/$(PACKAGE_NAME)
FLISTS = transparent1x1.gif dansguardian.pl
EXTRA_DIST = $(FLISTS)
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(DATATOPDIR) && \
$(mkinstalldirs) $(DESTDIR)$(DGLOGLOCATION) && \
$(mkinstalldirs) $(DESTDIR)$(DGPIDDIR) && \
for l in $(FLISTS) ; do \
echo "$(INSTALL_DATA) $$l $(DESTDIR)$(DATATOPDIR)/$$l"; \
$(INSTALL_DATA) $$l $(DESTDIR)$(DATATOPDIR)/$$l; \
done
uninstall-local:
for l in $(FLISTS) ; do \
rm -f $(DESTDIR)$(DATATOPDIR)/$$l ; \
done
dansguardian-2.10.1.1/data/dansguardian.pl 0000644 0011650 0011650 00000005057 11110523211 015213 0000000 0000000 #!/usr/bin/perl
$allow_html_code = 0;
&ReadEnvs;
$deniedurl = $in{'DENIEDURL'};
$reason = $in{'REASON'};
$user = $in{'USER'};
$ip = $in{'IP'};
$cats = $in{'CATEGORIES'};
# originating hostname - can be undefined
$host = $in{'HOST'};
# virus/filter bypass hashes
# if bypass modes have been set to > 0,
# then the GBYPASS or GIBYPASS variable will contain the filter/infection bypass hash.
# if bypass modes have been set to -1,
# then the HASH variable will be set to 1 if the CGI should generate a GBYPASS hash (filter bypass),
# or 2 if the CGI should generate a GIBYPASS hash (infection bypass).
$fbypasshash = $in{'GBYPASS'}; # filter bypass hash - can be undefined
$ibypasshash = $in{'GIBYPASS'}; # infection bypass hash - can be undefined
$hashflag = $in{'HASH'}; # hash flag - can be undefined; 1 = generate GBYPASS; 2 = generate GIBYPASS
print "Content-type: text/html\n\n";
print 'DansGuardian - Access Denied';
print 'ACCESS HAS BEEN DENIED
';
if (length($user) > 0) {
print "
$user, access to the page:";
}
else {
print '
Access to the page:
';
}
print "$deniedurl";
print '
... has been denied for the following reason:
';
print "$reason";
if (length($cats) > 0) {
print '
Categories:
';
print "$cats";
}
print '
Your username, IP address, date, time and URL have been logged.';
print '
You are seeing this error because the page you attempted ';
print 'to access contains, or is labelled as containing, material that';
print ' has been deemed inappropriate. |
';
print 'If you have any queries contact your ICT Co-ordinator or Network Manager. |
';
print 'Powered by DansGuardian';
print '
';
exit;
sub ReadEnvs {
local($cl, @clp, $pair, $name, $value);
if ( $ENV{'REQUEST_METHOD'} eq 'POST' ) {
read(STDIN, $cl, $ENV{'CONTENT_LENGTH'} );
}
else {
$cl = $ENV{'QUERY_STRING'};
}
@clp = split(/::/, $cl);
foreach $pair (@clp) {
($name, $value) = split(/==/, $pair);
$value =~ tr/+/ /;
$value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg;
$value =~ s///g;
if ($allow_html_code != 1) {
$value =~ s/<([^>]|\n)*>//g;
}
$in{$name} = $value;
}
}
dansguardian-2.10.1.1/data/transparent1x1.gif 0000644 0011650 0011650 00000000067 11110523211 015574 0000000 0000000 GIF89a ! , ڋ> ; dansguardian-2.10.1.1/data/languages/ 0000777 0011650 0011650 00000000000 11212164547 014261 5 0000000 0000000 dansguardian-2.10.1.1/data/languages/malay/ 0000777 0011650 0011650 00000000000 11212164547 015364 5 0000000 0000000 dansguardian-2.10.1.1/data/languages/malay/messages 0000644 0011650 0011650 00000004234 11110523211 017015 0000000 0000000 # DansGuardian 2.8 messages file in Malay language
# Edited by Sazarul Izam
"1","Akses Tidak Dibenarkan" # Access Denied
"100","IP anda tidak dibenarkan untuk melayari web: "
"101","IP anda tidak dibenarkan untuk melayari web."
"102","Nama pengguna anda tidak dibenarkan untuk melayari web: "
"200","URL yang diminta adalah malformed."
"300","Frasa larangan dikesan: " # Banned Phrase found:
"301","Frasa larangan dikesan." # Banned phrase found.
"400","Kombinasi frasa larangan dikesan: " # Banned combination phrase found:
"401","Kombinasi frasa larangan dikesan." # Banned combination phrase found.
"402","Had beban frasa oleh " # Weighted phrase limit of
"403","Melebihi had beban frasa." # Weighted phrase limit exceeded.
"500","Laman larangan: " # Banned site:
"501","URL larangan: " # Banned URL:
"502","Blok Blanket adalah aktif dan laman tersebut tidak tersenarai dalam white atau grey list." # Blanket Block is active and that site is not on the white or grey list.
"503","URL Ekspresi Biasa larangan: " # Banned Regular Expression URL:
"504","URL Ekspresi Biasa larangan dikesan." # Banned Regular Expression URL found.
"505","Blok Blanket IP adalah aktif dan alamat tersebut hanyalah alamat IP." #Blanket IP Block is active and that address is an IP only address.
"600","IP pengecualian klien sepadan." # Exception client IP match.
"601","Pengguna pengecualian klien sepadan." # Exception client user match.
"602","Laman pengecualian sepadan." # Exception site match.
"603","URL pengecualian sepadan." # Exception URL match.
"604","Frasa pengecualian sepadan: " # Exception phrase found:
"605","Kombinasi frasa pengecualian sepadan: " # Combination exception phrase found:
"606","URL pintasan sepadan." # Bypass URL exception.
"607","Cookie pintasan sepadan." # Bypass cookie exception.
"700","Muatnaik laman dilarang." # Web upload is banned.
"701","Muatnaik laman melebihi had." # Web upload limit exceeded.
"800","Jenis MIME larangan: " # Banned MIME Type:
"900","Extension larangan: " # Banned extension:
"1000","Penglabelan PICS melebihi peringkat pada laman di atas." # PICS labeling level exceeded on the above site.
dansguardian-2.10.1.1/data/languages/malay/fancydmtemplate.html 0000644 0011650 0011650 00000014226 11110523211 021330 0000000 0000000
Downloading -FILENAME- (-FILESIZE- bytes)
dansguardian-2.10.1.1/data/languages/malay/template.html 0000644 0011650 0011650 00000004175 11110523211 017770 0000000 0000000 DansGuardian - Akses Tidak Dibenarkan
D a n s G u a r d i a n
h a l a m a n
t i d a k b a i k b e r h e n t i d i s i n i
|
H A L A
N G A N
|
Akses ke halaman berkenaan
tidak dibenarkan
URL: -URL- -REASONGIVEN- Sila hubungi Pentadbir Rangkaian jika terdapat
kesilapan berhubung perkara ini
|
|
Penapis Kandungan Web oleh
DansGuardian
|
dansguardian-2.10.1.1/data/languages/japanese/ 0000777 0011650 0011650 00000000000 11212164547 016047 5 0000000 0000000 dansguardian-2.10.1.1/data/languages/japanese/messages 0000644 0011650 0011650 00000006760 11110523211 017506 0000000 0000000 # DansGuardian messages file in 日本語
"1","アクセス拒否"
"100","あなたのIPアドレスは閲覧の許可がありません: "
"101","あなたのIPアドレスは閲覧の許可がありません。"
"102","あなたのユーザ名は閲覧の許可がありません: "
"200","要求されたURLは不適切です。"
"300","禁止されたフレーズが見つかりました: "
"301","禁止されたフレーズが見つかりました。"
"400","拒否された結合フレーズが見つかりました: "
"401","拒否された結合フレーズが見つかりました。"
"402","重み付けされたフレーズの制限を越えました(規定値:測定値) "
"403","重み付けされたフレーズの制限を越えました。"
"500","拒否されたサイト: "
"501","拒否されたURL: "
"502","統括的な遮断は有効です。そしてそれらのサイトはホワイトリストかグレーリストにありません。"
"503","拒否された正規表現のURL: "
"504","拒否された正規表現のURLが見つかりました。"
"505","統括的なIPの遮断は有効です。そしてそれらのアドレスはIPのみのアドレスです。"
"506","統括的なSSLの遮断は有効です。そしてそれらのサイトはホワイトリストかグレーリストにありません。"
"507","統括的なSSL IPの遮断は有効です。そしてそれらのアドレスはIPのみのアドレスです。"
"600","例外クライアントIPマッチ。"
"601","例外クライアントユーザマッチ。"
"602","例外サイトマッチ。"
"603","例外URLマッチ。"
"604","例外フレーズが見つかりました: "
"605","結合例外フレーズがみつかりました: "
"606","例外迂回URL"
"607","例外迂回Cookie。"
"608","例外スキャン迂回URL"
"609","例外正規表現URLマッチ: "
"700","Webのアップロードは拒否されました。"
"701","Webのアップロードは制限を越えました。"
"750","統括的なファイルのダウンロードは有効です。そしてこのMIMEタイプはホワイトリストにありません: "
"751","統括的なファイルのダウンロードは有効です。そしてこのファイルはホワイトリストにマッチしませんでした。"
"800","拒否されたMIMEタイプ: "
"900","拒否された拡張: "
"1000","PICSラベリングレベルは上のサイトで超えました。"
"1100","ウィルスか不正なコンテンツを検出しました。"
"1101","広告は拒否されました"
"1200","お待ちください。 - ダウンロードファイルのスキャン中です・・・"
"1201","警告: ファイルはスキャンするのに大きすぎます。 このふぁいるが"
"1202","より大きいと疑うならば直接ダウンロードするためにこのページをリフレッシュしてください。"
"1210","ダウンロード完了。スキャンを開始します..."
"1220","スキャンが完了しました。
ダウンロードをするにはここをクリックしてください: "
"1221","ダウンロードは完了しました。ファイルはスキャンされませんでした。
ダウンロードをするにはここをクリックしてください: "
"1222","ファイルはキャッシュするのに大きすぎます。
スキャンを迂回させて、再ダウンロードするためにここをクリックしてください: "
"1230","ファイルは長いこと利用可能ではありません"
dansguardian-2.10.1.1/data/languages/japanese/fancydmtemplate.html 0000644 0011650 0011650 00000014226 11110523211 022013 0000000 0000000
Downloading -FILENAME- (-FILESIZE- bytes)
dansguardian-2.10.1.1/data/languages/japanese/template.html 0000644 0011650 0011650 00000003050 11110523211 020442 0000000 0000000
Access Denied
アクセスは拒否されました。
|
-USER-
|
www.shonbori.com
|
アクセス先URL:
-URL-
は以下の理由により拒否されました。:
-REASONGIVEN-
カテゴリ:
-CATEGORIES-
不適切と思われるコンテンツがページ内に含まれている・含まれていると思われる場合に
このエラーページが表示されます
何か質問がありましたら、以下に連絡してください。
webmaster@shonbori.com
Powered by DansGuardian
|
dansguardian-2.10.1.1/data/languages/ptbrazilian/ 0000777 0011650 0011650 00000000000 11212164547 016600 5 0000000 0000000 dansguardian-2.10.1.1/data/languages/ptbrazilian/messages 0000644 0011650 0011650 00000004144 11110523211 020231 0000000 0000000 # DansGuardian 2.10 messages in Brazilian Portuguese
# Mensagens do DansGuardian 2.10 file em Portugus do Brasil (pt-BR)
# Translated/traduzido (?) by/por Henrique Araujo - Sys Admin
# Updated/atualizado by/por Allan Cassaro Gomes
# henrique@colegiosaogoncalo.g12.br / allan.cassaro@gmail.com
# Cuiab - MT, Brasil / Brasilia - DF, Brasil
"1","Acesso negado."
"100","Seu endereo IP no tem permisso de acesso web: "
"101","Seu endereo IP no tem permisso de acesso web: "
"102","Esse nome de usurio no tem permisso de acesso web: "
"200","A URL requerida est mal formada."
"300","Encontrada frase proibida: "
"301","Encontrada frase proibida: "
"400","Encontrada combinao de frases proibida: "
"401","Encontrada combinao de frases proibida: "
"402","Limite de frase ponderada de "
"403","Limite de frase ponderada excedido."
"500","Stio proibido: "
"501","URL proibida: "
"502","Bloqueio geral est ativo e aquele stio no est na lista livre."
"503","Expresso Regular proibida em URL: "
"504","Encontrada Expresso Regular proibida em URL: "
"505","Bloqueio geral de IP est ativo e aquele endereo no possui nome."
"600","Cliente IP est na lista de excees."
"601","Usurio est na lista de excees."
"602","Stio est na lista de excees."
"603","URL est na lista de excees."
"604","Encontrada frase na lista de excees: "
"605","Encontrada combinao de frases na lista de excees: "
"606","Desvio temporrio de bloqueio (Bypass URL.)"
"607","Desvio temporrio de bloqueio (Bypass cookie.)"
"608","Scan bypass URL exception."
"609","Exception regular expression URL match: "
"700","Transferncia de arquivos para web proibida."
"701","Limite de transferncia de arquivos para web excedido."
"800","Tipo MIME proibido: "
"900","Extenso proibida: "
"1000","Nvel de rotulagem PICS excedido no stio acima."
"1100","Vrus ou contedo perigoso encontrado."
"1101","Advert blocked"
"1200","Por favor espere - O download ser verificado..."
"1210","Download Completo. Iniciando a verificao..."
"1220","Verificao completa.Clique aqui para baixar: "
"1230","O arquivo no est mais disponvel"
dansguardian-2.10.1.1/data/languages/ptbrazilian/fancydmtemplate.html 0000644 0011650 0011650 00000014226 11110523211 022544 0000000 0000000
Downloading -FILENAME- (-FILESIZE- bytes)
dansguardian-2.10.1.1/data/languages/ptbrazilian/template.html 0000644 0011650 0011650 00000004376 11110523211 021207 0000000 0000000
DansGuardian - Access Denied
Access has been Denied!
|
-USER-
|
YOUR ORG NAME
|
Access to the page:
-URL-
... has been denied for the following reason:
-REASONGIVEN-
Categories:
-CATEGORIES-
You are seeing this error because what you attempted to access appears to contain,
or is labeled as containing, material that has been deemed inappropriate.
If you have any queries contact your ICT Co-ordinator or Network Manager.
Powered by DansGuardian
|
dansguardian-2.10.1.1/data/languages/slovak/ 0000777 0011650 0011650 00000000000 11212164547 015560 5 0000000 0000000 dansguardian-2.10.1.1/data/languages/slovak/messages 0000644 0011650 0011650 00000003310 11110523211 017203 0000000 0000000 # DansGuardian messages file in Slovak
# by Duan Birok biroscak@gmail.com
"1","Prstup zamietnut"
"100","Vaej IP adrese neni povolen prehliada: "
"101","Vaa IP adresa nem povolen prohliadanie."
"102","Vae uvatesk meno nem povolen prohliada: "
"200","Poadovan URL je patne zadan."
"300","Njden zakzan frza: "
"301","Njdena zakzan frza."
"400","Njden zakzan kombinacia frz: "
"401","Najden zakzan kombinacia frz."
"402","Limit vench frz: "
"403","Bol prekroen limit pre ven frzy."
"500","Zakzan webov sdlo: "
"501","Zakzan URL adresa: "
"502","Celoplon blokovnie prstupu je aktivovan a toto webov sdlo neni povolen."
"503","Njdena zakzan URL adresa poda regularneho vrazu: "
"504","Njdena zakzan URL adresa poda regularneho vrazu."
"505","Celoplon blokovanie IP adries je aktivovan a bola zadna IP adresa."
"600","Njden vnmkov IP adresa."
"601","Njden vnimkov uvate."
"602","Njden vnimkov webov sdlo."
"603","Njden vnimkov URL adresa."
"604","Njden vnimkov frza: "
"605","Njden kombinacia vnimkovch frz: "
"606","Nahradi vnimku URL."
"607","Nahradi cookie vnimku."
"608","Scan bypass URL exception."
"609","Exception regular expression URL match: "
"700","Web upload je zakzan."
"701","Web upload limit bol prekroen."
"800","Zakzan obsah sboru: "
"900","Zakzan prpona sboru: "
"1000","roven PICS oznaenia bola prekroen na tomto webovm sdle."
"1100","Virus or bad content detected."
"1101","Advert blocked"
"1200","Please wait - downloading to be scanned..."
"1210","Download Complete. Starting scan..."
"1220","Scan complete.Click here to download: "
"1230","File no longer available"
dansguardian-2.10.1.1/data/languages/slovak/fancydmtemplate.html 0000644 0011650 0011650 00000014226 11110523211 021524 0000000 0000000
Downloading -FILENAME- (-FILESIZE- bytes)
dansguardian-2.10.1.1/data/languages/slovak/template.html 0000644 0011650 0011650 00000003002 11110523211 020150 0000000 0000000 DansGuardian - Prstup zakzan
PRSTUP ZAKZAN -USER-
Prstup na tuto strnku:
-URL-
... bol zakzan z dvodu:
-REASONGIVEN-
Zobrazenie tohoto chybovho
hlsenia spsobila strnka,
na ktoru ste se pokusil(a) pristpi a obsahuje alebo je oznaena ako
obsahujca
nepatrin materil. |
Ak mte nejak otzky, obrte
se prosm na vaeho sprvcu siete i osobu poveren sprvou siete. |
Powered by DansGuardian
dansguardian-2.10.1.1/data/languages/french/ 0000777 0011650 0011650 00000000000 11212164547 015526 5 0000000 0000000 dansguardian-2.10.1.1/data/languages/french/messages 0000644 0011650 0011650 00000003553 11110523211 017162 0000000 0000000 # DansGuardian messages file in French
# Translated by: Bernard Wanadoo and Jacques Theys
# Improvements by Jeanuel
"1","Acces interdit"
"100","Votre addresse IP n'est pas autoris&ecute;e à afficher le site: "
"101","Votre addresse IP n'est pas autoris&ecute;e à naviguer sur le WEB."
"102","Votre compte utilisateur n'est pas autoris&ecute; à afficher le site: "
"200","L'URL demandee n'est pas bien form&ecute;e."
"300","Phrase interdite: "
"301","Phrase interdite trouv&ecute;e."
"400","Combinaison interdite de mots: "
"401","Combinaison interdite de mots trouv&ecute;e."
"402","Limite de pond&ecute;ration "
"403","Limite de pondération dépassée."
"500","Site interdit: "
"501","URL interdite: "
"502","Blanket Block est actif et ce site n'est pas dans la liste autoris&ecute;e."
"503","Cette URL comprend des mots prohib&ecute;s: "
"504","L'URL comprend des mots prohib&ecute;s."
"505","Blanket IP Block est actif et cette addresse est une adresse IP uniquement."
"600","Adresse IP interdite trouv&ecute;e."
"601","Client interdit trouv&ecute;."
"602","Site interdit trouv&ecute;."
"603","URL interdite trouv&ecute;e."
"604","Phrase interdite trouv&ecute;e: "
"605","Combinaison de mots interdits trouv&ecute;e: "
"606","URL sans controle trouv&ecute;e."
"607","Cookie sans controle trouv&ecute;."
"608","Scan bypass URL exception."
"609","Exception regular expression URL match: "
"700","L'upload WEB est interdit."
"701","D&ecute;passement de limite d'upload Web."
"800","Type MIME interdit: "
"900","Type de fichier interdit: "
"1000","Niveau PICS depass&ecute; sur le site entier."
"1100","Virus or bad content detected."
"1101","Advert blocked"
"1200","Please wait - downloading to be scanned..."
"1210","Download Complete. Starting scan..."
"1220","Scan complete.Click here to download: "
"1230","File no longer available"
dansguardian-2.10.1.1/data/languages/french/fancydmtemplate.html 0000644 0011650 0011650 00000014226 11110523211 021472 0000000 0000000
Downloading -FILENAME- (-FILESIZE- bytes)
dansguardian-2.10.1.1/data/languages/french/template.html 0000644 0011650 0011650 00000003477 11110523211 020136 0000000 0000000 DansGuardian - Access Denied
L'ACCES EST INTERDIT-UTLISATEUR-
L'accès à la page:
-URL-
... est interdit pour les raisons suivantes:
-REASONGIVEN-
Vous voyez ce message parce que vous tentez d'accéder à
une page qui contient, ou est réputée contenir des choses
qui ont été déclarées inappropriées. |
Si vous avez des questions, ou si vous pensez que
la page ne devrait pas poser de problèmes, contactez votre administrateur
réseau |
Powered by DansGuardian
dansguardian-2.10.1.1/data/languages/spanish/ 0000777 0011650 0011650 00000000000 11212164547 015726 5 0000000 0000000 dansguardian-2.10.1.1/data/languages/spanish/messages 0000644 0011650 0011650 00000003640 11110523211 017357 0000000 0000000 # DansGuardian 2.10 messages file in Spanish
# Translated by Roberto Quiroga, adapted for Unicode by Peter Vollmar
"1","Acceso Denegado"
"100","Su dirección IP no está autorizada a visitar: "
"101","Su dirección IP no está autorizada a navegar."
"102","El usuario no está autorizado a visitar: "
"200","La URL solicitada está mal formada."
"300","Se encontró la frase no permitida: "
"301","Se encontró una frase no permitida"
"400","Combinación de frases no permitida: "
"401","Combinación de frases no permitida."
"402","Límite de ponderación de frases de "
"403","Límite de ponderación de frases excedido"
"500","Sitio no permitido: "
"501","URL no permitida: "
"502","Bloqueo general de IP está activo y el sitio deseado no está en la lista de IPs permitidas."
"503","URL bloqueada por expresión regular: "
"504","URL bloqueada por expresión regular."
"505","Bloqueo general de IP está activo y la dirección deseada consiste únicamente en IP."
"600","Dirección IP del cliente presente en la lista de excepciones."
"601","Usuario presente en la lista de excepciones."
"602","Sitio presente en la lista de excepciones."
"603","URL presente en la lista de excepciones."
"604","Frase presente en la lista de excepciones."
"605","Combinación de frases presente en la lista de excepciones: "
"606","Puente URL en la lista de excepciones."
"607","Puente cookie en la lista de excepciones."
"608","Scan bypass URL exception."
"609","Exception regular expression URL match: "
"700","La subida está bloqueada."
"701","Límite de subida excedido."
"800","Clase MIME bloqueada: "
"900","Extensión bloqueada: "
"1000","Clasificación PICS excedida en el sitio indicado."
"1100","Virus or bad content detected."
"1101","Advert blocked"
"1200","Please wait - downloading to be scanned..."
"1210","Download Complete. Starting scan..."
"1220","Scan complete.Click here to download: "
"1230","File no longer available"
dansguardian-2.10.1.1/data/languages/spanish/fancydmtemplate.html 0000644 0011650 0011650 00000014226 11110523211 021672 0000000 0000000
Downloading -FILENAME- (-FILESIZE- bytes)
dansguardian-2.10.1.1/data/languages/spanish/template.html 0000644 0011650 0011650 00000004411 11110523211 020323 0000000 0000000
DansGuardian Acceso denegado
Acceso denegado!
|
-USER-
|
SU COMPANIA
|
El acceso a la página web
-URL-
ha sido denegado por la siguiente razón:
-REASONGIVEN-
Usted está viendo este mensaje de error porque la página a la que
intenta acceder contiene, o está clasificada como conteniendo,
material que se considera inapropiado.
Si tiene preguntas, por favor póngase en contacto con el Administrador de Sistemas o el Administrador de la Red.
Powered by DansGuardian
|
dansguardian-2.10.1.1/data/languages/dutch/ 0000777 0011650 0011650 00000000000 11212164547 015370 5 0000000 0000000 dansguardian-2.10.1.1/data/languages/dutch/messages 0000644 0011650 0011650 00000004751 11110523211 017025 0000000 0000000 # DansGuardian berichten in het Nederlands
# Door S.A. de Heer
# Updates door Eric Hameleers
"1","Toegang geweigerd"
"100","Uw IP adres mag niet websurfen: "
"101","Uw IP adres mag niet websurfen."
"102","Uw gebruikersnaam mag niet websurfen: "
"200","De gevraagde URL is syntactisch incorrect."
"300","Geblokkeerd woord gevonden: "
"301","Geblokkeerd woord gevonden."
"400","Geblokkerde combinatie van woorden gevonden: "
"401","Geblokkerde combinatie van woorden gevonden."
"402","Gewogen woorden limiet van: "
"403","Gewogen woorden limiet overschreden."
"500","Geblokkeerde website: "
"501","Geblokkeerde URL: "
"502","Web blokkade is actief en deze website is niet in de toegangslijst."
"503","Geblokkeerde reguliere expressie in de URL: "
"504","Geblokkeerde reguliere expressie in de URL gevonden."
"505","IP adressen zijn geblokkeerd en dat adres is enkel een IP adres."
"506","SSL is geblokkeerd en deze website komt niet voor op de toegangslijsten."
"507","SSL IP adressen zijn geblokkeerd en dat adres is enkel een IP addres."
"600","Uitzonderings IP adres gevonden."
"601","Uitzonderings gebruiker gevonden."
"602","Uitzonderings website gevonden."
"603","Uitzonderings URL gevonden."
"604","Uitzonderings woord gevonden: "
"605","Uitzonderings combinatie van woorden gevonden: "
"606","URL omzeiling uitzondering."
"607","Cookie omzeiling uitzondering."
"608","Scan omzeiling URL uitzondering."
"609","Uitzondering reguliere expressie URL gevonden: "
"700","Uploaden via het web is geblokkerd."
"701","Web upload limiet overschreden."
"750","Bestands-download is geblokkeerd en dit MIME type komt niet voor op de goedkeuringslijst: "
"751","Bestands-download is geblokkeerd en dit bestand komt niet voor op de goedkeuringslijsten: "
"800","Geblokkeerd MIME Type: "
"900","Geblokkeerd bestandstype: "
"1000","'PICS labeling' niveau overschrijding op bovenvermelde site."
"1100","Virus of onbetamelijke inhoud ontdekt."
"1101","Advertentie geblokkeerd."
"1200","Geduld a.u.b. - bezig met downloaden om te scannen..."
"1201","Waarschuwing: bestand te groot om te scannen. Vermoedt u dat dit bestand groter is dan "
"1202",", ververs dan deze pagina om direct te downloaden."
"1210","Download Compleet. Scan wordt gestart..."
"1220","Scan compleet.Klik hier om te downloaden: "
"1221","Download compleet; bestand niet gescand.
Klik hier om te downloaden: "
"1222","Bestand te groot voor tussenopslag.
Klik hier om opnieuw te downloaden zonder scan: "
"1230","Bestand niet langer beschikbaar"
dansguardian-2.10.1.1/data/languages/dutch/fancydmtemplate.html 0000644 0011650 0011650 00000014226 11110523211 021334 0000000 0000000
Downloading -FILENAME- (-FILESIZE- bytes)
dansguardian-2.10.1.1/data/languages/dutch/template.html 0000644 0011650 0011650 00000005121 11110523211 017764 0000000 0000000
DansGuardian - toegang geweigerd
De toegang werd geweigerd!!
|
-USER-
|
YOUR ORG NAME
|
Toegang tot de pagina:
-URL-
... werd geweigerd om de volgende reden:
-REASONGIVEN-
Categorieën:
-CATEGORIES-
U ziet deze melding omdat de pagina die u probeerde te benaderen,
materiaal lijkt te bevatten dat ongeschikt is om te bekijken,
of gemarkeerd is als ongeschikt om te bekijken.
Als u hier vragen over heeft neem dan contact op met uw netwerkbeheerder.
Verzorgd door DansGuardian
|
dansguardian-2.10.1.1/data/languages/polish/ 0000777 0011650 0011650 00000000000 11212164547 015557 5 0000000 0000000 dansguardian-2.10.1.1/data/languages/polish/messages 0000644 0011650 0011650 00000003577 11110523211 017221 0000000 0000000 # DansGuardian messages file
# Polish version by Piotr Kapczuk
# charset=iso-8859-2
"1","Dostp Zabroniony"
"100","Zakazano dostpu z twojego adresu IP do strony: "
"101","Przegldanie stron www z twojego adresu IP jest niedozwolone."
"102","Zakazano dostpu z twoj nazw uytkownika do strony: "
"200","dany URL jest le skonstruowany."
"300","Znaleziono zakazan fraz: "
"301","Znaleziono zakazan fraz."
"400","Znaleziono zakazan kombinacj fraz: "
"401","Znaleziono zakazan kombinacj fraz."
"402","Limit fraz liczonych wagowo "
"403","Przekroczono limit fraz liczonych wagowo."
"500","Zakazany adres (site): "
"501","Zakazany URL: "
"502","Dostp zezwolony jedynie do wybranych stron, a ta strona nie jest na licie dozwolonych."
"503","Zakazane Wyraenie Regularne dla URL: "
"504","Znaleziono zakazane Wyraenie Regularne w URL."
"505","Dostp po samych adresach IP jest zakazany, a ten adres jest jedynie adresem IP."
"600","IP klienta pasuje do wyjtkw."
"601","Nazwa uytkownika pasuje do wyjtkw."
"602","Adres pasuje do wyjtkw."
"603","URL pasuje do wyjtkw."
"604","Znaleziono fraz, ktra pasuje do wyjtkw: "
"605","Znaleziono kombinacj fraz, ktra pasuje do wyjtkw: "
"606","Bypass URL wyjtkw."
"607","Bypass cookie wyjtkw."
"608","Scan bypass URL exception."
"609","Exception regular expression URL match: "
# 606,607 by Daniel Barron - corrections welcome
"700","Wgrywanie do sieci jest zakazane."
"701","Przekroczono limit wgrywanych danych."
"800","Zakazany typ MIME: "
"900","Zakazane rozszerzenie: "
"1000","Wedle etykietowania PICS przekroczono dopuszczalny poziom zakazanych treci."
"1100","Virus or bad content detected."
"1101","Advert blocked"
"1200","Please wait - downloading to be scanned..."
"1210","Download Complete. Starting scan..."
"1220","Scan complete.Click here to download: "
"1230","File no longer available"
dansguardian-2.10.1.1/data/languages/polish/fancydmtemplate.html 0000644 0011650 0011650 00000014226 11110523211 021523 0000000 0000000
Downloading -FILENAME- (-FILESIZE- bytes)
dansguardian-2.10.1.1/data/languages/polish/template.html 0000644 0011650 0011650 00000003173 11110523211 020160 0000000 0000000 DansGuardian - Dostp Zabroniony
ZABRONIONO DOSTPU -USER-
Dostp do strony:
-URL-
... zosta zabroniony z nastpujcego powodu:
-REASONGIVEN-
Ten bd pojawia si, poniewa strona, do ktrej prbowano uzyska dostp,
zawiera lub te jest oznakowana jako zawierajca treci uznane za nieodpowiednie.
|
Jeli masz jakie pytania lub wtpliwoci skontaktuj si ze swoim Administratorem Sieci |
Powered by DansGuardian
dansguardian-2.10.1.1/data/languages/german/ 0000777 0011650 0011650 00000000000 11212164547 015532 5 0000000 0000000 dansguardian-2.10.1.1/data/languages/german/messages 0000644 0011650 0011650 00000003562 11110523211 017166 0000000 0000000 # DansGuardian 2.10 messages file in German
#
# Translated and adapted to Unicode by Peter Vollmar
"1","Zugriff verweigert"
"100","Ihre Arbeitsstation hat keine Erlaubnis zum Surfen auf: "
"101","Ihre Arbeitsstation hat keine Erlaubnis zum Surfen"
"102","Ihr Benutzername hat keine Erlaubnis zum Surfen auf: "
"200","Die angeforderte URL ist ungültig"
"300","Verbotener Ausdruck gefunden: "
"301","Verbotener Ausdruck gefunden"
"400","Verbotene Kombination von Ausdrücken gefunden: "
"401","Verbotene Kombination von Ausdrücken gefunden"
"402","Gewichtete Ausdrucksbeschränkung von "
"403","Gewichtete Ausdrucksbeschränkung überschritten"
"500","Verbotene Seite: "
"501","Verbotene URL: "
"502","Totalsperre für Nur-IP-Adressen aktiv, diese Seite ist nicht auf der Erlaubt-Liste"
"503","Aufgrund von regulären Ausdrücken verbotene URL: "
"504","Aufgrund von regulären Ausdrücken verbotene URL gefunden"
"505","Totalsperre für IP-Adressen aktiv, diese Adresse ist nur eine IP."
"600","Übereinstimmung mit Client-IP in Ausnahmeliste"
"601","Übereinstimmung mit Client-Benutzer in Ausnahmeliste"
"602","Übereinstimmung mit Seite in Ausnahmeliste"
"603","Übereinstimmung mit URL in Ausnahmeliste"
"604","Ausnahme-Ausdruck gefunden: "
"605","Kombination von Ausnahme-Ausdrücken gefunden: "
"606","Umgehungs-URL gefunden"
"607","Umgehungs-Cookie gefunden"
"608","Scan bypass URL exception."
"609","Exception regular expression URL match: "
"700","Web-Upload verboten"
"701","Web-Upload-Schwellwert erreicht"
"800","Verbotener MIME-Typ: "
"900","Verbotene Datei-Erweiterung: "
"1000","PICS-Kennzeichnungsschwellwert überschritten"
"1100","Virus or bad content detected."
"1101","Advert blocked"
"1200","Please wait - downloading to be scanned..."
"1210","Download Complete. Starting scan..."
"1220","Scan complete.Click here to download: "
"1230","File no longer available"
dansguardian-2.10.1.1/data/languages/german/fancydmtemplate.html 0000644 0011650 0011650 00000014226 11110523211 021476 0000000 0000000
Downloading -FILENAME- (-FILESIZE- bytes)
dansguardian-2.10.1.1/data/languages/german/template.html 0000644 0011650 0011650 00000004234 11110523211 020132 0000000 0000000
DansGuardian - Zugriff verweigert
Zugriff verweigert!
|
-USER-
|
IHRE FIRMA
|
Der Zugriff auf die Seite
-URL-
wurde mit folgender Begründung verweigert:
-REASONLOGGED-
Sie sehen diese Fehlermeldung, weil die von Ihnen gewünschte Seite unangebrachte Inhalte aufweist oder als solche gekennzeichnet ist.
Bei Fragen oder Beschwerden wenden Sie sich bitte an Ihren Netzwerkadministrator.
Powered by DansGuardian
|
dansguardian-2.10.1.1/data/languages/turkish/ 0000777 0011650 0011650 00000000000 11212164547 015752 5 0000000 0000000 dansguardian-2.10.1.1/data/languages/turkish/messages 0000644 0011650 0011650 00000003614 11110523211 017404 0000000 0000000 # DansGuardian messages file in Turkish
# Translation by Ozgur Karatas
# trdocmaster at dansguardian dot org
"1","Erisim Engellendi"
"100","Bu IP adresi ile internete erisim engellenmistir: "
"101","Bu IP ile internete erisim engellenmistir."
"102","Bu kullanici adi ile internete erisim engellenmistir.: "
"200","Gitmek istediginiz URL hatalidir."
"300","Yasaklanmis bir ifade iceren sayfaya girmeye calisiyorsunuz: "
"301","Sistem yoneticisi tarafindan engellenmis bir ifade tespit edildi."
"400","Yasaklanmis kelimeler bulundu: "
"401","Yasaklanmis kelimeler tespit edildi."
"402","Engellenmis ifadelerin limiti asildi: "
"403","Engellenmis kelime limiti asildi."
"500","Yasaklanmis Site: "
"501","Yasaklanmis URL: "
"502","Erisilebilir listesinde bulunmayan bir siteye giremezsiniz."
"503","Yasaklanmis dzensiz ifade (URL): "
"504","Yasaklanmis duzensiz ifadeye rastlandi."
"505","Bu IP adresinin asagidaki siteye girisi engellenmistir."
"600","Ayricalikli IP adresine sahipsiniz."
"601","Ayricalikli kullanici adina sahipsiniz."
"602","Ayricalikli bir siteye girdiniz."
"603","Ayricalikli bir URL adresine girdiniz."
"604","Ayricalikli ifade bulundu: "
"605","Kombinasyonu ertelenmis ifade bulundu: "
"606","URL adresi ayricalikli listesine alinmalidir."
"607","Bu sitede cookie kesfedildi."
"608","Ayricalikli URL adresi taraniyor."
"609","Ayricalikli duzenlenmis url adresi: "
"700","Internet zerinden dosya gnderimi yasaklanmistir."
"701","Internet zerinden dosya gnderimi sinirini astiniz."
"800","Yasaklanmis MIME Tr: "
"900","Yasaklanmis dosya uzantisi: "
"1000","Bu sitedeki resim siniri asildi."
"1100","Virus ve kotu icerige rastlandi."
"1101","Site bloklandi. Adware veya spyware tespit edildi."
"1200","Lutfen bekleyiniz, icerik taranarak yukleniyor.."
"1210","Yukleme bitti, taramadan geciriliyor.."
"1220","Tarama bitti. Yuklemek icin tiklayiniz: "
"1230","Dosya uzunlugu gecersizdir."
dansguardian-2.10.1.1/data/languages/turkish/fancydmtemplate.html 0000644 0011650 0011650 00000014226 11110523211 021716 0000000 0000000
Downloading -FILENAME- (-FILESIZE- bytes)
dansguardian-2.10.1.1/data/languages/turkish/template.html 0000644 0011650 0011650 00000003276 11110523211 020357 0000000 0000000
DansGuardian - Erisim Engellendi
Erisim Engellendi -USER-
Asagidaki adrese erisiminiz engellenmistir:
-URL-
Erisim kisitlama sebebi:
-REASONGIVEN-
Sistem yneticiniz tarafindan girilmesine izin verilmeyen
bir sayfaya erisim yapmaya calisiyorsunuz.
|
Bu konuyla ilgili tum sikayet, istek ve onerilerinizi
ag/sistem yoneticinize iletiniz. |
Bu sistem DansGuardian ile calismaktadir.
dansguardian-2.10.1.1/data/languages/Makefile.in 0000644 0011650 0011650 00000024570 11212164522 016243 0000000 0000000 # Makefile.in generated by automake 1.10.2 from Makefile.am.
# @configure_input@
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
@SET_MAKE@
VPATH = @srcdir@
pkgdatadir = $(datadir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
subdir = data/languages
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
$(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/dgconfig.h
CONFIG_CLEAN_FILES =
SOURCES =
DIST_SOURCES =
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CLAMAVSHM = @CLAMAVSHM@
CLAMAVSUPPORT = @CLAMAVSUPPORT@
CLAMAV_CFLAGS = @CLAMAV_CFLAGS@
CLAMAV_LIBS = @CLAMAV_LIBS@
CLAMDSUPPORT = @CLAMDSUPPORT@
COMMANDLINESUPPORT = @COMMANDLINESUPPORT@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CXX = @CXX@
CXXCPP = @CXXCPP@
CXXDEPMODE = @CXXDEPMODE@
CXXFLAGS = @CXXFLAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DGBINDIR = @DGBINDIR@
DGCONFDIR = @DGCONFDIR@
DGCONFFILE = @DGCONFFILE@
DGDATADIR = @DGDATADIR@
DGLIBDIR = @DGLIBDIR@
DGLOGLOCATION = @DGLOGLOCATION@
DGPIDDIR = @DGPIDDIR@
DGPROXYGROUP = @DGPROXYGROUP@
DGPROXYUSER = @DGPROXYUSER@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EMAILSUPPORT = @EMAILSUPPORT@
EXEEXT = @EXEEXT@
FANCYSUPPORT = @FANCYSUPPORT@
GREP = @GREP@
ICAPSUPPORT = @ICAPSUPPORT@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
KAVAVSUPPORT = @KAVAVSUPPORT@
KAVDSUPPORT = @KAVDSUPPORT@
LDFLAGS = @LDFLAGS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
MAKEINFO = @MAKEINFO@
MKDIR_P = @MKDIR_P@
NTLMSUPPORT = @NTLMSUPPORT@
OBJEXT = @OBJEXT@
ORIGIPSUPPORT = @ORIGIPSUPPORT@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PCRE_CFLAGS = @PCRE_CFLAGS@
PCRE_LIBS = @PCRE_LIBS@
PKG_CONFIG = @PKG_CONFIG@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
TRICKLESUPPORT = @TRICKLESUPPORT@
VERSION = @VERSION@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_CC = @ac_ct_CC@
ac_ct_CXX = @ac_ct_CXX@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
host_alias = @host_alias@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
MAINTAINERCLEANFILES = Makefile.in
LANGDIR = $(datadir)/$(PACKAGE_NAME)/languages
LANGUAGES = czech hebrew turkish \
bulgarian danish indonesian russian-1251 ukenglish \
chinesebig5 dutch italian russian-koi8-r \
chinesegb2312 french lithuanian polish slovak \
german portuguese swedish spanish hungarian \
ptbrazilian japanese malay mxspanish arspanish
EXTRA_DIST = ReadMe
all: all-am
.SUFFIXES:
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
&& { if test -f $@; then exit 0; else break; fi; }; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/languages/Makefile'; \
cd $(top_srcdir) && \
$(AUTOMAKE) --gnu data/languages/Makefile
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(top_srcdir)/configure: $(am__configure_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
tags: TAGS
TAGS:
ctags: CTAGS
CTAGS:
distdir: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
dist_files=`for file in $$list; do echo $$file; done | \
sed -e "s|^$$srcdirstrip/||;t" \
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
case $$dist_files in \
*/*) $(MKDIR_P) `echo "$$dist_files" | \
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
sort -u` ;; \
esac; \
for file in $$dist_files; do \
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
if test -d $$d/$$file; then \
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
fi; \
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
else \
test -f $(distdir)/$$file \
|| cp -p $$d/$$file $(distdir)/$$file \
|| exit 1; \
fi; \
done
$(MAKE) $(AM_MAKEFLAGS) \
top_distdir="$(top_distdir)" distdir="$(distdir)" \
dist-hook
check-am: all-am
check: check-am
all-am: Makefile
installdirs:
install: install-am
install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-am
install-strip:
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
`test -z '$(STRIP)' || \
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
mostlyclean-generic:
clean-generic:
distclean-generic:
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
clean: clean-am
clean-am: clean-generic mostlyclean-am
distclean: distclean-am
-rm -f Makefile
distclean-am: clean-am distclean-generic
dvi: dvi-am
dvi-am:
html: html-am
info: info-am
info-am:
install-data-am: install-data-local
install-dvi: install-dvi-am
install-exec-am:
install-html: install-html-am
install-info: install-info-am
install-man:
install-pdf: install-pdf-am
install-ps: install-ps-am
installcheck-am:
maintainer-clean: maintainer-clean-am
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
mostlyclean: mostlyclean-am
mostlyclean-am: mostlyclean-generic
pdf: pdf-am
pdf-am:
ps: ps-am
ps-am:
uninstall-am: uninstall-local
.MAKE: install-am install-strip
.PHONY: all all-am check check-am clean clean-generic dist-hook \
distclean distclean-generic distdir dvi dvi-am html html-am \
info info-am install install-am install-data install-data-am \
install-data-local install-dvi install-dvi-am install-exec \
install-exec-am install-html install-html-am install-info \
install-info-am install-man install-pdf install-pdf-am \
install-ps install-ps-am install-strip installcheck \
installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
pdf-am ps ps-am uninstall uninstall-am uninstall-local
install-data-local:
@for l in $(LANGUAGES); do \
$(mkinstalldirs) $(DESTDIR)$(LANGDIR)/$$l && \
for f in $(srcdir)/$$l/messages $(srcdir)/$$l/template.html $(srcdir)/$$l/fancydmtemplate.html; do \
echo "$(INSTALL_DATA) $$f $(DESTDIR)$(LANGDIR)/$$l"; \
$(INSTALL_DATA) $$f $(DESTDIR)$(LANGDIR)/$$l; \
done \
done
uninstall-local:
@for l in $(LANGUAGES); do \
for f in $(srcdir)/$$l/messages $(srcdir)/$$l/template.html $(srcdir)/$$l/fancydmtemplate.html; do \
rm -f $(DESTDIR)$(LANGDIR)/$$l/`basename $$f`; \
done \
done
dist-hook:
@ for lang in $(LANGUAGES); do \
if test "$$lang" = .; then :; else \
test -d $(distdir)/$$lang \
|| mkdir $(distdir)/$$lang \
|| exit 1; \
cp -p $(srcdir)/$$lang/messages $(srcdir)/$$lang/template.html $(srcdir)/$$lang/fancydmtemplate.html $(distdir)/$$lang \
|| exit 1; \
fi; \
done
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
dansguardian-2.10.1.1/data/languages/chinesebig5/ 0000777 0011650 0011650 00000000000 11212164547 016446 5 0000000 0000000 dansguardian-2.10.1.1/data/languages/chinesebig5/messages 0000644 0011650 0011650 00000002665 11110523211 020105 0000000 0000000 # DansGuardian messages file
# Translated to Traditional Chinese (Big5) by: Fr. Visminlu Vicente L. Chua, S.J. 2002-10-10
# 2004-08-20: Translated 606 and 607
# 2008/10/16: Translated 608, 609, 1100, 1101, 1200, 1210, 1220, 1230
"1","ڵŪ"
"100","zϥΪ IP }\sںG"
"101","zϥΪ IP }\sںC"
"102","zϥΪbW٤\sںG"
"200","zҽШD URL 榡~C"
"300","QTyryG"
"301","QTyryC"
"400","QTզXyryG"
"401","QTզXyryC"
"402","[vyry"
"403","WL[vyryC"
"500","QT}G"
"501","QT URLG"
"502","ͮġAӨ}buզWv̡C"
"503","uWܡvoOQT URLG"
"504","uWܡvQT URLC"
"505","ϥ IP ͮġAӨӦa}uO@IPa}C"
"600","Pҥ~Ȥ IP ۦPC"
"601","Pҥ~ȤbۦPC"
"602","Pҥ~}ۦPC"
"603","Pҥ~URLۦPC"
"604","ҥ~yryG"
"605","զXҥ~yryG"
"606","VL URL ҥ~C"
"607","VL cookie ҥ~C"
"608","yɲL URL ҥ~C"
"609","Wܨҥ~ URL kXG"
"700","TWǡC"
"701","WLWǷC"
"800","QTMIMEwAG"
"900","QTɦWG"
"1000","W}WLFPICSХܼhC"
"1100","frΤ}eC"
"1101","si"
"1200","еy - bUAԱy ..."
"1210","UC}ly ..."
"1220","yCIo̤UG "
"1230","ɮפwsb"
dansguardian-2.10.1.1/data/languages/chinesebig5/fancydmtemplate.html 0000644 0011650 0011650 00000014226 11110523211 022412 0000000 0000000
Downloading -FILENAME- (-FILESIZE- bytes)
dansguardian-2.10.1.1/data/languages/chinesebig5/template.html 0000644 0011650 0011650 00000002677 11110523211 021057 0000000 0000000
DansGuardian - TŪ
T -USER- Ū
ŪG
-URL-
... QT]FHUzѡG
-REASONGIVEN-
Powered by DansGuardian
dansguardian-2.10.1.1/data/languages/lithuanian/ 0000777 0011650 0011650 00000000000 11212164547 016415 5 0000000 0000000 dansguardian-2.10.1.1/data/languages/lithuanian/messages 0000644 0011650 0011650 00000003250 11110523211 020043 0000000 0000000 # DansGuardian messages file
# Lithuanian version by Nerijus Balinas
# charset=windows-1257
"1","Tinklalapis udraustas"
"100","I js IP adreso negalima pasiekti tinklalapio: "
"101","Draudiama naryti i js IP adreso."
"102","iam vartotojui negalima pasiekti tinklalapio: "
"200","Neteisingas URL."
"300","Rasta udrausta fraz: "
"301","Rasta udrausta fraz."
"400","Rasta udrausta frazi kombinacija: "
"401","Rasta udrausta frazi kombinacija."
"402","Sumuojam frazi limitas "
"403","Virytas sumuojam frazi limitas."
"500","Udraustas adresas (site): "
"501","Udraustas URL: "
"502","Leidiamas prijimas tik prie tinklalapi, esani 'baltame' srae, bet io tinklalapio jame nra."
"503","Draudiamas URL regexp: "
"504","Rastas draudiamas URL regexp."
"505","Prijimas prie IP adres udraustas, o is adresas yra tik IP adresas."
"600","Kliento IP yra iimi srae."
"601","Kliento vardas yra iimi srae."
"602","Adresas yra iimi srae."
"603","URL yra iimi srae."
"604","Rasta fraz i iimi srao: "
"605","Rasta frazi kombinacija i iimi srao: "
"606","URL apjimo iimtis."
"607","Slapuko apjimo iimtis."
"608","URL skanavimo apjimo iimtis."
"609","Regexp URL yra iimi srae: "
"700","Nusiuntimas (upload) yra udraustas."
"701","Virytas nusiuntimo (upload) limitas."
"800","Udraustas MIME tipas: "
"900","Udraustas prapltimas: "
"1000","Virytas io tinklalapio PICS vertinimo kriterijus."
"1100","Turinys ukrstas virusu."
"1101","Reklama ublokuota"
"1200","Palaukite - siuniame tikrinimui nuo virus..."
"1210","Atsista. Tikriname nuo virus..."
"1220","Patikrinta.Atsisiskite: "
"1230","Failas neprieinamas"
dansguardian-2.10.1.1/data/languages/lithuanian/fancydmtemplate.html 0000644 0011650 0011650 00000014226 11110523211 022361 0000000 0000000
Downloading -FILENAME- (-FILESIZE- bytes)
dansguardian-2.10.1.1/data/languages/lithuanian/template.html 0000644 0011650 0011650 00000002725 11110523211 021020 0000000 0000000 DansGuardian - Tinklalapis udraustas
TINKLALAPIS UDRAUSTAS -USER-
Interneto turinio filtravimo sistema neleidia Jums atidaryti io tinklalapio:
-URL-
dl ios prieasties:
-REASONGIVEN-
Tinklalapis, kur Js bandte pasiekti, pripaintas nepriimtinu.
|
Jei turite klausim, kreipkits tinklo administratori. |
Powered by DansGuardian
dansguardian-2.10.1.1/data/languages/Makefile.am 0000644 0011650 0011650 00000002442 11110523211 016213 0000000 0000000 MAINTAINERCLEANFILES = Makefile.in
LANGDIR = $(datadir)/$(PACKAGE_NAME)/languages
LANGUAGES = czech hebrew turkish \
bulgarian danish indonesian russian-1251 ukenglish \
chinesebig5 dutch italian russian-koi8-r \
chinesegb2312 french lithuanian polish slovak \
german portuguese swedish spanish hungarian \
ptbrazilian japanese malay mxspanish arspanish
EXTRA_DIST= ReadMe
install-data-local:
@for l in $(LANGUAGES); do \
$(mkinstalldirs) $(DESTDIR)$(LANGDIR)/$$l && \
for f in $(srcdir)/$$l/messages $(srcdir)/$$l/template.html $(srcdir)/$$l/fancydmtemplate.html; do \
echo "$(INSTALL_DATA) $$f $(DESTDIR)$(LANGDIR)/$$l"; \
$(INSTALL_DATA) $$f $(DESTDIR)$(LANGDIR)/$$l; \
done \
done
uninstall-local:
@for l in $(LANGUAGES); do \
for f in $(srcdir)/$$l/messages $(srcdir)/$$l/template.html $(srcdir)/$$l/fancydmtemplate.html; do \
rm -f $(DESTDIR)$(LANGDIR)/$$l/`basename $$f`; \
done \
done
dist-hook:
@ for lang in $(LANGUAGES); do \
if test "$$lang" = .; then :; else \
test -d $(distdir)/$$lang \
|| mkdir $(distdir)/$$lang \
|| exit 1; \
cp -p $(srcdir)/$$lang/messages $(srcdir)/$$lang/template.html $(srcdir)/$$lang/fancydmtemplate.html $(distdir)/$$lang \
|| exit 1; \
fi; \
done
dansguardian-2.10.1.1/data/languages/danish/ 0000777 0011650 0011650 00000000000 11212164547 015527 5 0000000 0000000 dansguardian-2.10.1.1/data/languages/danish/messages 0000644 0011650 0011650 00000003260 11110523211 017156 0000000 0000000 # DansGuardian messages file in Danish
#
# Translated by Peter Kilsgaard
"1","Adgang ngtet"
"100","Din IP address har ikke lov til at bruge internet: "
"101","Din IP address har ikke lov til at bruge internet."
"102","Dit brugernavn har ikke lov til at bruge internet: "
"200","Den indtastede adresse er ikke valid."
"300","Forbudt stning fundet: "
"301","Forbudt stning fundet."
"400","Forbudt stningskombination fundet: "
"401","Forbudt stningskombination fundet."
"402","Vgtede stningsgrnse p "
"403","Vgtede stningsgrnse overskredet."
"500","Forbudt side: "
"501","Forbudt Adresse: "
"502","Total blokering er aktiveret og den forspurgte side er ikke p positiv listen."
"503","Forbudt ord i adressefelt: "
"504","Forbudt ord i adressefelt fundet."
"505","IP Blokering er aktiveret og den forspurgte side har IP ingen DNS navn."
"600","Undtagelse PC IP match."
"601","Undtagelse brugernavn match."
"602","Undtagelse side match."
"603","Undtagelse adresse match."
"604","Undtagelses stning fundet: "
"605","Kombinations undtagelse stning fundet: "
"606","Bypass URL undtagelse."
"607","Bypass cookie undtagelse."
"608","Scan bypass URL exception."
"609","Exception regular expression URL match: "
# 606,607 by Daniel Barron - corrections welcome
"700","Web upload er forbudt."
"701","Web upload grnse overskredet."
"800","Forbudt MIME Type: "
"900","Forbudt fil format: "
"1000","PICS niveau overskredet p den pgldende side."
"1100","Virus or bad content detected."
"1101","Advert blocked"
"1200","Please wait - downloading to be scanned..."
"1210","Download Complete. Starting scan..."
"1220","Scan complete.Click here to download: "
"1230","File no longer available"
dansguardian-2.10.1.1/data/languages/danish/fancydmtemplate.html 0000644 0011650 0011650 00000014226 11110523211 021473 0000000 0000000
Downloading -FILENAME- (-FILESIZE- bytes)
dansguardian-2.10.1.1/data/languages/danish/template.html 0000644 0011650 0011650 00000004372 11110523211 020132 0000000 0000000
DansGuardian - Access Denied
ADGANG NÆGTET -USER-
Adgang til denne side:
-URL-
... er blevet nægtet på grund af:
-REASONGIVEN-
Denne meddelse kommer fordi, siden du forsøger at få
adgang til indeholder, eller er blevet katagoriseret som, uegnet
materiale .
|
Hvis du har spørgsmål til
ovennævnte, bedes du kontakte netværksadministratoren
|
Powered by
DansGuardian