Commit Graph

2512 Commits

Author SHA1 Message Date
maroy 867faadb9a changed the distclean target to remove module and product setup stamps
and also the compile stamp. this makes the recompile target do a real
recompile
2005-04-27 09:53:12 +00:00
maroy 7fb9e8e3e6 fixed master panel window button localization
fix for issue #878, see http://bugs.campware.org/view.php?id=878
2005-04-27 09:43:27 +00:00
maroy 6cb75058f0 don't care if the livesupport-station service can not be added to
the default runlevel, or can not be started...
2005-04-27 09:36:19 +00:00
tomas fe42c9bd83 PHP PosgreSQL extension presence test added. 2005-04-26 20:22:30 +00:00
fgerlits 0961105d65 changed the window spacing a bit 2005-04-26 17:36:19 +00:00
fgerlits afb16ee5dd added browse tab to the Search window 2005-04-26 16:52:04 +00:00
tomas 4749cd5c81 Prepared for safe delete. 2005-04-26 15:29:04 +00:00
tomas 5e776c527c Error handling fixed. 2005-04-26 14:09:09 +00:00
fberckel 3c23f030a0 #!/bin/sh
#-------------------------------------------------------------------------------
#   Copyright (c) 2004 Media Development Loan Fund
#
#   This file is part of the LiveSupport project.
#   http://livesupport.campware.org/
#   To report bugs, send an e-mail to bugs@campware.org
#
#   LiveSupport 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 of the License, or
#   (at your option) any later version.
#
#   LiveSupport 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 LiveSupport; if not, write to the Free Software
#   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
#
#
#   Author   : $Author: fberckel $
#   Version  : $Revision: 1.2 $
#   Location : $Source: /home/cvs/livesupport/bin/startMakeRecompile.sh,v $
#-------------------------------------------------------------------------------

#-------------------------------------------------------------------------------
# This script runs cvs to update the LiveSupport source code and starts
# the recompile process.
#-------------------------------------------------------------------------------

reldir=`dirname $0`/..
basedir=`cd $reldir; pwd;`
bindir=$basedir/bin
docdir=$basedir/doc
tmpdir=$basedir/tmp
logdir=$basedir/tmp
export PATH=~/bin:$PATH

echo "";
echo "The source code will be updated and the recompile process";
echo "will be started. All steps are being logged within the log";
echo "directory $logdir";
echo "";
echo "Are you certainly of ran ./configure first !";
echo "";

cd $bindir/..
cvs update -dP >& $logdir/cvs_before_setup.log
ls -l $logdir/cvs_before_setup.log >> $logdir/cvs_before_setup.log
echo "Compare with cvs is be done, cvs_before_setup.log is created"
make distclean >& $logdir/distclean_before_setup.log
ls -l $logdir/distclean_before_setup.log >> $logdir/distclean_before_setup.log
echo "Cleaning the setup is be done, distclean_before_setup.log is created"
#make tools_setup >& $logdir/tools_setup.log
#ls -l $logdir/tools_setup.log >> $logdir/tools_setup.log
#echo "Done Tools Setup, tools_setup.log is created"
echo "Skipping Tools, remove # for recompiling tools";
echo "Now Configure ..."
make modules_setup >& $logdir/modules_setup.log
ls -l $logdir/modules_setup.log >> $logdir/modules_setup.log
echo "Configure the Modules is be done, modules_setup.log is created"
make products_setup >& $logdir/products_setup.log
ls -l $logdir/products_setup.log >> $logdir/products_setup.log
echo "Configure the Products is be done, products_setup.log is created";
echo "Now Recompiling ..."
make compile >& $logdir/compile.log
ls -l $logdir/compile.log >> $logdir/compile.log
echo "Compiling is be done, compile.log is created";
echo "Now checking ..."
make check >& $logdir/check.log
ls -l $logdir/check.log >> $logdir/check.log
echo "Checking is be done, check.log is created";
echo ""
2005-04-26 14:00:31 +00:00
maroy d05a992551 all windows but the master panel are destroyed at logout
fix for issue #878, see http://bugs.campware.org/view.php?id=878
2005-04-26 13:17:48 +00:00
maroy 84523cbda1 changed section: field to sound 2005-04-26 12:10:12 +00:00
fgerlits da57a326cd added BrowseItem class;
moved "zebra striping" from separate function to addColumn()
2005-04-26 09:19:26 +00:00
fgerlits 27b7e34dde added browse() function to WebStorageClient 2005-04-25 14:51:10 +00:00
fgerlits 79caff8787 added multiple input lines in advanced search 2005-04-25 11:09:22 +00:00
sebastian 51da1904c7 *** empty log message *** 2005-04-24 19:26:09 +00:00
fgerlits 3b2b457e3f made SearchConditionType public 2005-04-24 12:51:56 +00:00
maroy de3c9925c1 making fixes to the installation and Debian package creation 2005-04-23 09:51:00 +00:00
tomas ba93af0d0c #857 Thanks - fixed handling empty elements. 2005-04-22 21:34:48 +00:00
maroy 366d29a86e changes to the debian source package creating tools 2005-04-22 16:46:16 +00:00
tomas a3e3d6bcfd #511, #858 forgotten commit 2005-04-22 15:13:27 +00:00
fberckel 2d1105ab0f Updated for ./configure with autogen.sh 2005-04-22 14:19:04 +00:00
tomas c37bf68451 #511 fixed call to redefined method 2005-04-22 13:43:29 +00:00
fgerlits a642c0d6df added "close all open windows" command to Logout button signal handler 2005-04-22 13:42:28 +00:00
tomas 18f08574a3 #511 fixed 2005-04-22 13:37:16 +00:00
maroy fd5903d582 minor changes 2005-04-22 13:33:09 +00:00
maroy cfb2413adf added possibility to specify debian version
added checks for commands used by the script
2005-04-22 13:31:17 +00:00
maroy c1de86079a made sure livesupport-station service stop and kill commands don't
stop the process, even if they fail
2005-04-22 13:21:55 +00:00
maroy 36e7ec2d8d replaced generic x-window package dependency with xlibs 2005-04-22 13:13:27 +00:00
maroy bd185d17d8 updated documentation and scripts to reflect master autoconf 2005-04-22 13:08:55 +00:00
maroy cde23c4f0d updated gLiveSupport install to include missing localized resource
and widget image files
2005-04-22 12:44:06 +00:00
maroy 55dae353cf updated documentation to reflect changes in the development environment 2005-04-22 12:22:00 +00:00
fgerlits 9c80af5a1d added simple search;
added localization support for advanced search
2005-04-22 12:10:54 +00:00
maroy 3b4075edec added main configure helper script 2005-04-22 11:59:39 +00:00
maroy a14cecc8b0 made master build environment to autoconf-based
added debian package creation scripts
2005-04-22 11:56:56 +00:00
sebastian f9ec998d96 *** empty log message *** 2005-04-22 10:04:19 +00:00
tomas 1b211176e8 minor change 2005-04-22 00:16:45 +00:00
fgerlits 4c19a1c60f added search functionality;
fixed bug in Playable::getMetadata;
added doxygen tag file generation in main doxygen.config file;
fixed silly bug in ZebraTreeView::cellDataFunction
2005-04-21 15:51:35 +00:00
maroy 4763ea6e2c removed 'underquoted definition of PKG_CHECK_MODULES' warnings for
aclocal >= 1.8
2005-04-21 07:13:41 +00:00
fgerlits 0fc4dd64d6 moved SearchCriteria from Storage to Core;
added get_text() function to Widgets/EntryBin;
moved advanced search input box to Widgets;
added (first, testing) functionality to search button in advanced search
2005-04-20 14:36:54 +00:00
sebastian 212f97ea93 *** empty log message *** 2005-04-20 13:48:31 +00:00
sebastian 9126d82bd2 *** empty log message *** 2005-04-20 13:35:06 +00:00
maroy 84cd995e69 the EventScheduler (and thus PlaylistEvents) recieved a null sessionId,
making them fail on scheduled execution. fix for issues #809 and #831
see http://bugs.campware.org/view.php?id=809
and http://bugs.campware.org/view.php?id=831
2005-04-20 07:18:03 +00:00
maroy 9848eefbe7 made scheduled event more fault tolerant 2005-04-20 07:16:46 +00:00
tomas db4f5da722 #832 Elements names in playlists are now considered case sensitive. 2005-04-19 22:15:20 +00:00
fgerlits 49c6517346 added more descriptive error message to LocalizedObject::getResourceUstring();
added exit() statements to catch blocks where getting resource failed
2005-04-19 19:18:25 +00:00
fgerlits 27b8a27807 added first version of advanced search window to the GUI 2005-04-19 14:41:16 +00:00
fgerlits c87ffbf5a0 added SearchWindow source files 2005-04-19 09:15:57 +00:00
fgerlits 782617cd74 added (so far, empty) Search window 2005-04-19 08:28:38 +00:00
maroy e8adb2ad08 added getVersion() functions to AuthenticationClientInterface and
StorageClientInterface
added checking for auth and storage availability on gLiveSupport startup
as a result of the new XML-RPC getVersion function in PHP auth and storage
see http://bugs.campware.org/view.php?id=826
2005-04-18 10:36:43 +00:00
tomas 49ae0015da #826 - Method locstor.getVersion added to XMLRPC interface. 2005-04-17 19:10:40 +00:00