--- mod-mono-2.4.2.orig/debian/libapache2-mod-mono.postinst +++ mod-mono-2.4.2/debian/libapache2-mod-mono.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +# Set up the environment +set -e + +. /usr/share/debconf/confmodule +db_version 2.0 + +#DEBHELPER# + +# If we aren't configuring, we don't do anything +if [ "$1" != "configure" ]; then + exit 0 +fi + +# We're upgrading, don't ask again +if [ -n "$2" ]; then + exit 0 +fi + +if [ -e /etc/apache2/apache2.conf ]; then + /usr/sbin/a2enmod mod_mono || true +fi + +exit 0 --- mod-mono-2.4.2.orig/debian/control +++ mod-mono-2.4.2/debian/control @@ -0,0 +1,20 @@ +Source: mod-mono +Section: web +Priority: optional +Homepage: http://www.mono-project.com/Mod_mono +Vcs-Browser: http://svn.debian.org/wsvn/pkg-mono/mod-mono/trunk/ +Vcs-Svn: svn://svn.debian.org/pkg-mono/mod-mono/trunk +Maintainer: Debian Mono Group +Uploaders: Dylan R. E. Moonfire , Mirco Bauer , Jo Shields +Build-Depends: debhelper (>= 4.1.16), apache2-threaded-dev (>= 2.2), libmono-dev (>= 2.4), po-debconf +Standards-Version: 3.8.2 + +Package: libapache2-mod-mono +Architecture: any +Section: web +Depends: ${shlibs:Depends}, debconf (>= 1.2.0), apache2.2-common, mono-runtime (>= 2.4), mono-apache-server (>= ${current-version}) | mono-apache-server2 (>= ${current-version}) | mono-apache-server1 (>= ${current-version}), mono-apache-server (<< ${next-version}) | mono-apache-server2 (<< ${next-version}) | mono-apache-server1 (<< ${next-version}) +Description: Apache module for running ASP.NET applications on Mono + The mod_mono module for Apache allows ASP.NET web applications to be + run with the Mono .NET implementation. + . + This package provides the Apache 2.2 version of the module. --- mod-mono-2.4.2.orig/debian/rules +++ mod-mono-2.4.2/debian/rules @@ -0,0 +1,139 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 +#export DH_COMPAT=4 + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +# Perl code to figure out the current version and the next "potential" version +DPKG_VERSION ?= $(shell head -n 1 debian/changelog | cut -f 2 -d '(' | cut -f 1 -d ')') +PKG_VERSION ?= $(shell echo $(DPKG_VERSION) | cut -f 1 -d '-' | cut -f 1-3 -d '.') +NEXT_PKG_VERSION ?= $(shell echo $(PKG_VERSION) | perl -e '$$_=<>;/\.(\d+)$$/;$$a=$$1+1;s/\.(\d+)$$/.$$a/;print;') + +MAKEFILE = $(firstword $(MAKEFILE_LIST)) +DEBIAN_DIR = $(dir $(MAKEFILE)) +SOURCE_DIR = $(DEBIAN_DIR)/.. + +DEB_VERSION = $(shell dpkg-parsechangelog -l$(DEBIAN_DIR)/changelog | grep ^Version | cut -d" " -f2) +DEB_SOURCE_NAME = $(shell dpkg-parsechangelog -l$(DEBIAN_DIR)/changelog | grep ^Source | cut -d" " -f2) +VERSION = $(shell echo $(DEB_VERSION) | cut -d"-" -f1 | sed 's/+dfsg.*//') + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +COMMON_CONFIG= --build=$(DEB_BUILD_GNU_TYPE) \ + --host=$(DEB_HOST_GNU_TYPE) \ + --prefix=/usr \ + --mandir=\$${prefix}/share/man \ + --infodir=\$${prefix}/share/info + +configure: configure-apache2-stamp +configure-apache2-stamp: + dh_testdir + if [ -d apache2-build ]; then rm -rf apache2-build; fi + -mkdir apache2-build + cd apache2-build && \ + ../configure $(COMMON_CONFIG) --with-apxs=/usr/bin/apxs2 + touch $@ + +build: configure build-apache2-stamp +build-apache2-stamp: configure-apache2-stamp + dh_testdir + cd apache2-build && $(MAKE) + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f *-stamp *-stamp-* + rm -rf apache-build apache2-build + debconf-updatepo + dh_clean + +install: build install-prereq install-apache2 +install-prereq: build + dh_testdir + dh_testroot + dh_clean -k +install-apache2: + dh_installdirs -plibapache2-mod-mono + + # Install into debian/libapache2-mod-mono. + # We need APXS = /bin/true, otherwise mod_mono will install everything + # in /usr instead of debian/libapache2-mod-mono. + cd apache2-build && $(MAKE) install \ + DESTDIR=../debian/libapache2-mod-mono \ + APXS=/bin/true + install -m755 apache2-build/src/.libs/mod_mono.so \ + debian/libapache2-mod-mono/`apxs2 -q LIBEXECDIR` + install -m644 debian/libapache2-mod-mono.load \ + debian/libapache2-mod-mono/etc/apache2/mods-available/mod_mono.load + install -m644 debian/libapache2-mod-mono.conf \ + debian/libapache2-mod-mono/etc/apache2/mods-available/mod_mono.conf + +# Install a Debian version of the AutoConfiguration stuff that fits +# with the apache2 a2{en,dis}mod stuff. We use the existing version +# because of the autoconf substitutions. + grep LoadModule debian/libapache2-mod-mono/etc/apache2/mod_mono.conf \ + > debian/libapache2-mod-mono/etc/apache2/mods-available/mod_mono_auto.load + chmod 0644 debian/libapache2-mod-mono/etc/apache2/mods-available/mod_mono_auto.load + cp debian/libapache2-mod-mono.conf_auto \ + debian/libapache2-mod-mono/etc/apache2/mods-available/mod_mono_auto.conf + chmod 0644 debian/libapache2-mod-mono/etc/apache2/mods-available/mod_mono_auto.conf + rm -f debian/libapache2-mod-mono/etc/apache2/mod_mono.conf + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installexamples + dh_installdebconf + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol -- \ + -Vcurrent-version=$(PKG_VERSION) -Vnext-version=$(NEXT_PKG_VERSION) + dh_md5sums + dh_builddeb + +get-orig-source: + [ -d ../tarballs ] || mkdir ../tarballs + uscan \ + --package $(DEB_SOURCE_NAME) \ + --watchfile $(DEBIAN_DIR)/watch \ + --upstream-version $(VERSION) \ + --download-version $(VERSION) \ + --destdir ../tarballs \ + --force-download \ + --rename + bzcat ../tarballs/$(DEB_SOURCE_NAME)_$(VERSION).orig.tar.bz2 | \ + gzip -9fn -c - > ../tarballs/$(DEB_SOURCE_NAME)_$(VERSION).orig.tar.gz + rm ../tarballs/$(DEB_SOURCE_NAME)_$(VERSION).orig.tar.bz2 + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- mod-mono-2.4.2.orig/debian/watch +++ mod-mono-2.4.2/debian/watch @@ -0,0 +1,2 @@ +version=2 +http://go-mono.com/sources-stable/ .*/mod_mono-(.*)\.tar\.bz2 --- mod-mono-2.4.2.orig/debian/libapache2-mod-mono.dirs +++ mod-mono-2.4.2/debian/libapache2-mod-mono.dirs @@ -0,0 +1,7 @@ +etc +etc/apache2 +etc/apache2/conf.d +etc/apache2/mods-available +usr/lib +usr/lib/apache2 +usr/lib/apache2/modules --- mod-mono-2.4.2.orig/debian/libapache2-mod-mono.prerm +++ mod-mono-2.4.2/debian/libapache2-mod-mono.prerm @@ -0,0 +1,15 @@ +#!/bin/bash + +set -e + +#DEBHELPER# + +if [ "$1" != "remove" -a "$1" != "purge" ]; then + exit 0 +fi + +if [ -e /etc/apache2/apache2.conf ]; then + /usr/sbin/a2dismod mod_mono || true +fi + +exit 0 --- mod-mono-2.4.2.orig/debian/copyright +++ mod-mono-2.4.2/debian/copyright @@ -0,0 +1,21 @@ +This package was debianized by Dylan R. E. Moonfire + on Wed, 07 Dec 2005 09:52:51 -0600. + +It was downloaded from: +http://www.mono-project.com/ + +Upstream authors: +Daniel Lopez Ridruejo +Gonzalo Paniagua Javuer + +Copyright: +(c) 2002 Daniel Lopez Ridruejo +(c) 2002-2006 Novell, Inc. + +License: + + mod-mono is free software; you can redistribute it and/or modify it + under the terms of the Apache 2.0 license. + + On Debian systems, the complete text of the Apache 2.0 License can + be found in /usr/share/common-licenses/Apache-2.0 --- mod-mono-2.4.2.orig/debian/README.Debian +++ mod-mono-2.4.2/debian/README.Debian @@ -0,0 +1,26 @@ +mod_mono for Debian +-------------------- + +mod_mono is a module for Apache that allows you to run ASP.NET applications +in Apache. The module is available for both Apache 1.3 and Apache 2.2. + +libapache-mod-mono contains the mod_mono module for Apache 1.3. +libapache2-mod-mono contains the mod_mono module for Apache 2.2. + +mod_mono depends on mod-mono-server, because mod_mono needs a socket to be +connected, and mod-mono-server provides that socket. + +If you want to use Apache as your webserver to run ASP.NET applications and +want to test your own application, I suggest you to add a new alias in +/etc/apache/conf.d/mod_mono.conf (Apache 1.3) or +/etc/apache2/conf.d/mod_mono.conf (Apache 2.2) and read the README.Debian +of mod-mono-server. + + -- Pablo Fischer , Sat, 28 Feb 2004 14:55:56 -0600 + +For XSP 2, you'll need to edit file to point to /etc/mono-server2/ +instead of /etc/mono-server2. For Apache 2, this can be found in +/etc/apache2/conf.d/mod_mono.conf while Apache 1.3 is located at +/etc/apache/conf.d/mod_mono.conf. + + -- Dylan R. E. Moonfire Tue, 06 Sep 2005 10:22:39 -0500 --- mod-mono-2.4.2.orig/debian/libapache2-mod-mono.templates +++ mod-mono-2.4.2/debian/libapache2-mod-mono.templates @@ -0,0 +1,18 @@ +# These templates have been reviewed by the debian-l10n-english +# team +# +# If modifications/additions/rewording are needed, please ask +# debian-l10n-english@lists.debian.org for advice. +# +# Even minor modifications require translation updates and such +# changes should be coordinated with translators and reviewers. + +Template: libapache2-mod-mono/mono-server +Type: select +Choices: mod-mono-server1, mod-mono-server2 +Default: mod-mono-server2 +_Description: Mono server to use: + The libapache2-mod-mono module can be used with one of two different + Mono ASP.NET backends: + - mod-mono-server1: implements ASP.NET 1.1 features; + - mod-mono-server2: implements ASP.NET 2.0 features. --- mod-mono-2.4.2.orig/debian/libapache2-mod-mono.config +++ mod-mono-2.4.2/debian/libapache2-mod-mono.config @@ -0,0 +1,81 @@ +#!/bin/bash -e + +. /usr/share/debconf/confmodule +db_version 2.0 +db_capb backup +db_title Apache 2.2 mod-mono + +tempfile=`/bin/tempfile` + +# Figure out which module we want to connect to +USE_MONO_SERVER=none + +if [ -x /usr/bin/mod-mono-server ]; then + USE_MONO_SERVER=mod-mono-server1 +fi + +if [ -x /usr/bin/mod-mono-server2 ]; then + if [ -x /usr/bin/mod-mono-server1 ]; then + USE_MONO_SERVER=ask + else + USE_MONO_SERVER=mod-mono-server2 + fi +fi + +# See if we need to ask questions +if [ "x$USE_MONO_SERVER" = "xask" ]; then + # Loop until we get a proper response + STATE=1 + + while [ "$STATE" != 0 -a "$STATE" != 2 ]; do + case "$STATE" in + 1) + db_input medium libapache2-mod-mono/mono-server || true + if db_go; then + db_get libapache2-mod-mono/mono-server || true + USE_MONO_SERVER=$RET + STATE=2 + else + STATE=0 + fi + ;; + esac + done + + if [ "$STATE" = 0 ]; then + exit 1 + fi +fi + +# Change the includes as appropriate +MONO_CONF=/etc/apache2/mods-available/mod_mono.conf + +# Gracefully deal with users who have deleted their config for some reason +# (i.e. don't bail out in postinst) +if [ ! -e "$MONO_CONF" ]; then + touch $MONO_CONF +fi + +case "$USE_MONO_SERVER" in + none) + # Can't find anything + echo "Either mono-apache-server1 or mono-apache-server2 needs " + echo "to be installed." + exit 1 + ;; + mod-mono-server) + echo "Using mono-apache-server..." + sed 's@^Include.*$@Include /etc/mono-server/mono-server-hosts.conf@' \ + < $MONO_CONF > $tempfile + cp -f $tempfile $MONO_CONF + rm -f $tempfile + ;; + mod-mono-server2) + echo "Using mono-apache-server2..." + sed 's@^Include.*$@Include /etc/mono-server2/mono-server2-hosts.conf@'\ + < $MONO_CONF > $tempfile + cp -f $tempfile $MONO_CONF + rm -f $tempfile + ;; +esac + --- mod-mono-2.4.2.orig/debian/TODO +++ mod-mono-2.4.2/debian/TODO @@ -0,0 +1,22 @@ +TODO for mod-mono +----------------- + +* Look for beta testers :) + If you are a prospective beta tester, these are some of the things + that should be tested: + + - Install on Apache 1.3 and Apache 2.2. + - Systems with a single Apache host and a single mod_mono application. + - Systems with multiple virtual hosts and multiple mod_mono + applications. + - Userdir support -- allow people to install ASP.NET applications in + their public_html directory. + - Test with different Apache 2.2 threading models. + - How well does Apache 1.3/2.2 manage to reload its config with + mod_mono activated (for example, mod_python will sometimes result + in apache 2.0 freezing upon reload). + - Installation alongside other Apache modules (php, mod_perl, + mod_python, ...). + - Anything else you can think of, particularly related to the Debian + packaging. Of course, bugs in mod_mono itself are also welcome, and + they will be communicated upstream. --- mod-mono-2.4.2.orig/debian/libapache2-mod-mono.README.Debian +++ mod-mono-2.4.2/debian/libapache2-mod-mono.README.Debian @@ -0,0 +1,15 @@ +As of mod-mono 1.1.10, there are two ways of configuring mod-mono. The +first is to use the pseduo-automatic configuration that Debian uses +and the second is to use the zero-configuration version. These are +implemented as two different modules for Apache 2. + +To use the older-style, use the "mod_mono" module to install it. + + # a2enmod mod_mono + +To use the auto-configuration, use "mod_mono_auto". + + # a2enmod mod_mono_auto + +If both are enabled, the behavior is undefined (and probably doesn't +work). --- mod-mono-2.4.2.orig/debian/libapache2-mod-mono.load +++ mod-mono-2.4.2/debian/libapache2-mod-mono.load @@ -0,0 +1 @@ +LoadModule mono_module /usr/lib/apache2/modules/mod_mono.so --- mod-mono-2.4.2.orig/debian/compat +++ mod-mono-2.4.2/debian/compat @@ -0,0 +1 @@ +4 --- mod-mono-2.4.2.orig/debian/changelog +++ mod-mono-2.4.2/debian/changelog @@ -0,0 +1,388 @@ +mod-mono (2.4.2-1~bpo50+1) lenny-backports; urgency=low + + * Rebuild for lenny-backports. + * added version to libmono-dev (>= 2.4) + + -- Victor Seva Thu, 08 Oct 2009 13:56:03 +0200 + +mod-mono (2.4.2-1) unstable; urgency=low + + * New upstream release + * debian/rules: + + Implement a get-orig-source rule + * debian/control: + + Bump standards version to latest version (No changes needed) + + Alter dependencies for new mono-runtime package in Mono 2.4 + (Closes: #536504) + + Alter dependencies to pull in the "default" ASP.NET version + for preference, with explicit 2.0 or 1.1 as options + * debian/libapache2-mod-mono.conf, + debian/libapache2-mod-mono.config: + + Update for new executable names + * debian/libapache2-mod-mono.templates, + debian/po/*: + + ASP.NET 2.0 is default now, and option names have changed + * debian/po/nl.po: + + Fix line breaks + + -- Jo Shields Thu, 16 Jul 2009 15:33:23 +0100 + +mod-mono (2.0-2) unstable; urgency=low + + * Upload to unstable. + + -- Mirco Bauer Wed, 25 Feb 2009 23:20:34 +0100 + +mod-mono (2.0-1) experimental; urgency=low + + [ Jo Shields ] + * New upstream release + * libapache2-mod-mono.config: + + Prevent postinst failure by ensuring mod_mono.conf always exists + + [ Mirco Bauer ] + * debian/libapache2-mod-mono.conf: + + Enhanced comments. + + -- Jo Shields Wed, 12 Nov 2008 01:35:05 +0000 + +mod-mono (1.9-1) unstable; urgency=low + + * New upstream version. + * Add Jo Shields to Uploaders. + * Integrate changes from latest NMU (Closes: #457109, #472847 #486605, + #487069). Thanks to Christian Perrier. + * Bump standards version to 3.8.0 (no changes needed). + * Prefork Apache isn't as broken as some people thought. Dependency + lowered to apache2.2-common only, so any apache MPM can be chosen. + + -- Jo Shields Fri, 4 Jul 2008 08:45:53 +0100 + +mod-mono (1.2.5-2.1) unstable; urgency=low + + * Non-maintainer upload to fix pending l10n issues. + * Debconf translations: + - Finnish. Closes: #457109 + - Portuguese. Closes: #472847 + - Swedish. Closes: #486605 + - Turkish. Closes: #487069 + * [Lintian] No longer include the full text of the Apache 2.0 license + but point users to /usr/share/common-licenses/Apache-2.0 instead. + + -- Christian Perrier Fri, 06 Jun 2008 18:03:34 +0200 + +mod-mono (1.2.5-2) unstable; urgency=low + + * Replaced build-dependency apache2-dev || apache2-threaded-dev with only + apache2-threaded-dev. + The buildds stopped to compile the source package, as AutoDepWait only + honors the first package (like sbuild) while the conventional (old) way + just tried to build it and installed apache2-threaded-dev automaticly. + * Replaced apache2 binary dependency with apache2-mpm-worker, as the built + module for threaded apache will not work with prefork apache. + * Added Homepage, Vcs-Browser and Vcs-Svn fields to debian/control. + * Added myself to Uploaders. + * Removed Eduard Bloch and Pablo Fischer from Uploaders, as they haven't touch + the package over 2 years anymore. + + -- Mirco Bauer Sat, 01 Dec 2007 00:19:32 +0100 + +mod-mono (1.2.5-1) unstable; urgency=low + + * New upstream release + * Dylan R. E. Moonfire + + Debconf translation updates: + - Galician (Closes: #444754) + - Portuguese (Closes: #444671) + + -- Dylan R. E. Moonfire Mon, 26 Nov 2007 11:23:54 -0600 + +mod-mono (1.2.4-2) unstable; urgency=low + + * Christian Perrier + + Debconf templates and debian/control reviewed by the debian-l10n- + english team as part of the Smith review project. Closes: #433711 + + Debconf translation updates: + - Remove useless English "translation" + - French + - Japanese. Closes: #434320 + - Galician. Closes: #434321 + - Tamil. Closes: #434403 + - German. Closes: #434407, #433201 + - Russian. Closes: #434408 + - Portuguese. Closes: #434436 + - French. Closes: #434476 + - Basque. Closes: #434498 + - Italian. Closes: #434513 + - Vietnamese. Closes: #434759 + - Spanish. Closes: #435906 + - Czech. Closes: #436281 + - Dutch. Closes: #436854 + - Swedish. Closes: #436413 + + -- Dylan R. E. Moonfire Thu, 19 Jul 2007 06:11:36 +0200 + +mod-mono (1.2.4-1) unstable; urgency=low + + * New upstream release + * Dylan R. E. Moonfire + + Added Dutch translation (Closes: #423053) + + Added Spanish translation (Closes: #415181) + + debian/control + - Apache 1.3 has been removed from Debian, so removed references to + apache and also the libapache-mod-mono package. (Closes: #429087) + + Realized libapache2-mod-mono templates were not included, added them + to the translation files. Between this and the above entry, this + effectively erases all translations. + * Mirco 'meebey' Bauer + + debian/libapache2-mod-mono.template: + - Fixed wording + + debian/watch: + - Updated + + debian/copyright: + - Added copyright holders + + -- Dylan R. E. Moonfire Thu, 21 Jun 2007 19:13:27 -0500 + +mod-mono (1.2.1-2) unstable; urgency=low + + * Dylan R. E. Moonfire + + Added Czech translation (Closes: #412309) + + debian/control: Corrected the Apache 2.2 reference (Closes: #400985) + + Added a debconf option to ask which version to use (Closes: #405164) + * Sebastian 'slomo' Dröge: + + ACK and merge NMU by Christian Perrier: + - Added German, Swedish, Czech, Galician, Portuguese, and Japanese + translations (Closes: #400392, #407853, #412343, #412403, #412501). + - Converted all translations to UTF-8 + + -- Dylan R. E. Moonfire Thu, 8 Mar 2007 09:02:45 +0100 + +mod-mono (1.2.1-1.1) unstable; urgency=low + + * Non-maintainer upload to fix pending l10n issues. + * Debconf translations: + - German. Closes: #400392 + - Swedish. Closes: #407853 + - Galician. Closes: #412343 + - Portuguese. Closes: 412403 + - Japanese. Closes: #412501 + - Convert all PO files to UTF-8 + + -- Christian Perrier Wed, 28 Feb 2007 22:33:18 +0100 + +mod-mono (1.2.1-1) unstable; urgency=low + + * New upstream release + + -- Debian Mono Group Thu, 23 Nov 2006 12:00:13 -0600 + +mod-mono (1.1.18-1) unstable; urgency=low + + * New upstream release. + * Dylan R. E. Moonfire + + debian/control: Added the 2.2 requirements for unstable + (Closes: #395132) + + Added Italian translation (Closes: #390297) + + Added Czech translation (Closes: #389221) + + Added French translation (Closes: #390981) + + -- Debian Mono Group Wed, 18 Oct 2006 11:33:25 -0500 + +mod-mono (1.1.17-3) unstable; urgency=low + + * Mirco 'meebey' Bauer + + Fixed debconf templates. (Closes: #389024) + + libapache-mod-mono.postinst: + - Added quotes around variable in "if []" check. + + -- Debian Mono Group Sun, 24 Sep 2006 01:28:16 +0200 + +mod-mono (1.1.17-2) unstable; urgency=low + + * Dylan R. E. Moonfire + + Corrected debian/*.templates (Closes: #350238) + + Added Swedish translation (Closes: #387508) + + Added Italian translation (Closes: #368338) + + -- Debian Mono Group Thu, 21 Sep 2006 19:23:18 -0500 + +mod-mono (1.1.17-1) unstable; urgency=low + + * New upstream release. + * Dylan R. E. Moonfire + + Added Czech translation. (Closes: #353371) + + -- Debian Mono Group Wed, 06 Sep 2006 11:26:02 -0500 + +mod-mono (1.1.13-1) unstable; urgency=low + + * New upstream release + * Dylan R. E. Moonfire + + Moved the AutoConfiguration stuff into the apache2/mods-available + so the user can use "a2enmod mod_mono_auto" instead of editing + files. + + debian/control + - Tightened required versions of XSP libraries. + + debian/rules + - Added perl code to identify the version for tightening + requirements between the various packages + * Added French translation. (Closes: #351482) + + -- Debian Mono Group Wed, 25 Jan 2006 14:22:11 -0600 + +mod-mono (1.1.10-1) unstable; urgency=low + + * NEW upstream release + * Dylan R. E. Moonfire + - debian/control: Changed to Architecture: any + - debian/copyright: Copied the Apache 2.0 license from ./COPYING and + expanded the details to conform more to the template. + - Working on getting this working with apache-perl and + apache-ssl. (Closes: #311313) + - Cleaned up all warnings and errors for lintian. + - Added AMD64 to the architectures list. + - Working on getting the XSP and XSP 2 stuff working better together. At + this point, editing the files appears to be "best" approach. + + -- Debian Mono Group Wed, 07 Dec 2005 09:52:51 -0600 + +mod-mono (1.0.5-1) unstable; urgency=low + + * New upstream release + * Pablo Fischer: + + Fixed multiple virtualhost support for mono-server-{update,admin}.conf. + Now the user can have multiple virtulhosts running with mod_mono, the fault was + using the vhosts as * and not as localhost (a realname) (closes: #267581) + * Fabian Fagerholm : (closes: #263257, #296049) + + debian/rules: Reworked the build process to be easier to understand + and extend. Build the libapache2-mod-mono package. + + debian/control: Build-depend on apache2-dev. Changed the long description + of libapache-mod-mono. Added the libapache2-mod-mono package. + + debian/docs: Remove a duplicated line. + + debian/TODO: Update with ideas that testers can work on. + + README.Debian: Cleaned up and changed wording of this text. + + debian/watch: Added. + + Rename some files: + - mono.conf to libapache-mod-mono.conf, installs as mod_mono.conf + - 500mod_mono.info to libapache-mod.mono.info, installs as 500mod_mono.info + + Added: + - libapache2-mod-mono.conf, installs as mod_mono.conf for apache2. + + A number of small changes in wording, spelling errors corrected, etc. + * Martin Quinson: + + po support / translation support + + -- Debian Mono Group Wed, 9 Dec 2004 10:03:42 -0600 + +mod-mono (1.0-1) unstable; urgency=low + + * NEW Release + + -- Debian Mono Group Sat, 3 Jul 2004 14:18:32 -0600 + +mod-mono (0.11-3) unstable; urgency=low + + * Prepared for the upload into the archiv (closes: #255129) + * renamed the source package to match the original source name better + + -- Eduard Bloch Tue, 22 Jun 2004 00:21:47 +0200 + +libapache-mod-mono (0.11-2) unstable; urgency=low + + * Fixed a dependency name, mono-server doesn't exists any more, it will be mono-apache-server + + -- Debian Mono Group Fri, 18 Jun 2004 09:27:43 -0600 + +libapache-mod-mono (0.11-1) unstable; urgency=low + + * New release + + -- Debian Mono Group Thu, 17 Jun 2004 13:00:05 -0600 + +libapache-mod-mono (0.10-2) unstable; urgency=low + + * Fixed a dependency bug + + -- Debian Mono Group Mon, 14 Jun 2004 19:49:19 -0600 + +libapache-mod-mono (0.10-1) unstable; urgency=low + + * New Release + + -- Pablo Fischer Sat, 12 Jun 2004 13:14:12 -0600 + +libapache-mod-mono (0.9-1) unstable; urgency=low + + * New Release + + -- Pablo Fischer Tue, 25 May 2004 09:53:43 -0600 + +libapache-mod-mono (0.8-3) unstable; urgency=low + + * Fixed a comma in a comment.. + * A if rule was giving me problems (restart in postinst) + + -- Pablo Fischer Fri, 21 May 2004 14:27:12 -0600 + +libapache-mod-mono (0.8-2) unstable; urgency=low + + * The apache module needs to be saved with the SAME name as was compiled, I can not + rename it or modules-config will crashs (it reads the realname in .so). + + -- Pablo Fischer Fri, 21 May 2004 14:11:21 -0600 + +libapache-mod-mono (0.8-1) unstable; urgency=low + + * NEW RELEASE + * Also, the /etc/init.d/mono-server calls should be removed, mono-server daemon dissapears in this version + * The mono.conf dissapear, we will manage the mono.conf with the mono-server package + * We'll use the wwwconfig scripts to add/remove configuration files from apache + + -- Pablo Fischer Wed, 28 Apr 2004 07:30:11 -0600 + +libapache-mod-mono (0.7-4) unstable; urgency=low + + * Fixed inst and removal scripts, now we check if we should start the mono-server + daemon, so we show the user a 'cleaner' way to install libapache-mod-mono :-) + + -- Pablo Fischer Fri, 9 Apr 2004 18:41:36 -0600 + +libapache-mod-mono (0.7-3) unstable; urgency=low + + * libapache-mod-mono.prerm + + Fixed the apachecfg dir, I was using apache2.. and eww.. we are using apache 1.3, Fixed! + * control + + Removed libapache-mod-mono from the mono-server dependencies. When we are uninstalling + mod_mono we need mono-server to stop the daemon, removing it, fixes the problem + * libapache-mod-mono.postinst: + + A fix in the rules, in the != ones, I should do: "$var" != "cond", instead of + $var != "cond" + + Removed the turn on and turn off options, we don't need them, just with modules-config, and that's + all what we need to activate the mod_mono module, and added a disable functiont to disable + the module + * README.Debian + + Added with a brief explanation of what is the package and what is mod_mono. + * mono.conf: + + Added a new alias, /monodoc, for /monodoc application + + -- Pablo Fischer Tue, 16 Mar 2004 12:31:57 -0600 + +libapache-mod-mono (0.7-2) unstable; urgency=low + + * Initial Release. + * Pablo Fischer: + + to the postinst: added two functions: restart_apache and + restart_monoserver. + + mono.conf: Added the DirectoryIndex. If we are running apache + with mod_mono, the best idea is to show first the index.aspx + as the index page. + + rules: We create the full parent directories to /etc/apache/conf.d. + + -- Pablo Fischer Sun, 29 Feb 2004 03:35:16 -0600 + +libapache-mod-mono (0.7-1) unstable; urgency=low + + * Initial Release. + + -- Pablo Fischer Sat, 28 Feb 2004 14:55:56 -0600 + --- mod-mono-2.4.2.orig/debian/libapache2-mod-mono.conf +++ mod-mono-2.4.2/debian/libapache2-mod-mono.conf @@ -0,0 +1,12 @@ +AddType application/x-asp-net .aspx .ashx .asmx .ascx .asax .config .ascx +DirectoryIndex index.aspx + +# Include the web application definitions generated by mono-server(2)-update. +# +# If want want to use ASP.NET 1.1 (via mono-apache-server), use: +# Include /etc/mono-server/mono-server-hosts.conf +# +# If you want to use ASP.NET 2.0 (via mono-apache-server2), use: +# Include /etc/mono-server2/mono-server2-hosts.conf + +Include /etc/mono-server2/mono-server2-hosts.conf --- mod-mono-2.4.2.orig/debian/docs +++ mod-mono-2.4.2/debian/docs @@ -0,0 +1,2 @@ +NEWS +README --- mod-mono-2.4.2.orig/debian/libapache2-mod-mono.conf_auto +++ mod-mono-2.4.2/debian/libapache2-mod-mono.conf_auto @@ -0,0 +1,15 @@ +MonoAutoApplication enabled +AddType application/x-asp-net .aspx +AddType application/x-asp-net .asmx +AddType application/x-asp-net .ashx +AddType application/x-asp-net .asax +AddType application/x-asp-net .ascx +AddType application/x-asp-net .soap +AddType application/x-asp-net .rem +AddType application/x-asp-net .axd +AddType application/x-asp-net .cs +AddType application/x-asp-net .config +AddType application/x-asp-net .dll +DirectoryIndex index.aspx +DirectoryIndex Default.aspx +DirectoryIndex default.aspx --- mod-mono-2.4.2.orig/debian/po/tr.po +++ mod-mono-2.4.2/debian/po/tr.po @@ -0,0 +1,43 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Mert Dirik , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: mod-mono\n" +"Report-Msgid-Bugs-To: mod-mono@packages.debian.org\n" +"POT-Creation-Date: 2009-07-16 15:24+0100\n" +"PO-Revision-Date: 2008-06-19 14:11+0200\n" +"Last-Translator: Mert Dirik \n" +"Language-Team: Debian L10n Turkish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Turkish\n" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +msgid "Mono server to use:" +msgstr "Kullanılacak Mono sunucusu:" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +#, fuzzy +#| msgid "" +#| "The libapache2-mod-mono module can be used with one of two different Mono " +#| "ASP.NET backends:\n" +#| " - mod-mono-server : implements ASP.NET 1.1 features;\n" +#| " - mod-mono-server2: implements ASP.NET 2.0 features." +msgid "" +"The libapache2-mod-mono module can be used with one of two different Mono " +"ASP.NET backends:\n" +" - mod-mono-server1: implements ASP.NET 1.1 features;\n" +" - mod-mono-server2: implements ASP.NET 2.0 features." +msgstr "" +"\"libapache2-mod-mono\" modülü 2 farklı Mono ASP.NET arka ucundan biriyle " +"kullanılabilir:\n" +" - mod-mono-server1: ASP.NET 1.1 özelliklerini destekler;\n" +" - mod-mono-server2: ASP.NET 2.0 özelliklerini destekler." --- mod-mono-2.4.2.orig/debian/po/vi.po +++ mod-mono-2.4.2/debian/po/vi.po @@ -0,0 +1,43 @@ +# Vietnamese translation for Mod-Mono. +# Copyright © 2007 Free Software Foundation, Inc. +# Clytie Siddall , 2007 +# +msgid "" +msgstr "" +"Project-Id-Version: mod-mono\n" +"Report-Msgid-Bugs-To: mod-mono@packages.debian.org\n" +"POT-Creation-Date: 2009-07-16 15:24+0100\n" +"PO-Revision-Date: 2007-07-26 23:31+0930\n" +"Last-Translator: Clytie Siddall \n" +"Language-Team: Vietnamese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: LocFactoryEditor 1.7.1b\n" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +msgid "Mono server to use:" +msgstr "Máy phục vụ Mono cần dùng:" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +#, fuzzy +#| msgid "" +#| "The libapache2-mod-mono module can be used with one of two different Mono " +#| "ASP.NET backends:\n" +#| " - mod-mono-server : implements ASP.NET 1.1 features;\n" +#| " - mod-mono-server2: implements ASP.NET 2.0 features." +msgid "" +"The libapache2-mod-mono module can be used with one of two different Mono " +"ASP.NET backends:\n" +" - mod-mono-server1: implements ASP.NET 1.1 features;\n" +" - mod-mono-server2: implements ASP.NET 2.0 features." +msgstr "" +"Mô-đun libapache2-mod-mono có thể chạy với một của hai hậu phương ASP.NET " +"Mono:\n" +" • mod-mono-server1\t\tthực hiện các tính năng ASP.NET 1.1;\n" +" • mod-mono-server2\t\tthực hiện các tính năng ASP.NET 2.0." --- mod-mono-2.4.2.orig/debian/po/pt.po +++ mod-mono-2.4.2/debian/po/pt.po @@ -0,0 +1,53 @@ +# Portuguese translation for mod-mono's debconf messages +# Copyright (C) 2007 Miguel Figueiredo +# This file is distributed under the same license as the mod-mono package. +# Miguel Figueiredo , 2007-2008. +# +msgid "" +msgstr "" +"Project-Id-Version: mod-mono 1.2.1-1\n" +"Report-Msgid-Bugs-To: mod-mono@packages.debian.org\n" +"POT-Creation-Date: 2009-07-16 15:24+0100\n" +"PO-Revision-Date: 2008-03-26 20:16+0000\n" +"Last-Translator: Miguel Figueiredo \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +msgid "Mono server to use:" +msgstr "Servidor mono a utilizar:" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +#, fuzzy +#| msgid "" +#| "The libapache2-mod-mono module can be used with one of two different Mono " +#| "ASP.NET backends:\n" +#| " - mod-mono-server : implements ASP.NET 1.1 features;\n" +#| " - mod-mono-server2: implements ASP.NET 2.0 features." +msgid "" +"The libapache2-mod-mono module can be used with one of two different Mono " +"ASP.NET backends:\n" +" - mod-mono-server1: implements ASP.NET 1.1 features;\n" +" - mod-mono-server2: implements ASP.NET 2.0 features." +msgstr "" +"O módulo libapache2-mod-mono pode ser utilizado com um de dois diferentes " +"backends Mono de ASP.NET.\n" +" - mod-mono-server1: implementa funcionalidades ASP.NET 1.1;\n" +" - mod-mono-server2: implementa funcionalidades ASP.NET 2.0.2.0." + +#~ msgid "Use mono-server:" +#~ msgstr "Usar o mono-server:" + +#~ msgid "Activate module?" +#~ msgstr "Activar o módulo?" + +#~ msgid "If this is true, then the module will be activated as apache starts." +#~ msgstr "" +#~ "Se isto é verdade, então o módulo será activado assim que o apache " +#~ "iniciar." --- mod-mono-2.4.2.orig/debian/po/gl.po +++ mod-mono-2.4.2/debian/po/gl.po @@ -0,0 +1,41 @@ +# Galician translation of mod-mono's debconf templates +# This file is distributed under the same license as the mod-mono package. +# Jacobo Tarrio , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: mod-mono\n" +"Report-Msgid-Bugs-To: mod-mono@packages.debian.org\n" +"POT-Creation-Date: 2009-07-16 15:24+0100\n" +"PO-Revision-Date: 2007-09-30 18:53+0100\n" +"Last-Translator: Jacobo Tarrio \n" +"Language-Team: Galician \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +msgid "Mono server to use:" +msgstr "Servidor Mono a empregar:" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +#, fuzzy +#| msgid "" +#| "The libapache2-mod-mono module can be used with one of two different Mono " +#| "ASP.NET backends:\n" +#| " - mod-mono-server : implements ASP.NET 1.1 features;\n" +#| " - mod-mono-server2: implements ASP.NET 2.0 features." +msgid "" +"The libapache2-mod-mono module can be used with one of two different Mono " +"ASP.NET backends:\n" +" - mod-mono-server1: implements ASP.NET 1.1 features;\n" +" - mod-mono-server2: implements ASP.NET 2.0 features." +msgstr "" +"Pódese empregar o módulo libapache2-mod-mono con calquera destes motores ASP." +"NET de Mono:\n" +" - mod-mono-server1: implementa as características de ASP.NET 1.1;\n" +" - mod-mono-server2: implementa as características de ASP.NET 2.0." --- mod-mono-2.4.2.orig/debian/po/fi.po +++ mod-mono-2.4.2/debian/po/fi.po @@ -0,0 +1,39 @@ +msgid "" +msgstr "" +"Project-Id-Version: mod-mono_1.2.5-2\n" +"Report-Msgid-Bugs-To: mod-mono@packages.debian.org\n" +"POT-Creation-Date: 2009-07-16 15:24+0100\n" +"PO-Revision-Date: 2007-12-19 23:33+0200\n" +"Last-Translator: Esko Arajärvi \n" +"Language-Team: Finnish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Finnish\n" +"X-Poedit-Country: Finland\n" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +msgid "Mono server to use:" +msgstr "Käytettävä Mono-palvelin:" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +#, fuzzy +#| msgid "" +#| "The libapache2-mod-mono module can be used with one of two different Mono " +#| "ASP.NET backends:\n" +#| " - mod-mono-server : implements ASP.NET 1.1 features;\n" +#| " - mod-mono-server2: implements ASP.NET 2.0 features." +msgid "" +"The libapache2-mod-mono module can be used with one of two different Mono " +"ASP.NET backends:\n" +" - mod-mono-server1: implements ASP.NET 1.1 features;\n" +" - mod-mono-server2: implements ASP.NET 2.0 features." +msgstr "" +"Moduulia libapache2-mod-mono voidaan käyttää kahden eri Mono ASP.NET -" +"taustaosan kanssa:\n" +" - mod-mono-server1: toteuttaa ASP.NET 1.1 -ominaisuudet\n" +" - mod-mono-server2: toteuttaa ASP.NET 2.0 -ominaisuudet" --- mod-mono-2.4.2.orig/debian/po/it.po +++ mod-mono-2.4.2/debian/po/it.po @@ -0,0 +1,42 @@ +# Italian (it) translation of debconf templates for mod-mono +# Copyright (C) 2006 Software in the Public Interest +# This file is distributed under the same license as the mod-mono package. +# Luca Monducci , 2006, 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: mod-mono 1.2.4 italian debconf templates\n" +"Report-Msgid-Bugs-To: mod-mono@packages.debian.org\n" +"POT-Creation-Date: 2009-07-16 15:24+0100\n" +"PO-Revision-Date: 2007-07-24 10:48+0200\n" +"Last-Translator: Luca Monducci \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +msgid "Mono server to use:" +msgstr "Server mono da utilizzare:" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +#, fuzzy +#| msgid "" +#| "The libapache2-mod-mono module can be used with one of two different Mono " +#| "ASP.NET backends:\n" +#| " - mod-mono-server : implements ASP.NET 1.1 features;\n" +#| " - mod-mono-server2: implements ASP.NET 2.0 features." +msgid "" +"The libapache2-mod-mono module can be used with one of two different Mono " +"ASP.NET backends:\n" +" - mod-mono-server1: implements ASP.NET 1.1 features;\n" +" - mod-mono-server2: implements ASP.NET 2.0 features." +msgstr "" +"Il modulo libapache2-mod-mono può essere usato con uno dei due diversi " +"backend di Mono ASP.NET:\n" +" - mod-mono-server1: implementa le funzioni di ASP.NET 1.1;\n" +" - mod-mono-server2: implementa le funzioni di ASP.NET 2.0." --- mod-mono-2.4.2.orig/debian/po/ru.po +++ mod-mono-2.4.2/debian/po/ru.po @@ -0,0 +1,45 @@ +# translation of templates-1.po to Russian +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Yuri Kozlov , 2007. +msgid "" +msgstr "" +"Project-Id-Version: 1.2.4-1\n" +"Report-Msgid-Bugs-To: mod-mono@packages.debian.org\n" +"POT-Creation-Date: 2009-07-16 15:24+0100\n" +"PO-Revision-Date: 2007-07-23 21:17+0400\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +msgid "Mono server to use:" +msgstr "Сервер Mono, который будет использоваться:" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +#, fuzzy +#| msgid "" +#| "The libapache2-mod-mono module can be used with one of two different Mono " +#| "ASP.NET backends:\n" +#| " - mod-mono-server : implements ASP.NET 1.1 features;\n" +#| " - mod-mono-server2: implements ASP.NET 2.0 features." +msgid "" +"The libapache2-mod-mono module can be used with one of two different Mono " +"ASP.NET backends:\n" +" - mod-mono-server1: implements ASP.NET 1.1 features;\n" +" - mod-mono-server2: implements ASP.NET 2.0 features." +msgstr "" +"Модуль libapache2-mod-mono можно использовать с одним из двух различных " +"серверов Mono ASP.NET:\n" +" - mod-mono-server1: реализует возможности ASP.NET 1.1;\n" +" - mod-mono-server2: реализует возможности ASP.NET 2.0." --- mod-mono-2.4.2.orig/debian/po/cs.po +++ mod-mono-2.4.2/debian/po/cs.po @@ -0,0 +1,49 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: mod-mono\n" +"Report-Msgid-Bugs-To: mod-mono@packages.debian.org\n" +"POT-Creation-Date: 2009-07-16 15:24+0100\n" +"PO-Revision-Date: 2007-07-29 11:46+0200\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +msgid "Mono server to use:" +msgstr "Mono server, který se má použít:" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +#, fuzzy +#| msgid "" +#| "The libapache2-mod-mono module can be used with one of two different Mono " +#| "ASP.NET backends:\n" +#| " - mod-mono-server : implements ASP.NET 1.1 features;\n" +#| " - mod-mono-server2: implements ASP.NET 2.0 features." +msgid "" +"The libapache2-mod-mono module can be used with one of two different Mono " +"ASP.NET backends:\n" +" - mod-mono-server1: implements ASP.NET 1.1 features;\n" +" - mod-mono-server2: implements ASP.NET 2.0 features." +msgstr "" +"Modul libapache2-mod-mono se dá použít s různými backendy pro Mono ASP.NET:\n" +" - mod-mono-server1: implementuje ASP.NET 1.1;\n" +" - mod-mono-server2: implementuje ASP.NET 2.0." --- mod-mono-2.4.2.orig/debian/po/POTFILES.in +++ mod-mono-2.4.2/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] libapache2-mod-mono.templates --- mod-mono-2.4.2.orig/debian/po/fr.po +++ mod-mono-2.4.2/debian/po/fr.po @@ -0,0 +1,42 @@ +# translation of mod-mono debconf templates to French +# This file is licensed under the same license as the mod-mono package +# +# Copyright: Christian Perrier , 2006, 2007. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: mod-mono@packages.debian.org\n" +"POT-Creation-Date: 2009-07-16 15:24+0100\n" +"PO-Revision-Date: 2007-07-23 07:46+0200\n" +"Last-Translator: Christian Perrier \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +msgid "Mono server to use:" +msgstr "Serveur Mono à utiliser :" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +#, fuzzy +#| msgid "" +#| "The libapache2-mod-mono module can be used with one of two different Mono " +#| "ASP.NET backends:\n" +#| " - mod-mono-server : implements ASP.NET 1.1 features;\n" +#| " - mod-mono-server2: implements ASP.NET 2.0 features." +msgid "" +"The libapache2-mod-mono module can be used with one of two different Mono " +"ASP.NET backends:\n" +" - mod-mono-server1: implements ASP.NET 1.1 features;\n" +" - mod-mono-server2: implements ASP.NET 2.0 features." +msgstr "" +"Le module libapache2-mod-mono peut être utilisé avec deux modes différents " +"de gestion de ASP.NET :\n" +" - mod-mono-server1 : compatible avec ASP.NET 1.1 ;\n" +" - mod-mono-server2 : compatible avec ASP.NET 2.0." --- mod-mono-2.4.2.orig/debian/po/de.po +++ mod-mono-2.4.2/debian/po/de.po @@ -0,0 +1,55 @@ +# German translation of mod-mono templates +# Alwin Meschede , 2006. +# Helge Kreutzmann , 2007. +# This file is distributed under the same license as the mod-mono package. +# +msgid "" +msgstr "" +"Project-Id-Version: mod-mono 1.2.4-1\n" +"Report-Msgid-Bugs-To: mod-mono@packages.debian.org\n" +"POT-Creation-Date: 2009-07-16 15:24+0100\n" +"PO-Revision-Date: 2007-07-23 19:12+0200\n" +"Last-Translator: Helge Kreutzmann \n" +"Language-Team: german \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +msgid "Mono server to use:" +msgstr "Mono-Server, der verwendet werden soll:" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +#, fuzzy +#| msgid "" +#| "The libapache2-mod-mono module can be used with one of two different Mono " +#| "ASP.NET backends:\n" +#| " - mod-mono-server : implements ASP.NET 1.1 features;\n" +#| " - mod-mono-server2: implements ASP.NET 2.0 features." +msgid "" +"The libapache2-mod-mono module can be used with one of two different Mono " +"ASP.NET backends:\n" +" - mod-mono-server1: implements ASP.NET 1.1 features;\n" +" - mod-mono-server2: implements ASP.NET 2.0 features." +msgstr "" +"Das Modul libapache2-mod-mono kann mit einem von zwei verschiedenen Mono-ASP." +"NET-Backends verwendet werden:\n" +" - mod-mono-server1: implementiert ASP.NET 1.1-Funktionen;\n" +" - mod-mono-server2: implementiert ASP.NET 2.0-Funktionen." + +#~ msgid "Use mono-server:" +#~ msgstr "Verwende Mono-Server:" + +#~ msgid "Activate module?" +#~ msgstr "Modul aktivieren?" + +#~ msgid "If this is true, then the module will be activated as apache starts." +#~ msgstr "" +#~ "Falls Sie hier zustimmen, wird das Modul aktiviert wenn Apache gestartet " +#~ "wird." --- mod-mono-2.4.2.orig/debian/po/sv.po +++ mod-mono-2.4.2/debian/po/sv.po @@ -0,0 +1,45 @@ +# translation of mod-mono_sv.po to swedish +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Martin Bagge , 2008. +msgid "" +msgstr "" +"Project-Id-Version: mod-mono_sv\n" +"Report-Msgid-Bugs-To: mod-mono@packages.debian.org\n" +"POT-Creation-Date: 2009-07-16 15:24+0100\n" +"PO-Revision-Date: 2008-06-17 09:48+0200\n" +"Last-Translator: Martin Bagge \n" +"Language-Team: swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Swedish\n" +"X-Poedit-Country: SWEDEN\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +msgid "Mono server to use:" +msgstr "Välj mono-server:" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +#, fuzzy +#| msgid "" +#| "The libapache2-mod-mono module can be used with one of two different Mono " +#| "ASP.NET backends:\n" +#| " - mod-mono-server : implements ASP.NET 1.1 features;\n" +#| " - mod-mono-server2: implements ASP.NET 2.0 features." +msgid "" +"The libapache2-mod-mono module can be used with one of two different Mono " +"ASP.NET backends:\n" +" - mod-mono-server1: implements ASP.NET 1.1 features;\n" +" - mod-mono-server2: implements ASP.NET 2.0 features." +msgstr "" +"Modulen libapache2-mod-mono kan användas med två olika Mono ASP.NET-" +"motorer:\n" +" - mod-mono-server1: med funktioner i ASP.NET 1.1\n" +" - mod-mono-server2: med funktioner i ASP.NET 2.0" --- mod-mono-2.4.2.orig/debian/po/nl.po +++ mod-mono-2.4.2/debian/po/nl.po @@ -0,0 +1,51 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: mod-mono\n" +"Report-Msgid-Bugs-To: mod-mono@packages.debian.org\n" +"POT-Creation-Date: 2009-07-16 15:24+0100\n" +"PO-Revision-Date: 2007-07-31 09:29+0100\n" +"Last-Translator: Bart Cornelis \n" +"Language-Team: debian-l10n-dutch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Dutch\n" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +msgid "Mono server to use:" +msgstr "Te gebruiken mono-server:" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +#, fuzzy +#| msgid "" +#| "The libapache2-mod-mono module can be used with one of two different Mono " +#| "ASP.NET backends:\n" +#| " - mod-mono-server : implements ASP.NET 1.1 features;\n" +#| " - mod-mono-server2: implements ASP.NET 2.0 features." +msgid "" +"The libapache2-mod-mono module can be used with one of two different Mono " +"ASP.NET backends:\n" +" - mod-mono-server1: implements ASP.NET 1.1 features;\n" +" - mod-mono-server2: implements ASP.NET 2.0 features." +msgstr "" +"De module libapache2-mod-mono kan 2 verschillende Mono ASP.Net backends " +"gebruiken:\n" +" - mod-mono-server1: implementeert ASP.NET 1.1 features;\n" +" - mod-mono-server2: implementeert ASP.NET 2.0 features." + +#~ msgid "Activate module?" +#~ msgstr "Wilt u de module activeren?" + +#~ msgid "If this is true, then the module will be activated as apache starts." +#~ msgstr "" +#~ "Als u dit aanvaard wordt deze module geactiveerd wanneer apache gestart " +#~ "wordt." --- mod-mono-2.4.2.orig/debian/po/ta.po +++ mod-mono-2.4.2/debian/po/ta.po @@ -0,0 +1,43 @@ +# translation of modmono.po to TAMIL +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Dr.T.Vasudevan , 2007. +msgid "" +msgstr "" +"Project-Id-Version: modmono\n" +"Report-Msgid-Bugs-To: mod-mono@packages.debian.org\n" +"POT-Creation-Date: 2009-07-16 15:24+0100\n" +"PO-Revision-Date: 2007-07-23 21:34+0530\n" +"Last-Translator: Dr.T.Vasudevan \n" +"Language-Team: TAMIL \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +msgid "Mono server to use:" +msgstr "பயன்படுத்தவேண்டிய மோனோ சேவையகம்." + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +#, fuzzy +#| msgid "" +#| "The libapache2-mod-mono module can be used with one of two different Mono " +#| "ASP.NET backends:\n" +#| " - mod-mono-server : implements ASP.NET 1.1 features;\n" +#| " - mod-mono-server2: implements ASP.NET 2.0 features." +msgid "" +"The libapache2-mod-mono module can be used with one of two different Mono " +"ASP.NET backends:\n" +" - mod-mono-server1: implements ASP.NET 1.1 features;\n" +" - mod-mono-server2: implements ASP.NET 2.0 features." +msgstr "" +"libapache2-mod-mono கூறை இரண்டு வெவ்வேறு மோனோ ASP.NET பின்புலத்துடன் " +"பயன்படுத்தலாம்:\n" +" - mod-mono-server1: ASP.NET 1.1 சிறப்பு அம்சங்களை செயல்படுத்துகிறது.;\n" +" - mod-mono-server2: ASP.NET 2.0 சிறப்பு அம்சங்களை செயல்படுத்துகிறது.." --- mod-mono-2.4.2.orig/debian/po/eu.po +++ mod-mono-2.4.2/debian/po/eu.po @@ -0,0 +1,42 @@ +# translation of mod-mono to Euskara +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Piarres Beobide , 2007. +msgid "" +msgstr "" +"Project-Id-Version: mod-mono-debconf-templates\n" +"Report-Msgid-Bugs-To: mod-mono@packages.debian.org\n" +"POT-Creation-Date: 2009-07-16 15:24+0100\n" +"PO-Revision-Date: 2007-07-24 12:36+0200\n" +"Last-Translator: Piarres Beobide \n" +"Language-Team: Euskara \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +msgid "Mono server to use:" +msgstr "Erabili behar den mono zerbitzaria:" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +#, fuzzy +#| msgid "" +#| "The libapache2-mod-mono module can be used with one of two different Mono " +#| "ASP.NET backends:\n" +#| " - mod-mono-server : implements ASP.NET 1.1 features;\n" +#| " - mod-mono-server2: implements ASP.NET 2.0 features." +msgid "" +"The libapache2-mod-mono module can be used with one of two different Mono " +"ASP.NET backends:\n" +" - mod-mono-server1: implements ASP.NET 1.1 features;\n" +" - mod-mono-server2: implements ASP.NET 2.0 features." +msgstr "" +"libapache2-mod-mono modulua ASP.NET euskarri ezberdinekin erabili daiteke\n" +" - mod-mono-server1: ASP.NET 1.1 ezaugarriak inplementatzen ditu;\n" +" - mod-mono-server2: ASP.NET 2.0 ezaugarriak inplementatzen ditu." --- mod-mono-2.4.2.orig/debian/po/ja.po +++ mod-mono-2.4.2/debian/po/ja.po @@ -0,0 +1,41 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR Free Software Foundation, Inc. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: mod-mono\n" +"Report-Msgid-Bugs-To: mod-mono@packages.debian.org\n" +"POT-Creation-Date: 2009-07-16 15:24+0100\n" +"PO-Revision-Date: 2007-07-23 15:11+0900\n" +"Last-Translator: Kenshi Muto \n" +"Language-Team: Japanese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +msgid "Mono server to use:" +msgstr "利用する Mono サーバ:" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +#, fuzzy +#| msgid "" +#| "The libapache2-mod-mono module can be used with one of two different Mono " +#| "ASP.NET backends:\n" +#| " - mod-mono-server : implements ASP.NET 1.1 features;\n" +#| " - mod-mono-server2: implements ASP.NET 2.0 features." +msgid "" +"The libapache2-mod-mono module can be used with one of two different Mono " +"ASP.NET backends:\n" +" - mod-mono-server1: implements ASP.NET 1.1 features;\n" +" - mod-mono-server2: implements ASP.NET 2.0 features." +msgstr "" +"libapache2-mod-mono モジュールは 1 つまたは 2 つの異なる Mono ASP.NET バック" +"エンドと共に利用できます:\n" +" - mod-mono-server1: ASP.NET 1.1 機能の実装。\n" +" - mod-mono-server2: ASP.NET 2.0 機能の実装。" --- mod-mono-2.4.2.orig/debian/po/templates.pot +++ mod-mono-2.4.2/debian/po/templates.pot @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: mod-mono@packages.debian.org\n" +"POT-Creation-Date: 2009-07-16 15:24+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +msgid "Mono server to use:" +msgstr "" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +msgid "" +"The libapache2-mod-mono module can be used with one of two different Mono " +"ASP.NET backends:\n" +" - mod-mono-server1: implements ASP.NET 1.1 features;\n" +" - mod-mono-server2: implements ASP.NET 2.0 features." +msgstr "" --- mod-mono-2.4.2.orig/debian/po/es.po +++ mod-mono-2.4.2/debian/po/es.po @@ -0,0 +1,75 @@ +# mod-mono translation to spanish +# Copyright (C) 2007 Software in the Public Interest, SPI Inc. +# This file is distributed under the same license as the mod-mono package. +# +# Changes: +# - Initial translation +# Steve Lord Flaubert , 2007 +# +# +# Traductores, si no conoce el formato PO, merece la pena leer la +# documentación de gettext, especialmente las secciones dedicadas a este +# formato, por ejemplo ejecutando: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Equipo de traducción al español, por favor lean antes de traducir +# los siguientes documentos: +# +# - El proyecto de traducción de Debian al español +# http://www.debian.org/intl/spanish/ +# especialmente las notas y normas de traducción en +# http://www.debian.org/intl/spanish/notas +# +# - La guía de traducción de po's de debconf: +# /usr/share/doc/po-debconf/README-trans +# o http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Si tiene dudas o consultas sobre esta traducción consulte con el ltimo +# traductor (campo Last-Translator) y ponga en copia a la lista de +# traducción de Debian al español () +# +# +msgid "" +msgstr "" +"Project-Id-Version: mod-mono 1.2.1-1\n" +"Report-Msgid-Bugs-To: mod-mono@packages.debian.org\n" +"POT-Creation-Date: 2009-07-16 15:24+0100\n" +"PO-Revision-Date: 2007-08-01 14:54-0500\n" +"Last-Translator: Steve Lord Flaubert \n" +"Language-Team: Debian Spanish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +msgid "Mono server to use:" +msgstr "Servidor Mono a utilizar:" + +#. Type: select +#. Description +#: ../libapache2-mod-mono.templates:2001 +#, fuzzy +#| msgid "" +#| "The libapache2-mod-mono module can be used with one of two different Mono " +#| "ASP.NET backends:\n" +#| " - mod-mono-server : implements ASP.NET 1.1 features;\n" +#| " - mod-mono-server2: implements ASP.NET 2.0 features." +msgid "" +"The libapache2-mod-mono module can be used with one of two different Mono " +"ASP.NET backends:\n" +" - mod-mono-server1: implements ASP.NET 1.1 features;\n" +" - mod-mono-server2: implements ASP.NET 2.0 features." +msgstr "" +"El módulo «libapache2-mod-mono» puede utilizarse con uno de dos motores " +"distintos de ASP.NET:\n" +" - «mod-mono-server1»: Implementa funcionalidades de ASP.NET 1.1;\n" +" - «mod-mono-server2»: Implementa funcionalidades de ASP.NET 2.0." + +#~ msgid "Activate module?" +#~ msgstr "¿Desea activar el módulo?" + +#~ msgid "If this is true, then the module will be activated as apache starts." +#~ msgstr "Si está activado, el módulo se activará al inicio de apache."