Re: [Dspace-tech] Date of last change in DSpace item

2012-11-07 Thread emilio lorenzo
Roberto, I am not very sure about what are you looking for with your 
question
to my understanding   dc.description.provenance  has information about 
the date of ingest processes (submitted, made avaliable, and so on).   
But If you edit (via the UI) the item  this metadata is not updated. I´m 
not familiar with the Dspace data model  but last-modified field in item 
Table, seems aplicable (i Think this field   was used by the harverster 
to evaluated wich records needd to be harversted again)

Hope that helps

Emilio

El 07/11/2012 0:20, helix84 escribió:
 On Wed, Nov 7, 2012 at 12:13 AM, Calloni, Rodrigorcall...@iadb.org  wrote:
 Quick question: which field in DSpace does hold the date the item metadata
 was last changed?
 Hi Rodrigo,

 it's dc.description.provenance, which is visible only to
 administrators by default.

 As a sidenote - technically it's administrative metadata, so it
 shouldn't be stored among other public metadata, but that's how it is
 currently in DSpace.


 Regards,
 ~~helix84

 Compulsory reading: DSpace Mailing List Etiquette
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

 --
 LogMeIn Central: Instant, anywhere, Remote PC access and management.
 Stay in control, update software, and manage PCs from one command center
 Diagnose problems and improve visibility into emerging IT issues
 Automate, monitor and manage. Do more in less time with Central
 http://p.sf.net/sfu/logmein12331_d2d
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech


--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Accent differences in discovery

2012-11-07 Thread ORIOL OLIVE COMADIRA
Hi Elvi,

If you use discovery for searching,
you need to add some new filters to solr search schema.

Edit file [dspace]/solr/search/conf/schema.xml

In fieldType named text you can put:
charFilter class=solr.MappingCharFilterFactory 
mapping=mapping-FoldToASCII.txt/
at all analyzers.


At the end it looks like:

fieldType name=text class=solr.TextField positionIncrementGap=100
  analyzer type=index

!-- added for ignore accents --
charFilter class=solr.MappingCharFilterFactory 
mapping=mapping-FoldToASCII.txt/

tokenizer class=solr.WhitespaceTokenizerFactory/
!-- in this example, we will only use synonyms at query time
filter class=solr.SynonymFilterFactory synonyms=index_synonyms.txt 
ignoreCase=true expand=false/
--
!-- Case insensitive stop word removal.
  add enablePositionIncrements=true in both the index and query
  analyzers to leave a 'gap' for more accurate phrase queries.
--
filter class=solr.StopFilterFactory
ignoreCase=true
words=stopwords.txt
enablePositionIncrements=true
/
filter class=solr.WordDelimiterFilterFactory generateWordParts=1 
generateNumberParts=1 catenateWords=1 catenateNumbers=1 catenateAll=0 
splitOnCaseChange=1/
filter class=solr.LowerCaseFilterFactory/
filter class=solr.EnglishPorterFilterFactory 
protected=protwords.txt/
filter class=solr.RemoveDuplicatesTokenFilterFactory/
  /analyzer
  analyzer type=query

!-- added for ignore accents --
charFilter class=solr.MappingCharFilterFactory 
mapping=mapping-FoldToASCII.txt/

tokenizer class=solr.WhitespaceTokenizerFactory/
filter class=solr.SynonymFilterFactory synonyms=synonyms.txt 
ignoreCase=true expand=true/
filter class=solr.StopFilterFactory
ignoreCase=true
words=stopwords.txt
enablePositionIncrements=true
/
filter class=solr.WordDelimiterFilterFactory generateWordParts=1 
generateNumberParts=1 catenateWords=0 catenateNumbers=0 catenateAll=0 
splitOnCaseChange=1/
filter class=solr.LowerCaseFilterFactory/
filter class=solr.EnglishPorterFilterFactory 
protected=protwords.txt/
filter class=solr.RemoveDuplicatesTokenFilterFactory/
  /analyzer
/fieldType



Then, you need to create the file 
[dspace]/solr/search/conf/mapping-FoldToASCII.txt
You can find it at:
http://code.google.com/p/eaditor/source/browse/branches/solr-home/indexes/published/conf/mapping-FoldToASCII.txt?r=258



Hope that helps,

Al 07/11/2012 06:06, En/na Nemiz, Elvi ha escrit:

Dear all,

Hello, is it possible for discovery to ignore accents when searching? E.g., if I
search for the word Nuñez, search results will return Nuñez and Nunez. We are
using dspace 1.8.2. Thanks in advance.

Cheers,
Elvi



--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Changing permissions for dspace.cfg

2012-11-07 Thread Becker, Pascal-Nicolas
Dear all,

the dspace.cfg contains the credentials for the database connection. At least 
the database password is an information that should be protected. As dspace.cfg 
belongs the user dspace I set the file permissions to 640 and everything works 
fine. But always when I rebuild dspace with the command 'mvn package' Maven 
creates a new file dspace.cfg in the target directory that is readable for 
everybody with an account on the server. Does anybody knows how I can configure 
Maven to set the permissions as mentioned above? Is there any other file except 
building.properties and dspace.cfg that contains the password for the database 
connection?

Thanks in advanced
  Pascal

P.S. I am testing DSpace 3.0 RC3 the UI does not affect the problem described. 
;)
--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Changing permissions for dspace.cfg

2012-11-07 Thread helix84
On Wed, Nov 7, 2012 at 1:08 PM, Becker, Pascal-Nicolas
p.bec...@tu-berlin.de wrote:
 the dspace.cfg contains the credentials for the database connection. At least 
 the database password is an information that should be protected. As 
 dspace.cfg belongs the user dspace I set the file permissions to 640 and 
 everything works fine. But always when I rebuild dspace with the command 'mvn 
 package' Maven creates a new file dspace.cfg in the target directory that is 
 readable for everybody with an account on the server. Does anybody knows how 
 I can configure Maven to set the permissions as mentioned above?

You could try setting the desired permissions on the
[dspace-source]/dspace/config/dspace.cfg file. This file is filtered
and deployed by ant in the last stage of the building process, so it
might just keep the permissions. Or maybe not (due to filtering), but
it's worth a try.

 Is there any other file except building.properties and dspace.cfg that 
 contains the password for the database connection?

No, this is the only place.


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Changing permissions for dspace.cfg

2012-11-07 Thread Becker, Pascal-Nicolas
 -Original Message-
 From: helix84
 Sent: Wednesday, November 07, 2012 1:17 PM
 Subject: Re: [Dspace-tech] Changing permissions for dspace.cfg
 You could try setting the desired permissions on the [dspace-
 source]/dspace/config/dspace.cfg file. This file is filtered and deployed by
 ant in the last stage of the building process, so it might just keep the
 permissions. Or maybe not (due to filtering), but it's worth a try.

I already did this and it works fine. [dspace-source]/dspace/config/dspace.cfg 
and [dspace]/config/dspace.cfg keep the rights. But as Maven always creates 
[dspace-source]/dspace/target/dspace-version-build/config/dspace.cfg as a new 
file (instead of just making a copy) the permissions on this one will always be 
reseted when I call mvn package. So three of four files (including 
build.protperties) have the right permissions. ;)

  Is there any other file except building.properties and dspace.cfg that
 contains the password for the database connection?
 
 No, this is the only place.
Thank you!

Regards,
  Pascal
--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Changing permissions for dspace.cfg

2012-11-07 Thread helix84
On Wed, Nov 7, 2012 at 1:41 PM, Becker, Pascal-Nicolas
p.bec...@tu-berlin.de wrote:
 I already did this and it works fine. 
 [dspace-source]/dspace/config/dspace.cfg and [dspace]/config/dspace.cfg keep 
 the rights. But as Maven always creates 
 [dspace-source]/dspace/target/dspace-version-build/config/dspace.cfg as a 
 new file (instead of just making a copy) the permissions on this one will 
 always be reseted when I call mvn package. So three of four files (including 
 build.protperties) have the right permissions. ;)

I see, I suspected that but it was the most straightforward thing to try.

Next thing you could try is adding a chmod line (change the octal
permissions as you need) to the ant build recipe (add the second line
after the first, existing one):

https://github.com/DSpace/DSpace/blob/master/dspace/src/main/config/build.xml#L329

copy file=${config} tofile=config-temp/dspace.cfg
preservelastmodified=true /
chmod file=config-temp/dspace.cfg perm=600/


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Dspace de Inglés a español ?

2012-11-07 Thread UNIVIRTUAL UNISARC
Buenas tardes Listeros.

Estoy instalando Dspace en nuestra institución educativa con el fin de
tener nuestro repositorio institucional; he logrado hacerlo en inglés,
solicito su acompañamiento para pasarlo al Español. Alguien me puede
colaborar?

Solicito a ustedes me informen como lo convierto en español?

Cuando ingreso a este solo me permite verlo en English.

Gracias por su colaboración,



Ing. Willmar F. Alzate C.
UNISARC
Vereda El Jazmín, Kilómetro 4 Vía Santa Rosa - Chinchiná
Email:  univirt...@unisarc.edu.co
Síganos en:  http://www.facebook.com/unisarc
Santa Rosa de Cabal, Risaralda, Colombia.
--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Dspace de Inglés a español ?

2012-11-07 Thread helix84
Hi,

you didn't mention your DSpace version and interface, so I'll assume
1.8 and XMLUI. The localization should have been installed
automatically unless you explicitly specified to build DSpace offline.
You should see this file in your installed directory:
[dspace]/webapps/xmlui/i18n/messages_es.xml

If not, download it from here [1], put it in that location, edit the
xmlui.supported.locales parameter in dspace.cfg [2] and restart
Tomcat.

[1] 
https://raw.github.com/DSpace/dspace-xmlui-lang/master/src/main/webapp/i18n/messages_es.xml
[2] 
https://wiki.duraspace.org/display/DSDOC18/Configuration#Configuration-XMLUISpecificConfiguration

Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Date of last change in DSpace item

2012-11-07 Thread Claudia Jürgen
Hello,

the dc.description.provenance does not hold information about the 
changes in metadata, it only documents the ingest process.
There is no metada with this information at the moment afaik.
In the item table you got the last_modified column, but this will be 
adjusted on any change not only changes to the metadata.

Hope this helps

Claudia Jürgen


Am 07.11.2012 00:20, schrieb helix84:
 On Wed, Nov 7, 2012 at 12:13 AM, Calloni, Rodrigo rcall...@iadb.org wrote:
 Quick question: which field in DSpace does hold the date the item metadata
 was last changed?

 Hi Rodrigo,

 it's dc.description.provenance, which is visible only to
 administrators by default.

 As a sidenote - technically it's administrative metadata, so it
 shouldn't be stored among other public metadata, but that's how it is
 currently in DSpace.


 Regards,
 ~~helix84

 Compulsory reading: DSpace Mailing List Etiquette
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

 --
 LogMeIn Central: Instant, anywhere, Remote PC access and management.
 Stay in control, update software, and manage PCs from one command center
 Diagnose problems and improve visibility into emerging IT issues
 Automate, monitor and manage. Do more in less time with Central
 http://p.sf.net/sfu/logmein12331_d2d
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech


-- 
Claudia Juergen
Universitaetsbibliothek Dortmund
Eldorado
0231/755-4043
https://eldorado.tu-dortmund.de/

--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Date of last change in DSpace item

2012-11-07 Thread helix84
That's right, there's not information documenting changes to
individual metadata values in DSpace. But perhaps the item-level
versioning feature available in DSpace 3.0 would be interesting to
you:

https://wiki.duraspace.org/display/DSPACE/Item+Versioning+Support


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Changing permissions for dspace.cfg

2012-11-07 Thread Becker, Pascal-Nicolas
 -Original Message-
 From: helix84
 Sent: Wednesday, November 07, 2012 1:49 PM
 Subject: Re: [Dspace-tech] Changing permissions for dspace.cfg
...
 Next thing you could try is adding a chmod line (change the octal permissions
 as you need) to the ant build recipe (add the second line after the first,
 existing one):
Ant copies the file from the target to the [dspace]/config directory and 
preserved the permission of the target file. Your solution could help for a 
fresh_install. I had a problem with Maven always reseting the permissions of  
[dspace-source]/dspace/target/dspace-version-build/config/dspace.cfg. It took 
me some time to get into the assembly process of maven, but I found a solution. 
Adding the following line to the maven assembly recipe helps:

https://github.com/DSpace/DSpace/blob/master/dspace/src/main/assembly/assembly.xml#L75
sourceconfig/dspace.cfg/source
 fileMode640/fileMode

Thanks helix for your help!

Regards,
  Pascal
--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] google analytics

2012-11-07 Thread Ben Sheaff
Hello,

I am wondering if anyone has set up Google analytics to track bitstream 
downloads?
Using the default system, it looks like the javascript that triggers Google 
analytics does not run when the user clicks a link to download an item.
--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] statistics spiders list

2012-11-07 Thread Ben Sheaff
Hello,

I am wonder if anyone has put together a good list of bots and spiders for solr 
statistics.
It seems that the default ones being provided by http://iplists.com are not 
being updated.

The list can be found in dspace.cfg under:
solr.spiderips.urls
--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] google analytics

2012-11-07 Thread helix84
On Wed, Nov 7, 2012 at 5:58 PM, Ben Sheaff bshe...@uvic.ca wrote:
 I am wondering if anyone has set up Google analytics to track bitstream
 downloads?

Yes, they have. See this thread:
http://dspace.2283337.n4.nabble.com/Google-Analytics-Statistics-within-DSpace-on-XMLUI-td4658773.html

 Using the default system, it looks like the javascript that triggers Google
 analytics does not run when the user clicks a link to download an item.

That's simply because GA uses Javascript and if you link to the file
directly, there's no way for the Javascript to run. Ergo the
workaround.


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Date of last change in DSpace item

2012-11-07 Thread Laurie Nelson
The date an item was last modified is displayed on the Item Status tab 
in the Edit Item screens. The date is held in the item table in the 
last_modified field.

Laurie
On 11/7/2012 10:59 AM, dspace-tech-requ...@lists.sourceforge.net wrote:

 Message: 3
 Date: Wed, 07 Nov 2012 15:45:23 +0100
 From: Claudia J?rgen  claudia.juer...@ub.tu-dortmund.de
 Subject: Re: [Dspace-tech] Date of last change in DSpace item
 To: dspace-tech@lists.sourceforge.net
 Message-ID: 509a7403.9020...@ub.tu-dortmund.de
 Content-Type: text/plain; charset=ISO-8859-1; format=flowed

 Hello,

 the dc.description.provenance does not hold information about the
 changes in metadata, it only documents the ingest process.
 There is no metada with this information at the moment afaik.
 In the item table you got the last_modified column, but this will be
 adjusted on any change not only changes to the metadata.

 Hope this helps

 Claudia J?rgen


 Am 07.11.2012 00:20, schrieb helix84:
 On Wed, Nov 7, 2012 at 12:13 AM, Calloni, Rodrigo rcall...@iadb.org wrote:
 Quick question: which field in DSpace does hold the date the item metadata
 was last changed?
 Hi Rodrigo,

 it's dc.description.provenance, which is visible only to
 administrators by default.

 As a sidenote - technically it's administrative metadata, so it
 shouldn't be stored among other public metadata, but that's how it is
 currently in DSpace.


 Regards,
 ~~helix84

 Compulsory reading: DSpace Mailing List Etiquette
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

 --
 LogMeIn Central: Instant, anywhere, Remote PC access and management.
 Stay in control, update software, and manage PCs from one command center
 Diagnose problems and improve visibility into emerging IT issues
 Automate, monitor and manage. Do more in less time with Central
 http://p.sf.net/sfu/logmein12331_d2d
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech



--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] statistics spiders list

2012-11-07 Thread helix84
On Wed, Nov 7, 2012 at 5:58 PM, Ben Sheaff bshe...@uvic.ca wrote:
 I am wonder if anyone has put together a good list of bots and spiders for
 solr statistics.

 It seems that the default ones being provided by http://iplists.com are not
 being updated.

I don't believe you'll find a better one in the format DSpace takes by
default. But it wouldn't hurt to listen to the advice given elsewhere
on the web when this question is asked - detect user agent strings
instead of particular IPs (which may change in time). Of course, you'd
need to modify DSpace to do that.


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Date of last change in DSpace item

2012-11-07 Thread Calloni, Rodrigo
Thanks Claudia, Emilio and Helix

Our DSpace is very customized and I found this Item status field when I edit 
the item via the UI.

I believe this is the field you mentioned as last_modified column. In which 
database table is this column at?

Best regards
Rodrigo

-Original Message-
From: Claudia Jürgen [mailto:claudia.juer...@ub.tu-dortmund.de] 
Sent: Wednesday, November 07, 2012 9:45 AM
To: dspace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Date of last change in DSpace item

Hello,

the dc.description.provenance does not hold information about the changes in 
metadata, it only documents the ingest process.
There is no metada with this information at the moment afaik.
In the item table you got the last_modified column, but this will be adjusted 
on any change not only changes to the metadata.

Hope this helps

Claudia Jürgen


Am 07.11.2012 00:20, schrieb helix84:
 On Wed, Nov 7, 2012 at 12:13 AM, Calloni, Rodrigo rcall...@iadb.org wrote:
 Quick question: which field in DSpace does hold the date the item 
 metadata was last changed?

 Hi Rodrigo,

 it's dc.description.provenance, which is visible only to 
 administrators by default.

 As a sidenote - technically it's administrative metadata, so it 
 shouldn't be stored among other public metadata, but that's how it is 
 currently in DSpace.


 Regards,
 ~~helix84

 Compulsory reading: DSpace Mailing List Etiquette 
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

 --
  LogMeIn Central: Instant, anywhere, Remote PC access and 
 management.
 Stay in control, update software, and manage PCs from one command 
 center Diagnose problems and improve visibility into emerging IT 
 issues Automate, monitor and manage. Do more in less time with Central 
 http://p.sf.net/sfu/logmein12331_d2d
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech


--
Claudia Juergen
Universitaetsbibliothek Dortmund
Eldorado
0231/755-4043
https://eldorado.tu-dortmund.de/

--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center 
Diagnose problems and improve visibility into emerging IT issues Automate, 
monitor and manage. Do more in less time with Central 
http://p.sf.net/sfu/logmein12331_d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech

--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] 1.8.2 Discovery Search returns no results

2012-11-07 Thread helix84
Hi Matthew,

did you try rebuilding the Discovery index?

update-discovery-index -b

I also recommend running index-init before that.


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Date of last change in DSpace item

2012-11-07 Thread emilio lorenzo
Rodrigo,
for dspace 1.6   the database schema is:
http://scm.dspace.org/svn/repo/dspace/tags/dspace-1.6.0/dspace/docs/image/db-schema.gif
 
.

and also I found
https://wiki.duraspace.org/download/attachments/19006174/dspace-schema-1.5.1.png


I think the Table is item and the row is Last_modified I Ignore 
the accuracy of the diagram for other versions, but you can usually find 
the right schema for your installation at  
[dspace-src]/dspace/etc/database_schema.sql.

Best luck
Emilio






--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech