Skip to content

Commit

Permalink
Invenio v0.99.4
Browse files Browse the repository at this point in the history
  • Loading branch information
tiborsimko committed Dec 19, 2011
1 parent 4f37b87 commit 7ab18ba
Show file tree
Hide file tree
Showing 28 changed files with 153 additions and 100 deletions.
3 changes: 3 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ The CERN development group currently consists of:
extension for the indexer. Improvents to the task scheduler and
session hander, etc.

- Ludmila Marian <ludmila.marian@gmail.com>
Fixes to several modules.

- Chris Montarbaud <christiane.montarbaud@cern.ch>
Multimedia and photo management.

Expand Down
31 changes: 31 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
CDS Invenio v0.99.4 (released 2011-12-19)
=========================================

2011-09-12 Samuele Kaplun <samuele.kaplun@cern.ch>

BibIndex: fix double-stemming upon indexing
* In get_words_from_phrase(), certain phrases could have
resulted in returning double-stemmed terms, thus causing
these terms not to be correctly indexed.

* In order to fully apply the fix one have also to run

$ bibindex --reindex

on any index that is configured to use stemming.

Co-authored-by: Ludmila Marian <ludmila.marian@gmail.com>

2011-08-30 Ludmila Marian <ludmila.marian@gmail.com>

WebSearch: fix collection translation in admin UI
* Fixes collection translation in the admin interface
when only one language is enabled for the site.

2011-06-24 Ludmila Marian <ludmila.marian@gmail.com>

BibConvert: fix UP and DOWN for UTF-8 strings
* Since Python lower and upper function are not correctly
converting UTF-8 characters, a workaround is put in place
by converting via Unicode.

CDS Invenio v0.99.3 (released 2010-12-13)
=========================================

Expand Down
28 changes: 14 additions & 14 deletions INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -183,13 +183,13 @@ Contents
----------------

$ cd /usr/local/src/
$ wget http://invenio-software.org/download/cds-invenio-0.99.3.tar.gz
$ wget http://invenio-software.org/download/cds-invenio-0.99.3.tar.gz.md5
$ wget http://invenio-software.org/download/cds-invenio-0.99.3.tar.gz.sig
$ md5sum -v -c cds-invenio-0.99.3.tar.gz.md5
$ gpg --verify cds-invenio-0.99.3.tar.gz.sig cds-invenio-0.99.3.tar.gz
$ tar xvfz cds-invenio-0.99.3.tar.gz
$ cd cds-invenio-0.99.3
$ wget http://invenio-software.org/download/cds-invenio-0.99.4.tar.gz
$ wget http://invenio-software.org/download/cds-invenio-0.99.4.tar.gz.md5
$ wget http://invenio-software.org/download/cds-invenio-0.99.4.tar.gz.sig
$ md5sum -v -c cds-invenio-0.99.4.tar.gz.md5
$ gpg --verify cds-invenio-0.99.4.tar.gz.sig cds-invenio-0.99.4.tar.gz
$ tar xvfz cds-invenio-0.99.4.tar.gz
$ cd cds-invenio-0.99.4
$ ./configure
$ make
$ make install
Expand Down Expand Up @@ -232,20 +232,20 @@ Contents
CDS Invenio. (The built files will be installed into
different "target" directories later.)

$ wget http://invenio-software.org/download/cds-invenio-0.99.3.tar.gz
$ wget http://invenio-software.org/download/cds-invenio-0.99.3.tar.gz.md5
$ wget http://invenio-software.org/download/cds-invenio-0.99.3.tar.gz.sig
$ wget http://invenio-software.org/download/cds-invenio-0.99.4.tar.gz
$ wget http://invenio-software.org/download/cds-invenio-0.99.4.tar.gz.md5
$ wget http://invenio-software.org/download/cds-invenio-0.99.4.tar.gz.sig

Fetch CDS Invenio source tarball from the CDS Software
Consortium distribution server, together with MD5 checksum
and GnuPG cryptographic signature files useful for verifying
the integrity of the tarball.

$ md5sum -v -c cds-invenio-0.99.3.tar.gz.md5
$ md5sum -v -c cds-invenio-0.99.4.tar.gz.md5

Verify MD5 checksum.

$ gpg --verify cds-invenio-0.99.3.tar.gz.sig cds-invenio-0.99.3.tar.gz
$ gpg --verify cds-invenio-0.99.4.tar.gz.sig cds-invenio-0.99.4.tar.gz

Verify GnuPG cryptographic signature. Note that you may
first have to import my public key into your keyring, if you
Expand All @@ -257,11 +257,11 @@ Contents
warning that may follow after the signature has been
successfully verified.

$ tar xvfz cds-invenio-0.99.3.tar.gz
$ tar xvfz cds-invenio-0.99.4.tar.gz

Untar the distribution tarball.

$ cd cds-invenio-0.99.3
$ cd cds-invenio-0.99.4

Go to the source directory.

Expand Down
5 changes: 4 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## This file is part of CDS Invenio.
## Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 CERN.
## Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 CERN.
##
## CDS Invenio is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
Expand Down Expand Up @@ -257,4 +257,7 @@ update-v0.99.1-tables:
update-v0.99.2-tables:
@echo "Nothing to do; table structure did not change between v0.99.2 and v0.99.3."

update-v0.99.3-tables:
@echo "Nothing to do; table structure did not change between v0.99.3 and v0.99.4."

CLEANFILES = *~
9 changes: 9 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ releases. For more information about the current release, please
consult RELEASE-NOTES. For more information about changes, please
consult ChangeLog.

CDS Invenio v0.99.4 -- released 2011-12-19
------------------------------------------

*) fixed double stemming during indexing (BibRank)

*) fixed collection translation in admin UI (WebSearch)

*) fixed UP and DOWN functions for UTF-8 strings (BibConvert)

CDS Invenio v0.99.3 -- released 2010-12-13
------------------------------------------

Expand Down
43 changes: 17 additions & 26 deletions RELEASE-NOTES
Original file line number Diff line number Diff line change
@@ -1,43 +1,29 @@
--------------------------------------------------------------------
CDS Invenio v0.99.3 is released
December 13, 2010
CDS Invenio v0.99.4 is released
December 19, 2011
http://invenio-software.org/
--------------------------------------------------------------------

CDS Invenio v0.99.3 was released on December 13, 2010.
CDS Invenio v0.99.4 was released on December 19, 2011.

This is a minor bugfix release only. It is recommended to all CDS
Invenio sites using v0.99.2 or previous releases.
Invenio sites using v0.99.3 or previous releases.

What's new:
-----------

*) fixed issues in the harvesting daemon when harvesting from more
than one OAI repository (BibHarvest)
*) fixed double stemming during indexing (BibRank)

*) fixed failure in formatting engine when dealing with
not-yet-existing records (BibFormat)
*) fixed collection translation in admin UI (WebSearch)

*) fixed traversal of final URL parts in the URL dispatcher
(WebStyle)

*) improved bibdocfile URL recognition upon upload of MARC files
(BibUpload)

*) fixed bug in admin interface for adding authorizations (WebAccess)

*) keyword extractor is now compatible with rdflib releases older
than 2.3.2 (BibClassify)

*) output of `bibsched status' now shows the queue mode status as
AUTOMATIC or MANUAL to help queue monitoring (BibSched)
*) fixed UP and DOWN functions for UTF-8 strings (BibConvert)

Download:
---------

<http://invenio-software.org/download/cds-invenio-0.99.3.tar.gz>
<http://invenio-software.org/download/cds-invenio-0.99.3.tar.gz.md5>
<http://invenio-software.org/download/cds-invenio-0.99.3.tar.gz.sig>
<http://invenio-software.org/download/cds-invenio-0.99.4.tar.gz>
<http://invenio-software.org/download/cds-invenio-0.99.4.tar.gz.md5>
<http://invenio-software.org/download/cds-invenio-0.99.4.tar.gz.sig>

Installation notes:
-------------------
Expand All @@ -47,19 +33,24 @@ Please follow the INSTALL file bundled in the distribution tarball.
Upgrade notes:
--------------

If you are upgrading from CDS Invenio v0.99.2, then:
If you are upgrading from CDS Invenio v0.99.3, then:

- please stop your bibsched queue and your Apache server

- install the update:

$ cd cds-invenio-0.99.3
$ cd cds-invenio-0.99.4
$ cp -a /opt/cds-invenio/etc /opt/cds-invenio/etc.OLD
$ sh /opt/cds-invenio/etc/build/config.nice
$ make install
$ /opt/cds-invenio/bin/inveniocfg --update-all
$ cp -a /opt/cds-invenio/etc.OLD /opt/cds-invenio/etc

- in order to apply the double-stemming fix for the indexer,
reindexing of those indexes that use stemming is recommended:

$ bibindex -u admin --reindex

- restart your Apache server and your bibsched queue

- you are done
Expand Down
7 changes: 4 additions & 3 deletions po/bg.po
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
# # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
msgid ""
msgstr ""
"Project-Id-Version: CDS-Invenio 0.99.3\n"
"Project-Id-Version: CDS-Invenio 0.99.4\n"
"Report-Msgid-Bugs-To: cds.support@cern.ch\n"
"POT-Creation-Date: 2010-10-20 20:36+0200\n"
"POT-Creation-Date: 2011-12-19 20:55+0100\n"
"PO-Revision-Date: 2008-03-27 02:25+0200\n"
"Last-Translator: Nikolay Dyankov <ndyankov@gmail.com>\n"
"Language-Team: BG <cds.support@cern.ch>\n"
Expand Down Expand Up @@ -995,8 +995,9 @@ msgid "Help Central"
msgstr "Централна помощ"

#: modules/bibformat/etc/format_templates/Default_HTML_actions.bft:6
#, fuzzy
msgid "Export as"
msgstr ""
msgstr "Докладване на обида"

#: modules/websearch/doc/search-guide.webdoc:341
#: modules/websearch/doc/search-guide.webdoc:376
Expand Down
7 changes: 4 additions & 3 deletions po/ca.po
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
# # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
msgid ""
msgstr ""
"Project-Id-Version: CDS-Invenio 0.99.3\n"
"Project-Id-Version: CDS-Invenio 0.99.4\n"
"Report-Msgid-Bugs-To: cds.support@cern.ch\n"
"POT-Creation-Date: 2010-10-20 20:36+0200\n"
"POT-Creation-Date: 2011-12-19 20:55+0100\n"
"PO-Revision-Date: 2008-02-28 18:47+0100\n"
"Last-Translator: Ferran Jorba <Ferran.Jorba@uab.cat>\n"
"Language-Team: CA <cds.support@cern.ch>\n"
Expand Down Expand Up @@ -1016,8 +1016,9 @@ msgid "collection"
msgstr "col·lecció"

#: modules/websearch/doc/admin/websearch-admin-guide.webdoc:21
#, fuzzy
msgid "WebSearch Admin Guide"
msgstr ""
msgstr "Administració de lliuraments"

#: modules/websearch/doc/search-guide.webdoc:331
#: modules/websearch/doc/search-guide.webdoc:367
Expand Down
2 changes: 1 addition & 1 deletion po/cds-invenio.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: cds.support@cern.ch\n"
"POT-Creation-Date: 2010-10-20 20:36+0200\n"
"POT-Creation-Date: 2011-12-19 20:55+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
7 changes: 4 additions & 3 deletions po/cs.po
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
# # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
msgid ""
msgstr ""
"Project-Id-Version: CDS-Invenio 0.99.3\n"
"Project-Id-Version: CDS-Invenio 0.99.4\n"
"Report-Msgid-Bugs-To: cds.support@cern.ch\n"
"POT-Creation-Date: 2010-10-20 20:36+0200\n"
"POT-Creation-Date: 2011-12-19 20:55+0100\n"
"PO-Revision-Date: 2008-02-29 14:34+0100\n"
"Last-Translator: Tibor Simko <tibor.simko@cern.ch>\n"
"Language-Team: CS <cds.support@cern.ch>\n"
Expand Down Expand Up @@ -1017,8 +1017,9 @@ msgid "collection"
msgstr "kolekce"

#: modules/websearch/doc/admin/websearch-admin-guide.webdoc:21
#, fuzzy
msgid "WebSearch Admin Guide"
msgstr ""
msgstr "Administrace Přidávání"

#: modules/websearch/doc/search-guide.webdoc:331
#: modules/websearch/doc/search-guide.webdoc:367
Expand Down
7 changes: 4 additions & 3 deletions po/de.po
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
# # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
msgid ""
msgstr ""
"Project-Id-Version: CDS-Invenio 0.99.3\n"
"Project-Id-Version: CDS-Invenio 0.99.4\n"
"Report-Msgid-Bugs-To: cds.support@cern.ch\n"
"POT-Creation-Date: 2010-10-20 20:36+0200\n"
"POT-Creation-Date: 2011-12-19 20:55+0100\n"
"PO-Revision-Date: 2008-02-28 18:33+0100\n"
"Last-Translator: Benedikt Koeppel <be.public@gmail.com>\n"
"Language-Team: DE <cds.support@cern.ch>\n"
Expand Down Expand Up @@ -1018,8 +1018,9 @@ msgid "collection"
msgstr "Sammlung"

#: modules/websearch/doc/admin/websearch-admin-guide.webdoc:21
#, fuzzy
msgid "WebSearch Admin Guide"
msgstr ""
msgstr "WebSubmit Verwaltung"

#: modules/websearch/doc/search-guide.webdoc:331
#: modules/websearch/doc/search-guide.webdoc:367
Expand Down
4 changes: 2 additions & 2 deletions po/el.po
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
# # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
msgid ""
msgstr ""
"Project-Id-Version: CDS-Invenio 0.99.3\n"
"Project-Id-Version: CDS-Invenio 0.99.4\n"
"Report-Msgid-Bugs-To: cds.support@cern.ch\n"
"POT-Creation-Date: 2010-10-20 20:36+0200\n"
"POT-Creation-Date: 2011-12-19 20:55+0100\n"
"PO-Revision-Date: 2008-03-11 12:15+0100\n"
"Last-Translator: Theodoropoulos Theodoros <theod@lib.auth.gr>\n"
"Language-Team: EL <cds.support@cern.ch>\n"
Expand Down
4 changes: 2 additions & 2 deletions po/en.po
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
# # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
msgid ""
msgstr ""
"Project-Id-Version: CDS-Invenio 0.99.3\n"
"Project-Id-Version: CDS-Invenio 0.99.4\n"
"Report-Msgid-Bugs-To: cds.support@cern.ch\n"
"POT-Creation-Date: 2010-10-20 20:36+0200\n"
"POT-Creation-Date: 2011-12-19 20:55+0100\n"
"PO-Revision-Date: 2006-10-12 17:50+0200\n"
"Last-Translator: Tibor Simko <tibor.simko@cern.ch>\n"
"Language-Team: EN <cds.support@cern.ch>\n"
Expand Down
7 changes: 4 additions & 3 deletions po/es.po
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
# # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
msgid ""
msgstr ""
"Project-Id-Version: CDS-Invenio 0.99.3\n"
"Project-Id-Version: CDS-Invenio 0.99.4\n"
"Report-Msgid-Bugs-To: cds.support@cern.ch\n"
"POT-Creation-Date: 2010-10-20 20:36+0200\n"
"POT-Creation-Date: 2011-12-19 20:55+0100\n"
"PO-Revision-Date: 2008-02-28 18:42+0100\n"
"Last-Translator: Ferran Jorba <Ferran.Jorba@uab.cat>\n"
"Language-Team: ES <cds.support@cern.ch>\n"
Expand Down Expand Up @@ -1018,8 +1018,9 @@ msgid "collection"
msgstr "colección"

#: modules/websearch/doc/admin/websearch-admin-guide.webdoc:21
#, fuzzy
msgid "WebSearch Admin Guide"
msgstr ""
msgstr "Administración de WebSubmit"

#: modules/websearch/doc/search-guide.webdoc:331
#: modules/websearch/doc/search-guide.webdoc:367
Expand Down
4 changes: 2 additions & 2 deletions po/fr.po
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
# # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
msgid ""
msgstr ""
"Project-Id-Version: CDS-Invenio 0.99.3\n"
"Project-Id-Version: CDS-Invenio 0.99.4\n"
"Report-Msgid-Bugs-To: cds.support@cern.ch\n"
"POT-Creation-Date: 2010-10-20 20:36+0200\n"
"POT-Creation-Date: 2011-12-19 20:55+0100\n"
"PO-Revision-Date: 2008-07-10 13:37+0200\n"
"Last-Translator: Jérôme Caffaro <jerome.caffaro@cern.ch>\n"
"Language-Team: FR <cds.support@cern.ch>\n"
Expand Down
Loading

0 comments on commit 7ab18ba

Please sign in to comment.