diff --git a/build.xml b/build.xml index 2e0b082944f..95842ffa374 100644 --- a/build.xml +++ b/build.xml @@ -1,5 +1,5 @@ - + @@ -26,7 +26,7 @@ - + @@ -269,18 +269,18 @@ - + - - + + - + @@ -292,7 +292,7 @@ - + diff --git a/config/vufind/config.ini b/config/vufind/config.ini index 687be412c26..34dd0ce951a 100644 --- a/config/vufind/config.ini +++ b/config/vufind/config.ini @@ -103,7 +103,7 @@ showBulkOptions = false ; Should users be allowed to save searches in their accounts? allowSavedSearches = true ; Generator value to display in an HTML header tag: -generator = "VuFind 2.5.3" +generator = "VuFind 3.0" ; This section allows you to configure the mechanism used for storing user ; sessions. Available types: File, Memcache, Database. diff --git a/import-marc.sh b/import-marc.sh index 531e02db9f5..389b79317bc 100755 --- a/import-marc.sh +++ b/import-marc.sh @@ -69,7 +69,7 @@ fi ################################################## if [ -z "$VUFIND_HOME" ] then - VUFIND_HOME="/usr/local/vufind2" + VUFIND_HOME="/usr/local/vufind" fi diff --git a/packages/DEBIAN/changelog b/packages/DEBIAN/changelog index a5603e16fae..a5eeea7332b 100644 --- a/packages/DEBIAN/changelog +++ b/packages/DEBIAN/changelog @@ -1,3 +1,9 @@ +vufind 3.0 distribution; urgency=low + + * VuFind 3.0 release (see http://vufind.org/wiki/changelog for details) + + -- maintainer VuFind Project Administration Team Mo 25 Apr 2016 09:28:51 UTC + vufind 2.5.3 distribution; urgency=low * VuFind 2.5.3 release (see http://vufind.org/wiki/changelog for details) diff --git a/packages/DEBIAN/conffiles b/packages/DEBIAN/conffiles index d05e80e4240..2fdd394f067 100644 --- a/packages/DEBIAN/conffiles +++ b/packages/DEBIAN/conffiles @@ -1 +1 @@ -/usr/local/vufind2/solr/biblio/conf/solrconfig.xml +/usr/local/vufind/solr/vufind/biblio/conf/solrconfig.xml diff --git a/packages/DEBIAN/control b/packages/DEBIAN/control index 37bbc23ea47..c7a43a460d7 100644 --- a/packages/DEBIAN/control +++ b/packages/DEBIAN/control @@ -1,5 +1,5 @@ -Package: vufind2 -Version: 2.5.3 +Package: vufind +Version: 3.0 Section: World Wide Web Priority: Optional Architecture: all diff --git a/packages/DEBIAN/postinst b/packages/DEBIAN/postinst index 3b51f88de42..2dd322432b1 100644 --- a/packages/DEBIAN/postinst +++ b/packages/DEBIAN/postinst @@ -1,11 +1,11 @@ #!/bin/bash -# Script for installing VuFind 2.x on Ubuntu +# Script for installing VuFind on Ubuntu # This does not include the OCI8 libraries # Update the profile file to set required environment variables: sh -c 'echo export JAVA_HOME=\"/usr/lib/jvm/default-java\" > /etc/profile.d/vufind.sh' -sh -c 'echo export VUFIND_HOME=\"/usr/local/vufind2\" >> /etc/profile.d/vufind.sh' +sh -c 'echo export VUFIND_HOME=\"/usr/local/vufind\" >> /etc/profile.d/vufind.sh' sh -c 'echo export VUFIND_LOCAL_DIR=\"\$VUFIND_HOME/local\" >> /etc/profile.d/vufind.sh' source /etc/profile.d/vufind.sh @@ -29,5 +29,5 @@ APACHE_CONF_DIR=/etc/apache2/conf.d if [ ! -d $APACHE_CONF_DIR ]; then APACHE_CONF_DIR=/etc/apache2/conf-enabled fi -ln -s $VUFIND_LOCAL_DIR/httpd-vufind.conf $APACHE_CONF_DIR/vufind2.conf +ln -s $VUFIND_LOCAL_DIR/httpd-vufind.conf $APACHE_CONF_DIR/vufind.conf /etc/init.d/apache2 force-reload diff --git a/public/index.php b/public/index.php index c24a73866b5..5022468b6f5 100644 --- a/public/index.php +++ b/public/index.php @@ -86,7 +86,7 @@ include_once "xhprof_lib/utils/xhprof_lib.php"; include_once "xhprof_lib/utils/xhprof_runs.php"; $xhprofRuns = new XHProfRuns_Default(); - $suffix = 'vufind2'; + $suffix = 'vufind'; $xhprofRunId = $xhprofRuns->save_run($xhprofData, $suffix); $url = "$xhprof?run=$xhprofRunId&source=$suffix"; echo "Profiler output";