Index: ossp-pkg/as/as-gui/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/ChangeLog,v co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/as/as-gui/ChangeLog,v' | diff -u /dev/null - -L'ossp-pkg/as/as-gui/ChangeLog' 2>/dev/null --- ossp-pkg/as/as-gui/ChangeLog +++ - 2026-06-14 01:55:05.389832718 +0200 @@ -0,0 +1,3 @@ +Geschichte des OSSP titraq in Vorwaerts Cronordnung + +020527 Projekt Erzeugung Index: ossp-pkg/as/as-gui/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/ChangeLog,v rcsdiff -q -kk '-r1.1' '-r1.1.1.1' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/ChangeLog,v' 2>/dev/null Index: ossp-pkg/as/as-gui/Makefile.in RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/Makefile.in,v co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/as/as-gui/Makefile.in,v' | diff -u /dev/null - -L'ossp-pkg/as/as-gui/Makefile.in' 2>/dev/null --- ossp-pkg/as/as-gui/Makefile.in +++ - 2026-06-14 01:55:05.396781628 +0200 @@ -0,0 +1,150 @@ +## +## OSSP titraq - Graphical user interface for time accounting +## Copyright (c) 2002 Cable & Wireless Deutschland GmbH +## Copyright (c) 2002 The OSSP Project +## Copyright (c) 2002 Ralf S. Engelschall +## +## This file is part of OSSP GUI, a graphical user interface +## for OSSP which can be found at http://www.ossp.org/ +## +## Permission to use, copy, modify, and distribute this software for +## any purpose with or without fee is hereby granted, provided that +## the above copyright notice and this permission notice appear in all +## copies. +## +## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED +## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR +## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT +## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +## SUCH DAMAGE. +## +## Makefile.in: Plain old documentation file +## + +@SET_MAKE@ + +DESTDIR = +prefix = @prefix@ +exec_prefix = @exec_prefix@ +bindir = @bindir@ +sbindir = @sbindir@ +libdir = @libdir@ +includedir = @includedir@ +mandir = @mandir@ + +CC = @CC@ +CXX = @CXX@ +CFLAGS = @CFLAGS@ @DEFS@ +CXXFLAGS = @CXXFLAGS@ @DEFS@ +CPPFLAGS = @CPPFLAGS@ +CXXCPP = @CXXCPP@ +LDFLAGS = @LDFLAGS@ +LIBS = @LIBS@ + +# Qt-specific variables +QTBASE = @QTBASE@ +UIC = @UIC@ +MOC = @MOC@ + +RM = rm -f +STRIP = strip +CHMOD = chmod +RMDIR = rmdir +SHTOOL = ./shtool +POD2MAN = pod2man +TRUE = true + +PROG_NAME = titraq + +TARGET = $(TARGET_PROGS) $(TARGET_MANS) +TARGET_PROGS = titraq +TARGET_MANS = titraq.1 titraq.conf.5 + +SRCS = main.cpp titraq.cpp titraq_version.c + +OBJS = main.o titraq.o titraq_version.o + +# Qt meta object compiler +MOC_IN = titraq.h +MOC_OUT = moc_titraq.cpp +MOC_OBJ = moc_titraq.o + +.SUFFIXES: +.SUFFIXES: .c .cc .cpp .cxx .o +.c.o: + $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $< + +.cc.o: + $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $< + +.cpp.o: + $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $< + +.cxx.o: + $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $< + +all: Makefile $(TARGET) + +$(PROG_NAME): $(OBJS) $(MOC_OBJ) + $(CXX) $(LDFLAGS) -o $@ $+ $(LIBS) + +$(MOC_OBJ): $(MOC_OUT) $(MOC_IN) + $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(MOC_OUT) + +$(MOC_OUT): $(MOC) $(MOC_IN) + $(MOC) $(MOC_IN) -o $(MOC_OUT) + +titraq.1: titraq.pod + VS=`$(SHTOOL) version -lc -dshort titraq_version.c`; \ + VL=`$(SHTOOL) version -lc -dlong titraq_version.c`; \ + $(POD2MAN) --section=5 --center="Graphical user interface" \ + --release="$$VS" --date="$$VL" \ + titraq.pod >titraq.1 + +titraq.conf.5: titraq.conf.pod + VS=`$(SHTOOL) version -lc -dshort titraq_version.c`; \ + VL=`$(SHTOOL) version -lc -dlong titraq_version.c`; \ + $(POD2MAN) --section=5 --center="Graphical user interface config file" \ + --release="$$VS" --date="$$VL" \ + titraq.conf.pod >titraq.conf.5 + +install: + $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(prefix) + $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(bindir) + $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(mandir)/man1 + $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(mandir)/man5 + $(SHTOOL) install -c -m 644 titraq $(DESTDIR)$(bindir)/titraq + $(SHTOOL) install -c -m 644 titraq.1 $(DESTDIR)$(mandir)/man1/titraq.1 + $(SHTOOL) install -c -m 644 titraq.conf.5 $(DESTDIR)$(mandir)/man5/titraq.conf.5 + +uninstall: + $(RM) $(DESTDIR)$(bindir)/titraq + $(RM) $(DESTDIR)$(mandir)/man1/titraq.1 + $(RM) $(DESTDIR)$(mandir)/man5/titraq.conf.5 + +clean: + $(RM) $(TARGET) $(OBJS) $(MOC_OBJ) $(PROG_NAME).core titraq_pcre.tab + +distclean: clean + $(RM) config.log config.status config.cache # Generated by ./configure + $(RM) Makefile ac_config.h # Generated by ./configure + $(RM) $(MOC_OUT) # Generated by $(MOC) + +realclean: distclean + $(RM) configure ac_config.h.in* # Generated by Autoconf + $(RM) configure.lineno # Generated by Autoconf + $(RM) shtool # Generated by Devtool + +check: test +test: titraq + $(CHMOD) 755 titraq_test.sh > /dev/null 2>&1 + ./titraq_test.sh + +.PHONY: install uninstall clean distclean realclean check test Index: ossp-pkg/as/as-gui/Makefile.in RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/Makefile.in,v rcsdiff -q -kk '-r1.1' '-r1.1.1.1' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/Makefile.in,v' 2>/dev/null Index: ossp-pkg/as/as-gui/README RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/README,v co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/as/as-gui/README,v' | diff -u /dev/null - -L'ossp-pkg/as/as-gui/README' 2>/dev/null Index: ossp-pkg/as/as-gui/README RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/README,v rcsdiff -q -kk '-r1.1' '-r1.1.1.1' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/README,v' 2>/dev/null Index: ossp-pkg/as/as-gui/TODO RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/TODO,v co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/as/as-gui/TODO,v' | diff -u /dev/null - -L'ossp-pkg/as/as-gui/TODO' 2>/dev/null --- ossp-pkg/as/as-gui/TODO +++ - 2026-06-14 01:55:05.410450742 +0200 @@ -0,0 +1,69 @@ + *************************************** + * * + * TODO: OSSP titraq Specification * + * * + *************************************** + +Consider +-------- + +Must do +------- + +Dreams +------ + +Document +-------- + +Project plan +------------ + Prototype + Release v0.8 Milestone 1, Alpha + Release v0.9 Milestone 2, Beta + Release v1.0 Milestone 3, + Release v1.2 Milestone 4, + +Requirements +------------ + +Deliverables +------------ + Binaries + titraq Verwendung + + Designdocs + titraq_design.ps Systemdiagramme + + Manpage + titraq.1 Hauptinfo + titraq.conf.5 Beschreibung des Configdatei + + Geliefert + titraq.conf Ausgekommentet Beispieldatei + +Pseudocode +---------- + parse command line + parse titraq.conf file + show control window + +Test case +--------- + Pre: + tar zxvf titraq-0.9.tar + cd titraq-0.9 + ./configure + make + su + make install + + Assume: + OS has Qt 3.0.5 or newer multithreaded library + + Begin: + $ titraq + + Output: + Post: + Procedure: Index: ossp-pkg/as/as-gui/TODO RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/TODO,v rcsdiff -q -kk '-r1.1' '-r1.1.1.1' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/TODO,v' 2>/dev/null Index: ossp-pkg/as/as-gui/aclocal.m4 RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/aclocal.m4,v co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/as/as-gui/aclocal.m4,v' | diff -u /dev/null - -L'ossp-pkg/as/as-gui/aclocal.m4' 2>/dev/null --- ossp-pkg/as/as-gui/aclocal.m4 +++ - 2026-06-14 01:55:05.417786455 +0200 @@ -0,0 +1,419 @@ +## +## OSSP titraq - Graphical user interface for time accounting +## Copyright (c) 2002 Cable & Wireless Deutschland GmbH +## Copyright (c) 2002 The OSSP Project +## Copyright (c) 2002 Ralf S. Engelschall +## +## This file is part of OSSP GUI, a graphical user interface +## for OSSP which can be found at http://www.ossp.org/ +## +## Permission to use, copy, modify, and distribute this software for +## any purpose with or without fee is hereby granted, provided that +## the above copyright notice and this permission notice appear in all +## copies. +## +## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED +## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR +## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT +## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +## SUCH DAMAGE. +## +## aclocal.m4: Plain old documentation file +## + + +dnl ## +dnl ## Support for Platform IDs +dnl ## +dnl ## configure.in: +dnl ## AC_PLATFORM() +dnl ## + +AC_DEFUN(AC_PLATFORM,[ +if test ".$host" != .NONE && test ".$host" != .; then + $1="$host" +else + $1=`${CONFIG_SHELL-/bin/sh} $srcdir/config.guess` +fi +$1=`${CONFIG_SHELL-/bin/sh} $srcdir/config.sub $$1` || exit 1 +AC_SUBST($1) +if test ".$enable_subdir" != .yes; then + echo "Platform: ${TB}${$1}${TN}" +fi +])dnl + + +dnl ## +dnl ## Support for Configuration Headers +dnl ## +dnl ## configure.in: +dnl ## AC_HEADLINE(, , +dnl ## , , +dnl ## ) +dnl ## + +AC_DEFUN(AC_HEADLINE,[dnl +# configuration header +if test ".`echo dummy [$]@ | grep help`" = .; then + # bootstrapping shtool + ac_prog=[$]0 +changequote(, )dnl + ac_srcdir=`echo $ac_prog | sed -e 's%/[^/][^/]*$%%' -e 's%\([^/]\)/*$%\1%'` +changequote([, ])dnl + test ".$ac_srcdir" = ".$ac_prog" && ac_srcdir=. + ac_shtool="$ac_srcdir/shtool" + + # find out terminal sequences + TB=`$ac_shtool echo -n -e %B 2>/dev/null` + TN=`$ac_shtool echo -n -e %b 2>/dev/null` + + # find out package version + $3_STR="`$ac_shtool version -l c -d long $ac_srcdir/$4`" + AC_SUBST($3_STR) + + # friendly header ;) + if test ".$enable_headline" != .no; then + echo "Configuring ${TB}$1${TN} ($2), Version ${TB}${$3_STR}${TN}" + echo "$5" + fi + + # additionally find out hex version + $3_HEX="`$ac_shtool version -l c -d hex $ac_srcdir/$4`" + AC_SUBST($3_HEX) +fi +])dnl + + +dnl ## +dnl ## Check whether compiler option works +dnl ## +dnl ## configure.in: +dnl ## AC_COMPILER_OPTION(, ,