[Dspace-tech] .zip files in DSpace

2011-03-16 Thread Thornton, Susan M. (LARC-B702)[LITES]
Does anyone know whether .zip files can be filtered in DSpace so that their 
contents can be indexed and searched?

Thanks,
Sue



Sue Walker-Thornton
Software Developer/Database Administrator
NASA Langley Research Center|LITES Contract
SGT, Inc.|130 Research Drive
Hampton, Va.  23666
Office: (757) 224-4074
Mobile: (757) 506-9903
Fax: (757) 224-4001
susan.m.thorn...@nasa.gov

--
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in the future.
http://p.sf.net/sfu/internap-sfd2d___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Problem with special characters in DSpace 1.5.1

2011-03-16 Thread Thornton, Susan M. (LARC-B702)[LITES]
JSPUI.

Thanks,
Sue



Sue Walker-Thornton
Software Developer/Database Administrator
NASA Langley Research Center|LITES Contract
(757) 224-4074



-Original Message-
From: ivan.ma...@gmail.com [mailto:ivan.ma...@gmail.com] On Behalf Of helix84
Sent: Wednesday, March 16, 2011 4:52 PM
To: Thornton, Susan M. (LARC-B702)[LITES]
Cc: dspace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Problem with special characters in DSpace 1.5.1

Are you using JSPUI or XMLUI?

These things are called HTML entities. I don't think encoding is the
problem, translating entities is.

I don't think I can help, just pointing out the direction.

Regards,
~~helix84
--
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in the future.
http://p.sf.net/sfu/internap-sfd2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Problem with special characters in DSpace 1.5.1

2011-03-16 Thread helix84
Are you using JSPUI or XMLUI?

These things are called HTML entities. I don't think encoding is the
problem, translating entities is.

I don't think I can help, just pointing out the direction.

Regards,
~~helix84

--
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in the future.
http://p.sf.net/sfu/internap-sfd2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] SRW/Lucene/Dspace - dc schema customization, index and search

2011-03-16 Thread helix84
On Wed, Mar 16, 2011 at 20:58, Kocisky  wrote:
> ok, never mind... the right command is "[dspace]/bin/dspace index-init"

You were quick to figure it out yourself :)
I updated the documentation.

Regards,
~~helix84

--
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in the future.
http://p.sf.net/sfu/internap-sfd2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Problem with special characters in DSpace 1.5.1

2011-03-16 Thread Thornton, Susan M. (LARC-B702)[LITES]
Hi,
 We are having a strange problem with special characters in DSpace 1.5.1.  
What happens is that we import a record that has special characters in say, the 
abstract, into DSpace via ItemImport.  After it’s imported, when we display the 
Item short-listing, the escape characters do not translate into the proper 
special characters.  For instance, here is a snippet of an abstract from the 
short-listing:

This method yielded dust Sa ratios of 39.8 ± 1.4 sr and 51.8 ± 
3.6 sr at 532 nm and 1064 nm, respectively.


I can go back and forth from the short to long-listing pages and nothing 
changes….until I sign onto DSpace as Administrator, click “Edit” and go to the 
Edit Item screen and click “Update”.  Now when I look at the abstract on both 
the short and long-listings, the escape characters have successfully been 
translated to their equivalent escape sequences, like so:

This method yielded dust Sa ratios of 39.8 ± 1.4 sr and 51.8 ± 3.6 sr at 532 nm 
and 1064 nm, respectively.


Does anyone have any thoughts on this?  Is it possible either a Postgres or Web 
server setting is causing this?  As far as I know, we have all our settings set 
to ‘UTF8’.

Thanks,
Sue



Sue Walker-Thornton
Software Developer/Database Administrator
NASA Langley Research Center|LITES Contract
SGT, Inc.|130 Research Drive
Hampton, Va.  23666
Office: (757) 224-4074
Mobile: (757) 506-9903
Fax: (757) 224-4001
susan.m.thorn...@nasa.gov

--
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in the future.
http://p.sf.net/sfu/internap-sfd2d___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] How to go about in solving the following error

2011-03-16 Thread Kocisky
check in [dspace-source] if you have the following files:

dev:/home/dspace/dspace-1.7.0-src-release# find ./ -name database_schema.sql
./dspace/etc/oracle/database_schema.sql
./dspace/etc/postgres/database_schema.sql
./dspace/target/dspace-1.7.0-build.dir/etc/oracle/database_schema.sql
./dspace/target/dspace-1.7.0-build.dir/etc/postgres/database_schema.sql

check also your dspace.cfg you should have set something like this:

# Database settings #

# Database name ("oracle", or "postgres")
#db.name = ${default.db.name}
db.name = postgres
#db.name = oracle

# URL for connecting to database
#db.url = ${default.db.url}
db.url = jdbc:postgresql://localhost:5432/dspace

# JDBC Driver
#db.driver = ${default.db.driver}
db.driver = org.postgresql.Driver

# Database username and password
#db.username = ${default.db.username}
#db.password = ${default.db.password}
db.username = postgres
db.password = postgres

# Schema name - if your database contains multiple schemas, you can
avoid problems with
# retrieving the definitions of duplicate object names by specifying
# the schema name here that is used for DSpace by uncommenting the
following entry
#db.schema = public

Kocisky

On 16 March 2011 07:56, Pius Maswaga  wrote:
> Hi all
> I have managed to install the dspace 1.7.0 on ubuntu 10.10 up to the
> following point, but from this stage i'm getting difficulties. Please i need
> your assistance on how to go about in rectifying the following error so that
> i can run dspace for my university.
> init_installation:
> init_configs:
> test_database:
>      [java] 2011-03-16 10:47:16,494 INFO
>  org.dspace.core.ConfigurationManager @ Loading system provided config
> property (-Ddspace.configuration): config/dspace.cfg
>      [java] 2011-03-16 10:47:16,536 INFO
>  org.dspace.core.ConfigurationManager @ Using default log4j provided log
> configuration,if unintended, check your dspace.cfg for (log.init.config)
>      [java]
>      [java] Attempting to connect to database:
>      [java]  - URL: jdbc:postgresql://localhost:5432/dspace
>      [java]  - Driver: org.postgresql.Driver
>      [java]  - Username: dspace
>      [java]  - Password: mudsp!@
>      [java]  - Schema: null
>      [java]
>      [java] Testing connection...
>      [java] Connected successfully!
>      [java]
> setup_database:
>      [java] 2011-03-16 10:47:17,260 INFO
>  org.dspace.core.ConfigurationManager @ Loading system provided config
> property (-Ddspace.configuration): config/dspace.cfg
>      [java] 2011-03-16 10:47:17,289 INFO
>  org.dspace.core.ConfigurationManager @ Using default log4j provided log
> configuration,if unintended, check your dspace.cfg for (log.init.config)
>      [java] 2011-03-16 10:47:17,289 INFO
>  org.dspace.storage.rdbms.InitializeDatabase @ Initializing Database
>      [java] 2011-03-16 10:47:17,299 FATAL
> org.dspace.storage.rdbms.InitializeDatabase @ Caught exception:
>      [java] java.io.FileNotFoundException: database_schema.sql (No such file
> or directory)
>      [java]     at java.io.FileInputStream.open(Native Method)
>      [java]     at java.io.FileInputStream.(FileInputStream.java:106)
>      [java]     at java.io.FileInputStream.(FileInputStream.java:66)
>      [java]     at java.io.FileReader.(FileReader.java:41)
>      [java]     at
> org.dspace.storage.rdbms.InitializeDatabase.getScript(InitializeDatabase.java:119)
>      [java]     at
> org.dspace.storage.rdbms.InitializeDatabase.main(InitializeDatabase.java:68)
> BUILD FAILED
> /dspace/dspace-1.7.0-src-release/dspace/target/dspace-1.7.0-build.dir/build.xml:765:
> Java returned: 1
>
> --
> Colocation vs. Managed Hosting
> A question and answer guide to determining the best fit
> for your organization - today and in the future.
> http://p.sf.net/sfu/internap-sfd2d
> ___
> DSpace-tech mailing list
> DSpace-tech@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/dspace-tech
>
>

--
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in the future.
http://p.sf.net/sfu/internap-sfd2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] SRW/Lucene/Dspace - dc schema customization, index and search

2011-03-16 Thread Kocisky
ok, never mind... the right command is "[dspace]/bin/dspace index-init"

and now:

http://10.0.102.11:8080/SRW/search/DSpace/?query=dc.test.kind+%3D+%22video%22&version=1.1&operation=searchRetrieve&recordSchema=info%3Asrw%2Fschema%2F1%2Fdc-v1.1&maximumRecords=10&startRecord=1&resultSetTTL=300&recordPacking=xml&recordXPath=&sortKeys=

works ! nice...
K

On 16 March 2011 15:26, Kocisky  wrote:
> When i'm fetching a record :
>
> http://localhost:8080/SRW/search/DSpace/?query=dc.identifier+%3D+%2211%22&version=1.1&operation=searchRetrieve&recordSchema=info%3Asrw%2Fschema%2F1%2Fdc-v1.1&maximumRecords=10&startRecord=1&resultSetTTL=300&recordPacking=xml&recordXPath=&sortKeys=
>
> it fetches also the customized dc metadata:
>
> Results for Search: dc.identifier = "11"
> Result Set Identifier: hqwurd
> Records found: 1
> Record: 1 of 1
> Schema: Dublin Core
> dc:contributor.author:  Administrator
> dc:date.accessioned:    2011-03-10T19:02:35Z
> dc:date.available:      2011-03-10T19:02:35Z
> dc:date.issued:         2011-03-10
> dc:identifier.uri:      http://hdl.handle.net/123456789/11
> dc:description.provenance:      Submitted by admin (ad...@domain.org) on
> 2011-03-10T19:02:35Z No. of bitstreams: 1 Dovetail.Tasting.pdf: 234082
> bytes, checksum: bd7989f5f5d9b5c95ffef358b2a67fa4 (MD5)
> dc:description.provenance:      Made available in DSpace on
> 2011-03-10T19:02:35Z (GMT). No. of bitstreams: 1 Dovetail.Tasting.pdf:
> 234082 bytes, checksum: bd7989f5f5d9b5c95ffef358b2a67fa4 (MD5)
> dc:language.iso:        en_US
> dc:subject:     Books/Canon/Misc
> dc:subject:     People
> dc:title:       Development Item 1
> dc:test.kind:   video
> dc:test.content:        rafting
>
> hope it helps,
> K
>
> On 16 March 2011 15:19, Kocisky  wrote:
>> Hi all !
>>
>> i'm quite new to the dspace/lucene/SRW environment. I've set up a
>> dspace 1.7 instance with the SRW module. I'm now able to do the
>> following queries:
>>
>> http://localhost:8080/SRW/search/DSpace/?query=dc.identifier+%3D+%2211%22&version=1.1&operation=searchRetrieve&recordSchema=info%3Asrw%2Fschema%2F1%2Fdc-v1.1&maximumRecords=10&startRecord=1&resultSetTTL=300&recordPacking=xml&recordXPath=&sortKeys=
>>
>> with the default fields in the SRW search interface:
>>
>> cql.resultSetId
>> cql.serverChoice
>> dc.contributor
>> dc.creator
>> dc.description.abstract
>> dc.description.sponsorship
>> dc.description.statementofresponsibility
>> dc.description.tableofcontents
>> dc.format.mimetype
>> dc.identifier
>> dc.relation.ispartofseries
>> dc.subject
>> dc.title
>>
>> after i've added some additional fields in the dc schema (from
>> http://10.0.102.11:8080/xmlui/admin/metadata-registry): dc.test.kind
>> and dc.test.content (if more easy it wouldn't be a problem to create
>> them in separate new schema). This because i would like to use those
>> fields from an external application (for internal purposes).
>>
>> Following the documentation i've tried to configure SRW/Dspace with
>> the following configuration:
>>
>> dspace/config/DSpace.SRWDatabase.props
>>
>> indexSynonym.dc.creator=author
>> indexSynonym.dc.contributor=author
>> indexSynonym.dc.description.statementofresponsibility=author
>> indexSynonym.dc.title=title
>> indexSynonym.dc.subject=keyword
>> indexSynonym.dc.description.abstract=abstract
>> indexSynonym.dc.description.tableofcontents=abstract
>> indexSynonym.dc.relation.ispartofseries=series
>> indexSynonym.dc.format.mimetype=mime
>> indexSynonym.dc.description.sponsorship=sponsor
>> indexSynonym.dc.identifier=identifier
>> indexSynonym.cql.serverChoice=default
>>
>> indexSynonym.dc.test.kind=kind
>> indexSynonym.dc.test.content=content
>>
>>
>> dspace.cfg
>>
>> # Fields to Index for Search #
>>
>> # DC metadata elements.qualifiers to be indexed for search
>> # format: - search.index.[number] = [search field]:element.qualifier
>> # - * used as wildcard
>>
>> ###  changing these will change your search results, ###
>> ###  but will NOT automatically change your search displays  ###
>>
>> search.index.1 = author:dc.contributor.*
>> search.index.2 = author:dc.creator.*
>> search.index.3 = title:dc.title.*
>> search.index.4 = keyword:dc.subject.*
>> search.index.5 = abstract:dc.description.abstract
>> search.index.6 = author:dc.description.statementofresponsibility
>> search.index.7 = series:dc.relation.ispartofseries
>> search.index.8 = abstract:dc.description.tableofcontents
>> search.index.9 = mime:dc.format.mimetype
>> search.index.10 = sponsor:dc.description.sponsorship
>> search.index.11 = identifier:dc.identifier.*
>> search.index.12 = language:dc.language.iso
>> search.index.13 = kind:dc.test.kind
>> search.index.14 = content:dc.test.content
>>
>> then i've tried to rebuild the index but i couldn't find the script
>> /[dspace]/bin/index-init, i've check also in [dspace-source] but
>> nothing, should i download something separately?
>> i was looking at this documentation:
>> https://wiki.duraspace.org/display/DSDOC/Configuration#C

[Dspace-tech] epubs in DSpace

2011-03-16 Thread Jen Cwiok
Hello all,

I've been doing some research on whether the epub format is supported in
DSpace.  Surprisingly, I'm finding very little information in regards to
DSpace.   Is anyone using DSpace as a repository for epubs?

Thanks in advance, Jen

Jen Cwiok
Digital Projects Manager
Department of Library Services
American Museum of Natural History
79th Street and Central Park West
New York, NY 10024-5192
212.769.5644
library.amnh.org




--
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in the future.
http://p.sf.net/sfu/internap-sfd2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] SRW/Lucene/Dspace - dc schema customization, index and search

2011-03-16 Thread Kocisky
When i'm fetching a record :

http://localhost:8080/SRW/search/DSpace/?query=dc.identifier+%3D+%2211%22&version=1.1&operation=searchRetrieve&recordSchema=info%3Asrw%2Fschema%2F1%2Fdc-v1.1&maximumRecords=10&startRecord=1&resultSetTTL=300&recordPacking=xml&recordXPath=&sortKeys=

it fetches also the customized dc metadata:

Results for Search: dc.identifier = "11"
Result Set Identifier: hqwurd
Records found: 1
Record: 1 of 1
Schema: Dublin Core
dc:contributor.author:  Administrator
dc:date.accessioned:2011-03-10T19:02:35Z
dc:date.available:  2011-03-10T19:02:35Z
dc:date.issued: 2011-03-10
dc:identifier.uri:  http://hdl.handle.net/123456789/11
dc:description.provenance:  Submitted by admin (ad...@domain.org) on
2011-03-10T19:02:35Z No. of bitstreams: 1 Dovetail.Tasting.pdf: 234082
bytes, checksum: bd7989f5f5d9b5c95ffef358b2a67fa4 (MD5)
dc:description.provenance:  Made available in DSpace on
2011-03-10T19:02:35Z (GMT). No. of bitstreams: 1 Dovetail.Tasting.pdf:
234082 bytes, checksum: bd7989f5f5d9b5c95ffef358b2a67fa4 (MD5)
dc:language.iso:en_US
dc:subject: Books/Canon/Misc
dc:subject: People
dc:title:   Development Item 1
dc:test.kind:   video
dc:test.content:rafting

hope it helps,
K

On 16 March 2011 15:19, Kocisky  wrote:
> Hi all !
>
> i'm quite new to the dspace/lucene/SRW environment. I've set up a
> dspace 1.7 instance with the SRW module. I'm now able to do the
> following queries:
>
> http://localhost:8080/SRW/search/DSpace/?query=dc.identifier+%3D+%2211%22&version=1.1&operation=searchRetrieve&recordSchema=info%3Asrw%2Fschema%2F1%2Fdc-v1.1&maximumRecords=10&startRecord=1&resultSetTTL=300&recordPacking=xml&recordXPath=&sortKeys=
>
> with the default fields in the SRW search interface:
>
> cql.resultSetId
> cql.serverChoice
> dc.contributor
> dc.creator
> dc.description.abstract
> dc.description.sponsorship
> dc.description.statementofresponsibility
> dc.description.tableofcontents
> dc.format.mimetype
> dc.identifier
> dc.relation.ispartofseries
> dc.subject
> dc.title
>
> after i've added some additional fields in the dc schema (from
> http://10.0.102.11:8080/xmlui/admin/metadata-registry): dc.test.kind
> and dc.test.content (if more easy it wouldn't be a problem to create
> them in separate new schema). This because i would like to use those
> fields from an external application (for internal purposes).
>
> Following the documentation i've tried to configure SRW/Dspace with
> the following configuration:
>
> dspace/config/DSpace.SRWDatabase.props
>
> indexSynonym.dc.creator=author
> indexSynonym.dc.contributor=author
> indexSynonym.dc.description.statementofresponsibility=author
> indexSynonym.dc.title=title
> indexSynonym.dc.subject=keyword
> indexSynonym.dc.description.abstract=abstract
> indexSynonym.dc.description.tableofcontents=abstract
> indexSynonym.dc.relation.ispartofseries=series
> indexSynonym.dc.format.mimetype=mime
> indexSynonym.dc.description.sponsorship=sponsor
> indexSynonym.dc.identifier=identifier
> indexSynonym.cql.serverChoice=default
>
> indexSynonym.dc.test.kind=kind
> indexSynonym.dc.test.content=content
>
>
> dspace.cfg
>
> # Fields to Index for Search #
>
> # DC metadata elements.qualifiers to be indexed for search
> # format: - search.index.[number] = [search field]:element.qualifier
> # - * used as wildcard
>
> ###  changing these will change your search results, ###
> ###  but will NOT automatically change your search displays  ###
>
> search.index.1 = author:dc.contributor.*
> search.index.2 = author:dc.creator.*
> search.index.3 = title:dc.title.*
> search.index.4 = keyword:dc.subject.*
> search.index.5 = abstract:dc.description.abstract
> search.index.6 = author:dc.description.statementofresponsibility
> search.index.7 = series:dc.relation.ispartofseries
> search.index.8 = abstract:dc.description.tableofcontents
> search.index.9 = mime:dc.format.mimetype
> search.index.10 = sponsor:dc.description.sponsorship
> search.index.11 = identifier:dc.identifier.*
> search.index.12 = language:dc.language.iso
> search.index.13 = kind:dc.test.kind
> search.index.14 = content:dc.test.content
>
> then i've tried to rebuild the index but i couldn't find the script
> /[dspace]/bin/index-init, i've check also in [dspace-source] but
> nothing, should i download something separately?
> i was looking at this documentation:
> https://wiki.duraspace.org/display/DSDOC/Configuration#Configuration-ConfiguringLuceneSearchIndexes
>
> Now what i would like to do is to search with SRW in the Dspace/Lucene
> index with the customized metadata, for example by
> dc.test.kind="video" with a query like this:
>
> http://localhost:8080/SRW/search/DSpace/?query=dc.test.kind+%3D+%22video%22&version=1.1&operation=searchRetrieve&recordSchema=info%3Asrw%2Fschema%2F1%2Fdc-v1.1&maximumRecords=10&startRecord=1&resultSetTTL=300&recordPacking=xml&recordXPath=&sortKeys=
>
> but i'm definitively doing something wrong because it's not wo

[Dspace-tech] SRW/Lucene/Dspace - dc schema customization, index and search

2011-03-16 Thread Kocisky
Hi all !

i'm quite new to the dspace/lucene/SRW environment. I've set up a
dspace 1.7 instance with the SRW module. I'm now able to do the
following queries:

http://localhost:8080/SRW/search/DSpace/?query=dc.identifier+%3D+%2211%22&version=1.1&operation=searchRetrieve&recordSchema=info%3Asrw%2Fschema%2F1%2Fdc-v1.1&maximumRecords=10&startRecord=1&resultSetTTL=300&recordPacking=xml&recordXPath=&sortKeys=

with the default fields in the SRW search interface:

cql.resultSetId
cql.serverChoice
dc.contributor
dc.creator
dc.description.abstract
dc.description.sponsorship
dc.description.statementofresponsibility
dc.description.tableofcontents
dc.format.mimetype
dc.identifier
dc.relation.ispartofseries
dc.subject
dc.title

after i've added some additional fields in the dc schema (from
http://10.0.102.11:8080/xmlui/admin/metadata-registry): dc.test.kind
and dc.test.content (if more easy it wouldn't be a problem to create
them in separate new schema). This because i would like to use those
fields from an external application (for internal purposes).

Following the documentation i've tried to configure SRW/Dspace with
the following configuration:

dspace/config/DSpace.SRWDatabase.props

indexSynonym.dc.creator=author
indexSynonym.dc.contributor=author
indexSynonym.dc.description.statementofresponsibility=author
indexSynonym.dc.title=title
indexSynonym.dc.subject=keyword
indexSynonym.dc.description.abstract=abstract
indexSynonym.dc.description.tableofcontents=abstract
indexSynonym.dc.relation.ispartofseries=series
indexSynonym.dc.format.mimetype=mime
indexSynonym.dc.description.sponsorship=sponsor
indexSynonym.dc.identifier=identifier
indexSynonym.cql.serverChoice=default

indexSynonym.dc.test.kind=kind
indexSynonym.dc.test.content=content


dspace.cfg

# Fields to Index for Search #

# DC metadata elements.qualifiers to be indexed for search
# format: - search.index.[number] = [search field]:element.qualifier
# - * used as wildcard

###  changing these will change your search results, ###
###  but will NOT automatically change your search displays  ###

search.index.1 = author:dc.contributor.*
search.index.2 = author:dc.creator.*
search.index.3 = title:dc.title.*
search.index.4 = keyword:dc.subject.*
search.index.5 = abstract:dc.description.abstract
search.index.6 = author:dc.description.statementofresponsibility
search.index.7 = series:dc.relation.ispartofseries
search.index.8 = abstract:dc.description.tableofcontents
search.index.9 = mime:dc.format.mimetype
search.index.10 = sponsor:dc.description.sponsorship
search.index.11 = identifier:dc.identifier.*
search.index.12 = language:dc.language.iso
search.index.13 = kind:dc.test.kind
search.index.14 = content:dc.test.content

then i've tried to rebuild the index but i couldn't find the script
/[dspace]/bin/index-init, i've check also in [dspace-source] but
nothing, should i download something separately?
i was looking at this documentation:
https://wiki.duraspace.org/display/DSDOC/Configuration#Configuration-ConfiguringLuceneSearchIndexes

Now what i would like to do is to search with SRW in the Dspace/Lucene
index with the customized metadata, for example by
dc.test.kind="video" with a query like this:

http://localhost:8080/SRW/search/DSpace/?query=dc.test.kind+%3D+%22video%22&version=1.1&operation=searchRetrieve&recordSchema=info%3Asrw%2Fschema%2F1%2Fdc-v1.1&maximumRecords=10&startRecord=1&resultSetTTL=300&recordPacking=xml&recordXPath=&sortKeys=

but i'm definitively doing something wrong because it's not working!! :)
i'm i missing something? is there some interesting
documentation/tutorial on this subject?

thank you!!
Kocisky

--
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in the future.
http://p.sf.net/sfu/internap-sfd2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Problems adding static pages on xmlui - dspace 1.7, in dspace 1.6 works fine.

2011-03-16 Thread neanlos
Ok, I solved the problem.

I don't know if it was because there was two files in ViewArtifacts:
sitemap.xmap
and sitemap.xmap.old.

But the problem now it´s solved. thanks.

On Wed, Mar 16, 2011 at 10:17 AM, neanlos  wrote:

> I did that (modified ViewArtifacts sitemap.xmap) but the problem remains.
> Any suggestion?
>
>
> On Mon, Mar 14, 2011 at 2:17 PM, Mark Diggory  wrote:
>
>> Try placing it in the ViewArtifacts aspect instead, we've split the
>> ArtifactBrowser into separate aspects in 1.7, I suspect we should have
>> removed ArtifactBrowse altogether since doing this.
>>
>>
>> http://scm.dspace.org/svn/repo/dspace/trunk/dspace-xmlui/dspace-xmlui-api/src/main/resources/aspects/ViewArtifacts/sitemap.xmap
>>
>> Mark
>>
>> On Mon, Mar 14, 2011 at 7:48 AM, neanlos  wrote:
>>
>>>
>>> I worked with dspace 1.6 on my machine, now I'm workin on production
>>> dspace 1.7.
>>>
>>> It seems not to be many changes in the configuration, but I have a
>>> problem when I try to do this:
>>> http://www.mail-archive.com/dspace-tech@lists.sourceforge.net/msg06962.html
>>>
>>>
>>>
>>> ArtifactBrowser/sitemap.xmap:
>>>
>>> 
>>> 
>>> 
>>> >> src="file://{dspace.dir}/config/pages/{../1}.xml" />
>>> 
>>> 
>>> 
>>>
>>>
>>>
>>> in dspace 1.7, in dspace 1.6 works fine. The problem is that it is still
>>> showing the message "Page not found" when i try to add static pages.
>>>
>>> Thanks for any advice.
>>>
>>> --
>>> NELSON ANDRÉS LOYOLA SALAS
>>>
>>> Tecnólogo de Sistemas
>>>
>>> e-mail:
>>>
>>> nean...@gmail.com
>>> nean...@hotmail.com
>>>
>>>
>>> --
>>> Colocation vs. Managed Hosting
>>> A question and answer guide to determining the best fit
>>> for your organization - today and in the future.
>>> http://p.sf.net/sfu/internap-sfd2d
>>> ___
>>> DSpace-tech mailing list
>>> DSpace-tech@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/dspace-tech
>>>
>>>
>>
>>
>> --
>> Mark R. Diggory
>> @mire - www.atmire.com
>> 2888 Loker Avenue East - Suite 305 - Carlsbad - CA - 92010
>> Technologielaan 9 - 3001 Heverlee - Belgium
>>
>
>
>
> --
> NELSON ANDRÉS LOYOLA SALAS
>
> Tecnólogo de Sistemas
>
> e-mail:
>
> nean...@gmail.com
> nean...@hotmail.com
>



-- 
NELSON ANDRÉS LOYOLA SALAS

Tecnólogo de Sistemas

e-mail:

nean...@gmail.com
nean...@hotmail.com
--
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in the future.
http://p.sf.net/sfu/internap-sfd2d___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Problems adding static pages on xmlui - dspace 1.7, in dspace 1.6 works fine.

2011-03-16 Thread neanlos
I did that (modified ViewArtifacts sitemap.xmap) but the problem remains.
Any suggestion?

On Mon, Mar 14, 2011 at 2:17 PM, Mark Diggory  wrote:

> Try placing it in the ViewArtifacts aspect instead, we've split the
> ArtifactBrowser into separate aspects in 1.7, I suspect we should have
> removed ArtifactBrowse altogether since doing this.
>
>
> http://scm.dspace.org/svn/repo/dspace/trunk/dspace-xmlui/dspace-xmlui-api/src/main/resources/aspects/ViewArtifacts/sitemap.xmap
>
> Mark
>
> On Mon, Mar 14, 2011 at 7:48 AM, neanlos  wrote:
>
>>
>> I worked with dspace 1.6 on my machine, now I'm workin on production
>> dspace 1.7.
>>
>> It seems not to be many changes in the configuration, but I have a problem
>> when I try to do this:
>> http://www.mail-archive.com/dspace-tech@lists.sourceforge.net/msg06962.html
>>
>>
>>
>> ArtifactBrowser/sitemap.xmap:
>>
>> 
>> 
>> 
>> > src="file://{dspace.dir}/config/pages/{../1}.xml" />
>> 
>> 
>> 
>>
>>
>>
>> in dspace 1.7, in dspace 1.6 works fine. The problem is that it is still
>> showing the message "Page not found" when i try to add static pages.
>>
>> Thanks for any advice.
>>
>> --
>> NELSON ANDRÉS LOYOLA SALAS
>>
>> Tecnólogo de Sistemas
>>
>> e-mail:
>>
>> nean...@gmail.com
>> nean...@hotmail.com
>>
>>
>> --
>> Colocation vs. Managed Hosting
>> A question and answer guide to determining the best fit
>> for your organization - today and in the future.
>> http://p.sf.net/sfu/internap-sfd2d
>> ___
>> DSpace-tech mailing list
>> DSpace-tech@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/dspace-tech
>>
>>
>
>
> --
> Mark R. Diggory
> @mire - www.atmire.com
> 2888 Loker Avenue East - Suite 305 - Carlsbad - CA - 92010
> Technologielaan 9 - 3001 Heverlee - Belgium
>



-- 
NELSON ANDRÉS LOYOLA SALAS

Tecnólogo de Sistemas

e-mail:

nean...@gmail.com
nean...@hotmail.com
--
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in the future.
http://p.sf.net/sfu/internap-sfd2d___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Admin interface for new items

2011-03-16 Thread Iola Hagen [ioh]
Hi all,

Does anyone know if there is any work being done to create an interface to 
allow non technical administrators to batch upload their own items. I have seen 
similar enquires but I can't find any mention of anything being developed. If 
there isn't anything currently available I would be interested in developing 
something myself, any hints would be appreciated.

Cheers
Iola
--
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in the future.
http://p.sf.net/sfu/internap-sfd2d___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] How to go about in solving the following error

2011-03-16 Thread Pius Maswaga
Hi all
I have managed to install the dspace 1.7.0 on ubuntu 10.10 up to the
following point, but from this stage i'm getting difficulties. Please i need
your assistance on how to go about in rectifying the following error so that
i can run dspace for my university.

init_installation:

init_configs:

test_database:
 [java] 2011-03-16 10:47:16,494 INFO
 org.dspace.core.ConfigurationManager @ Loading system provided config
property (-Ddspace.configuration): config/dspace.cfg
 [java] 2011-03-16 10:47:16,536 INFO
 org.dspace.core.ConfigurationManager @ Using default log4j provided log
configuration,if unintended, check your dspace.cfg for (log.init.config)
 [java]
 [java] Attempting to connect to database:
 [java]  - URL: jdbc:postgresql://localhost:5432/dspace
 [java]  - Driver: org.postgresql.Driver
 [java]  - Username: dspace
 [java]  - Password: mudsp!@
 [java]  - Schema: null
 [java]
 [java] Testing connection...
 [java] Connected successfully!
 [java]

setup_database:
 [java] 2011-03-16 10:47:17,260 INFO
 org.dspace.core.ConfigurationManager @ Loading system provided config
property (-Ddspace.configuration): config/dspace.cfg
 [java] 2011-03-16 10:47:17,289 INFO
 org.dspace.core.ConfigurationManager @ Using default log4j provided log
configuration,if unintended, check your dspace.cfg for (log.init.config)
 [java] 2011-03-16 10:47:17,289 INFO
 org.dspace.storage.rdbms.InitializeDatabase @ Initializing Database
 [java] 2011-03-16 10:47:17,299 FATAL
org.dspace.storage.rdbms.InitializeDatabase @ Caught exception:
 [java] java.io.FileNotFoundException: database_schema.sql (No such file
or directory)
 [java] at java.io.FileInputStream.open(Native Method)
 [java] at java.io.FileInputStream.(FileInputStream.java:106)
 [java] at java.io.FileInputStream.(FileInputStream.java:66)
 [java] at java.io.FileReader.(FileReader.java:41)
 [java] at
org.dspace.storage.rdbms.InitializeDatabase.getScript(InitializeDatabase.java:119)
 [java] at
org.dspace.storage.rdbms.InitializeDatabase.main(InitializeDatabase.java:68)

BUILD FAILED
/dspace/dspace-1.7.0-src-release/dspace/target/dspace-1.7.0-build.dir/build.xml:765:
Java returned: 1
--
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in the future.
http://p.sf.net/sfu/internap-sfd2d___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] 1.7.0 jspui failed

2011-03-16 Thread Bram Luyten
Hi,

dan you provide some more information on possible errors you see in the
dspace logfiles?
Or do you get any errors in the user interface? Screenshots might help as
well.

best regards,

Bram Luyten

@mire

Technologielaan 9 - 3001 Heverlee - Belgium
2888 Loker Avenue East, Suite 305 - Carlsbad, CA 92010 - USA

atmire.com - Institutional Repository Solutions


On Tue, Mar 15, 2011 at 9:34 PM, liss RR  wrote:

>  Hellow all:
>
> I've upgrading dspace from v. 1.4.2 to 1.7.0 and it seems that works ok  in
> xmlui UI but in the jspui UI I can not see the bitstream and I can't add
> items
>
> what can I do?
>
> could somebody help me?
>
> Thanks!
>
>
>
>
> --
> Colocation vs. Managed Hosting
> A question and answer guide to determining the best fit
> for your organization - today and in the future.
> http://p.sf.net/sfu/internap-sfd2d
> ___
> DSpace-tech mailing list
> DSpace-tech@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/dspace-tech
>
>
--
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in the future.
http://p.sf.net/sfu/internap-sfd2d___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] bulk loading

2011-03-16 Thread Lewatle Phaladi
Hi Stuart 

Thanks for your replies.

Regards,
Lewatle 


-Original Message-
From: Stuart Lewis [mailto:s.le...@auckland.ac.nz] 
Sent: 15 March 2011 10:51 PM
To: Lewatle Phaladi
Cc: dspace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] bulk loading

Hi Lewatle,

> I have items that I want to load to dspace, they are PDF documents,  I
want to use bulk loading facility to load them at once to my collection,
can someone advice on how to do that.

Perform a web search for 'dspace import' and you'll find a lot of
helpful resources.  Or look in the DSpace wiki for instructions:

 -
https://wiki.duraspace.org/display/DSDOC/System+Administration#SystemAdm
inistration-ItemImporterandExporter

One useful resource in the form of a teaching course module can be found
at:

 - http://hdl.handle.net/2160/627

I hope that helps,


Stuart Lewis
Digital Development Manager
Te Tumu Herenga The University of Auckland Library Auckland Mail Centre,
Private Bag 92019, Auckland 1142, New Zealand
Ph: +64 (0)9 373 7599 x81928

This communication 
is intended for the addressee only. It is confidential. If you have received 
this communication in error, please notify us immediately and destroy the 
original message. You may not copy or disseminate this communication without 
the permission of the University. Only authorized signatories are competent to 
enter into agreements on behalf of the University and recipients are thus 
advised that the content of this message may not be legally binding on the 
University and may contain the personal views and opinions of the author, which 
are not necessarily the views and opinions of The University of the 
Witwatersrand, Johannesburg. All agreements between the University and 
outsiders are subject to South African Law unless the University agrees in 
writing to the contrary.


--
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in the future.
http://p.sf.net/sfu/internap-sfd2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech