[Dspace-tech] Can I search in the DSpace web interface for Objects within a date range?

2014-11-12 Thread Magnus Norberg
Hi! Can I search in the DSpace web interface for Objects within a date range? The Objects all have my manually created meta data field (type: date). And I want to search for all Objects matching for example: All Objects where MYDATEMETADATAFIELD 2014-10-01 AND MYMETADATAFIELD 2014-10-31

Re: [Dspace-tech] [Dspace-general] Can I search in the DSpace web interface for Objects within a date range?

2014-11-12 Thread helix84
Please, don't cross-post. Ask technical questions on dspace-tech only. Set the Date Issued filter to [2014-10-01 TO 2014-10-31]. Solr range queries are documented e.g. here: https://cwiki.apache.org/confluence/display/solr/The+Standard+Query+Parser#TheStandardQueryParser-RangeSearches Regards,

[Dspace-tech] Dspace 1.8.2 and java 7

2014-11-12 Thread Avino, Thomas W. (LARC-B702)[LITES]
According to the Dspace documentation, Dspace 1.8.2 will not work with Java v7. Is anyone running 1.8.2 with Java 7? Our Java version is: java version 1.7.0_65 OpenJDK Runtime Environment (rhel-2.5.1.2.el6_5-x86_64 u65-b17) OpenJDK 64-Bit Server VM (build 24.65-b04, mixed mode) Thomas W.

[Dspace-tech] Mirage2 theme on dspace4

2014-11-12 Thread Mohamed Mohideen Abdul Rasheed
Hello, I am working on enabling the Mirage2 theme for our Dspace 4 instance. I have checked in the dspace-xmlui-mirage2 project and dspace/modules/xmului-mirage2 modules into our codebase. The build succeeds, but one of the ruby tasks failed with the following error: $ mvn -Denv=local

Re: [Dspace-tech] Mirage2 theme on dspace4

2014-11-12 Thread helix84
Hi Mohamed, thanks for the report. Please, file it into Jira, it may get easily overlooked here. Thank you. https://jira.duraspace.org/browse/DS Regards, ~~helix84 Compulsory reading: DSpace Mailing List Etiquette https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

[Dspace-tech] Query Solr with special characters

2014-11-12 Thread Ruben
Hi, I noticed that if I use special characters in advanced search, solr doesn't return any results. I read in Lucene documentation that is possible to escape these special characters adding \ in front of them, and I will ask you if it's possible to modify the string query adding the escape

Re: [Dspace-tech] Dspace 1.8.2 and java 7

2014-11-12 Thread helix84
Hi Thomas, the first version where we ensured it runs on Java 7 was 3.0. You may find some useful details here: https://jira.duraspace.org/browse/DS-1081 Regards, ~~helix84 Compulsory reading: DSpace Mailing List Etiquette https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] Query Solr with special characters

2014-11-12 Thread Adan Roman
Hi Rubén Try surronding the query between quotes. This can work in most cases, unless the special character is a quote, of course regards Hi, I noticed that if I use special characters in advanced search, solr doesn't return any results. I read in Lucene documentation that is possible to

[Dspace-tech] unable to create administratot

2014-11-12 Thread srinaththota
Hello everyone, I am unable to create dspace administrator. If any one has answer to this please reply me. I am attaching the screenshot. http://dspace.2283337.n4.nabble.com/file/n4675506/dspace_error.jpg Thanks, srinath -- View this message in context:

Re: [Dspace-tech] unable to create administratot

2014-11-12 Thread helix84
Hi Srinath, you haven't set your PATH environment variable to point to your installation of Java. https://docs.oracle.com/javase/tutorial/essential/environment/paths.html Regards, ~~helix84 Compulsory reading: DSpace Mailing List Etiquette

Re: [Dspace-tech] unable to create administratot

2014-11-12 Thread srinaththota
Hi Helix, I could change the PATH Environmental variable. I am able to complete the process. Thank you. srinath -- View this message in context: http://dspace.2283337.n4.nabble.com/unable-to-create-administratot-tp4675506p4675508.html Sent from the DSpace - Tech mailing list archive at

Re: [Dspace-tech] DSpace authorization policies

2014-11-12 Thread Brown, Jacob
I put together (very quickly!) a tiny gem as a wrapper/DSL for creating admin scripts: https://github.com/kardeiz/dscriptor. It basically wraps a set of commands in a block which loads the DSpace jars and configuration, starts the ServiceManager, and then closes the context on exit. The repo

Re: [Dspace-tech] sitemaps in 1.8

2014-11-12 Thread Monika Mevenkamp
The sitemap generated does not include any links to bitstreams. As I understand it: sitemaps list all the links a crawler should digest, essentially saying these links but no others. If that is how it works crawlers will not index bitstreams when using the standard generated sitemap. As

Re: [Dspace-tech] sitemaps in 1.8

2014-11-12 Thread helix84
Hi Monika, the sitemap helps spiders discover the site, but is not limiting them from crawling other URLs. robots.txt serves that purpose. Therefore, DSpace feeds the spider a list of all item pages, but spiders will index the links from those pages, too. In our case - bistreams. Recently there

Re: [Dspace-tech] Query Solr with special characters

2014-11-12 Thread Ruben
Hi Adan, It seems well, but it changes the type of the search that is executed. I think surrounding the query with quotes makes solr search the literal string, and only returns the searches which contains the exactly string entered. If you escape ? character, the results list is different