From 76aa698a25372b6718b1b7b9f45459a12303e941 Mon Sep 17 00:00:00 2001 From: fgerlits Date: Mon, 16 Oct 2006 19:30:26 +0000 Subject: [PATCH] more search-and-replace --- livesupport/CREDITS | 6 +-- livesupport/etc/Makefile.in | 10 ++--- livesupport/etc/configure.ac | 40 +++++++++--------- livesupport/etc/doxygen.config | 4 +- livesupport/etc/pg_hba.conf | 4 +- livesupport/etc/testResultToHtml.xsl | 6 +-- .../authentication/bin/gen_coverage_data.sh | 2 +- .../src/modules/core/bin/gen_coverage_data.sh | 2 +- .../src/modules/db/bin/gen_coverage_data.sh | 2 +- .../eventScheduler/bin/gen_coverage_data.sh | 2 +- .../bin/gen_coverage_data.sh | 2 +- .../playlistExecutor/bin/gen_coverage_data.sh | 2 +- .../schedulerClient/bin/gen_coverage_data.sh | 2 +- .../storageClient/bin/gen_coverage_data.sh | 2 +- .../src/products/gLiveSupport/bin/autogen.sh | 2 +- .../{gLiveSupport.sh => campcaster-studio.sh} | 0 ..._devenv.sh => campcaster-studio_devenv.sh} | 0 .../gLiveSupport/bin/gen_coverage_data.sh | 2 +- .../var/{livesupport.png => campcaster.png} | Bin 19 files changed, 45 insertions(+), 45 deletions(-) rename livesupport/src/products/gLiveSupport/bin/{gLiveSupport.sh => campcaster-studio.sh} (100%) rename livesupport/src/products/gLiveSupport/bin/{gLiveSupport_devenv.sh => campcaster-studio_devenv.sh} (100%) rename livesupport/src/products/gLiveSupport/var/{livesupport.png => campcaster.png} (100%) diff --git a/livesupport/CREDITS b/livesupport/CREDITS index 0de1b02ab..4d345a6fa 100644 --- a/livesupport/CREDITS +++ b/livesupport/CREDITS @@ -1,8 +1,8 @@ Version 1.1 ----------- Ferenc Gerlits -Akos Maroy -Janos Csikos +Ákos Maróy +János Csikós Mark Kretschmann Ian Monroe Mugur Rus @@ -10,7 +10,7 @@ Tomáš Hlava Version 1.0 ----------- -Akos Maroy +Ákos Maróy Ferenc Gerlits Sebastian Göbel Tomáš Hlava diff --git a/livesupport/etc/Makefile.in b/livesupport/etc/Makefile.in index 7438f64c2..ee5eede2f 100644 --- a/livesupport/etc/Makefile.in +++ b/livesupport/etc/Makefile.in @@ -160,7 +160,7 @@ GLIVESUPPORT_EXE = ${GLIVESUPPORT_DIR}/tmp/gLiveSupport all: setup compile help: - ${ECHO} "LiveSupport project main Makefile" + ${ECHO} "Campcaster project main Makefile" ${ECHO} "http://campcaster.campware.org/" ${ECHO} "Copyright (c) 2004 Media Development Loan Fund under the GNU GPL" ${ECHO} "" @@ -315,10 +315,10 @@ ${TMP_DIR}/modules_setup.stamp: --with-apache-group=${APACHE_GROUP} \ --with-www-docroot=${WWW_DOCROOT} \ --with-configure-apache=${CONFIGURE_APACHE} \ - --with-storage-server=${prefix}/var/LiveSupport/storageServer + --with-storage-server=${prefix}/var/Campcaster/storageServer cd ${STORAGE_ADMIN_DIR} && ./configure --prefix=${prefix} \ - --with-storage-server=${prefix}/var/LiveSupport/storageServer \ - --with-phppart-dir=${prefix}/var/LiveSupport/storageAdmin + --with-storage-server=${prefix}/var/Campcaster/storageServer \ + --with-phppart-dir=${prefix}/var/Campcaster/storageAdmin cd ${STORAGE_SERVER_DIR} && \ ./configure --prefix=${prefix} \ --with-apache-group=${APACHE_GROUP} \ @@ -468,7 +468,7 @@ install: setup compile setup_install_dirs create_database install_modules instal ${CP} ${ETC_DIR}/apache/*.conf ${USR_ETC_DIR}/apache ${MKDIR} ${USR_BIN_DIR} ${CP} ${BIN_DIR}/postInstallStation.sh ${USR_BIN_DIR} - ${CP} ${BIN_DIR}/livesupport-station ${USR_BIN_DIR} + ${CP} ${BIN_DIR}/campcaster-station ${USR_BIN_DIR} ${CP} ${ETC_DIR}/pg_hba.conf ${USR_ETC_DIR} create_database: diff --git a/livesupport/etc/configure.ac b/livesupport/etc/configure.ac index 4ddf97023..c446ea61f 100644 --- a/livesupport/etc/configure.ac +++ b/livesupport/etc/configure.ac @@ -32,7 +32,7 @@ dnl This is due to the fact that configure spreads a lot of trash around, dnl like atom4te cache directories, config.* files, etc. into the directory dnl it is being run from. We clearly don't want these in our base directory. dnl----------------------------------------------------------------------------- -AC_INIT(LiveSupport, 1.0, bugs@campware.org) +AC_INIT(Campcaster, 1.0, bugs@campware.org) AC_PREREQ(2.59) AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL]) AC_REVISION($Revision$) @@ -57,18 +57,18 @@ AC_MSG_RESULT([compiling with debug info: ${DEBUG}]) dnl----------------------------------------------------------------------------- -dnl specify whether the LiveSupport database and user should be created +dnl specify whether the Campcaster database and user should be created dnl----------------------------------------------------------------------------- AC_SUBST(CREATE_LS_DATABASE) AC_ARG_WITH([create-database], AC_HELP_STRING([--with-create-database], - [specify whether the LiveSupport database and database user + [specify whether the Campcaster database and database user should be created (no)]), [CREATE_LS_DATABASE=${withval}], [CREATE_LS_DATABASE=no]) -AC_MSG_RESULT([creating LiveSupport database: ${CREATE_LS_DATABASE}]) +AC_MSG_RESULT([creating Campcaster database: ${CREATE_LS_DATABASE}]) dnl----------------------------------------------------------------------------- @@ -78,7 +78,7 @@ AC_SUBST(CREATE_ODBC_DATA_SOURCE) AC_ARG_WITH([create-odbc-data-source], AC_HELP_STRING([--with-create-odbc-data-source], - [specify whether the ODBC data source for LiveSupport should be + [specify whether the ODBC data source for Campcaster should be created (no)]), [CREATE_ODBC_DATA_SOURCE=${withval}], [CREATE_ODBC_DATA_SOURCE=no]) @@ -87,18 +87,18 @@ AC_MSG_RESULT([creating ODBC data source: ${CREATE_ODBC_DATA_SOURCE}]) dnl----------------------------------------------------------------------------- -dnl specify whether the LiveSupport database tables should be initialized +dnl specify whether the Campcaster database tables should be initialized dnl----------------------------------------------------------------------------- AC_SUBST(INIT_LS_DATABASE) AC_ARG_WITH([init-database], AC_HELP_STRING([--with-init-database], - [specify whether the LiveSupport database tables should be + [specify whether the Campcaster database tables should be initialized (no)]), [INIT_LS_DATABASE=${withval}], [INIT_LS_DATABASE=no]) -AC_MSG_RESULT([initializing LiveSupport database: ${INIT_LS_DATABASE}]) +AC_MSG_RESULT([initializing Campcaster database: ${INIT_LS_DATABASE}]) dnl----------------------------------------------------------------------------- @@ -108,7 +108,7 @@ AC_SUBST(CONFIGURE_APACHE) AC_ARG_WITH([configure-apache], AC_HELP_STRING([--with-configure-apache], - [specify whether apache should be configured for LiveSupport + [specify whether apache should be configured for Campcaster through its conf.d directory (no)]), [CONFIGURE_APACHE=${withval}], [CONFIGURE_APACHE=no]) @@ -149,7 +149,7 @@ AC_SUBST(WWW_DOCROOT) AC_ARG_WITH([www-docroot], AC_HELP_STRING([--with-www-docroot], - [deploy LiveSupport under the specified docroot (/var/www)]), + [deploy Campcaster under the specified docroot (/var/www)]), [WWW_DOCROOT=${withval}], [WWW_DOCROOT=/var/www]) AC_MSG_RESULT([using www document root: ${WWW_DOCROOT}]) @@ -195,14 +195,14 @@ AC_MSG_RESULT([using database server: ${DB_SERVER}]) dnl----------------------------------------------------------------------------- -dnl get the name of the LiveSupport database +dnl get the name of the Campcaster database dnl----------------------------------------------------------------------------- AC_SUBST(DATABASE) AC_ARG_WITH([database], AC_HELP_STRING([--with-database], - [the name of the postgresql database to use (LiveSupport)]), - [DATABASE=${withval}], [DATABASE=LiveSupport]) + [the name of the postgresql database to use (Campcaster)]), + [DATABASE=${withval}], [DATABASE=Campcaster]) AC_MSG_RESULT([using database: ${DATABASE}]) @@ -214,8 +214,8 @@ AC_SUBST(DB_USER) AC_ARG_WITH([database-user], AC_HELP_STRING([--with-database-user], - [use the specified database server user (livesupport)]), - [DB_USER=${withval}], [DB_USER=livesupport]) + [use the specified database server user (campcaster)]), + [DB_USER=${withval}], [DB_USER=campcaster]) AC_MSG_RESULT([using database server user: ${DB_USER}]) @@ -227,8 +227,8 @@ AC_SUBST(DB_PASSWORD) AC_ARG_WITH([database-password], AC_HELP_STRING([--with-database-password], - [use the specified database server user password (livesupport)]), - [DB_PASSWORD=${withval}], [DB_PASSWORD=livesupport]) + [use the specified database server user password (campcaster)]), + [DB_PASSWORD=${withval}], [DB_PASSWORD=campcaster]) AC_MSG_RESULT([using database server user password: ${DB_PASSWORD}]) @@ -508,7 +508,7 @@ dnl display status info on what libraries will get compiled AC_MSG_NOTICE( [compiling the following external libraries that are needed -by LiveSupport: +by Campcaster: boost 1.33.1 ${COMPILE_BOOST} cppunit 1.10.2 yes @@ -538,9 +538,9 @@ using the following configuration settings: station audio output device: ${STATION_AUDIO_OUT} studio audio output device: ${STUDIO_AUDIO_OUT} studio audio cue device: ${STUDIO_AUDIO_CUE} - creating LiveSupport database: ${CREATE_LS_DATABASE} + creating Campcaster database: ${CREATE_LS_DATABASE} creating ODBC data source: ${CREATE_ODBC_DATA_SOURCE} - initialize LiveSupport database: ${INIT_LS_DATABASE} + initialize Campcaster database: ${INIT_LS_DATABASE} configuring apache: ${CONFIGURE_APACHE} ]) diff --git a/livesupport/etc/doxygen.config b/livesupport/etc/doxygen.config index fb698c35c..9972e6e2d 100644 --- a/livesupport/etc/doxygen.config +++ b/livesupport/etc/doxygen.config @@ -44,7 +44,7 @@ # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. -PROJECT_NAME = LiveSupport +PROJECT_NAME = Campcaster # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or @@ -1005,7 +1005,7 @@ TAGFILES = \ # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. -GENERATE_TAGFILE = ./doc/doxygen/liveSupport.tag +GENERATE_TAGFILE = ./doc/doxygen/campcaster.tag # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes diff --git a/livesupport/etc/pg_hba.conf b/livesupport/etc/pg_hba.conf index a09def595..c186cb375 100644 --- a/livesupport/etc/pg_hba.conf +++ b/livesupport/etc/pg_hba.conf @@ -86,8 +86,8 @@ local all postgres ident sameuser # # All IPv4 connections from localhost -# The following line was inserted by the livesupport-station package installer -# the original pg_hba.conf file is saved under pg_hba.conf.before-livesupport +# The following line was inserted by the campcaster-station package installer +# the original pg_hba.conf file is saved under pg_hba.conf.before-campcaster host all all 127.0.0.1 255.255.255.255 password #host all all 127.0.0.1 255.255.255.255 ident sameuser # diff --git a/livesupport/etc/testResultToHtml.xsl b/livesupport/etc/testResultToHtml.xsl index 57e9489a1..15738b720 100644 --- a/livesupport/etc/testResultToHtml.xsl +++ b/livesupport/etc/testResultToHtml.xsl @@ -5,12 +5,12 @@ - LiveSupport unit test results + Campcaster unit test results

Preface

This document is part of the -LiveSupport +Campcaster project, Copyright © 2004 Media Development Loan Fund, under the GNU GPL. @@ -18,7 +18,7 @@ Development Loan Fund, under the GNU This is an automatically generated document.

Scope

This document contains the generated unit test results for the -LiveSupport project. +Campcaster project.

Summary

diff --git a/livesupport/src/modules/authentication/bin/gen_coverage_data.sh b/livesupport/src/modules/authentication/bin/gen_coverage_data.sh index 348eb5206..1f3ad2037 100755 --- a/livesupport/src/modules/authentication/bin/gen_coverage_data.sh +++ b/livesupport/src/modules/authentication/bin/gen_coverage_data.sh @@ -28,7 +28,7 @@ #------------------------------------------------------------------------------- # This script generates code coverage data for the module #------------------------------------------------------------------------------- -module="LiveSupport Authentication" +module="Campcaster Authentication" reldir=`dirname $0`/.. basedir=`cd $reldir; pwd;` diff --git a/livesupport/src/modules/core/bin/gen_coverage_data.sh b/livesupport/src/modules/core/bin/gen_coverage_data.sh index 10282085d..025fd2af1 100755 --- a/livesupport/src/modules/core/bin/gen_coverage_data.sh +++ b/livesupport/src/modules/core/bin/gen_coverage_data.sh @@ -28,7 +28,7 @@ #------------------------------------------------------------------------------- # This script generates code coverage data for the module #------------------------------------------------------------------------------- -module="LiveSupport Core" +module="Campcaster Core" reldir=`dirname $0`/.. basedir=`cd $reldir; pwd;` diff --git a/livesupport/src/modules/db/bin/gen_coverage_data.sh b/livesupport/src/modules/db/bin/gen_coverage_data.sh index 9049a2f8c..1c645ab00 100755 --- a/livesupport/src/modules/db/bin/gen_coverage_data.sh +++ b/livesupport/src/modules/db/bin/gen_coverage_data.sh @@ -28,7 +28,7 @@ #------------------------------------------------------------------------------- # This script generates code coverage data for the module #------------------------------------------------------------------------------- -module="LiveSupport Db" +module="Campcaster Db" reldir=`dirname $0`/.. basedir=`cd $reldir; pwd;` diff --git a/livesupport/src/modules/eventScheduler/bin/gen_coverage_data.sh b/livesupport/src/modules/eventScheduler/bin/gen_coverage_data.sh index 58c799b4e..b24cf8e22 100755 --- a/livesupport/src/modules/eventScheduler/bin/gen_coverage_data.sh +++ b/livesupport/src/modules/eventScheduler/bin/gen_coverage_data.sh @@ -28,7 +28,7 @@ #------------------------------------------------------------------------------- # This script generates code coverage data for the module #------------------------------------------------------------------------------- -module="LiveSupport EventScheduler" +module="Campcaster EventScheduler" reldir=`dirname $0`/.. basedir=`cd $reldir; pwd;` diff --git a/livesupport/src/modules/gstreamerElements/bin/gen_coverage_data.sh b/livesupport/src/modules/gstreamerElements/bin/gen_coverage_data.sh index d1a4fec3f..abd37d816 100755 --- a/livesupport/src/modules/gstreamerElements/bin/gen_coverage_data.sh +++ b/livesupport/src/modules/gstreamerElements/bin/gen_coverage_data.sh @@ -28,7 +28,7 @@ #------------------------------------------------------------------------------- # This script generates code coverage data for the module #------------------------------------------------------------------------------- -module="LiveSupport GstreamerElements" +module="Campcaster GstreamerElements" reldir=`dirname $0`/.. basedir=`cd $reldir; pwd;` diff --git a/livesupport/src/modules/playlistExecutor/bin/gen_coverage_data.sh b/livesupport/src/modules/playlistExecutor/bin/gen_coverage_data.sh index e05aa242c..66a2b03bd 100755 --- a/livesupport/src/modules/playlistExecutor/bin/gen_coverage_data.sh +++ b/livesupport/src/modules/playlistExecutor/bin/gen_coverage_data.sh @@ -28,7 +28,7 @@ #------------------------------------------------------------------------------- # This script generates code coverage data for the module #------------------------------------------------------------------------------- -module="LiveSupport PlaylistExecutor" +module="Campcaster PlaylistExecutor" reldir=`dirname $0`/.. basedir=`cd $reldir; pwd;` diff --git a/livesupport/src/modules/schedulerClient/bin/gen_coverage_data.sh b/livesupport/src/modules/schedulerClient/bin/gen_coverage_data.sh index ebae02988..fefa37add 100755 --- a/livesupport/src/modules/schedulerClient/bin/gen_coverage_data.sh +++ b/livesupport/src/modules/schedulerClient/bin/gen_coverage_data.sh @@ -28,7 +28,7 @@ #------------------------------------------------------------------------------- # This script generates code coverage data for the module #------------------------------------------------------------------------------- -module="LiveSupport Scheduler Client" +module="Campcaster SchedulerClient" reldir=`dirname $0`/.. basedir=`cd $reldir; pwd;` diff --git a/livesupport/src/modules/storageClient/bin/gen_coverage_data.sh b/livesupport/src/modules/storageClient/bin/gen_coverage_data.sh index bb73aaf8f..d091e04bd 100755 --- a/livesupport/src/modules/storageClient/bin/gen_coverage_data.sh +++ b/livesupport/src/modules/storageClient/bin/gen_coverage_data.sh @@ -28,7 +28,7 @@ #------------------------------------------------------------------------------- # This script generates code coverage data for the module #------------------------------------------------------------------------------- -module="LiveSupport Storage" +module="Campcaster StorageClient" reldir=`dirname $0`/.. basedir=`cd $reldir; pwd;` diff --git a/livesupport/src/products/gLiveSupport/bin/autogen.sh b/livesupport/src/products/gLiveSupport/bin/autogen.sh index 1bc16bbe9..0f5494ed4 100755 --- a/livesupport/src/products/gLiveSupport/bin/autogen.sh +++ b/livesupport/src/products/gLiveSupport/bin/autogen.sh @@ -31,7 +31,7 @@ # (based on the version in enlightenment's cvs) #------------------------------------------------------------------------------- -package="gLiveSupport" +package="campcaster-studio" # assume we're in $basedir/bin reldir=`dirname $0`/.. diff --git a/livesupport/src/products/gLiveSupport/bin/gLiveSupport.sh b/livesupport/src/products/gLiveSupport/bin/campcaster-studio.sh similarity index 100% rename from livesupport/src/products/gLiveSupport/bin/gLiveSupport.sh rename to livesupport/src/products/gLiveSupport/bin/campcaster-studio.sh diff --git a/livesupport/src/products/gLiveSupport/bin/gLiveSupport_devenv.sh b/livesupport/src/products/gLiveSupport/bin/campcaster-studio_devenv.sh similarity index 100% rename from livesupport/src/products/gLiveSupport/bin/gLiveSupport_devenv.sh rename to livesupport/src/products/gLiveSupport/bin/campcaster-studio_devenv.sh diff --git a/livesupport/src/products/gLiveSupport/bin/gen_coverage_data.sh b/livesupport/src/products/gLiveSupport/bin/gen_coverage_data.sh index fe062d3e1..611c3d4e3 100755 --- a/livesupport/src/products/gLiveSupport/bin/gen_coverage_data.sh +++ b/livesupport/src/products/gLiveSupport/bin/gen_coverage_data.sh @@ -28,7 +28,7 @@ #------------------------------------------------------------------------------- # This script generates code coverage data for the module #------------------------------------------------------------------------------- -module="Campcaster GUI" +module="Campcaster Studio" reldir=`dirname $0`/.. basedir=`cd $reldir; pwd;` diff --git a/livesupport/src/products/gLiveSupport/var/livesupport.png b/livesupport/src/products/gLiveSupport/var/campcaster.png similarity index 100% rename from livesupport/src/products/gLiveSupport/var/livesupport.png rename to livesupport/src/products/gLiveSupport/var/campcaster.png