[Cdd-commits] r298 - in projects/med/trunk: debian install install/dent

Andreas Tille debian-custom@lists.debian.org
Fri, 17 Sep 2004 00:27:17 -0600


Author: tille
Date: Fri Sep 17 00:27:17 2004
New Revision: 298

Added:
   projects/med/trunk/install/
   projects/med/trunk/install/dent/
   projects/med/trunk/install/dent/dentalpractice   (contents, props changed)
   projects/med/trunk/install/dent/dentalpractice.1
Modified:
   projects/med/trunk/debian/changelog
Log:
Merged debian directory and new install directory from 0.8.9


Modified: projects/med/trunk/debian/changelog
==============================================================================
--- projects/med/trunk/debian/changelog	(original)
+++ projects/med/trunk/debian/changelog	Fri Sep 17 00:27:17 2004
@@ -1,9 +1,9 @@
-debian-med (0.8.4) experimental; urgency=low
+debian-med (0.8.9) experimental; urgency=low
 
   * New upstream version which now uses the features of cdd-dev 0.3.9
   * Exclude .svn dirs in dist target of debian/rules
 
- -- Andreas Tille <tille@debian.org>  Thu, 15 Jul 2004 11:34:20 +0200
+ -- Andreas Tille <tille@debian.org>  Fri, 16 Jul 2004 11:33:21 +0200
 
 debian-med (0.8.3) unstable; urgency=high
 

Added: projects/med/trunk/install/dent/dentalpractice
==============================================================================
--- (empty file)
+++ projects/med/trunk/install/dent/dentalpractice	Fri Sep 17 00:27:17 2004
@@ -0,0 +1,19 @@
+#!/bin/sh
+CFGDIR=/etc/cdd/med/tasks/dent/
+CFG=${CFGDIR}/odontolinux.conf
+
+if [ ! -d "$CFGDIR" ] ; then
+    echo "Config directory "$CFGDIR" is missing."
+    exit -1
+fi
+
+if [ ! -e "$CFG" ] ; then
+    echo "Config file "$CFG" is missing."
+    exit -1
+fi
+
+. $CFG
+
+URL=http://"${SERVER:-localhost}"/odontolinux/index.php
+
+sensible-browser "$URL"

Added: projects/med/trunk/install/dent/dentalpractice.1
==============================================================================
--- (empty file)
+++ projects/med/trunk/install/dent/dentalpractice.1	Fri Sep 17 00:27:17 2004
@@ -0,0 +1,14 @@
+.TH dentalpractice 1 "May 24, 2002" "Debian-Med"
+.SH NAME
+.B dentalpractice
+\- call web browser pointing to Odontolinux! server
+
+.SH SYNOPSIS
+.B dentalpractice
+
+.SH DESCRIPTION
+Call the prefered browser and point the user directly to the configured
+server of the Odontolinux! dental practice management system.
+
+.SH AUTHOR
+Andreas Tille <tille@debian.org>.