more search-and-replace
This commit is contained in:
parent
bc7aaf239b
commit
76aa698a25
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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}
|
||||
|
||||
])
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
#
|
||||
|
|
|
@ -5,12 +5,12 @@
|
|||
<xsl:template match="/">
|
||||
<html>
|
||||
<head>
|
||||
<title>LiveSupport unit test results</title>
|
||||
<title>Campcaster unit test results</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Preface</h1>
|
||||
This document is part of the
|
||||
<a href="http://livesupport.campware.org/">LiveSupport</a>
|
||||
<a href="http://campcaster.campware.org/">Campcaster</a>
|
||||
project, Copyright © 2004 <a href="http://www.mdlf.org/">Media
|
||||
Development Loan Fund</a>, under the GNU
|
||||
<a href="http://www.gnu.org/licenses/gpl.html">GPL</a>.
|
||||
|
@ -18,7 +18,7 @@ Development Loan Fund</a>, under the GNU
|
|||
This is an automatically generated document.
|
||||
<h1>Scope</h1>
|
||||
This document contains the generated unit test results for the
|
||||
<a href="http://livesupport.campware.org/">LiveSupport</a> project.
|
||||
<a href="http://campcaster.campware.org/">Campcaster</a> project.
|
||||
<h1>Summary</h1>
|
||||
<table>
|
||||
<tr>
|
||||
|
|
|
@ -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;`
|
||||
|
|
|
@ -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;`
|
||||
|
|
|
@ -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;`
|
||||
|
|
|
@ -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;`
|
||||
|
|
|
@ -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;`
|
||||
|
|
|
@ -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;`
|
||||
|
|
|
@ -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;`
|
||||
|
|
|
@ -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;`
|
||||
|
|
|
@ -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`/..
|
||||
|
|
|
@ -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;`
|
||||
|
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Loading…
Reference in New Issue