Commit Graph

18235 Commits

Author SHA1 Message Date
tomas 36c1074779 #886 realname, lastlogin, lastfail fields added for users. 2005-04-29 00:54:20 +00:00
sebastian bf52970576 *** empty log message *** 2005-04-28 16:41:13 +00:00
fgerlits 95deecc9a4 added "add to live mode" functionality in search window;
some cosmetic changes (made tree view column default widths wider)
2005-04-28 16:22:29 +00:00
sebastian 3bfbf614a3 *** empty log message *** 2005-04-28 16:00:04 +00:00
fgerlits 1f0539a1d8 added first version of Live Mode window 2005-04-28 15:54:30 +00:00
maroy df15345907 made unique id 63 bits, so that signed 64 bit containers can hold it 2005-04-28 15:01:33 +00:00
maroy 0520d5b516 added UUID object, and updated UniqueId to generate a 64 bit id
based one a UUID
2005-04-28 14:36:00 +00:00
fgerlits 3d3006bdcc removed tests for deletePlaylist and deleteAudioClip
might put them back after I learn how the new versions work
2005-04-28 10:52:51 +00:00
fgerlits f789ade91a updated xml metadata namespace URLs (removed streamonthefly references) 2005-04-28 10:25:05 +00:00
maroy 6fb2474242 added desktop icon support (thanks to Michael Aschauer) 2005-04-28 08:22:47 +00:00
maroy 49af6fd727 moved non-public API members from MetadaType to protected 2005-04-28 07:16:07 +00:00
tomas 0ddee7f09a obsolete example dir removed 2005-04-28 00:54:56 +00:00
tomas 89e9be4041 obsolete example directory 2005-04-28 00:52:16 +00:00
tomas 71f930feef minor changes 2005-04-28 00:45:34 +00:00
tomas ecf5284a5c Delete operation replaced by moving to trash.
+ #887 feature added
+ #885 fixed
2005-04-27 23:59:50 +00:00
fgerlits c153560ab9 updated SearchCriteriaTest to reflect changed file type default ("all"
instead of "audioClip")
2005-04-27 18:57:46 +00:00
fgerlits aac3ce4d28 fixed the "child->parent == NULL assertion failed" bug 2005-04-27 18:44:15 +00:00
maroy 2aea2785ca added MetadataType and MetadataTypeContainer classes
solution for issue #877, see http://bugs.campware.org/view.php?id=877
2005-04-27 17:39:51 +00:00
fgerlits a7b1bac0a2 created context menu for Search window;
improved context menu for Scratchpad (right click selects row now)
2005-04-27 16:39:05 +00:00
sebastian e5120cbf0b *** empty log message *** 2005-04-27 16:34:33 +00:00
tomas 10421b1a46 Removed obsolete test files. 2005-04-27 14:17:17 +00:00
tomas eb9220a6dc 'playlength' attribute of playlist changed to 'implied' variant. 2005-04-27 13:35:39 +00:00
sebastian 61e1d47c97 User management implemented 2005-04-27 13:26:09 +00:00
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