.
This parser enables SOPE's SAX engine to parse iCal and vCard files.
-Package: libapache-mod-ngobjweb
-Section: web
-Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, ucf (>= 0.8), apache-common (>= 1.3.29)
-Description: Apache module for the SOPE application server
- This package contains an apache module which enables the apache
- webserver to deliver pages generated by the SOPE application server.
-
Package: libapache2-mod-ngobjweb
Section: web
Architecture: any
.
This parser enables SOPE's SAX engine to parse iCal and vCard files.
-Package: libapache-mod-ngobjweb
-Section: web
-Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, ucf (>= 0.8), apache-common (>= 1.3.29)
-Description: Apache module for the SOPE application server
- This package contains an apache module which enables the apache
- webserver to deliver pages generated by the SOPE application server.
-
Package: libapache2-mod-ngobjweb
Section: web
Architecture: any
+++ /dev/null
-usr/lib/apache/1.3
+++ /dev/null
-usr/lib/apache
+++ /dev/null
-#!/bin/bash
-
-set -e
-
-for i in apache apache-perl apache-ssl; do
- if [ -e /etc/$i/httpd.conf ]; then
- modules-config $i enable mod_ngobjweb
- fi
- if [ -d /etc/$i/conf.d ]; then
- ucf --purge /etc/$i/conf.d/mod_ngobjweb
- fi
- if [ -x /usr/sbin/invoke-rc.d ] && [ -x /etc/init.d/$i ]; then
- invoke-rc.d $i force-reload || true
- elif [ -x /etc/init.d/$i ]; then
- /etc/init.d/$i force-reload || true
- fi
-done
-
-
-#DEBHELPER#
+++ /dev/null
-#!/bin/bash
-
-set -e
-
-case "$1" in
- purge)
- for i in apache apache-perl apache-ssl; do
- rm -f /etc/$i/conf.d/mod_ngobjweb
- for ext in .dpkg-tmp .dpkg-new .dpkg-old .dpkg-dist; do
- rm -f /etc/$i/conf.d/mod_ngobjweb$ext
- done
- ucf --purge /etc/$i/conf.d/mod_ngobjweb
- done
- ;;
- *)
- ;;
-esac
-
-#DEBHELPER#
+++ /dev/null
-#!/bin/bash
-
-set -e
-
-for i in apache apache-perl apache-ssl; do
- if [ -e /etc/$i/httpd.conf ]; then
- modules-config $i disable mod_ngobjweb quiet
- fi
- if [ -x /usr/sbin/invoke-rc.d ] && [ -x /etc/init.d/$i ]; then
- invoke-rc.d $i force-reload || true
- elif [ -x /etc/init.d/$i ]; then
- /etc/init.d/$i force-reload || true
- fi
-done
-
-#DEBHELPER#