Re: [Dspace-tech] How to enrich metadata with special characters?

2008-11-17 Thread Robert Roggenbuck


Bram Luyten schrieb:
 I was recently looking for a good resource on what's included in the unicode
 tables and what isn't.
 This one was one of the best I could find: http://barzilai.org/math_sym.htm
That's a nice overview, but only a small subset of available unicode 
characters (see http://www.unicode.org/charts/symbols.html).

 
 But (repeating the previous posts), this doesn't cover all symbols necessary
 to express mathematical (or for example chemical) formulas.
 Especially when thinking about OAI, I'm really wondering if _any_ standards
 or agreements apply ?
 
 Does anyone know how they do this in big reference repositories ?
In our library system there is a coding rule for the handling of sub- 
and superscripts. Carbon dioxide (HTML COsub2/sub) would be coded 
CO_2 and the Uranium Isotope 238 (HTML sup238/supsub92/supU) as 
238_92_U. This is not useful for reading and understanding (because the 
coding results are ambiguous). But while coding the metadata this way it 
is possible to formulate (and transform) queries that can match the 
metadata.

 
 Maybe I was just unlucky after looking for a few references, but it doesn't
 seem that these submissions in Arxiv include special symbols:
 http://arxiv.org/abs/0811.1165
 http://arxiv.org/abs/0811.0548
They use TeX and hope that anyone can understand it.

Best Greetings

Robert

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] How to enrich metadata with special characters?

2008-11-14 Thread Robert Roggenbuck
Unfortunately there were no responds to my question.

Whenever You include a markup-language in the field values, You will 
have problems during searching. When You search for example for carbon 
dioxide as 'CO2', and You encoded it as 'COsub2/sub', You will never 
find it! A possible way to solve the problem would be to split metadata 
values into two fields: one for harvesting / indexing and one for 
presenting - like dc.title and dc.title.display. Then it would 
(theoretically) be possible to include something like HTML or TeX in the 
presentation field and allow DSpace to render it, while doing the search 
on the normal field. But to do the rendering one must modify the 
DSpace code...

We still have no practical solution for this problem.

Best regards

Robert

Yuyun Wirawati ISHAK (LIBRIS) schrieb:
 Hi Robert
 I'm having the same question. Do you have any answer to this query yet? 
  
 Thanks in advance,
 Yuyun
 NIE Library
 Singapore
  
 Hi,
  
 I just wonder how to add special characters to metadata. Unicode-Escapes
 
 like #x1D6C0; work - but there are things in the world which are not 
 captured by the unicode tables. One example is a superscript infinity 
 sign, like in 
 http://elib.ub.uni-osnabrueck.de/publications/pics/Omega-S.gif
 http://elib.ub.uni-osnabrueck.de/publications/pics/Omega-S.gif  .
  
 Would it be possible to allow MathML or LaTeX to be rendered? Or at 
 least to allow a selected set of HTML-tags to handle these things, like 
 sub, sup and img?
  
 Best Regards
  
 Robert
  
 PS: While playing around to insert unicode-entities, I discovered a bug:
 
 whenever ampersands occur in a field, the last one is escaped as amp; 
 in the rendered item page, but displayed correct in the text field for 
 metadata editing. After actualising / saving the item a second time the 
 characters are displayed as expected.
  

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Osnabrueck
Germany
[EMAIL PROTECTED]
===

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Cleaning the assetstore

2008-10-16 Thread Robert Roggenbuck
Hi all!

Is there a way to remove all bitstreams from the assetstore directory 
when they are no longer referenced from the data base? The 
'--delete'-option of ItemImport just removes the items from the data base.

Best Greetings

Robert

(DSpace 1.5, JSPUI, PostgreSql 8.1.11, RedHat EL5)

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Osnabrueck
Germany
===

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Adding title as a name prefix in submit form

2008-10-16 Thread Robert Roggenbuck
Hello,

I just wonder whether anybody extended the 'name' field-type for 
input-forms.xml to have an additional field for professional titles like 
'Dr.', 'Prof.', 'Gen.',...?

Best Regards

Robert

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Osnabrueck
Germany
===

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Cleaning the assetstore

2008-10-16 Thread Robert Roggenbuck
Great! It works! Thanks!

I tried 'cleanup' before, after removing buggy data with 'import -d' - 
and it does not touched the assetstore-dir. So I thought it tidies up 
only the database. But I forgot that 'cleanup' ignores items younger 
then 1 hour!

Greetings

Robert

---

Claudia Jürgen schrieb:
 Hi Robert,
 
 if you delete an item from DSpace it is just flagged as deleted.
 The associated bitstreams are removed if you run
 [dspace]/bin/cleanup
 Best run it along with the other cron jobs nightly.
 
 Hope that helps
 
 Claudia
 
 
 Robert Roggenbuck schrieb:
 Hi all!

 Is there a way to remove all bitstreams from the assetstore directory 
 when they are no longer referenced from the data base? The 
 '--delete'-option of ItemImport just removes the items from the data 
 base.

 Best Greetings

 Robert

 (DSpace 1.5, JSPUI, PostgreSql 8.1.11, RedHat EL5)

 

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Alte Muenze 16
D-49074 Osnabrueck
Germany
Tel ++49/541/969-4344  Fax -4482
[EMAIL PROTECTED]

Postbox:
Postfach 4496
D-49034 Osnabrueck
===

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Removing all items

2008-10-09 Thread Robert Roggenbuck
Hi all,

is there a way to remove all items from a DSpace installation (1.5, 
JSPUI)? I do not want to drop the database, because I do not want to 
loose all configurations and collections.

Best regards

Robert

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
D-49074 Osnabrueck
Germany
===

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Internal Server Error when creating top level community

2008-10-06 Thread Robert Roggenbuck
:452)
 
   at
 org.postgresql.jdbc2.AbstractJdbc2Statement.executeWithFlags(AbstractJdb
 c2Statement.java:354)
 
   at
 org.postgresql.jdbc2.AbstractJdbc2Statement.executeQuery(AbstractJdbc2St
 atement.java:258)
 
   at
 org.apache.commons.dbcp.DelegatingPreparedStatement.executeQuery(Delegat
 ingPreparedStatement.java:93)
 
   at
 org.apache.commons.dbcp.DelegatingPreparedStatement.executeQuery(Delegat
 ingPreparedStatement.java:93)
 
   at
 org.dspace.storage.rdbms.DatabaseManager.query(DatabaseManager.java:221)
 
   at
 org.dspace.browse.BrowseDAOPostgres.doQuery(BrowseDAOPostgres.java:385)
 
   at
 org.dspace.browse.BrowseEngine.browseMini(BrowseEngine.java:198)
 
   at
 org.dspace.app.webui.components.RecentSubmissionsManager.getRecentSubmis
 sions(RecentSubmissionsManager.java:116)
 
   at
 org.dspace.app.webui.components.RecentCommunitySubmissions.process(Recen
 tCommunitySubmissions.java:80)
 
   at
 org.dspace.app.webui.servlet.HandleServlet.preProcessCommunityHome(Handl
 eServlet.java:455)
 
   at
 org.dspace.app.webui.servlet.HandleServlet.communityHome(HandleServlet.j
 ava:413)
 
   at
 org.dspace.app.webui.servlet.HandleServlet.doDSGet(HandleServlet.java:23
 9)
 
   at
 org.dspace.app.webui.servlet.DSpaceServlet.processRequest(DSpaceServlet.
 java:151)
 
   at
 org.dspace.app.webui.servlet.DSpaceServlet.doGet(DSpaceServlet.java:99)
 
   at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
 
   at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
 
   at
 org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica
 tionFilterChain.java:269)
 
   at
 org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt
 erChain.java:188)
 
   at
 org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValv
 e.java:213)
 
   at
 org.apache.catalina.core.StandardContextValve.invoke(StandardContextValv
 e.java:174)
 
   at
 org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java
 :127)
 
   at
 org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java
 :117)
 
   at
 org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.
 java:108)
 
   at
 org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:1
 74)
 
   at
 org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:87
 4)
 
   at
 org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.proc
 essConnection(Http11BaseProtocol.java:665)
 
   at
 org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint
 .java:528)
 
   at
 org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollow
 erWorkerThread.java:81)
 
   at
 org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool
 .java:689)
 
   at java.lang.Thread.run(Thread.java:595)
 
 
 
 
 
 
 
 
 
 
 
   --
 
 
 
 
 
 
 
 
 
 
 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
 Build the coolest Linux based applications with Moblin SDK  win great prizes
 Grand prize is a trip for two to an Open Source event anywhere in the world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 
 
 
 
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Alte Muenze 16
D-49074 Osnabrueck
Germany
Tel ++49/541/969-4344  Fax -4482
[EMAIL PROTECTED]

Postbox:
Postfach 4496
D-49034 Osnabrueck
===

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Internal Server Error when creating top level community

2008-10-06 Thread Robert Roggenbuck
@David:

I agree that there seems something wrong with Your DB-tables... To be 
sure to find the right lines in the log file, open it and look at it's 
end before You press the create community button. After You get the 
error reload the view to the log file and You will see what's added 
since Your action.

@all:

I do not know what the error message below could cause. May be someone else?

Greetings

Robert

-

David Marcinkowski schrieb:
 Hello Robert, 
 
 The dspace.log is long...but I think this is the problem entryI
 think it describes a missing field in the database.
 
 Any suggestions will be apprechiated
 
 David
 
 
 _
 
 Dspace.log
 
 2008-09-30 10:46:38,271 ERROR
 org.dspace.app.webui.components.RecentSubmissionsManager @ caught
 exception: 
 org.dspace.browse.BrowseException: problem with query: SELECT bi_item.*
 FROM bi_item, (SELECT communities2item.item_id FROM communities2item
 WHERE communities2item.community_id=? ) mappings  WHERE
 bi_item.item_id=mappings.item_id  ORDER BY sort_3 DESC  LIMIT ? 
   at
 org.dspace.browse.BrowseDAOPostgres.doQuery(BrowseDAOPostgres.java:403)
   at
 org.dspace.browse.BrowseEngine.browseMini(BrowseEngine.java:198)
   at
 org.dspace.app.webui.components.RecentSubmissionsManager.getRecentSubmis
 sions(RecentSubmissionsManager.java:116)
   at
 org.dspace.app.webui.components.RecentCommunitySubmissions.process(Recen
 tCommunitySubmissions.java:80)
   at
 org.dspace.app.webui.servlet.HandleServlet.preProcessCommunityHome(Handl
 eServlet.java:455)
   at
 org.dspace.app.webui.servlet.HandleServlet.communityHome(HandleServlet.j
 ava:413)
   at
 org.dspace.app.webui.servlet.HandleServlet.doDSGet(HandleServlet.java:23
 9)
   at
 org.dspace.app.webui.servlet.DSpaceServlet.processRequest(DSpaceServlet.
 java:151)
   at
 org.dspace.app.webui.servlet.DSpaceServlet.doGet(DSpaceServlet.java:99)
   at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
   at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
   at
 org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica
 tionFilterChain.java:269)
   at
 org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt
 erChain.java:188)
   at
 org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValv
 e.java:213)
   at
 org.apache.catalina.core.StandardContextValve.invoke(StandardContextValv
 e.java:174)
   at
 org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java
 :127)
   at
 org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java
 :117)
   at
 org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.
 java:108)
   at
 org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:1
 74)
   at
 org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:87
 4)
   at
 org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.proc
 essConnection(Http11BaseProtocol.java:665)
   at
 org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint
 .java:528)
   at
 org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollow
 erWorkerThread.java:81)
   at
 org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool
 .java:689)
   at java.lang.Thread.run(Thread.java:595)
 Caused by: org.postgresql.util.PSQLException: ERROR: column sort_3
 does not exist
   at
 org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecu
 torImpl.java:1531)
   at
 org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImp
 l.java:1313)
   at
 org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:
 188)
   at
 org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Stateme
 nt.java:452)
   at
 org.postgresql.jdbc2.AbstractJdbc2Statement.executeWithFlags(AbstractJdb
 c2Statement.java:354)
   at
 org.postgresql.jdbc2.AbstractJdbc2Statement.executeQuery(AbstractJdbc2St
 atement.java:258)
   at
 org.apache.commons.dbcp.DelegatingPreparedStatement.executeQuery(Delegat
 ingPreparedStatement.java:93)
   at
 org.apache.commons.dbcp.DelegatingPreparedStatement.executeQuery(Delegat
 ingPreparedStatement.java:93)
   at
 org.dspace.storage.rdbms.DatabaseManager.query(DatabaseManager.java:221)
   at
 org.dspace.browse.BrowseDAOPostgres.doQuery(BrowseDAOPostgres.java:385)
   ... 24 more
 
 
 
 -Original Message-
 From: Robert Roggenbuck [mailto:[EMAIL PROTECTED] 
 Sent: Monday, October 06, 2008 3:19 AM
 To: David Marcinkowski
 Cc: dspace-tech@lists.sourceforge.net
 Subject: Re: [Dspace-tech] Internal Server Error when creating top level
 community
 
 
 Can You have a look in Your dspace.log and post the lines belonging to 
 Your error?
 
 Greetings
 
 Robert
 
 David Marcinkowski schrieb:
 Hello

Re: [Dspace-tech] Installation Inquiry

2008-09-17 Thread Robert Roggenbuck
Hello Will,

The lines of Your commands looking a bit strange - but I think / hope 
that are typos while writing this mail.

Will Tarver schrieb:
 Hello Robert,
 Thank you so much for the quick reply.  With your assistance, I've managed
 to complete everything except step 5.  I can't seem to get it to install.
 I'm not really used to using commands.  Here's what I'm entering after trial
 and error:
 
 cd\users\will\downloads\dspace-1.5.1-release\dspace\config
You mean:
cd \users\will\downloads\dspace-1.5.1-release\dspace\config
(with a space after 'cd')
BUT: this is not [dspace-source]!

 
 Next, I enter:
 cd\config.cfg mvn package
???

 
 
  This will open the file, but not install.  I also tried:
 
  cd\users\will\downloads\dspace-1.5.1-release
  cd\DSpace
  mvn package
 
  This attempt says *'mvn' is not recognized as an internal or external
  command, operable program or batch file.*


Again: issue the following commands (replace the '[directory]' by the 
real settings)
# cd [dspace-source]
# cd dspace
# mvn package

When I see it right, it should be this way in Your case:
# cd \users\will\downloads\dspace-1.5.1-release
# cd dspace
# mvn package

If the last command fails with the message You reported, You did not 
installed Maven (or You have it not in Your PATH-variable).

Hope that helps

Regards

Robert


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Removing the 1st step from submission.

2008-09-05 Thread Robert Roggenbuck
Hi Tim,

just to let You know: I applied Your solution with the same success 
and the same environment (JSPUI 1.5.0).

In general I would like to have things like this more easy to configure 
in further releases of DSpace: Switching submit steps off for particular 
collections and preset the needed values.

Anyway I am very lucky with Your solution - when it works ;-)

Greetings

Robert


Tim Donohue schrieb:
 Jose,
 
 It looks like there *may* be a bug in the 1.5.0 JSPUI regarding these 
 non-interactive steps...though I haven't been able to look at it close 
 enough to be 100% sure.  The InitializationStep I sent you works fine 
 with the XMLUI (which is what I'm working with).  I'll look into the 
 problems with the JSPUI, though I may not get to it till tomorrow.
 
 I'll let you know what I find out.
 
 - Tim
 

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Osnabrueck
Germany
===

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Verify/Review-step displays filled fields as 'No'

2008-09-04 Thread Robert Roggenbuck
Just to close the thread: It works great!

Greetings

Robert

---

Claudia Jürgen schrieb:
 Hi Robert,
 
 review-metadata.jsp still uses getDC, just replace this with getMetadata 
 see below.
 
 Claudia
 
 
 
 Index: 
 /dspace-1_5_1-beta/dspace-jspui/dspace-jspui-webapp/src/main/webapp/submit/review-metadata.jsp
  
 
 ===
 --- 
 /dspace-1_5_1-beta/dspace-jspui/dspace-jspui-webapp/src/main/webapp/submit/review-metadata.jsp
  
 (revision 3052)
 +++ 
 /dspace-1_5_1-beta/dspace-jspui/dspace-jspui-webapp/src/main/webapp/submit/review-metadata.jsp
  
 (working copy)
 @@ -134,11 +134,11 @@
 
if (inputType.equals(qualdrop_value))
{
 - values = item.getDC(inputs[z].getElement(), Item.ANY, 
 Item.ANY);
 + values = item.getMetadata(inputs[z].getSchema(), 
 inputs[z].getElement(), Item.ANY, Item.ANY);
}
else
{
 - values = item.getDC(inputs[z].getElement(), 
 inputs[z].getQualifier(), Item.ANY);
 + values = item.getMetadata(inputs[z].getSchema(), 
 inputs[z].getElement(), inputs[z].getQualifier(), Item.ANY);
}
if (values.length == 0)
{
 
 
 Robert Roggenbuck schrieb:
 Hi all,

 I am running DSpace 1.5 JSPUI and just recognised that nearly all 
 field values are displayed as None. It seems to me that only the 
 fields from the dc-namespace are taken. At the end all values are 
 stored in DSpace - but the wrong Verify/Review causes confusion. Does 
 anyone experienced the same? Is there a patch?

 Greetings

 Robert

 

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Alte Muenze 16
D-49074 Osnabrueck
Germany
Tel ++49/541/969-4344  Fax -4482
[EMAIL PROTECTED]

Postbox:
Postfach 4496
D-49034 Osnabrueck
===

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Antw: Re: DSpace 1.5.1 beta, encoding

2008-09-01 Thread Robert Roggenbuck
Hi Mark,

Mark Diggory schrieb:
 On Aug 29, 2008, at 7:17 AM, Michael Steck wrote:
[snip]
 Are email addresses allowed to hold special characters?

In the .de Domain it is possible to include umlauts and a lot of other 
special characters. See http://www.denic.de/en/domains/idns/liste.html . 
  Umlauts are also possible for .at, .ch, .net, .org, .info and .com 
(and some others).

Greetings

Robert

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Verify/Review-step displays filled fields as 'No'

2008-08-22 Thread Robert Roggenbuck
Hi all,

I am running DSpace 1.5 JSPUI and just recognised that nearly all field 
values are displayed as None. It seems to me that only the fields from 
the dc-namespace are taken. At the end all values are stored in DSpace - 
but the wrong Verify/Review causes confusion. Does anyone experienced 
the same? Is there a patch?

Greetings

Robert

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Germany
===

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Dspace: Internal Server Error

2008-08-22 Thread Robert Roggenbuck
You should check Your disk space. The error message says that there is 
not enough left.

Greetings

Robert

---

d space schrieb:
 Hey All,
 
 I recently setup Dspace 1.4.2 and users started testing the program by
 creating collections and submitting items. They were able to do the
 necessary tasks until recently when they are unable to submit to any
 collection. The tomcat and postgres services were restarted but they are
 still unable to submit to any collection which they have permissions for. A
 couple hours after this problem occurred the following email was sent
 
 
 
 DSpace: Internal Server Error
 
 An internal server error occurred on http://192.168.3.15/dspace:
 
 Date:   8/20/08 7:02 PM
 Session ID: java.io.IOException: No space left on device
 at java.io.RandomAccessFile.writeBytes(Native Method)
 at java.io.RandomAccessFile.write(RandomAccessFile.java:456)
 at
 org.apache.lucene.store.FSIndexOutput.flushBuffer(FSDirectory.java:586)
 at
 org.apache.lucene.store.BufferedIndexOutput.flush(BufferedIndexOutput.java:85)
 at
 org.apache.lucene.store.BufferedIndexOutput.close(BufferedIndexOutput.java:99)
 at org.apache.lucene.store.FSIndexOutput.close(FSDirectory.java:591)
 at org.apache.lucene.index.FieldInfos.write(FieldInfos.java:260)
 at
 org.apache.lucene.index.SegmentMerger.mergeFields(SegmentMerger.java:184)
 at org.apache.lucene.index.SegmentMerger.merge(SegmentMerger.java:95)
 at
 org.apache.lucene.index.IndexWriter.mergeSegments(IndexWriter.java:1489)
 at
 org.apache.lucene.index.IndexWriter.flushRamSegments(IndexWriter.java:1351)
 at org.apache.lucene.index.IndexWriter.close(IndexWriter.java:588)
 at org.dspace.search.DSIndexer.indexContent(DSIndexer.java:283)
 at org.dspace.search.DSIndexer.indexContent(DSIndexer.java:212)
 at org.dspace.search.DSIndexer.reIndexContent(DSIndexer.java:360)
 at org.dspace.content.Collection.update(Collection.java:865)
 at
 org.dspace.app.webui.servlet.admin.EditCommunitiesServlet.processConfirmEditCollection(EditCommunitiesServlet.java:670)
 at
 org.dspace.app.webui.servlet.admin.EditCommunitiesServlet.doDSPost(EditCommunitiesServlet.java:267)
 at
 org.dspace.app.webui.servlet.DSpaceServlet.processRequest(DSpaceServlet.java:147)
 at
 org.dspace.app.webui.servlet.DSpaceServlet.doPost(DSpaceServlet.java:105)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
 at
 org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
 at
 org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
 at
 org.dspace.app.webui.filter.RegisteredOnlyFilter.doFilter(RegisteredOnlyFilter.java:98)
 at
 org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
 at
 org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
 at
 org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:228)
 at
 org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
 at
 org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
 at
 org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
 at
 org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
 at
 org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:216)
 at
 org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
 at
 org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:634)
 at
 org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:445)
 at java.lang.Thread.run(Thread.java:595)
 
 
 {3}
 
 Exception:
 {4}
 
 ___
 
 Does anyone have any advice on the steps that should be taken to solve this
 matter or has anyone ever encountered this error?
 
 Looking forward to response,
 Ali
 
-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Germany
===

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Multiple DSpace instances sharing one database?

2008-08-21 Thread Robert Roggenbuck
You can have several DSpace instances running at one database. You just 
need different tablespaces. And then You must do some changes in 
dspace.cfg. May be it is possible to copy the PROD table space to a 
STAGING tablespace - but I am not sure how DSpace will react. Maybe 
there are some internal settings depending on the tablespace and the 
tomcat port and so on.

We are running 1.5 JSPUI in a similar situation - but we did not reach 
the PROD stage. We have a DEV and a QA installation and thought about 
mirroring the QA to a PROD environment (it is a Xen virtual machine). 
But the last step is not tested until now - and of course we will have 
to make some configuration changes. I like Your idea about a STAGING step.

Greetings

Robert

-

Randy Stern schrieb:
 Wondering if anyone has a solution to this configuration problem:
 
 We are making various modifications to the DSpace 1.5 XMLUI, which requires 
 us to periodically test and release updated versions of software. We are 
 having trouble figuring out how to configure a pre-production staging 
 instance of DSpace. Normally, we would like to push all changes through a 
 series of instances:
  DEV - private DEV tomcat instance, database and assetstore
  QA - private QA tomcat instance, database and assetstore
  STAGING - private STAGING tomcat instance, but using the 
 PUBLIC  database and assetstore
  PROD - public PROD tomcat instance, database and assetstore
 
 The goal of STAGING is to test all code in a production configuration, 
 e.g. with all production settings in dspace.cfg, before moving the changed 
 code to production with essentially a file copy.
 
 We tried setting STAGING up with a local copy of the PROD assetstore, and 
 with the database as read only,  and this failed to run. Apparently DSpace 
 needs to write to the database at startup. Is this true?
 
 If DSpace must write to the database, then we may want to leave the 
 database as read/write. A followup question would be: is it safe to have 
 two instances of the DSpace tomcat webapp accessing the same database - 
 lets say so long as we do not submit any new items or modify items while 
 doing staging tests? Or will having two instances access the same database 
 cause the database to become corrupt?
 
 Appreciate any thoughts someone more knowledgeable than I would have on the 
 viability of setting up this type of environment.
 
 -Randy
 


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] News of main page are stored in only 1 language

2008-08-20 Thread Robert Roggenbuck
Hi,

I just found a surprising bug while configuring the two News of the 
main page. We have a DSpace 1.5 (jspui) installation with English and 
German GUI. There are two possibilities to configure the News: 1. the 
news-side*.html and news-top*.html in the config directory, and 2. the 
administration area of the GUI.

Now my case: I edited the German text from the GUI. Then I switched to 
the English GUI to set up the translation. The fields were already 
filled with the German texts (!). And after changing them, the German 
texts in the German GUI are gone. Looking in the config directory I saw 
that only the files news-side.html and news-top.html were affected and 
news-side_de.html and news-top_de.html were still old (= the original 
versions from the language pack).

This means: Even when I edit the News from the German GUI, the English 
files are written (and displayed)!

Does anyone have an idea how to debug this?

Greetings

Robert

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Germany
===

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Submission Error

2008-08-14 Thread Robert Roggenbuck
Hi Brett,

Brett, Hamish schrieb:
[snip]
 
 Currently when I change a jsp I run a script that includes mvn clean 
 package is this suffient or are you saying run mvn package again? But wont 
 this overwrite my configuration.
For my experiences a mvn package is enough. I do a mvn clean only if 
I get errors during mvn package. After altering jsp files You need to 
execute a ant update (in the 
[dspace-source]/dspace/target/dspace-1.5.0-build.dir/).

Greetings

Robert

 
 -Original Message-
 From: Claudia Jürgen [mailto:[EMAIL PROTECTED] 
 Sent: Thursday, 14 August 2008 4:22 PM
 To: Brett, Hamish
 Cc: Anderson, Charles W; dspace-tech@lists.sourceforge.net
 Subject: Re: [Dspace-tech] Submission Error
 
 Hi Hamish,
 
 the missing escapes for quotation marks were corrected in 1.5.x not 1.5 
 yesterday afternoon. Did you update your sources?
 
 Claudia
 
 
 Brett, Hamish schrieb:
 Hi

 If the problem described below has been corrected in the 1.5 branch 
 then I have another issue, which I suspect as this did not occur in 
 our test server

 Thanks

 Hamish

 -Original Message-
 From: Claudia Jürgen [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, 13 August 2008 11:52 PM
 To: Anderson, Charles W
 Cc: Brett, Hamish; dspace-tech@lists.sourceforge.net
 Subject: Re: [Dspace-tech] Submission Error

 Hi all,

 this has been corrected in the 1.5.x branch.

 Sunny greetings

 Claudia


 Anderson, Charles W schrieb:
 Hi, Hamish --


 We had the same problem; I posted on it a couple of days ago.  There are 
 several places in three of the submission jsps  where L ocaleSupport 
 statements are used to write links, and the quotation marks in the links 
 are not escaped properly; we fixed the problem by escaping the quotes (with 
 a \ character).   


 The files involved, with line numbers: 

 submit/edit-metadata.jsp, lines 990 and 997 
 submit/show-uploaded-file.jsp, lines 122, 203 and 210
 submit/review.jsp, line 97 



 Please feel free to contact me directly if this isn't clear. 


 Cheers,


 Bill



 - Original Message -
 From: Hamish Brett [EMAIL PROTECTED]
 To: dspace-tech@lists.sourceforge.net
 Sent: Wednesday, August 13, 2008 3:04:53 AM GMT -05:00 US/Canada 
 Eastern
 Subject: [Dspace-tech] Submission Error


 Hi
   
 Just upgrading to 1.5, when I go to submit an item it allows me to 
 select the collection and then once selected if the item is published 
 before or not I receive an Internal Error , with the logs reporting 
 this below. Any ideas
   
 Thanks
   
 Hamish
   
 2008-08-13 16:27:35,302 ERROR 
 org.dspace.app.webui.servlet.SubmissionController @ Error loading step 
 class'org.dspace.submit.step.DescribeStep': 
 org.apache.jasper.JasperException: /submit/edit-metadata.jsp(990,31) 
 Attribute value  LocaleSupport.getLocalizedMessage(pageContext, 
 help.index) + #describe2 is q uoted with  which must be escaped when 
 used within the value
 at 
 org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:40)
  
 at 
 org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:407)
  
 at 
 org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:198)
  
 at org.apache.jasper.compiler.Parser.parseQuoted(Parser.java:301) 
 at 
 org.apache.jasper.compiler.Parser.parseAttributeValue(Parser.java:250) 
 at 
 org.apache.jasper.compiler.Parser.parseAttribute(Parser.java:212) 
 at 
 org.apache.jasper.compiler.Parser.parseAttributes(Parser.java:155) 
 at 
 org.apache.jasper.compiler.Parser.parseCustomTag(Parser.java:1252) 
 at 
 org.apache.jasper.compiler.Parser.parseElements(Parser.java:1467) 
 at org.apache.jasper.compiler.Parser.parseBody(Parser.java:1675) 
 at 
 org.apache.jasper.compiler.Parser.parseOptionalBody(Parser.java:1022) 
 at 
 org.apache.jasper.compiler.Parser.parseCustomTag(Parser.java:1290) 
 at 
 org.apache.jasper.compiler.Parser.parseElements(Parser.java:1467) 
 at org.apache.jasper.compiler.Parser.parse(Parser.java:138) 
 at 
 org.apache.jasper.compiler.ParserController.doParse(ParserController.java:216)
  
 at 
 org.apache.jasper.compiler.ParserController.parse(ParserController.java:103)
  
 at 
 org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:154) 
 at org.apache.jasper.compiler.Compiler.compile(Compiler.java:315) 
 at org.apache.jasper.compiler.Compiler.compile(Compiler.java:295) 
 at org.apache.jasper.compiler.Compiler.compile(Compiler.java:282) 
 at 
 org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:586)
  
 at 
 org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:317)
  
 at 
 org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342) 
 at 
 org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267) 
 at 

Re: [Dspace-tech] Dspace 1.5

2008-08-13 Thread Robert Roggenbuck
Hi,

You will find a guide in the DSpace package. Additionally You will find
the Wiki at http://wiki.dspace.org/ helpful.

Greetings

Robert

Víctor Izaguirre schrieb:
 Hi,
 
 I'm new in Dspace, I need a guide to install dspace 1.5 in windows.
 
 Tks,
 
 Víctor Izaguirre Castro
 



-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] not able to get the image

2008-08-13 Thread Robert Roggenbuck
Maybe You should point to the image using a full URL instead of a path?

Greetings

Robert

Durga Ratnam schrieb:
 Hi,
 How can i put an  image on the side bar of the Dspace Home page? I have
 changed the code and gave the path for image in 'news-side' which is in
 'Config' folder of DSpace. the image is displayed when DSpace is opened from
 the system where Dspace is installed , but its not been displayed when
 Dspace is opened from other system in the network.
 
 Durga
 


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] not able to get the image

2008-08-13 Thread Robert Roggenbuck
Hm, can You please explain Your situation. You said You will access 
DSpace from the system where Dspace is installed and from other 
system in the network. How do You expect the access from other system 
in the network should work? Using a mounted file system? I thought You 
mean the Internet. How do You call DSpace in Your browser?

Greetings

Robert

---

Durga Ratnam schrieb:
 Hi,
  But we should connect to internet if i give the full URL. Is thre any
 other way tht i can use an image with out the need of Internet?
 
 
 On 8/13/08, Robert Roggenbuck [EMAIL PROTECTED] wrote:
 Maybe You should point to the image using a full URL instead of a path?

 Greetings

 Robert

 Durga Ratnam schrieb:

 Hi,
How can i put an  image on the side bar of the Dspace Home page? I have
 changed the code and gave the path for image in 'news-side' which is in
 'Config' folder of DSpace. the image is displayed when DSpace is opened
 from
 the system where Dspace is installed , but its not been displayed when
 Dspace is opened from other system in the network.

 Durga


 


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] ItemImport does not recognise language setting

2008-08-11 Thread Robert Roggenbuck
While trying to debug the ItemImporter I detect it is working fine... 
strange but true. Unfortunately I am not able to recover the 
circumstances of the not setted language identifiers - but nevertheless 
I am happy that it works now.

A not to include in the docs: For setting an language to NULL You 
should use '-' as language value. This results in '-' in the detail view 
of a metadata set, which is also the NULL setting by DSpace. Using '' 
will result in the auto language determination by DSpace. Using 'none' 
will display 'none', which could be misinterpreted as Norwegian as 
spoken in Niger ( ;-) ).

Greetings

Robert


Robert Roggenbuck schrieb:
 Hi,
 
 In the documentation of the format of the dublin_core.xml file the
 attribute 'language' in mentioned. But as far as I see it's setting is
 not recognised. Especially I'd like to avoid the automatically setting
 of language values to things like numbers, dates, person names and so
 on. But using '-', 'none' or '' as value does not work. Also setting
 other values then the locale language ('de' in my case) has no effect.
 
 Is it a bug in DSpace 1.5 or did I missed something?
 
 Greetings
 
 Robert
 

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Batch Import document

2008-07-22 Thread Robert Roggenbuck
You made a really good job with Your paper. But compared to the official 
HTML documentation You did not mention the 'language'-attribute. I still 
not know how to use it successfully, it makes the import process much 
more powerful.

Greetings

Robert

Scott Phillips schrieb:
 DSpacers,
 
 It's a funny thing, the DSpace Batch Import Format (of which there are  
 two) are not documented anywhere other than looking at the source  
 code. We've run across the situation where a department has some  
 content to put into the repository and the resources to create a batch  
 import, but just don't know how to do it. To solve this problem, we've  
 created a simple hand out to provide to a programmer or technical  
 person in another department or group when they want to develop their  
 own batch import script. While it doesn't cover the advanced topics,  
 like registering bitstreams etc, nor dose it go over the package  
 importer, it should solve the problem for the vast majority of cases  
 where someone needs to create a batch import.
 
 I thought this might be useful to others out there, the only other  
 resource on creating batch imports I was able to find is Dorothea's  
 blog: http://cavlec.yarinareth.net/2008/01/07/the-dspace-batch- 
 importer/.
 
 Here is our handout:
 https://www.tdl.org/documents/DSpaceBatchImportFormat.pdf
 
 Scott--
 
 
 
 
 

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Germany
===

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Using HTML in titles and abstracts?

2008-07-21 Thread Robert Roggenbuck
Hi,

I just wonder how to add special characters to metadata - especially 
title and abstract. Unicode-Escapes like #x1D6C0; work - but 
unfortunately there are things in the world which are not
captured by the Unicode tables. One example is a superscript infinity
sign, like in 
http://elib.ub.uni-osnabrueck.de/publications/pics/Omega-S.gif .

Using HTML like sub, sup and img would solve this problem - but it 
is not rendered.

Has anyone an idea how to get the Omega-S.gif in a title?

Best Regards

Robert

===
  Robert Roggenbuck
  Universitaetsbibliothek Osnabrueck
  Germany
===

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Using HTML in titles and abstracts?

2008-07-21 Thread Robert Roggenbuck
Another thing, I forgot to mention in my answer: The real problem for us 
are the characters which are not part of the Unicode tables!

Best regards

Robert

Jayan Chirayath Kurian schrieb:
 Hi! 
 
 These were the symbols that I tested with dspace 1.4.2 on windows XP.
 Just attaching in case if this helps you.
 
 Regards, jayan
 
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Robert
 Roggenbuck
 Sent: Monday, July 21, 2008 3:14 PM
 To: dspace-tech@lists.sourceforge.net Tech
 Subject: [Dspace-tech] Using HTML in titles and abstracts?
 
 Hi,
 
 I just wonder how to add special characters to metadata - especially 
 title and abstract. Unicode-Escapes like #x1D6C0; work - but 
 unfortunately there are things in the world which are not
 captured by the Unicode tables. One example is a superscript infinity
 sign, like in 
 http://elib.ub.uni-osnabrueck.de/publications/pics/Omega-S.gif .
 
 Using HTML like sub, sup and img would solve this problem - but it
 
 is not rendered.
 
 Has anyone an idea how to get the Omega-S.gif in a title?
 
 Best Regards
 
 Robert
 


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Failed ItemImport (Robert Roggenbuck)

2008-07-11 Thread Robert Roggenbuck
Hi Graeme,

the workflow problem is solved: I had two fields in my metadata which 
were not part of the input-forms.xml - after adding them it works as 
expected.

About the language-bug in ItemImport I still not know what is going on. 
I will install Eclipse (as described in 
http://wiki.dspace.org/index.php/IDE_Integration:_DSpace%2C_Eclipse_and_Tomcat) 
and try to debug it.

Hints and solutions still welcome ;-)

Greetings

Robert

-

Fox, Graeme schrieb:
 Been away for a couple of days, apologies for not replying sooner.
 
 Language will have a default, I have not explicitly checked the setting of 
 this field as I explicitly set it to the default, hence I don't know which 
 value is working. What I had was
 dcvalue element=language qualifer=isoen_US/dcvalue
 
 Workflow, I don't know about, I seem to remember something in the 
 documentation regarding that if you used that option, then you had to 
 manually progress the importation of the item to deposit it in the 
 repository.  I will try and look at this later.
 
 regards
 
 Graeme Fox
 
 -Original Message-
 From: Robert Roggenbuck [mailto:[EMAIL PROTECTED]
 Sent: Monday, 7 July 2008 10:31 p.m.
 To: Fox, Graeme
 Cc: dspace-tech@lists.sourceforge.net Tech
 Subject: Re: [Dspace-tech] Failed ItemImport (Robert Roggenbuck)
 
 Thanks Graeme for the guesses. You were right: there were no permission
 problems. The mistake was in a complete other direction: there were
 typos in three field names :-( .
 
 And now I could import my stuff (hurray!) but two things let me hesitate:
 
 1.) In the documentation of the format of the dublin_core.xml file the
 attribute 'language' in mentioned. But as far as I see it's setting is
 not recognised. Especially I'd like to avoid the automatically setting
 of language values to things like numbers, dates, person names and so
 on. But using '-', 'none' or '' as value does not work. Also setting
 other values then the locale language ('de' in my case) has no effect.
 
 2.) When I use the --workflow option for the import, only 'dc.title' and
 'dc.identifier' are imported. Without --workflow the whole dataset is
 visible. What's going on?
 
 Can someone explain this behaviour and know how to handle it?
 
 Best regards
 
 Robert
 


-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Workflow-option of ItemImport is buggy

2008-07-11 Thread Robert Roggenbuck
Thanks!

I adjusted the webui.itemdisplay.default in dspace.cfg and corrected 
Message.properties accordingly. Now it works.

And sorry for driving off-topic...

Greetings

Robert

---

Claudia Jürgen schrieb:
 Hi Robert,
 
 with first summary view do you mean the preview in the workflow?
 
 This got nothing to to with the submission form but is based on the 
 default item display. To change this adjust 
 webui.itemdisplay.default/orYourOwn. Make sure you got the appropriate 
 keys in your Messages.properties/messages.xml.
 
 Claudia
 
 Robert Roggenbuck schrieb:
 Hi Claudia!

 Yes, two fields in the metadata were missing in the form - and now it 
 works. Thanks!

 But still it is strange to see only dc.title and dc.identifier in the 
 first summary view of an item after picking it up form the workflow 
 pool. At least I would expect dc.creator at this place. (I did not use 
 dc.creator.author, because there is none in Dublin Core). Is there a 
 place to adjust this page?

 Greetings

 Robert


 Claudia Jürgen schrieb:
 Hi Robert,

 did you adjust your submission forms so that they'll correspond to the 
 metadata given in the import?

 Claudia


 Robert Roggenbuck schrieb:
 Hi all,

 when I use the --workflow option for the /dspace/bin/import 
 (ItemImport), only 'dc.title' and 'dc.identifier' are imported. All 
 other fields in the submit form are empty. Without --workflow the 
 whole dataset is immediatly visible.

 What's going on? Can someone explain this behaviour and know how to 
 handle it?

 Best Regards

 Robert

 PS: Sorry for seeming impatiend ... but, as usual, it is an important 
 point for me.

 
 -
 Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
 Studies have shown that voting for your favorite open source project,
 along with a healthy diet, reduces your potential for chronic lameness
 and boredom. Vote Now at http://www.sourceforge.net/community/cca08
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Alte Muenze 16
D-49074 Osnabrueck
Germany
Tel ++49/541/969-4344  Fax -4482
[EMAIL PROTECTED]

Postbox:
Postfach 4496
D-49034 Osnabrueck
===

-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Maven and Overlays

2008-07-10 Thread Robert Roggenbuck
Hello all,

I would like to add a modification to my DSpace 1.5 (for fixing the 
language switch for the input forms - thanks to Keiji Suzuki). Following 
the steps described in the Wiki 
(http://wiki.dspace.org/index.php/BuildCookbook) but the modified 
classes seemed to be ignored during the build process.

That's my setup:
In fact I work with 3 DSpace directories: /opt/dspace ($DSPACE), 
/opt/dspace-1.5.0-release ($DS_REL) and /opt/dspace-1.5.0-src-release 
($DS_SRC). The $DS_REL is the part where I did all configurations. 
$DS_SRC I just added to get the Java sources to do my modifications. To 
do the overlay I placed the new classes beneath $DS_REL/dspace/modules/.
After successfully executing 'mvn package', 'ant init_configs', 'ant 
update' and restarting Tomcat nothing changed. :-(

Do I have to use $DS_SRC to apply overlays?
Do I have to copy / create some pom.xml and build.xml?
Do I have to do other things?

Hope someone can help...

Greetings

Robert

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Germany
===

-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] How to enrich metadata with special characters?

2008-07-09 Thread Robert Roggenbuck
Hi,

I just wonder how to add special characters to metadata. Unicode-Escapes 
like #x1D6C0; work - but there are things in the world which are not 
captured by the unicode tables. One example is a superscript infinity 
sign, like in 
http://elib.ub.uni-osnabrueck.de/publications/pics/Omega-S.gif .

Would it be possible to allow MathML or LaTeX to be rendered? Or at 
least to allow a selected set of HTML-tags to handle these things, like 
sub, sup and img?

Best Regards

Robert

PS: While playing around to insert unicode-entities, I discovered a bug: 
whenever ampersands occur in a field, the last one is escaped as amp; 
in the rendered item page, but displayed correct in the text field for 
metadata editing. After actualising / saving the item a second time the 
characters are displayed as expected.

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Germany
===

-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Help me: porcedure for installing. Reg.

2008-07-09 Thread Robert Roggenbuck
1. The installation- / configuration-steps are in the documentation 
included in the DSPace software package.
2. See also 
http://www.dspace.org/index.php?option=com_contenttask=viewid=152
3. There is also a manual online: 
http://www.dspace.org/images/onepointfivedocs/dspacemanual_15_may.zip
4. In the DSpace Wiki You will find further information: 
http://wiki.dspace.org/index.php/Installation

Greetings

Robert

Sudheer schrieb:
 Dear Sir/ Madam
 
 My name is Ch. Sudheer kumar working as Scientific Assistant in ISRO  
 and i want to install Dspace. for that some supporting Postgresql, and 
 Apache Tomcat is required. I have all the source files and i want to 
 install them in a paritcular order..
 
 so i need a detailed installation procedure for Postgresql, Apache 
 Tomcat on windows platform. i have searched in internet for help but i 
 could not get the exact procedure..
 
 If anybody is exprienced in installing Dspace, Postgres and Apache 
 Tomcat on windows platform, please help me to coordinate these three 
 applications for better installation and utilization.
 
 your sincerely
 ch sudheer kumar


-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] ItemImport does not recognise language setting

2008-07-09 Thread Robert Roggenbuck
Hi,

In the documentation of the format of the dublin_core.xml file the
attribute 'language' in mentioned. But as far as I see it's setting is
not recognised. Especially I'd like to avoid the automatically setting
of language values to things like numbers, dates, person names and so
on. But using '-', 'none' or '' as value does not work. Also setting
other values then the locale language ('de' in my case) has no effect.

Is it a bug in DSpace 1.5 or did I missed something?

Greetings

Robert

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Germany
===

-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Workflow-option of ItemImport is buggy

2008-07-09 Thread Robert Roggenbuck
Hi all,

when I use the --workflow option for the /dspace/bin/import 
(ItemImport), only 'dc.title' and 'dc.identifier' are imported. All 
other fields in the submit form are empty. Without --workflow the whole 
dataset is immediatly visible.

What's going on? Can someone explain this behaviour and know how to 
handle it?

Best Regards

Robert

PS: Sorry for seeming impatiend ... but, as usual, it is an important 
point for me.

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Germany
===

-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Translation to Submit Form is still not applied

2008-07-09 Thread Robert Roggenbuck
Hi Mikel,

I did not solved the problem complete, but I had some success:

1. My 'ant init_configs' does not copy all files in the main  directory 
of DSpace. I must copy the input-forms*.xml manually.

2. To get the right forms selected You have to mention them in the 
workflow configuration item-submission.xml .

Now my modified input form is used - but still only the English version :-(

Sorry for no further help - until now. Did You succeed in the meantime?

Greetings

Robert

PS: In my case it's DSpace 1.5 and jspu too.

---

Mikel Nin schrieb:
 Hi Robert,
 
  
 
 I'm having the same problem with the Spanish version of input-forms.xml.
 Although I have a Spanish version of input-forms.xml (input-forms_eu.xml)
 and default.license (default_es.license), both of them still continue in
 English. Did you managed to make it run properly?
 
  
 
 Greetings
 
  
 
 Mikel


-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Translation to Submit Form is still not applied

2008-07-09 Thread Robert Roggenbuck
Oops...

so, is it a matter of reformulating CSS or hacking Java / JSP? Is it a 
big thing to do? Will this be fixed in 1.5.1?

Greetings

Robert


Claudia Jürgen schrieb:
 Hi all,
 
 the introduction of CSS removed the i18n of the submission, so at the 
 moment the input-form is not selected based on your language settings.
 
 cheers
 
 Claudia
 
 
 Robert Roggenbuck schrieb:
 Hi Mikel,

 I did not solved the problem complete, but I had some success:

 1. My 'ant init_configs' does not copy all files in the main  
 directory of DSpace. I must copy the input-forms*.xml manually.

 2. To get the right forms selected You have to mention them in the 
 workflow configuration item-submission.xml .

 Now my modified input form is used - but still only the English 
 version :-(

 Sorry for no further help - until now. Did You succeed in the meantime?

 Greetings

 Robert

 PS: In my case it's DSpace 1.5 and jspu too.

 ---

 Mikel Nin schrieb:
 Hi Robert,

  

 I'm having the same problem with the Spanish version of input-forms.xml.
 Although I have a Spanish version of input-forms.xml 
 (input-forms_eu.xml)
 and default.license (default_es.license), both of them still continue in
 English. Did you managed to make it run properly?

  

 Greetings

  

 Mikel




-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Workflow-option of ItemImport is buggy

2008-07-09 Thread Robert Roggenbuck
Hi Claudia!

Yes, two fields in the metadata were missing in the form - and now it 
works. Thanks!

But still it is strange to see only dc.title and dc.identifier in the 
first summary view of an item after picking it up form the workflow 
pool. At least I would expect dc.creator at this place. (I did not use 
dc.creator.author, because there is none in Dublin Core). Is there a 
place to adjust this page?

Greetings

Robert


Claudia Jürgen schrieb:
 Hi Robert,
 
 did you adjust your submission forms so that they'll correspond to the 
 metadata given in the import?
 
 Claudia
 
 
 Robert Roggenbuck schrieb:
 Hi all,

 when I use the --workflow option for the /dspace/bin/import 
 (ItemImport), only 'dc.title' and 'dc.identifier' are imported. All 
 other fields in the submit form are empty. Without --workflow the 
 whole dataset is immediatly visible.

 What's going on? Can someone explain this behaviour and know how to 
 handle it?

 Best Regards

 Robert

 PS: Sorry for seeming impatiend ... but, as usual, it is an important 
 point for me.

 

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Alte Muenze 16
D-49074 Osnabrueck
Germany
Tel ++49/541/969-4344  Fax -4482
[EMAIL PROTECTED]

Postbox:
Postfach 4496
D-49034 Osnabrueck
===

-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Failed ItemImport (Robert Roggenbuck)

2008-07-07 Thread Robert Roggenbuck
Thanks Graeme for the guesses. You were right: there were no permission 
problems. The mistake was in a complete other direction: there were 
typos in three field names :-( .

And now I could import my stuff (hurray!) but two things let me hesitate:

1.) In the documentation of the format of the dublin_core.xml file the 
attribute 'language' in mentioned. But as far as I see it's setting is 
not recognised. Especially I'd like to avoid the automatically setting 
of language values to things like numbers, dates, person names and so 
on. But using '-', 'none' or '' as value does not work. Also setting 
other values then the locale language ('de' in my case) has no effect.

2.) When I use the --workflow option for the import, only 'dc.title' and 
'dc.identifier' are imported. Without --workflow the whole dataset is 
visible. What's going on?

Can someone explain this behaviour and know how to handle it?

Best regards

Robert



Fox, Graeme schrieb:
 Will have to guess here as to the cause.
 
 From a little bit of testing, if the file name in the 'contents' file is 
 incorrect then you get an error like this:
 ' Processing contents file: /home/dspace/TestCase4/0/contents
 java.io.FileNotFoundException: /home/dspace/TestCase4/0/license1.txt (No such 
 file or directory)
 at java.io.FileInputStream.open(Native Method)
 at java.io.FileInputStream.init(FileInputStream.java:106)
 '
 
 If the bundle name in the contents file is incorrect like this
 'license1.txtbundle:LICENSE
 t1.pdf  bundle:ORIGINAL1
 2006773.pdf bundle:ORIGINAL
 '
 Then the file 't1.pdf' is ignored.
 
 I wonder about the bundle name 'CC-LICENSE', I presume creative commons 
 license, probably the bundle names are in the code for itemimport.
 
 I think the error message points to not been able to find the 'contents' file 
 for some reason.
 
 Still, you are processing the additional meta data schemas, xmt, uec,
 so you could go back to your original test case, and check the coding the 
 xml, the file names used for the xml, contents and data files and try running 
 it again.
 
 regards
 
 Graeme Fox
 Project Manager
 Information Technology Services
 Massey University
 Private Bag 11222   Email: [EMAIL PROTECTED]
 Palmerston North   Phone: +64 6 350-5799 ext 2109
 New Zealand  Mobile: 027 3584848
 


-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Failed ItemImport (Robert Roggenbuck)

2008-07-01 Thread Robert Roggenbuck
Thanks for the reply.

I successfully exported an item - and nearly imported it again...

1.) Export result:

$ /opt/dspace/bin/dsrun org.dspace.app.itemexport.ItemExport --type=ITEM 
--id=2008/8 --number=0 --dest=/home/dspace/testExport/
Exporting Item 14 to /home/dspace/testExport/0
Attempting to create file /home/dspace/testExport/0/metadata_vCard.xml
Attempting to create file /home/dspace/testExport/0/metadata_xmd.xml
Attempting to create file /home/dspace/testExport/0/metadata_marc.xml
Attempting to create file /home/dspace/testExport/0/dublin_core.xml
Attempting to create file /home/dspace/testExport/0/metadata_uos.xml
Attempting to create file /home/dspace/testExport/0/metadata_ddb.xml
Attempting to create file /home/dspace/testExport/0/metadata_dct.xml

All files were really created, an all other needed files too (licenses, 
content, handle, ...).

2.) Import result:

$ /opt/dspace/bin/dsrun org.dspace.app.itemimport.ItemImport --add 
[EMAIL PROTECTED] --collection=2008/7 
--source=/home/dspace/testExport --mapfile=testImport.map
Destination collections:
Owning  Collection: Sonstige qualifizierende, wissenschaftliche Arbeiten
Adding items from directory: /home/dspace/testExport
Generating mapfile: testImport.map
Adding item from directory 0
Loading dublin core from /home/dspace/testExport/0/dublin_core.xml
Schema: dc Element: creator Qualifier: none Value: Roggenbuck, R.
Schema: dc Element: date Qualifier: accessioned Value: 
2008-06-30T12:22:51Z
Schema: dc Element: date Qualifier: available Value: 
2008-06-30T12:22:51Z
Schema: dc Element: date Qualifier: issued Value: 2008-06-30T12:22:51Z
Schema: dc Element: identifier Qualifier: none Value: 1
Schema: dc Element: identifier Qualifier: uri Value: 
http://hdl.handle.net/2008/8
Schema: dc Element: description Qualifier: provenance Value: 
Submitted by Robert Roggenbuck ([EMAIL PROTECTED]) on 2008-06-30T12:20:41Z
No. of bitstreams: 2
bestPracticeForPeriodicals.html: 8415 bytes, checksum: 
17027f9be5b0d1481d95480c4893444b (MD5)
textSmall.css: 93 bytes, checksum: c07b4db54f31a09abe659d3cc2140717 (MD5)
Schema: dc Element: description Qualifier: provenance Value: 
Approved for entry into archive by Robert Roggenbuck([EMAIL PROTECTED]) on 
2008-06-30T12:22:51Z (GMT) No. of bitstreams: 2
bestPracticeForPeriodicals.html: 8415 bytes, checksum: 
17027f9be5b0d1481d95480c4893444b (MD5)
textSmall.css: 93 bytes, checksum: c07b4db54f31a09abe659d3cc2140717 (MD5)
Schema: dc Element: description Qualifier: provenance Value: Made 
available in DSpace on 2008-06-30T12:22:51Z (GMT). No. of bitstreams: 2
bestPracticeForPeriodicals.html: 8415 bytes, checksum: 
17027f9be5b0d1481d95480c4893444b (MD5)
textSmall.css: 93 bytes, checksum: c07b4db54f31a09abe659d3cc2140717 (MD5)
Schema: dc Element: publisher Qualifier: none Value: Universität 
Osnabrück
Schema: dc Element: subject Qualifier: none Value: Stich
Schema: dc Element: subject Qualifier: none Value: Wort
Schema: dc Element: title Qualifier: none Value: Vergessenes
Schema: dc Element: type Qualifier: none Value: tmp
Loading dublin core from /home/dspace/testExport/0/metadata_vCard.xml
Schema: vCard Element: ORG Qualifier: none Value: fb01
Loading dublin core from /home/dspace/testExport/0/metadata_dct.xml
Schema: dct Element: created Qualifier: none Value: 1990-01-01
Schema: dct Element: modified Qualifier: none Value: 1990-01-01
Schema: dct Element: accessRights Qualifier: none Value: v
Schema: dct Element: abstract Qualifier: none Value: Dieses hier ist 
die Zusammenfassung, die ich vergessen habe.
Schema: dct Element: alternative Qualifier: none Value: Forgotten Things
Schema: dct Element: ISO639-2 Qualifier: none Value: de
Schema: dct Element: DDC Qualifier: none Value: ddc.12.45
Schema: dct Element: modified1 Qualifier: none Value: 1990-01-01
Schema: dct Element: modified2 Qualifier: none Value: 1990-01-02
Loading dublin core from /home/dspace/testExport/0/metadata_xmd.xml
Schema: xmd Element: PACS2003 Qualifier: none Value: pacs2003.f34m
Schema: xmd Element: CCS1998 Qualifier: none Value: ccs1998.a1
Schema: xmd Element: BK Qualifier: none Value: bk.w
Schema: xmd Element: ZDM Qualifier: none Value: zdm.A12
Schema: xmd Element: MSC1991 Qualifier: none Value: msc1991.12D34
Schema: xmd Element: MSC2000 Qualifier: none Value: msc2000.12D34
Loading dublin core from /home/dspace/testExport/0/metadata_ddb.xml
Schema: ddb Element: annotation Qualifier: none Value: Bemerkungen?
Loading dublin core from /home/dspace/testExport/0/metadata_marc.xml
Schema: marc Element: edt Qualifier: none Value: rr
Schema: marc Element: ths Qualifier: none Value: Prof. Dr. Profi
Schema: marc Element: rev Qualifier: none Value: Dr. Doktoribus
Loading dublin core from /home/dspace/testExport/0/metadata_uos.xml
Schema: uos Element: ISO639-2title Qualifier: none Value: de
Schema

Re: [Dspace-tech] Messages.Properties

2008-06-30 Thread Robert Roggenbuck
You can copy it from [dspace-source]/... to [dspace]/... . But it is 
better to say 'ant init_configs' in 
[dspace-source]/dspace/target/dspace-[version-no.]-build.dir/.
This applies to all changes in the config-directory. After this You 
should restart You web-application server (like Tomcat).

Greetings

Robert


Zaya Kh schrieb:
 Hi all,
 
 In 1.5, what process do I use to update Messages.properties?
 
 Or do I need to copy changes manually from my source?
 
 Thanks
 
 
 
 
 
 -
 Check out the new SourceForge.net Marketplace.
 It's the best place to buy or sell services for
 just about anything Open Source.
 http://sourceforge.net/services/buy/index.php
 
 
 
 
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Alte Muenze 16
D-49074 Osnabrueck
Germany
Tel ++49/541/969-4344  Fax -4482
[EMAIL PROTECTED]

Postbox:
Postfach 4496
D-49034 Osnabrueck
===

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Messages.Properties

2008-06-30 Thread Robert Roggenbuck
To be more precise:

You can copy it from [dspace-source]/dspace/config/ to [dspace]/config/.
But it is better to say 'ant init_configs' in
[dspace-source]/dspace/target/dspace-[version-no.]-build.dir/.

No other directories are to be touched, if You Web-server is configured
to use the DSpace-webapp-directory directly (e.g. by configuring
server.xml of Tomcat).
Else, the following should work - but I did not work this way, so I am
not quite sure about it: Invoke 'ant update_webapps' (in
[dspace-source]/dspace/target/dspace-[version-no.]-build.dir/) or say
something like 'cp -r /opt/dspace/webapps/jspui
/usr/share/tomcat5/webapps/' (depending on the paths of Your installation).

General things about internationalisation You will find in the Wiki:
http://wiki.dspace.org/index.php/I18nSupport

Greetings

Robert


--


Zaya Kh schrieb:
 hello, thanks for reply
 
 I translated Messages.Properties in our language. But I can not update this
 Messages.Properties.
 How and where  to change my Messages.Properties on [Dspace-source] or
 [dspace]?
 
 I can put Messages.Properties in
 [dspace-source]/dspace/target/dspace-1.5.0-build.tar/webapps/jspui/WEB-INF/classes/
 directory
 But it does not complete.
 
 After I put Messages.Properties in [Dspace]/webapps/jspui/WEB-INF/classes/
 directory.  It  does not complete
 
 
 How to change?
 
 On Mon, Jun 30, 2008 at 4:18 PM, Robert Roggenbuck 
 [EMAIL PROTECTED] wrote:
 
 You can copy it from [dspace-source]/... to [dspace]/... . But it is better
 to say 'ant init_configs' in
 [dspace-source]/dspace/target/dspace-[version-no.]-build.dir/.
 This applies to all changes in the config-directory. After this You should
 restart You web-application server (like Tomcat).

 Greetings

 Robert


 Zaya Kh schrieb:

 Hi all,

 In 1.5, what process do I use to update Messages.properties?

 Or do I need to copy changes manually from my source?

 Thanks



 

 -
 Check out the new SourceForge.net Marketplace.
 It's the best place to buy or sell services for
 just about anything Open Source.
 http://sourceforge.net/services/buy/index.php


 

 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech

 --

 ===
 Robert Roggenbuck
 Universitaetsbibliothek Osnabrueck
 Alte Muenze 16
 D-49074 Osnabrueck
 Germany
 Tel ++49/541/969-4344  Fax -4482
 [EMAIL PROTECTED]

 Postbox:
 Postfach 4496
 D-49034 Osnabrueck
 ===

 

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Alte Muenze 16
D-49074 Osnabrueck
Germany
Tel ++49/541/969-4344  Fax -4482
[EMAIL PROTECTED]

Postbox:
Postfach 4496
D-49034 Osnabrueck
===


-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Easy way to Import Metadata from Excel into DSpace

2008-06-27 Thread Robert Roggenbuck
Regarding multiple schemata I found an answer: It is not documented in 
the docs. But in ItemImport.java I found the way to use multiple schemata:

1.) Besides the dublin_core.xml every schema needs an own XML-file with 
the same syntax, named 'metadata_namespace-shortcut.xml'; e.g. 
'metadata_marc.xml'.
2.) Set the 'schema'-attribute of the dublin_core-tag accordingly; 
e.g. dublin_core schema=marc
3.) As far as I see should occur other tags then dcvalue only in 1 
XML-File (preferably dublin_core.xml, if any).

Attention: this is not tested - only derived from reading the code of 
ItemImport.java. I will report success or corrections.

Greetings

Robert



Robert Roggenbuck schrieb:
 Thanks to Your and Blooma's fast responses.
 
 (I cc it to the list, because I think it is for interest for more people.)
 
 
 Jayan Chirayath Kurian schrieb:
 Hello Robert,

 I hope Blooma might have sent the source code as well documentation for
 the above program. It's a stand alone application and once folders are
 generated the dspace batch import facility is used to ingest items.
 Currently program works on windows and we are trying with Linux
 compatibility. 
 Indeed we run DSpace in a Linux environment (RedHat EL), but a WinXP box 
 is also available to work with Your tool. So there is no problem for us 
 at this point.
 
 I think adding more files won't be an issue although
 current program works with a single file.
 I would suggest to allow multiple entries in the ResourceLocation-field, 
 separated by ';' for example.
 
 Regarding namespaces I hope
 the program can be customized. 
 This is a crucial point for us, since we use several standardised 
 metadata sets in our old application. Only quite a few fields are plain 
 'dc'.
 
 Please feel free to ask if you find
 difficulty in installing the program. Once the default program works at
 your side we can start customizing according to your requirements. 
 As far as I see the problem of multiple namespaces is not solvable by 
 Your tool. The question is weather the ItemImport can handle this. The 
 format documentation of the dublin_core.xml file shows no 'schema'- or 
 'namespace'- attribute for the dcvalue-tags. Do You know more then the 
 documentation?
 
 By the way if your installation is Linux based please run the program on a
 normal windows machine and transfer files to your dspace server and
 issue the ItemImport batch import command.

 Current project progress
 http://wiki.dspace.org/index.php/Google_Summer_of_Code_2008_Batch_Import

 Cheers! Jayan



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Failed ItemImport

2008-06-27 Thread Robert Roggenbuck
Hi all,

I tried to import metadata containing more then 1 file and using more 
then 1 metatdata schema. As far as I see in the code of ItemImport.java 
this should be possible. But I encounter the an error whent I try to do 
the import:

$ ./import -a -e [EMAIL PROTECTED] -c 123456789/4 -s /tmp/dc -m 
080627.map --test
**Test Run** - not actually importing items.
Destination collections:
Owning  Collection: Osnabrücker E-Dissertationen
Adding items from directory: /tmp/dc
Generating mapfile: 080627.map
java.lang.NullPointerException
 at 
org.dspace.app.itemimport.ItemImport.addItems(ItemImport.java:506)
 at org.dspace.app.itemimport.ItemImport.main(ItemImport.java:421)
java.lang.NullPointerException
***End of Test Run***

Here is the data I work with:

The content of /tmp/dc is only 1 directory named dc0. dc0 contains:
contents
dublin_core.xml
E-Diss6_hepp.tar.gz
E-Diss6_hepp.tar.gz.sha2
E-Diss6_Int_Hepp.pdf
E-Diss6_Int_Hepp.pdf.sha2
license_text
metadata_dct.xml
metadata_marc.xml
metadata_uos.xml
metadata_vCard.xml

The content of dublin_core.xml is

?xml version=1.0?
dublin_core schema=dc
dcvalue element=creator qualifier=Hepp, Alexander/dcvalue
dcvalue element=identifier qualifier=6/dcvalue
dcvalue element=title qualifier=Isolobale Substitution in 
Tetraphosphortrisulfid und in seinen Derivaten/dcvalue
dcvalue element=type qualifier=diss/dcvalue
/dublin_core

And metadata_marc.xml, as an example for the other schemas:

?xml version=1.0?
dublin_core schema=marc
dcvalue element=edt qualifier=fangmeier/dcvalue
dcvalue element=rev qualifier=Prof. Dr. Roger Blachnik; Dr. habil. 
Konstantin Karaghiosoff/dcvalue
dcvalue element=ths qualifier=Prof. Dr. Roger Blachnik/dcvalue
/dublin_core

The file 'license_text' is empty and 'contents' contains just the 
filenames of the 4 files of the bundle.

What did I wrong?

Greetings

Robert


-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Germany
===

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] [Fwd: Re: Regarding installation of DSpace-1.5 on Windows XP]

2008-06-26 Thread Robert Roggenbuck
I can not help regarding Maven - but may be someone else can...

 Original-Nachricht 
Betreff: Re: Regarding installation of DSpace-1.5 on Windows XP
Datum: Wed, 25 Jun 2008 21:39:52 -0700
Von: Honey Solution [EMAIL PROTECTED]
An: Robert Roggenbuck [EMAIL PROTECTED]
Referenzen: 
[EMAIL PROTECTED]  
[EMAIL PROTECTED]

Dear Sir,
Thanks for your quick reply.
Infact, I tried to configure mvn but failed to do so. Since, I am using
proxy server for internet connection, I am not able to configure it
properly. I edited the xml file where proxy detail is to be changed but
failed to install artifact properly.

If possible, kindly help me in installation of mvn. Please give the full
detail. I will be highly thankful to you.

With kind regards,
DP Tripathi
IIT Kanpur

On Wed, Jun 25, 2008 at 2:34 AM, Robert Roggenbuck 
[EMAIL PROTECTED] wrote:

 Dear Honey Solution,

 the best documentation is the one which ships with the software package of
 DSpace. I have no special experiences with Windows. Look into the Windows
 installation chapter. It seems to me clear and detailed enough - if You read
 it carefully. Just be aware of the 2 different 'make-tools', named 'mvn' and
 'ant' and the directories where the are invoked.

 Hope that helps

 Robert

 

 Honey Solution schrieb:

  Dear Sir,
 I am working as a senior library information assistant at PK Kelkar
 library IIT Kanpur - India. I am installing DSpace-1.5 on windows but
 at many steps, I am getting confused. Finally, I failed to install
 DSpace successfully.

 May you please help me in installing DSpace-1.5 on windows? I tried
 with the manual given at DSpace website but it did not work for me. If
 possible, please send any ppt or pdf containing steps for which I will
 ever remain grateful to you.

 Waiting for your sharp reply.

 With kind regards,
 DP Tripathi
 IIT Kanpur







-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Dspace mvn package problem

2008-06-25 Thread Robert Roggenbuck
 [INFO] Final Memory: 17M/254M
 [INFO] 
 
 C:\dspace-1.5.0-src-release\dspace-1.5.0-src-release\dspace
 
 Haydar YALÇIN 
 Hacettepe Üniversitesi
 
 
 
 
 
 -
 Check out the new SourceForge.net Marketplace.
 It's the best place to buy or sell services for
 just about anything Open Source.
 http://sourceforge.net/services/buy/index.php
 
 
 
 
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Germany
===


-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Translation to Submit Form is still not applied

2008-06-12 Thread Robert Roggenbuck
Hi,

I set up a German version of input-forms.xml (as input-forms_de.xml) in 
my [dspace-source]. Using 'ant init_configs' it is now in 
[dspace]/config/. But even after restarting Tomcat the submit form is 
still in English. Other parts of DSpace are in German, so the language 
switch works.

What else to do?

Greetings

Robert


PS: It's DSpace 1.5 and Tomcat 5.5.23

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Germany
===

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Upload of logo for a Community fails

2008-05-29 Thread Robert Roggenbuck
I got it!

It is necessary that Tomcat can create files in [dspace]/assetstore/. 
After changing the ownership of it to the user 'tomcat', everything is fine.

:-)


Robert Roggenbuck schrieb:
 Hi,
 
 I just want to add a first community to my DSpace 1.5 but I get the 
 following permission-errors in dspace.log when I try to add a logo:
 
 2008-05-21 12:01:23,383 ERROR org.dspace.search.DSIndexer @ Permission 
 denied
 java.io.IOException: Permission denied
   at java.io.UnixFileSystem.createFileExclusively(Native Method)
   at java.io.File.createNewFile(File.java:850)
   at 
 org.apache.lucene.store.SimpleFSLock.obtain(SimpleFSLockFactory.java:144)
   at org.apache.lucene.store.Lock.obtain(Lock.java:73)
   at org.apache.lucene.index.IndexWriter.init(IndexWriter.java:691)
 [snip]
   at 
 org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
   at 
 org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:685)
   at java.lang.Thread.run(Thread.java:595)
 2008-05-21 12:01:29,480 ERROR 
 org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/jspui].[edit-communities]
  
 @ Servlet.service() for servlet edit-communities threw exception
 java.io.IOException: No such file or directory
   at java.io.UnixFileSystem.createFileExclusively(Native Method)
   at java.io.File.createNewFile(File.java:850)
   at edu.sdsc.grid.io.local.LocalFile.createNewFile(LocalFile.java:486)
   at 
 org.dspace.storage.bitstore.BitstreamStorageManager.store(BitstreamStorageManager.java:332)
 [snip]
   at 
 org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
   at 
 org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:685)
   at java.lang.Thread.run(Thread.java:595)
 2008-05-21 12:01:29,480 WARN 
 org.dspace.app.webui.servlet.InternalErrorServlet @ 
 :session_id=9A7FB1AEEB84D5E15CD7441A8F4AAF9D:internal_error:-- URL Was: 
 http://vm1lux03.ub.uni-osnabrueck.de:8081/jspui/tools/edit-communities
 -- Method: POST
 -- Parameters were:
 
 java.io.IOException: No such file or directory
   at java.io.UnixFileSystem.createFileExclusively(Native Method)
   at java.io.File.createNewFile(File.java:850)
   at edu.sdsc.grid.io.local.LocalFile.createNewFile(LocalFile.java:486)
 
 [snip]
 
   at 
 org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
   at 
 org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:685)
   at java.lang.Thread.run(Thread.java:595)
 
 Any suggestions? Which file / directory causes this message? The 
 [dspace]/upload/ directory is owned by the user 'tomcat' and writable 
 for it.
 
 Best regards
 
 Robert
 
 



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Customised jsp pages not loading (1.5)

2008-05-28 Thread Robert Roggenbuck
In my case for example (DSpace 1.5) [dspace-source] is
'/opt/dspace-1.5.0-release/'. But the configs directory will be
'[dspace-source]/dspace/configs'. In [dspace-source] is just 'dspace/'
and 'pom.xml'.

Greetings

Robert

---

Mika Stenberg schrieb:
 Mark,
 
 What is this dspace-src/configs/ -directory you are referring to?
 In my dspace-src I have only the following dirs:
 
 dspacedspace-oaipom.xml
 dspace-apidspace-sword  README
 dspace-jspui  dspace-xmlui
 dspace-lniLICENSING_NOTICE.txt
 
 
 Thanks,
 Mika
 
 
 
So to modify the dspace.cfg I do the following
 1.) edit [dspace-source]/configs/dspace.cfg

 2.) mvn clean package (in [dspace-source/dspace)

 3) ant init_configs  (in [dspace-source]/dspace/target/dspace...)

 This will update all the configuration files in [dspace]/configs

 Cheers,
 Mark

 
 -
 This SF.net email is sponsored by: Microsoft
 Defy all challenges. Microsoft(R) Visual Studio 2008.
 http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Alte Muenze 16
D-49074 Osnabrueck
Germany
Tel ++49/541/969-4344  Fax -4482
[EMAIL PROTECTED]

Postbox:
Postfach 4496
D-49034 Osnabrueck
===


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Customised jsp pages not loading (1.5)

2008-05-27 Thread Robert Roggenbuck
Hi Mark,

did I get it right that in DSpace 1.5 mvn clean package replaces the 
commands mvn package and ant -Dconfig=blah/dspace.cfg update?
I just have similar problems to get changes in dspace.cfg take effect.

Best regards

Robert

Mark Diggory schrieb:
 Gary,
 
 There is  a Maven command 'mvn clean package' which does this for you, 
 it removes all target directories, forcing everything to be reconstructed.
 
 Again, I highly suggest maintaining your dspace.cfg changes in 
 [dspace-source]/dspace/config/dspace.cfg and not using ant -Dconfig=...  
 This is because in dspace 1.5.0 the dspace.cfg designated by -Dconfig is 
 not properly copied in palce, the reason it works in this (and most 
 cases) is that your referencing the already installed dspace.cfg.  I 
 have a fix for this planned for dspace 1.5.1
 
 -Mark
 
 On May 26, 2008, at 6:38 PM, Gary Browne wrote:
 
 Hi Hamish

 A solution of sorts...I first tried deleting the 
 [dspace-source]/dspace/target directory. Then after running mvn 
 package, my customised jsp pages WERE copied to 
 [dspace-source]/dspace/target/dspace-[version].dir/webapps/dspace-jspui-webapp/.
  
 However, after doing an ant -Dconfig=/yadda/yadda update, I had app 
 runtime errors which were unresolvable without some hard thinking, for 
 which I was not in the mood. So, ... reinstall. I removed the 
 [dspace-source]/dspace/target directory again, dropped and reinstalled 
 the dspace db, re-ran mvn package and did an ant fresh_install. Et 
 voila! One DSpace 1.5 instance complete with customised jsp pages. Now 
 let's see if everything else works.

 Don't ask me what you do if this is a production instance - dropping 
 production dbs ain't fun.

 I hope this information is useful to yourself or anyone else 
 struggling with this.

 Kind regards
 G



[snip]

 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of Brett, 
 Hamish
 Sent: Monday, 26 May 2008 12:11 PM
 To: Gary Browne; dspace-tech@lists.sourceforge.net
 Subject: Re: [Dspace-tech] Customised jsp pages not loading (1.5)

 I am having the exact same problem, I thought having a break over the 
 weekend might fix it but it didnt

 hamish

 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of Gary 
 Browne
 Sent: Monday, 26 May 2008 11:36 AM
 To: dspace-tech@lists.sourceforge.net
 Subject: [Dspace-tech] Customised jsp pages not loading (1.5)

 Hi all

 After installing 1.5, I put my customised jsp pages in:

 [dspace-source]/dspace/modules/jspui/src/main/webapp/

 I then ran mvn package from the [dspace-source]/dspace/ directory, 
 followed by ant -Dconfig=[dspace]/config/dspace.cfg update.

 The customised jsp pages are not copied over to [dspace]/webapps, why 
 would that be?

 Thanks
 Gary


-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Germany
===

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] LDAP-Authorisation fails

2008-05-27 Thread Robert Roggenbuck
Thanks for the hints.

Stuart Lewis schrieb:
 Hi Robert,
 
 Thanks for the reply and the link to the LDAP-browser.
 The problem is that our LDAP-Server needs an admin-login to retrieve the
 uid... With the public access one can get other data about users - but
 not the uid...
 Is it possible to modify DSpace to login to a LDAP-server?
 
 How good is your Java?
I would say: poor Java (reading is OK) but good general programming.


 The class to look at would be org.dspace.authentication.LDAPAuthentication
 (assuming you're using version 1.5).
Yes, it is 1.5.


 You might find some useful LDAP code snippets in the patch at:
 
 http://sourceforge.net/tracker/index.php?func=detail=1597831_id=19
 984atid=319984
I will have a look at it and tell the list about my solutions and problems.

Greetings

Robert


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] regarding ant fresh_install

2008-05-23 Thread Robert Roggenbuck
A documentation is part of the 1.5 package - but as far as I see in some 
details (paths etc.) it is still 1.4.2. Even the Wiki documentation is 
still not comlete with notes about 1.5. So to be sure to have a stable 
DSpace with a fine documentation choose DSpace 1.4.2 (stable - not alpha!).

Best regards

Robert

---

mallikarjun dora schrieb:
 Hi
 Greeting
 
 i have the documentation of 1.4 alpha in window, i know that 1.5 is already
 came.
 do you have any documentation of 1.5 apart from what in dspace.org because i
 need a proper documentation for installing and i have not that much
 technical expertise.
 
 Any help from your side?
 
 with regards
 Mallikarjun
 

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Alte Muenze 16
D-49074 Osnabrueck
Germany
Tel ++49/541/969-4344  Fax -4482
[EMAIL PROTECTED]

Postbox:
Postfach 4496
D-49034 Osnabrueck
===

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] LDAP-Authorisation fails

2008-05-23 Thread Robert Roggenbuck
Thanks for the reply and the link to the LDAP-browser.
The problem is that our LDAP-Server needs an admin-login to retrieve the 
uid... With the public access one can get other data about users - but 
not the uid...
Is it possible to modify DSpace to login to a LDAP-server?

Best regards

Robert

Stuart Lewis schrieb:
 Hi Robert,
 
 Here are my LDAP-settings in dspace.cfg:

 ldap.enable = true
 ldap.provider_url = ldap://our.ldap.uni-osnabrueck.de
 ldap.id_field = uid
 ldap.object_context = cn=people,dc=Uni-Osnabrueck,dc=de
 ldap.search_context = ou=people
 ldap.email_field = mail
 ldap.surname_field = sn
 ldap.givenname_field = givenName
 ldap.phone_field = telephoneNumber
 webui.ldap.autoregister = true
 plugin.sequence.org.dspace.authenticate.AuthenticationMethod = \
  org.dspace.authenticate.LDAPAuthentication, \
  org.dspace.authenticate.PasswordAuthentication
 
 Try setting ldap.search.context to be the same value as ldap.object.context.
  
 I see two possibilities where things can go wrong, but I have no idea
 how to make them right:

 1. The DSpace documentation notes about 'ldap.object_context' that it is
 appended to the ldap.id_field and username. This looks to my that
 DSpace builds the DN using id_field and object_context. Our LDAP
 administrator says that in this caste the id_field would be 'cn' and the
 users must login using their Common Name and not their uid. But even
 when I try the 'cn'-value as login name, I get the same error (with the
 'cn'-value as 'netid').
 
 If that is the case, use cn rather than uid.
  
 2. As far as I know it is necessary to query the LDAP-server an
 access-login and -password is needed. But I could not find any place to
 set these in DSpace.
 
 What happens is that the user who is logging in to DSpace provides their
 username and password. DSpace uses these to login (bind) to the LDAP
 service, and to extract their details to create the account. So you do not
 need to provide a separate username and password.
 
 (Some LDAP setups do require this if users are scattered across different
 branches of a tree. A username and password is required to find where the
 user is, and then the user's username and password are used to login as per
 normal).
 
 Try using an LDAP browser (e.g.
 http://www-unix.mcs.anl.gov/~gawor/ldap/download.html). Test your settings
 in this, and once they work, enter them into the DSpace configuration. The
 LDAP browser is a lot easier to use and diagnose connection problems with,
 than directly in DSpace.
 
 Good luck,
 
 
 Stuart
 _
 
 Gwasanaethau Gwybodaeth  Information Services
 Prifysgol Aberystwyth  Aberystwyth University
 
 E-bost / E-mail: [EMAIL PROTECTED]
  Ffon / Tel: (01970) 622860
 _
 



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] LDAP-Authorisation fails

2008-05-22 Thread Robert Roggenbuck
Hi,

I'd like to enable LDAP authorisation in addition to the traditional 
email registration for DSpace 1.5. But when I try to login I get the 
following messages in dspace.log:

2008-05-22 09:20:14,951 WARN  org.dspace.app.webui.servlet.LDAPServlet @ 
anonymous:session_id=DF5155BCA2D28A286BDEC1D5A1D379DA:ip_addr=131.173.148.100:ldap_authentication:type=failed_auth
 
javax.naming.AuthenticationException: [LDAP: error code 49 - Invalid 
Credentials]
2008-05-22 09:20:15,015 INFO  org.dspace.app.webui.servlet.LDAPServlet @ 
anonymous:session_id=DF5155BCA2D28A286BDEC1D5A1D379DA:ip_addr=131.173.148.100:failed_login:netid=myaccount

The LDAP-error 49 means either The client passed either an incorrect DN 
or password or The password is incorrect because it has expired, 
intruder detection has locked the account, or some other similar 
reason. It can only be the second reason, because working with other 
applications the used LDAP-account is valid.

Here are my LDAP-settings in dspace.cfg:

ldap.enable = true
ldap.provider_url = ldap://our.ldap.uni-osnabrueck.de
ldap.id_field = uid
ldap.object_context = cn=people,dc=Uni-Osnabrueck,dc=de
ldap.search_context = ou=people
ldap.email_field = mail
ldap.surname_field = sn
ldap.givenname_field = givenName
ldap.phone_field = telephoneNumber
webui.ldap.autoregister = true
plugin.sequence.org.dspace.authenticate.AuthenticationMethod = \
 org.dspace.authenticate.LDAPAuthentication, \
 org.dspace.authenticate.PasswordAuthentication

I see two possibilities where things can go wrong, but I have no idea 
how to make them right:

1. The DSpace documentation notes about 'ldap.object_context' that it is 
appended to the ldap.id_field and username. This looks to my that 
DSpace builds the DN using id_field and object_context. Our LDAP 
administrator says that in this caste the id_field would be 'cn' and the 
users must login using their Common Name and not their uid. But even 
when I try the 'cn'-value as login name, I get the same error (with the 
'cn'-value as 'netid').

2. As far as I know it is necessary to query the LDAP-server an 
access-login and -password is needed. But I could not find any place to 
set these in DSpace.

What could I do?

Best regards

Robert

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Germany
===

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] regarding ant fresh_install

2008-05-22 Thread Robert Roggenbuck
Why do You use the old 1.4? And why alpha!?

Greetings

Robert

mallikarjun dora schrieb:
 Hi
 I am geeting difficult in installing dspace 1.4. alpha in window.
 Everythings fine but in the stage of ant fresh_install its showing build
 failed.
 
 
 Could any one help me.
 
 with regards
 Mallikarjun
 
 
 
 
 
 -
 This SF.net email is sponsored by: Microsoft
 Defy all challenges. Microsoft(R) Visual Studio 2008.
 http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
 
 
 
 
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Germany
===

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Upload of logo for a Community fails

2008-05-21 Thread Robert Roggenbuck
Hi,

I just want to add a first community to my DSpace 1.5 but I get the 
following permission-errors in dspace.log when I try to add a logo:

2008-05-21 12:01:23,383 ERROR org.dspace.search.DSIndexer @ Permission 
denied
java.io.IOException: Permission denied
at java.io.UnixFileSystem.createFileExclusively(Native Method)
at java.io.File.createNewFile(File.java:850)
at 
org.apache.lucene.store.SimpleFSLock.obtain(SimpleFSLockFactory.java:144)
at org.apache.lucene.store.Lock.obtain(Lock.java:73)
at org.apache.lucene.index.IndexWriter.init(IndexWriter.java:691)
[snip]
at 
org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
at 
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:685)
at java.lang.Thread.run(Thread.java:595)
2008-05-21 12:01:29,480 ERROR 
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/jspui].[edit-communities]
 
@ Servlet.service() for servlet edit-communities threw exception
java.io.IOException: No such file or directory
at java.io.UnixFileSystem.createFileExclusively(Native Method)
at java.io.File.createNewFile(File.java:850)
at edu.sdsc.grid.io.local.LocalFile.createNewFile(LocalFile.java:486)
at 
org.dspace.storage.bitstore.BitstreamStorageManager.store(BitstreamStorageManager.java:332)
[snip]
at 
org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
at 
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:685)
at java.lang.Thread.run(Thread.java:595)
2008-05-21 12:01:29,480 WARN 
org.dspace.app.webui.servlet.InternalErrorServlet @ 
:session_id=9A7FB1AEEB84D5E15CD7441A8F4AAF9D:internal_error:-- URL Was: 
http://vm1lux03.ub.uni-osnabrueck.de:8081/jspui/tools/edit-communities
-- Method: POST
-- Parameters were:

java.io.IOException: No such file or directory
at java.io.UnixFileSystem.createFileExclusively(Native Method)
at java.io.File.createNewFile(File.java:850)
at edu.sdsc.grid.io.local.LocalFile.createNewFile(LocalFile.java:486)

[snip]

at 
org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
at 
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:685)
at java.lang.Thread.run(Thread.java:595)

Any suggestions? Which file / directory causes this message? The 
[dspace]/upload/ directory is owned by the user 'tomcat' and writable 
for it.

Best regards

Robert


-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Germany
===

-
This SF.net email is sponsored by: Microsoft 
Defy all challenges. Microsoft(R) Visual Studio 2008. 
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] help files of a second language are not displayed

2008-05-19 Thread Robert Roggenbuck
Hi,

I configured the JSPUI of DSpace to work with German additional to 
English. I copied the German language files to the right directories and 
the building with 'maven' and 'ant' worked fine. Now I can switch the 
GUI between English and German but the Help-Files are still in English - 
even while the help-link is 
http://our.testserver.de:8081/jspui/?locale=de# (sometimes it is just 
http://our.testserver.de:8081/jspui/#). There are no remaks in the 
dspace.log. And when I call 
http://our.testserver.de:8081/jspui/help/index_de.html I get the right 
help page.

What's going on here?

Best regards

Robert

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Germany
===

-
This SF.net email is sponsored by: Microsoft 
Defy all challenges. Microsoft(R) Visual Studio 2008. 
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] help files of a second language are not displayed

2008-05-19 Thread Robert Roggenbuck
Thanks! That helped.

But should'nt that be the standard settings in 
Messages_LOCALE.properties? If not, there should be a note in a 
README-file in the localisation package. If it is not a bug, I will add 
a note in the Wiki (page 'I18nSupport').

Greetings

Robert

Claudia Jürgen schrieb:
 Hi Robert,
 
 edit your Messages_de.properties and set
 
 help.collection-admin = /help/collection-admin_de.html
 help.formats  = /help/formats_de.jsp
 help.index= /help/index_de.html
 help.site-admin   = /help/site-admin_de.html
 
 sunny greetings
 
 Claudia
 
 
 Robert Roggenbuck schrieb:
 Hi,

 I configured the JSPUI of DSpace to work with German additional to 
 English. I copied the German language files to the right directories 
 and the building with 'maven' and 'ant' worked fine. Now I can switch 
 the GUI between English and German but the Help-Files are still in 
 English - even while the help-link is 
 http://our.testserver.de:8081/jspui/?locale=de# (sometimes it is just 
 http://our.testserver.de:8081/jspui/#). There are no remaks in the 
 dspace.log. And when I call 
 http://our.testserver.de:8081/jspui/help/index_de.html I get the right 
 help page.

 What's going on here?

 Best regards

 Robert

 



-
This SF.net email is sponsored by: Microsoft 
Defy all challenges. Microsoft(R) Visual Studio 2008. 
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] help files of a second language are not displayed

2008-05-19 Thread Robert Roggenbuck
I was surprised to hear that in the message file are path settings. I 
would have had a look in the message file if I detected a text which I 
would like to change. Customization just by reading the 
Messages.properties file is nearly impossible, because the GUI-context 
is not visible. A hint here and there would be helpful. And would it not 
better to move the path settings to dspace.cfg?

Best regards

Robert

Claudia Jürgen schrieb:
 Hi Robert,
 
 as most instance do not extend their effort of i18n so far, as to 
 localize every bit and use the language switch, having the links to the 
 German help files in the Messages_de.properties might lead to more 
 errors. The docs state, that you got to customize your messages file. 
 Maybe this could be more verbose.
 
 sunny greetings
 
 Claudia
 
 
 Robert Roggenbuck schrieb:
 Thanks! That helped.

 But should'nt that be the standard settings in 
 Messages_LOCALE.properties? If not, there should be a note in a 
 README-file in the localisation package. If it is not a bug, I will 
 add a note in the Wiki (page 'I18nSupport').

 Greetings

 Robert

 Claudia Jürgen schrieb:
 Hi Robert,

 edit your Messages_de.properties and set

 help.collection-admin = /help/collection-admin_de.html
 help.formats  = /help/formats_de.jsp
 help.index= /help/index_de.html
 help.site-admin   = /help/site-admin_de.html

 sunny greetings

 Claudia


 Robert Roggenbuck schrieb:
 Hi,

 I configured the JSPUI of DSpace to work with German additional to 
 English. I copied the German language files to the right directories 
 and the building with 'maven' and 'ant' worked fine. Now I can 
 switch the GUI between English and German but the Help-Files are 
 still in English - even while the help-link is 
 http://our.testserver.de:8081/jspui/?locale=de# (sometimes it is 
 just http://our.testserver.de:8081/jspui/#). There are no remaks in 
 the dspace.log. And when I call 
 http://our.testserver.de:8081/jspui/help/index_de.html I get the 
 right help page.

 What's going on here?

 Best regards

 Robert




 

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Alte Muenze 16
D-49074 Osnabrueck
Germany
Tel ++49/541/969-4344  Fax -4482
[EMAIL PROTECTED]

Postbox:
Postfach 4496
D-49034 Osnabrueck
===

-
This SF.net email is sponsored by: Microsoft 
Defy all challenges. Microsoft(R) Visual Studio 2008. 
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Tomcat can't find DSpace

2008-05-13 Thread Robert Roggenbuck
=/usr/share/tomcat5/temp 
org.apache.catalina.startup.Bootstrap start

This is strange too, because tomcat should run as user 'dspace'. So may 
be there are more then 1 problem hiding each other...

Can someone help me?

Best regards

Robert

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Germany
===

-
This SF.net email is sponsored by: Microsoft 
Defy all challenges. Microsoft(R) Visual Studio 2008. 
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Tomcat can't find DSpace

2008-05-13 Thread Robert Roggenbuck
Yes, GNU Java is installed:

$ java --version
java version 1.4.2
gij (GNU libgcj) version 4.1.2 20070626 (Red Hat 4.1.2-14)

If it is it really necessary to work with Sun Java it should be 
mentioned more clearly in the docs.
Is it possible to have Sun Java additionally to GNU Java? Because GNU 
Java is the standard java on RedHat EL I would feel more comfortable by 
keep it.

Best regards

Robert

James Rutherford schrieb:
 On Tue, May 13, 2008 at 09:44:01AM +, Robert Roggenbuck wrote:
 INFO: The Apache Tomcat Native library which allows optimal performance
 in production environments was not found on the java.library.path:
 /usr/lib64/gcj-4.1.2
 
 Are you using Sun Java or GNU Java? Using gcj et al can cause no end of
 problems when running DSpace.
 
 cheers,
 
 Jim
 

-- 



-
This SF.net email is sponsored by: Microsoft 
Defy all challenges. Microsoft(R) Visual Studio 2008. 
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Tomcat can't find DSpace

2008-05-13 Thread Robert Roggenbuck
Yes, Java 1.5 is mentioned - sorry for not checking the installed Java 
version...

Thanks for the link. I will see if I can register the server at the 
RedHat supplementary updates repository. I tell You whether I 
succeeded or not.

Thanks for the help so far

Robert

James Rutherford schrieb:
 On Tue, May 13, 2008 at 12:10:21PM +, Robert Roggenbuck wrote:
 $ java --version
 java version 1.4.2
 gij (GNU libgcj) version 4.1.2 20070626 (Red Hat 4.1.2-14)

 If it is it really necessary to work with Sun Java it should be
 mentioned more clearly in the docs.
 Is it possible to have Sun Java additionally to GNU Java? Because GNU
 Java is the standard java on RedHat EL I would feel more comfortable by
 keep it.
 
 See this page for an explanation (and steps towards a solution):
 
 http://www.ja-sig.org/wiki/display/CASUM/Deploying+CAS+3.0.x+in+RHEL+5+with+Sun+Java
 
 As noted, GNU Java is only equivalent to J2SE 1.4.2 (and Java 1.5 is a
 requirement for DSpace 1.5 -- I'm pretty sure that is specified in the
 docs somewhere).
 
 cheers,
 
 Jim
 



-
This SF.net email is sponsored by: Microsoft 
Defy all challenges. Microsoft(R) Visual Studio 2008. 
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Tomcat can't find DSpace

2008-05-13 Thread Robert Roggenbuck
Here I am again.

Sun Java 1.5 is installed and now DSpace is online! Thank You!

But after restarting Tomcat I find in catalina.out some problems similar 
  to the ones before:

Using CATALINA_BASE:   /usr/share/tomcat5
Using CATALINA_HOME:   /usr/share/tomcat5
Using CATALINA_TMPDIR: /usr/share/tomcat5/temp
Using JRE_HOME:
13.05.2008 17:12:35 org.apache.catalina.core.AprLifecycleListener 
lifecycleEvent
INFO: The Apache Tomcat Native library which allows optimal performance 
in production environments was not found on the java.library.path: 
/usr/lib/jvm/java-1.5.0-sun-1.5.0.15.x86_64/jre/lib/amd64/server:/usr/lib/jvm/java-1.5.0-sun-1.5.0.15.x86_64/jre/lib/amd64:/usr/lib/jvm/java-1.5.0-sun-1.5.0.15.x86_64/jre/../lib/amd64
13.05.2008 17:12:36 org.apache.coyote.http11.Http11BaseProtocol init
INFO: Initializing Coyote HTTP/1.1 on http-8081
13.05.2008 17:12:36 org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 1341 ms
13.05.2008 17:12:36 org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
13.05.2008 17:12:36 org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/5.5.20
13.05.2008 17:12:36 org.apache.catalina.core.StandardHost start
INFO: XML validation disabled
13.05.2008 17:12:37 org.apache.catalina.core.ApplicationContext log
INFO: org.apache.webapp.balancer.BalancerFilter: init(): ruleChain: 
[org.apache.webapp.balancer.RuleChain: 
[org.apache.webapp.balancer.rules.URLStringMatchRule: Target string: 
News / Redirect URL: http://www.cnn.com], 
[org.apache.webapp.balancer.rules.RequestParameterRule: Target param 
name: paramName / Target param value: paramValue / Redirect URL: 
http://www.yahoo.com], 
[org.apache.webapp.balancer.rules.AcceptEverythingRule: Redirect URL: 
http://jakarta.apache.org]]
log4j:WARN No appenders could be found for logger 
(org.apache.commons.digester.Digester).
log4j:WARN Please initialize the log4j system properly.
INFO: Loading provided config file: /opt/dspace/config/dspace.cfg
INFO: Using dspace provided log configuration (log.init.config)
INFO: Loading: /opt/dspace/config/log4j.properties
log4j:ERROR setFile(null,true) call failed.
java.io.FileNotFoundException: /opt/dspace/log/dspace.log (Permission 
denied)
at java.io.FileOutputStream.openAppend(Native Method)
at java.io.FileOutputStream.init(FileOutputStream.java:177)
[snip]
at java.lang.reflect.Method.invoke(Method.java:585)
at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:295)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:433)
log4j:ERROR setFile(null,true) call failed.
java.io.FileNotFoundException: /opt/dspace/log/checker.log (Permission 
denied)
at java.io.FileOutputStream.openAppend(Native Method)
at java.io.FileOutputStream.init(FileOutputStream.java:177)
[snip]
at java.lang.reflect.Method.invoke(Method.java:585)
at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:295)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:433)
13.05.2008 17:12:40 org.apache.catalina.core.ApplicationContext log
INFO: ContextListener: contextInitialized()
13.05.2008 17:12:40 org.apache.catalina.core.ApplicationContext log
INFO: SessionListener: contextInitialized()
13.05.2008 17:12:40 org.apache.catalina.core.ApplicationContext log
INFO: ContextListener: contextInitialized()
13.05.2008 17:12:40 org.apache.catalina.core.ApplicationContext log
INFO: SessionListener: contextInitialized()
13.05.2008 17:12:40 org.apache.coyote.http11.Http11BaseProtocol start
INFO: Starting Coyote HTTP/1.1 on http-8081
13.05.2008 17:12:40 org.apache.jk.common.ChannelSocket init
INFO: JK: ajp13 listening on /0.0.0.0:8009
13.05.2008 17:12:40 org.apache.jk.server.JkMain start
INFO: Jk running ID=0 time=0/49  config=null
13.05.2008 17:12:40 org.apache.catalina.storeconfig.StoreLoader load
INFO: Find registry server-registry.xml at classpath resource
13.05.2008 17:12:40 org.apache.catalina.startup.Catalina start
INFO: Server startup in 4707 ms

The problems I see:
- The Apache Tomcat Native library is still not found. Is it required. 
Should'nt it be part of Tomcat. Did I set a path wrong?

- Can I ignore the log4j-warning because of the later successful loading 
message regarding log4j?

- Tomcat still starts up as user 'tomcat', not 'dspace'. This seems to 
be the reason for the permission problems. But why does Tomcat ignore 
the settings in tomcat5.conf?

Best regards

Robert


Robert Roggenbuck schrieb:
 Yes, Java 1.5 is mentioned - sorry for not checking the installed Java 
 version...
 
 Thanks for the link. I will see if I can register the server at the 
 RedHat supplementary updates repository. I tell You whether I 
 succeeded or not.
 
 Thanks for the help so far
 
 Robert
 


-
This SF.net email is sponsored by: Microsoft 
Defy all challenges. Microsoft(R) Visual

[Dspace-tech] Including a handle for the German national library

2008-04-25 Thread Robert Roggenbuck
Hi all,

recently we decided to set up our OA-Repository using DSpace.
Now I have a question regarding special German circumstances: Is it 
possible to replace the CNRI Handle-mechanism by a DNB-URN?

Best regards

Robert

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Alte Muenze 16
D-49074 Osnabrueck
Germany
Tel ++49/541/969-4344  Fax -4482
[EMAIL PROTECTED]

Postbox:
Postfach 4496
D-49034 Osnabrueck
===

-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] DSpace 1.5 manual- reviewers needed

2008-04-17 Thread Robert Roggenbuck
Dear Michele Kimpton,

I would like to test the prerequisits / installation part of the manual.
But I have only OpenOffice available. I can handle MS-Word documents but
I am not sure about the compatibility of track changes.

Best regards

Robert Roggenbuck

PS: My first reply was bounced too...

---

Michele Kimpton schrieb:
 Dear community,
 
 We have completed the draft form of the DSpace 1.5 manual.  Now we  
 would like to recruit about 10-15 people from the community that would  
 be interested in reviewing a particular section, or using the manual  
 to do a 1.5 installation and proofing the manual as they go.  The  
 current manual is 260 pages long and is a WORD document.  We have  
 decided to use a small group to review it initially to uncover any  
 large glaring errors or submissions.  After this process ( which we  
 ask take only 1 week) we will release to the entire community.
 
 If you would like to participate in the manual review process please  
 email me and I will send you back the document.  You will need to  
 review in WORD, and will need to be able to turn track changes on so  
 we can reconcile all changes from the team.
 
 thanks for your help and participation.
 
 Michele Kimpton
 
 -
 This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
 Don't miss this year's exciting event. There's still time to save $100. 
 Use priority code J8TL2D2. 
 http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Alte Muenze 16
D-49074 Osnabrueck
Germany
Tel ++49/541/969-4344  Fax -4482
[EMAIL PROTECTED]

Postbox:
Postfach 4496
D-49034 Osnabrueck
===

-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Upload of files larger then 2 GB

2007-11-28 Thread Robert Roggenbuck
Hi Christophe!

Thanks for the explanation how to set up a separate index. But I could 
not see the why it helps for a file upload. The content of the file will 
never be part of metadatavalue.text_value . And I really do not want to 
index binary data (which is the content of my 2 GB file).

Anyway I succeeded with the following command, which needed less then 5 
minutes for the import:

 dsrun org.dspace.content.crosswalk.XSLTingest -a -x DIMDIM -e 
[EMAIL PROTECTED] -c 123456789/30 -s addfiles.xml -m addfiles071126.map

Of course '[EMAIL PROTECTED]' is not the real ID I used. The DIMDIM is 
the null-XSLT You developed (as in 
http://sourceforge.net/mailarchive/message.php?msg_name=47387A4D.3020802%40uni-osnabrueck.de
 
- far below). The content of addfiles.xml is very simple DIM:

?xml version=1.0?
dim:list xmlns:dim=http://www.dspace.org/xmlns/dspace/dim;
dim:dim xmlns:dim=http://www.dspace.org/xmlns/dspace/dim; 
dspaceType=ITEM
   dim:field mdschema=dc element=identifier qualifier=other 
type=keygiantfile/dim:field
   dim:original/tmp/rawdata.data/dim:original
/dim:dim
/dim:list

The line
dim:field mdschema=dc element=identifier qualifier=other 
type=keygiantfile/dim:field
refers to a dummy-key which must be added to the metadata set of the 
item where the file should be added. In the section 'Identifiers' select 
'other' and enter 'giantfile'. After the import this identifier should 
be removed of course.

Thanks to all the help from You and the others!

Best regards

Robert

-
Dupriez Christophe schrieb:
 To be precise about creating an index for faster access by field value, you 
 can create this index running this SQL script:
   CREATE INDEX metadata_value_idx3 ON metadatavalue USING btree 
 (metadata_field_id, md5(text_value));
 
   Good afternoon!

   Christophe
 
 Robert Roggenbuck [EMAIL PROTECTED] a écrit :
   Dear Jayan,
 
 I agree that this must be a possible way. But I do not know how to 
 update an existing metadata record using the BatchItemImport and 
 XSLTIngest. Adding to a collection works well. But in the description of 
 the DIM-format there seems to be no possibility to include the ID of an 
 already existing record. but at the Wiki-page about BatchItemImport it 
 is written that update is possible.
 
 @Christophe Dupriez: Did You forgot to document an ID-attribute for the DIM?
 
 Best regards
 
 Robert
 
 -
 Jayan Chirayath Kurian schrieb:
 will it work will batch import i.e using itemimport - just a thought

 Cheers!
 Jayan

 

 From: [EMAIL PROTECTED] on behalf of Robert Roggenbuck
 Sent: Mon 11/26/2007 8:07 PM
 To: dspace-tech@lists.sourceforge.net Tech
 Subject: [Dspace-tech] Upload of files larger then 2 GB



 Dear all,

 I tried to submit a file larger then 2 GB but it is not possible using
 the Web-Interface. As far as I know it is not a limit by DSpace, nor
 HTML, Browser or HTTP. May be it is a Web server limit? Since files with
 such a size will be an exception an an upload limit is a good barrier
 for misuse it is ok for us.

 But I'd like to know how we can add this file to DSpace, given the
 situation I have it on DVD or on the local file system? Had someone
 developed a solution for this situation?

 Best regards

 Robert

 --

 ===
 Robert Roggenbuck
 Universitaetsbibliothek Osnabrueck
 Germany
 ===

 
 
 -
 This SF.net email is sponsored by: Microsoft
 Defy all challenges. Microsoft(R) Visual Studio 2005.
 http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 
 
 
 
  
 -
  Ne gardez plus qu'une seule adresse mail ! Copiez vos mails vers Yahoo! Mail 

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Alte Muenze 16
D-49074 Osnabrueck
Germany
Tel ++49/541/969-4344  Fax -4482
[EMAIL PROTECTED]

Postbox:
Postfach 4496
D-49034 Osnabrueck
===

-
SF.Net email is sponsored by: The Future of Linux Business White Paper
from Novell.  From the desktop to the data center, Linux is going
mainstream.  Let it simplify your IT future.
http://altfarm.mediaplex.com/ad/ck/8857-50307-18918-4
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Upload of files larger then 2 GB

2007-11-26 Thread Robert Roggenbuck
Dear all,

I tried to submit a file larger then 2 GB but it is not possible using 
the Web-Interface. As far as I know it is not a limit by DSpace, nor 
HTML, Browser or HTTP. May be it is a Web server limit? Since files with 
such a size will be an exception an an upload limit is a good barrier 
for misuse it is ok for us.

But I'd like to know how we can add this file to DSpace, given the 
situation I have it on DVD or on the local file system? Had someone 
developed a solution for this situation?

Best regards

Robert

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Germany
===

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Upload of files larger then 2 GB

2007-11-26 Thread Robert Roggenbuck
Hi Kyle,

Thaks to the hint. I did not changed the standard setting: it still 
512MB. When I try to upload a 1 GB file, the submit-process starts to 
work but ends up on a white page (with the tomcat-favicon at the URL 
instead of the DSpace one). additionally I have entries in the 
dspace.log with a clear error message that I exceed the configured 
upload limit. But when I try it with a 2 GB file the situation is 
different: there is no reaction at the browser (with firefox and IE) or 
  it crashes (Konquerer) and there are no entries in the dspace.log, nor 
in any tomcat- or system-log. As far as I understood the 2 GB limit is 
known to the DSpace delelopers and outside or there realm 
(http://wiki.dspace.org/index.php/ArchReviewNotes).

Since the 2 GB limit is ok for us I will look for an alternative to the 
upload via HTTP.

Greetings

Robert

---
Kyle Brentnell schrieb:
 Hi Robert,
 
 Have you set the upload.max setting in dspace.cfg to a negative number (or
 bigger than 2 Gigs)?  
 
 By default this setting has an upload limit of 512MB.  You can disable the
 limit by setting it to upload.max=-1.
 
 Kyle
 
 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf 
 Of Robert Roggenbuck
 Sent: November 26, 2007 7:07 AM
 To: dspace-tech@lists.sourceforge.net Tech
 Subject: [Dspace-tech] Upload of files larger then 2 GB

 Dear all,

 I tried to submit a file larger then 2 GB but it is not 
 possible using the Web-Interface. As far as I know it is not 
 a limit by DSpace, nor HTML, Browser or HTTP. May be it is a 
 Web server limit? Since files with such a size will be an 
 exception an an upload limit is a good barrier for misuse it 
 is ok for us.

 But I'd like to know how we can add this file to DSpace, 
 given the situation I have it on DVD or on the local file 
 system? Had someone developed a solution for this situation?

 Best regards

 Robert

 -- 

 ===
 Robert Roggenbuck
 Universitaetsbibliothek Osnabrueck
 Germany
 ===



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Upload of files larger then 2 GB

2007-11-26 Thread Robert Roggenbuck
Dear Jayan,

I agree that this must be a possible way. But I do not know how to 
update an existing metadata record using the BatchItemImport and 
XSLTIngest. Adding to a collection works well. But in the description of 
the DIM-format there seems to be no possibility to include the ID of an 
already existing record. but at the Wiki-page about BatchItemImport it 
is written that update is possible.

@Christophe Dupriez: Did You forgot to document an ID-attribute for the DIM?

Best regards

Robert

-
Jayan Chirayath Kurian schrieb:
 will it work will batch import i.e using itemimport -  just a thought
  
 Cheers!
 Jayan
 
 
 
 From: [EMAIL PROTECTED] on behalf of Robert Roggenbuck
 Sent: Mon 11/26/2007 8:07 PM
 To: dspace-tech@lists.sourceforge.net Tech
 Subject: [Dspace-tech] Upload of files larger then 2 GB
 
 
 
 Dear all,
 
 I tried to submit a file larger then 2 GB but it is not possible using
 the Web-Interface. As far as I know it is not a limit by DSpace, nor
 HTML, Browser or HTTP. May be it is a Web server limit? Since files with
 such a size will be an exception an an upload limit is a good barrier
 for misuse it is ok for us.
 
 But I'd like to know how we can add this file to DSpace, given the
 situation I have it on DVD or on the local file system? Had someone
 developed a solution for this situation?
 
 Best regards
 
 Robert
 
 --
 
 ===
 Robert Roggenbuck
 Universitaetsbibliothek Osnabrueck
 Germany
 ===
 


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] PostgreSQL refuse access

2007-11-21 Thread Robert Roggenbuck
Got it!!!

Not the network, not PostgreSQL, and not really DSpace - of course it 
was me. To show my colleagues the status of my test installation of 
DSpace I changed in dspace.cfg all occurrences of 'localhost' to the 
network name. And this was 1 occurrence too much: After resetting to 
'localhost' the line

db.url = jdbc:postgresql://localhost:5432/dspace

the connection was back!

Thanks to everyone who helped and wondered. :-)

Best regards

Robert

---

Christian Voelker schrieb:
 Hello,
 
 Am 20.11.2007 um 13:23 schrieb Robert Roggenbuck:
 
 begin pg_hba.conf#
 local   all postgres  ident sameuser
 # TYPE  DATABASEUSERCIDR-ADDRESS  METHOD
 # local is for Unix domain socket connections only
 local   all all   ident sameuser
 # IPv4 local connections:
 hostall all 127.0.0.1/32  md5
 # IPv6 local connections:
 hostall all ::1/128   md5
 # DSpace settings:
 hostdspace  dspace  127.0.0.1 255.255.255.255  md5
 # hostdspace  dspace  131.173.148.100 255.255.255.255  md5
 end  pg_hba.conf
 
 First, I would try a very open setting temporarily and also
 find out whether the notation of the mask as /32 is accepted.
 I would use a config with a single line like one of these to
 start with:
 
 hostall all 127.0.0.1255.255.255.0 password
 or
 hostall all 127.0.0.10.0.0.0 trust
 or
 hostall all 0.0.0.0   0.0.0.0 trust
 (check the state of your firewall before)
 
 I guess the last active line in your pg_hba.conf will never be
 evaluated because host all all matches all requests for db dspace
 by user dspace before they come to this line. But that should
 not stop your config from working.
 
 Then, did you update anything that might have placed a different
 version of the jdbc driver in a generic place where java might
 pick it up before it looks into your dspace directory? Or anything
 that might have modified the jdbc driver? Allways the same stupid
 questions but that is all that comes to my mind.
 
 Bye, Christian
 


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] PostgreSQL refuse access

2007-11-20 Thread Robert Roggenbuck
Thanks for Your hint. The result of 'lsof -i tcp:5432' is:

COMMAND   PID USER   FD   TYPE DEVICE SIZE NODE NAME
postgres 5384 postgres3u  IPv4  17284   TCP localhost:postgresql 
(LISTEN)

This looks quite ok. Or should there are more processes / files?

Regards

Robert

James Rutherford schrieb:
 Robert Roggenbuck wrote:
   Connection denied. Check the hostname and portnumber and be sure the
   the database server accept TCP/IP-connections.
 
 Did you check this? Try running lsof -i tcp:5432 as root on the database
 server to see if postgres is listening for TCP connections.
 
 cheers,
 
 Jim

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] PostgreSQL refuse access

2007-11-20 Thread Robert Roggenbuck
James Rutherford schrieb:
 
 No, this is fine. The only thing I can think of then is that either
 something changed in your pg_hba.conf to deny access to your DSpace user
 or your dspace.cfg has been updated, and the incorrect password is in
 there. Is the database running on the same machine as tomcat?

The database runs on the same machine as Tomcat. The password in 
dspace.cfg is correct (and without trailing spaces).
I added one line in pg_hba.conf after (!) the connection failes - but 
without success (it is the last line in the following snippet):

begin pg_hba.conf#
local   all postgres  ident sameuser
# TYPE  DATABASEUSERCIDR-ADDRESS  METHOD
# local is for Unix domain socket connections only
local   all all   ident sameuser
# IPv4 local connections:
hostall all 127.0.0.1/32  md5
# IPv6 local connections:
hostall all ::1/128   md5
# DSpace settings:
hostdspace  dspace  127.0.0.1 255.255.255.255  md5
# hostdspace  dspace  131.173.148.100 255.255.255.255  md5
end  pg_hba.conf

Greetings

Robert


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Batch Import and Namespaces

2007-11-16 Thread Robert Roggenbuck
Hi Don,

thanks for You reply. Sorry for my late response, but the XML-import 
seems to me at first as a more official way to do it then using the 
csv-package. And so I tried it as first. Now I see both ways have their 
advantages and disadvantages (not surprisingly), and I took up Your 
thread and looked into ItemImport.java. I succeeded! The changes I made 
are below. To add the 'schema'-attribute to every dcvalue tag if 
needed the 'fls.php' needs also some little changes. They are also noted 
below. The disadvantage of this method is that every imported metadata 
value gets a default language qualification. And in most cases it makes 
no sense (eg. dates, index numbers or names) or it is wrong (from a 
keyword list). The metadata generated by DSpace don't have these 
qualifiers (it is set to '-').

Best Regards

Robert


-

fls.php:

function create_tag($schema, $identifier, $qualifier, $value){
 $schemaAttrib = ;
 if ($schema != 'dc') {
 $schemaAttrib =  schema=\$schema\;
 }
 $dc_tag = dcvalue$schemaAttrib element=\$identifier\
qualifier=\$qualifier\$value/dcvalue;
 return $dc_tag;
}


# and the call it with the additional first parameter (two times):
#create_tag($dc[0],$dc[1],$dc[2], ...)




ItemImport.java:

/*
Node schemaAttr = metadata.item(0).getAttributes().getNamedItem( schema);
if (schemaAttr == null)
{
 schema = MetadataSchema.DC_SCHEMA;
}
else
{
 schema = schemaAttr.getNodeValue();
}
*/

Node schemaAttr;
// Add each one as a new format to the registry
for (int i = 0; i  dcNodes.getLength(); i++)
{
 schemaAttr = dcNodes.item(i).getAttributes().getNamedItem(schema);
 if (schemaAttr == null)
 {
 schema = MetadataSchema.DC_SCHEMA;
 }
 else
 {
 schema = schemaAttr.getNodeValue();
 }
 Node n = dcNodes.item(i);
 addDCValue(myitem, schema, n);
}

Don Gourley schrieb:
 Robert,
 
 The problem is that a bug in ItemImport prevents you from mixing
 different schemas in the same dublin_core.xml file.  The loadDublinCore
 method gets the schema from the first dcvalue tag and reuses it
 for every metadata element.  But it is a pretty easy Java fix to
 move 'schema = schemaAttr.getNodeValue();' from outside the loop
 that traverses the dcNodes list to inside that loop so it is
 retrieved for each metadata element if you need to mix schemas.
 
 (Sorry, I don't have a patch because we use a more substantially
 rewritten ItemImport for other customizations.)
 
 -Don
 

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Batch Import and Namespaces

2007-11-16 Thread Robert Roggenbuck
Hi Christophe,

Yes and no. You mean the encoding setting in the XSLT, didn't You? In 
the input file there is no encoding. After doing so, the import process 
can start, but I get a Java message that my access to the PostgreSQL via 
the user 'dspace' is denied:

**Test Run** - not actually importing items.
Exception in thread main org.postgresql.util.PSQLException: FATAL: 
Passwort-Authentifizierung f��r Benutzer ��dspace�� fehlgeschlagen
 at 
org.postgresql.core.v3.ConnectionFactoryImpl.doAuthentication(ConnectionFactoryImpl.java:275)
[snip]

Are there additional parameters to set the password at the commandline? 
Via pgAdmin III I get access as db-user 'dspace' to the database.

You wrote:
  If you load manually multi-files documents into DSpace, what do you
  have (or what do you want)? Multiple bitstreams in a bundle? Multiple
  bundles?

We want to set up a new thesis database (as a first step to a bigger 
repository). And for 1 thesis there are usually 2 files: a PDF version 
and a compressed file bundle containing the original sources (eg. 
MS-Word or TeX) and sometimes statistical raw material, graphics etc.
so we need 1 metadata set and 2 associated files.

  What are the values of the name field of the bundles of the
  different files?

Which name field? Should dim:original contain further attributes?

Best regards

Robert


Dupriez Christophe schrieb:
 Hi Robert!

   I am pretty sure that one problem is with the declared encoding of the 
 input file.
   Could you put:
   ?xml version=1.0 encoding=iso-8859-1?
   and retry?

   Christophe
 
 Robert Roggenbuck [EMAIL PROTECTED] a écrit :
   attached is my dim...
 
 Greetings
 
 Robert
 
 Dupriez Christophe schrieb:
 Thanks, I am checking... but would you be so kind to send me an extract of 
 your input file?

 Christophe

 
 
 
 
 
 6
 2000.07.20/12:17:11
 2000.09.08/17:03:13
 fangmeier
 FB5
 a
 Hepp, Alexander
 Isolobale Substitution in Tetraphosphortrisulfid und in seinen Derivaten
 ger
 In dieser Arbeit wird der Einfluß von exo- und endocyclischen isolobalen 
 Substitutionenin A4E3, P5E2X, beta-P4E3IR und alpha-P4E3XY untersucht (A=P 
 und/oder As, E =S und/oder Se, X=Halogen, R=CHI2, Y=Halogen.) Die einzelnen 
 Verbindungsklassen wurden synthetisiert und die 31P und 77Se-NMR-Werte 
 bestimmt. Die ermittelten 31P/77Se-NMR-Daten und die 31P/77Se-NMR-Daten aus 
 der Literatur bildeten die Grundlagen zur Untersuchung des Einflusses der 
 isolobalen Substitution. Dazu werden die Elektronegativität der Liganden, 
 Bindungswinkel und die 31P/77Se-NMR-Parameter miteinander in Beziehung 
 gebracht. Dabei wurde ein linearer Zusammenhang zwischen Bindungswinkeln und 
 chemischer Verschiebung bzw. Kopplungskonstanten in den A4E3-Verbindungen 
 beobachtet. Des weiteren konnten lineare Zusammenhänge zwischen der 
 Elektronegativität der exocyclischen Liganden (meist Halogene)und bestimmten 
 NMR-Werten gefunden werden. Beide Phänomene konnten zurückgeführt werden auf 
 den s-Anteil der
  Bindungen und/oder die Elektronendichte der betrachteten Kerne. Des weiteren 
 wird eine Übersicht der Präparationsmethoden und eine einheitliche Benennung 
 der Kerne in den Phosphorchalkogengerüsten vorgestellt. Die 
 31P/77Se-NMR-Daten der vorgestellten Phosphorchalkogenide werden im Anhang 
 nach Strukturklassen geordnet aufgeführt (ca. 500 Verbindungen). 
 
 Keywords: Phosphor, Selen, Schwefel, Iod, Brom, Chlor, Arsen, NMR, 31P, 77Se, 
 Tetraphosphortrisulfid, P4S3, alpha-Tetraphosphortrichalkogendihalogenid, 
 alpha-P4S3I2,beta-Tetraphosphortrichalkogendihalogenid, beta-P4S3I2, 
 Pentaphospordichalkogenhalogenid, P5S2I, Elektronegativität, Hybridisierung, 
 Fermi-Kontakt-Term
 diss
 Isolobale substitution in tetraphosphortrisulfide and its derivatives
 eng
 ger
 20.03.1998
 Prof. Dr. Roger Blachnik
 Prof. Dr. Roger Blachnik
 Dr. habil. Konstantin Karaghiosoff
 http://elib.ub.uni-osnabrueck.de/publications/diss/E-Diss6_hepp.tar.gz
 http://elib.ub.uni-osnabrueck.de/publications/diss/E-Diss6_Int_Hepp.pdf
 1880231
 2760496
 2000.09.08/17:03:12
 2000.09.08/17:03:13
 http://elib.ub.uni-osnabrueck.de/publications/diss/E-Diss6_hepp.tar.gz
 http://elib.ub.uni-osnabrueck.de/publications/diss/E-Diss6_Int_Hepp.pdf
 
 
 7
 2000.07.20/12:48:17
 2000.09.26/09:15:35
 fangmeier
 FB5
 a
 Lutz, Jörg
 31P-NMR-spektroskopische Untersuchungen von Heterocyclen mit alpha-P4S3-, 
 alpha-P4Se3- und P3Se4-Gerüst
 ger
 Diese Arbeit beschäftigt sich mit der Untersuchung der Ligandeneinflüsse bei 
 Verbindungen mit alpha-P4S3-, alpha-P4Se3- und P3Se4-Gerüst. Dazu wurden die 
 Verbindungen alpha-P4S3L2 (L = N(C3H7)(C6H5), NC9H10, SeCH3, 
 SeC6H5),alpha-P4Se3L2 (L = NH(C6H5), N(CH3)(C6H5), N(C2H5)(C6H5), 
 N(C3H7)(C6H5),NC9H10, SCH3, SeCH3) und P3Se4L (L = NH(C6H5), NH(C13H9), 
 NH(C25H19),N(CH3)(C6H5), N(C2H5)(C6H5), N(C3H7)(C6H5), NC9H10, SCH3, SeCH3, 
 SeC6H5)synthetisiert und die 31P-NMR-Parameter bestimmt. Durch Vergleich 
 mit31P-NMR-Daten aus der Literatur konnten die

Re: [Dspace-tech] RE : Re: RE : Re: Batch Import and Namespaces

2007-11-13 Thread Robert Roggenbuck
Thanks, that helped. But it still not compiles. Am I right that You also 
modified MetadataValue.java?:

###

compile:
 [javac] Compiling 5 source files to 
/opt/dspace-1.4.2-source/build/classes
 [javac] 
/opt/dspace-1.4.2-source/src/org/dspace/content/DCValue.java:109: 
formKey(java.lang.String,java.lang.String,java.lang.String) in 
org.dspace.content.MetadataField cannot be applied to 
(java.lang.String,java.lang.String,java.lang.String,java.lang.String)
 [javac] return 
MetadataField.formKey(schema,element,qualifier,language)+(value==null?:=+value);
 [javac] ^
 [javac] 
/opt/dspace-1.4.2-source/src/org/dspace/content/DCValue.java:117: 
formKey(java.lang.String,java.lang.String,java.lang.String) in 
org.dspace.content.MetadataField cannot be applied to 
(java.lang.String,java.lang.String,java.lang.String,java.lang.String)
 [javac] return 
MetadataField.formKey(schema,element,qualifier,language);
 [javac] ^
 [javac] 2 errors

BUILD FAILED
/opt/dspace-1.4.2-source/build.xml:125: Compile failed; see the compiler 
error output for details.

###

Best regards

Robert

--

Dupriez Christophe schrieb:
 Hi Robert!

   As I derive as much as possible from the existing sources, few private 
 must become public or protected... Proposed patches in ItemImport.java 
 are only to make protected some private:
   ...
   public class ItemImport
 {
 protected static boolean useWorkflow = false;
   protected static boolean isTest = false;
   protected static boolean isResume = false;
   protected static PrintWriter mapOut = null;
 ...
   protected void deleteItems(Context c, String mapFile) throws Exception
 ...
   protected void deleteItem(Context c, Item myitem) throws Exception
 ...
   protected Map readMapFile(String filename) throws Exception
 
 
   I join my version of org.dspace.content.DCValue which implements the 
 Comparable interface: when re-importing, it is useful to not duplicate 
 existing values.

   I should post this on SourceForge... Have a nice evening!

   Christophe Dupriez
   
 Robert Roggenbuck [EMAIL PROTECTED] a écrit :
   Dear Christophe,
 
 thanks for Your answer. The ItemBatchUpdate seems to be a good way to 
 import data.
 Now I exported my data in the DIM-format, included Your Java libraries 
 from Sourceforge into my DSpace-source and did an 'ant update'. 
 Unfortunately I get several errors:
 
 
 Buildfile: build.xml
 
 compile:
 [javac] Compiling 5 source files to 
 /opt/dspace-1.4.2-source/build/classes
 [javac] 
 /opt/dspace-1.4.2-source/src/org/dspace/content/Item.java:1610: cannot 
 find symbol
 [javac] symbol : method formShortKey()
 [javac] location: class org.dspace.content.DCValue
 [javac] String key = dcv.formShortKey();
 [javac] ^
 [javac] 
 /opt/dspace-1.4.2-source/src/org/dspace/content/crosswalk/XSLTingest.java:200:
  
 useWorkflow is not public in org.dspace.app.itemimport.ItemImport; 
 cannot be accessed from outside package
 [javac] useWorkflow = true;
 [javac] ^
 [javac] 
 /opt/dspace-1.4.2-source/src/org/dspace/content/crosswalk/XSLTingest.java:205:
  
 isTest is not public in org.dspace.app.itemimport.ItemImport; cannot be 
 accessed from outside package
 [javac] isTest = true;
 [javac] ^
 [javac] 
 /opt/dspace-1.4.2-source/src/org/dspace/content/crosswalk/XSLTingest.java:237:
  
 isResume is not public in org.dspace.app.itemimport.ItemImport; cannot 
 be accessed from outside package
 [javac] isResume = true;
 [javac] ^
 [javac] 
 /opt/dspace-1.4.2-source/src/org/dspace/content/crosswalk/XSLTingest.java:309:
  
 isResume is not public in org.dspace.app.itemimport.ItemImport; cannot 
 be accessed from outside package
 [javac] if (isResume  !command.equals(add))
 [javac] ^
 [javac] 
 /opt/dspace-1.4.2-source/src/org/dspace/content/crosswalk/XSLTingest.java:320:
  
 isResume is not public in org.dspace.app.itemimport.ItemImport; cannot 
 be accessed from outside package
 [javac] if (myFile.exists()  command.equals(add)  
 !isResume)
 [javac] ^
 [javac] 
 /opt/dspace-1.4.2-source/src/org/dspace/content/crosswalk/XSLTingest.java:435:
  
 cannot find symbol
 [javac] symbol : method 
 deleteItems(org.dspace.core.Context,java.lang.String)
 [javac] location: class org.dspace.content.crosswalk.XSLTingest
 [javac] myloader.deleteItems(c, mapfile);
 [javac] ^
 [javac] 
 /opt/dspace-1.4.2-source/src/org/dspace/content/crosswalk/XSLTingest.java:444:
  
 mapOut is not public in org.dspace.app.itemimport.ItemImport; cannot be 
 accessed from outside package
 [javac] if (mapOut != null)
 [javac] ^
 [javac] 
 /opt/dspace-1.4.2-source/src/org/dspace/content/crosswalk/XSLTingest.java:446:
  
 mapOut is not public in org.dspace.app.itemimport.ItemImport; cannot be 
 accessed from outside package
 [javac] mapOut.close();
 [javac] ^
 [javac] 
 /opt/dspace-1.4.2-source/src/org/dspace/content

Re: [Dspace-tech] Batch Import and Namespaces

2007-11-13 Thread Robert Roggenbuck
Yes, that was it - nearly: But to 'ant' it successfully I can not remove 
  the method formShortKey() because it is used in Item.java. Fortunately 
there is no problem with it, because the number of parameters are correct.

But the next problem arrives with my ingest. I call

 /dspace/bin/dsrun org.dspace.content.crosswalk.XSLTingest -a -x DIMDIM 
-e [EMAIL PROTECTED] -c 123456789/3 -s dim_for_import.xml -m 
import071113.map --test

and I get as answer:

**Test Run** - not actually importing items.
Error, cannot find an IngestionCrosswalk plugin for: DIMDIM

I introduced the crosswalk with its XSLT in dspace.conf (as suggested) by

crosswalk.submission.DIMDIM.stylesheet = crosswalks/DIM-submission.xsl

As long as I see in the Wiki page of ItemBatchUpdate there is nothing 
else to do to register the plugin. What to do next?

A second question to the DIM format: Can the tag dim:original occur 
more then once? And can I place a URL in it?

Best regards

Robert


Dupriez Christophe schrieb:
 To cut the modification chain, I suggest you to remove the three functions
  calling MetadataField.formkey: toString(), formShortKey(),
  formLanguageKey(): those are part of a much bigger modifications set
  to enable multi-lingual input in the DSpace submission process.

   I hope now it will make it!

   Christophe
   
 
 Robert Roggenbuck [EMAIL PROTECTED] a écrit :
   Thanks, that helped. But it still not compiles. Am I right that You also 
 modified MetadataValue.java?:
 
 ###
 
 compile:
 [javac] Compiling 5 source files to 
 /opt/dspace-1.4.2-source/build/classes
 [javac] 
 /opt/dspace-1.4.2-source/src/org/dspace/content/DCValue.java:109: 
 formKey(java.lang.String,java.lang.String,java.lang.String) in 
 org.dspace.content.MetadataField cannot be applied to 
 (java.lang.String,java.lang.String,java.lang.String,java.lang.String)
 [javac] return 
 MetadataField.formKey(schema,element,qualifier,language)+(value==null?:=+value);
 [javac] ^
 [javac] 
 /opt/dspace-1.4.2-source/src/org/dspace/content/DCValue.java:117: 
 formKey(java.lang.String,java.lang.String,java.lang.String) in 
 org.dspace.content.MetadataField cannot be applied to 
 (java.lang.String,java.lang.String,java.lang.String,java.lang.String)
 [javac] return 
 MetadataField.formKey(schema,element,qualifier,language);
 [javac] ^
 [javac] 2 errors
 
 BUILD FAILED
 /opt/dspace-1.4.2-source/build.xml:125: Compile failed; see the compiler 
 error output for details.
 
 ###
 
 Best regards
 
 Robert
 
 --
 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Batch Import and Namespaces

2007-11-13 Thread Robert Roggenbuck
Hi Christophe,

there is no trailing space at the configuration line. And the 
DIM-submission.xsl is placed in [dspace-src]/config/crosswalks/ and 
[dspace]/config/crosswalks/. In both cases it is readable and executable 
for everyone...

Greetings

Robert

-

Dupriez Christophe schrieb:
 Hi Robert!

   You are sure there is no space at the end of the Crosswalk configuration 
 line
   (common error in DSpace configuration) ? The XSLT file is in place?

   Have a nice afternoon,

   Christophe
   
 
 Robert Roggenbuck [EMAIL PROTECTED] a écrit :
   Yes, that was it - nearly: But to 'ant' it successfully I can not remove 
 the method formShortKey() because it is used in Item.java. Fortunately 
 there is no problem with it, because the number of parameters are correct.
 
 But the next problem arrives with my ingest. I call
 
 /dspace/bin/dsrun org.dspace.content.crosswalk.XSLTingest -a -x DIMDIM 
 -e [EMAIL PROTECTED] -c 123456789/3 -s dim_for_import.xml -m 
 import071113.map --test
 
 and I get as answer:
 
 **Test Run** - not actually importing items.
 Error, cannot find an IngestionCrosswalk plugin for: DIMDIM
 
 I introduced the crosswalk with its XSLT in dspace.conf (as suggested) by
 
 crosswalk.submission.DIMDIM.stylesheet = crosswalks/DIM-submission.xsl
 
 As long as I see in the Wiki page of ItemBatchUpdate there is nothing 
 else to do to register the plugin. What to do next?
 
 A second question to the DIM format: Can the tag occur 
 more then once? And can I place a URL in it?
 
 Best regards
 
 Robert
 
 
 Dupriez Christophe schrieb:
 To cut the modification chain, I suggest you to remove the three functions
 calling MetadataField.formkey: toString(), formShortKey(),
 formLanguageKey(): those are part of a much bigger modifications set
 to enable multi-lingual input in the DSpace submission process.

 I hope now it will make it!

 Christophe


 Robert Roggenbuck a écrit :
 Thanks, that helped. But it still not compiles. Am I right that You also 
 modified MetadataValue.java?:

 ###

 compile:
 [javac] Compiling 5 source files to 
 /opt/dspace-1.4.2-source/build/classes
 [javac] 
 /opt/dspace-1.4.2-source/src/org/dspace/content/DCValue.java:109: 
 formKey(java.lang.String,java.lang.String,java.lang.String) in 
 org.dspace.content.MetadataField cannot be applied to 
 (java.lang.String,java.lang.String,java.lang.String,java.lang.String)
 [javac] return 
 MetadataField.formKey(schema,element,qualifier,language)+(value==null?:=+value);
 [javac] ^
 [javac] 
 /opt/dspace-1.4.2-source/src/org/dspace/content/DCValue.java:117: 
 formKey(java.lang.String,java.lang.String,java.lang.String) in 
 org.dspace.content.MetadataField cannot be applied to 
 (java.lang.String,java.lang.String,java.lang.String,java.lang.String)
 [javac] return 
 MetadataField.formKey(schema,element,qualifier,language);
 [javac] ^
 [javac] 2 errors

 BUILD FAILED
 /opt/dspace-1.4.2-source/build.xml:125: Compile failed; see the compiler 
 error output for details.

 ###

 Best regards

 Robert

 --

 
 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems? Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now  http://get.splunk.com/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 
 
 
 
  
 -
  Ne gardez plus qu'une seule adresse mail ! Copiez vos mails vers Yahoo! Mail 

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Alte Muenze 16
D-49074 Osnabrueck
Germany
Tel ++49/541/969-4344  Fax -4482
[EMAIL PROTECTED]

Postbox:
Postfach 4496
D-49034 Osnabrueck
===

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Batch Import and Namespaces

2007-11-13 Thread Robert Roggenbuck
Dupriez Christophe schrieb:
 dim:original assumes type=unique... I never had to load multiple files 
  (except from ORIGINAL and TEXT) so I did not went further on this
  aspect...
  I suppose something like dim:annex would have to be developped...

Would it be a solution to import additional files in a second import 
step, where the metadata sections are only containing the unique 
identifier and the additional file like

dim:dim xmlns:dim=http://www.dspace.org/xmlns/dspace/dim; 
dspaceType=ITEM
   dim:field mdschema=dc element=identifier type=key6/dim:field
   dim:originaldiss.tar.gz/dim:original
/dim:dim

Or will that remove the previous imported file from the repository?

...And what about the usage of a URL in dim:original?

Greetings

Robert


 
 Robert Roggenbuck [EMAIL PROTECTED] a écrit :  Yes, that was it - nearly: 
 But to 'ant' it successfully I can not remove 
 the method formShortKey() because it is used in Item.java. Fortunately 
 there is no problem with it, because the number of parameters are correct.
 
 But the next problem arrives with my ingest. I call
 
 /dspace/bin/dsrun org.dspace.content.crosswalk.XSLTingest -a -x DIMDIM 
 -e [EMAIL PROTECTED] -c 123456789/3 -s dim_for_import.xml -m 
 import071113.map --test
 
 and I get as answer:
 
 **Test Run** - not actually importing items.
 Error, cannot find an IngestionCrosswalk plugin for: DIMDIM
 
 I introduced the crosswalk with its XSLT in dspace.conf (as suggested) by
 
 crosswalk.submission.DIMDIM.stylesheet = crosswalks/DIM-submission.xsl
 
 As long as I see in the Wiki page of ItemBatchUpdate there is nothing 
 else to do to register the plugin. What to do next?
 
 A second question to the DIM format: Can the tag occur 
 more then once? And can I place a URL in it?
 
 Best regards
 
 Robert
 


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] RE : Re: Batch Import and Namespaces

2007-11-13 Thread Robert Roggenbuck
No and No... sorry to say, but without '--test' the message is the same 
('Error, cannot find an IngestionCrosswalk plugin for: DIMDIM') and 
adding in dspace.cfg as additional line 
'crosswalk.submission.dimdim.stylesheet = crosswalks/DIM-submission.xsl' 
it is still the same. Even after saying 'ant update', stop Tomcat, copy 
*.war, start Tomcat, call 'install-configs'...

Even calling it lowercase does not help:
/dspace/bin/dsrun org.dspace.content.crosswalk.XSLTingest -a -x dimdim 
-e [EMAIL PROTECTED] -c 123456789/3 -s dim_for_import.xml -m 
import071113.map --test

Sigh...

Greetings

Robert

---

Dupriez Christophe schrieb:
 I am running on Windows. May be the uppercase DIM in the XSL file name is 
 making us a joke... (some software layer may put it in lower case so it 
 becomes different for Unix...)
 
 Robert Roggenbuck [EMAIL PROTECTED] a écrit :  Hi Christophe,
 
 there is no trailing space at the configuration line. And the 
 DIM-submission.xsl is placed in [dspace-src]/config/crosswalks/ and 
 [dspace]/config/crosswalks/. In both cases it is readable and executable 
 for everyone...
 
 Greetings
 
 Robert
 


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Batch Import and Namespaces

2007-11-12 Thread Robert Roggenbuck
Hi Christophe!

Going through the given Wiki-page and the related articles about 
Metadata ans Stylesheets it seems not possible to apply the 
ItemBatchUpdate to any of the XML-files generated by 'csv_import'. But 
since I have no fixed format of my input data (it resides in a RDBMS and 
  I am responsible for the data export via self made Perl skripts) I 
will export the data in DIM-XML. But which Java class I need to run with 
'dsrun' to do the import? Surely not 
'org.dspace.content.crosswalk.XSLTingest' as described in 
http://wiki.dspace.org/index.php/ItemBatchUpdate .

Greetings

Robert



Christophe Dupriez schrieb:
 Hi Robert!
 
 I can propose you my work on this:
 http://wiki.dspace.org/index.php/ItemBatchUpdate
 
 Have a nice day!
 
 Christophe
 
 Robert Roggenbuck a écrit :
 Hi all,

 I'd like to import several documents and their meta data into DSpace. 
 I found the preparation tool 'csv_import' by Mika Stenberg and the 
 import description at 
 http://www.dspace.org/index.php?option=com_contenttask=viewid=144#importingitems
  
 . According to the description of this tools all used meta data 
 elements (= field names) used in the CSV must be declared first in a 
 meta data scheme of the collection to which the data should be 
 imported. For our application I defined several new meta data elements 
 and a second namespace too (besides the default 'dc' namespace (Dublin 
 Core core elements) I introduced the 'dct' (Dublin Core Types) too).

 My problem is now, that the import via 'dsrun 
 org.dspace.app.itemimport.ItemImport' is not able to handle more then 
 1 schema (besides the problem that I don't see any possibility to 
 change the default 'dc' to an alternative scheme).

 Does someone came across the same situation? Does someone knows a way 
 to do it?

 Best regards

 Robert

   
 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] RE : Re: Batch Import and Namespaces

2007-11-12 Thread Robert Roggenbuck
/XSLTingest.java:571: 
isTest is not public in org.dspace.app.itemimport.ItemImport; cannot be 
accessed from outside package
 [javac] if (!isTest)
 [javac]  ^
 [javac] 
/opt/dspace-1.4.2-source/src/org/dspace/content/crosswalk/XSLTingest.java:590: 
isTest is not public in org.dspace.app.itemimport.ItemImport; cannot be 
accessed from outside package
 [javac] if (!isTest)
 [javac]  ^
 [javac] 
/opt/dspace-1.4.2-source/src/org/dspace/content/crosswalk/XSLTingest.java:619: 
isTest is not public in org.dspace.app.itemimport.ItemImport; cannot be 
accessed from outside package
 [javac] if (!isTest)
 [javac]  ^
 [javac] 
/opt/dspace-1.4.2-source/src/org/dspace/content/crosswalk/XSLTingest.java:623: 
isResume is not public in org.dspace.app.itemimport.ItemImport; cannot 
be accessed from outside package
 [javac] if (isResume)
 [javac] ^
 [javac] 
/opt/dspace-1.4.2-source/src/org/dspace/content/crosswalk/XSLTingest.java:625: 
cannot find symbol
 [javac] symbol  : method readMapFile(java.lang.String)
 [javac] location: class org.dspace.content.crosswalk.XSLTingest
 [javac] skipItems = readMapFile(mapFile);
 [javac] ^
 [javac] 
/opt/dspace-1.4.2-source/src/org/dspace/content/crosswalk/XSLTingest.java:630: 
mapOut is not public in org.dspace.app.itemimport.ItemImport; cannot be 
accessed from outside package
 [javac] mapOut = new PrintWriter(new 
FileWriter(outFile, isResume));
 [javac] ^
 [javac] 
/opt/dspace-1.4.2-source/src/org/dspace/content/crosswalk/XSLTingest.java:630: 
isResume is not public in org.dspace.app.itemimport.ItemImport; cannot 
be accessed from outside package
 [javac] mapOut = new PrintWriter(new 
FileWriter(outFile, isResume));
 [javac]  ^
 [javac] 
/opt/dspace-1.4.2-source/src/org/dspace/content/crosswalk/XSLTingest.java:632: 
mapOut is not public in org.dspace.app.itemimport.ItemImport; cannot be 
accessed from outside package
 [javac] if (mapOut == null)
 [javac] ^
 [javac] 
/opt/dspace-1.4.2-source/src/org/dspace/content/crosswalk/XSLTingest.java:645: 
mapOut is not public in org.dspace.app.itemimport.ItemImport; cannot be 
accessed from outside package
 [javac]   Item newItem = addItem(c, mycollections, xform, 
inDoc, itemname, mapOut, null);
 [javac] 
 ^
 [javac] 
/opt/dspace-1.4.2-source/src/org/dspace/content/crosswalk/XSLTingest.java:654: 
cannot find symbol
 [javac] symbol  : method readMapFile(java.lang.String)
 [javac] location: class org.dspace.content.crosswalk.XSLTingest
 [javac] Map myhash = readMapFile(mapFile);
 [javac]  ^
 [javac] 
/opt/dspace-1.4.2-source/src/org/dspace/content/crosswalk/XSLTingest.java:685: 
cannot find symbol
 [javac] symbol  : method 
deleteItem(org.dspace.core.Context,org.dspace.content.Item)
 [javac] location: class org.dspace.content.crosswalk.XSLTingest
 [javac]   deleteItem(c, oldItem);
 [javac]   ^
 [javac] 27 errors

BUILD FAILED
/opt/dspace-1.4.2-source/build.xml:125: Compile failed; see the compiler 
error output for details.

Total time: 3 seconds



What did I wrong? I can't imagine that these are mistakes made by You...

Best regards

Robert


Dupriez Christophe schrieb:
 Dear Robert,

   Please find herebelow an XSLT which just copies its DIM input (no 
 transformation).
   You save it in directory dspace\config\crosswalks with (for instance) the 
 name DIM-submission.xsl.

   You must then add the crosswalk definition to dspace.cfg:
   crosswalk.submission.DIMDIM.stylesheet= crosswalks/DIM-submission.xsl
   and you can then ingest with parameter -x DIMDIM

   I am following the same path for another project:
   http://www.windmusic.org
   going to:
   http://www.windmusic.org/dspace

   YES, you dsrun the XSLTingest class with the parameters used for 
 ItemImport + those specific to XSLTingest.

   Have a nice day!

   Christophe

 ?xml version=1.0 encoding=utf-8?
   xsl:stylesheet
   xmlns:xsl=http://www.w3.org/1999/XSL/Transform;
   xmlns:dim=http://www.dspace.org/xmlns/dspace/dim;
   version=1.0
   !-- DIM-2-DIM: do nothing!
   Author: Christophe Dupriez
   --
   xsl:output indent=yes method=xml/
   !-- Unnecessary attribute:
   xsl:exclude-result-prefixes=/ --
   xsl:template match=*
   xsl:copy-of select=./
   /xsl:template
   /xsl:stylesheet
 
   
 Robert Roggenbuck [EMAIL PROTECTED] a écrit :
   Hi Christophe!
 
 Going through the given Wiki-page and the related articles about 
 Metadata ans Stylesheets it seems not possible to apply the 
 ItemBatchUpdate to any of the XML-files

[Dspace-tech] Batch Import and Namespaces

2007-11-09 Thread Robert Roggenbuck
Hi all,

I'd like to import several documents and their meta data into DSpace. I 
found the preparation tool 'csv_import' by Mika Stenberg and the import 
description at 
http://www.dspace.org/index.php?option=com_contenttask=viewid=144#importingitems
 
. According to the description of this tools all used meta data elements 
(= field names) used in the CSV must be declared first in a meta data 
scheme of the collection to which the data should be imported. For our 
application I defined several new meta data elements and a second 
namespace too (besides the default 'dc' namespace (Dublin Core core 
elements) I introduced the 'dct' (Dublin Core Types) too).

My problem is now, that the import via 'dsrun 
org.dspace.app.itemimport.ItemImport' is not able to handle more then 1 
schema (besides the problem that I don't see any possibility to change 
the default 'dc' to an alternative scheme).

Does someone came across the same situation? Does someone knows a way to 
do it?

Best regards

Robert

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Germany
===

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] How to do the internationalisation?

2007-11-02 Thread Robert Roggenbuck
Hi all,

after my successful installation of DSpace my first configuration step 
should be the internationalisation of the site. German and English is my 
first aim. But it would be nice to have all available localisations of 
DSpace also available at our site. Unfortunately the Wiki provides some 
resources regarding i18n, but no how-to. Even the official 
documentation is somewhat nebulous about it. At
https://eldorado.uni-dortmund.de/bitstream/2003/23572/11/customizationDSpace.pdf
I found something like a how-to, but I did not succeed with it.

Thats what I did:
1. Installing the Java Standard Tag Library 1.0 (using the Ubuntu 
package libcommons-jexl-java)
2. Downloading the language packs 
(http://ovh.dl.sourceforge.net/sourceforge/dspace/dspace-language-pack-1_4_2.tgz)
3. Downloading additional German sources 
(http://wiki.dspace.org/static_files/7/79/German.zip)
4. cp Messages_*.properties [dspace-src]/language-packs/
5. cp *_de [dspace-src]/config/emails/ (email files from German.zip)
6. Copied default_de.license, input-forms_de.xml, news-side_de.html, 
news-top_de.html to [dspace-src]/config/ (other files from German.zip)
7. Announcing the changes to DSpace and Tomcat:
 cd [dspace-src]
 ant init_configs
 sudo /etc/init.d/tomcat5.5 stop
 sudo /etc/init.d/tomcat5.5 start

But there are no changes on the Website, even my browser have 'de' as 
preferred language.

Thanks for any suggestions...

Best regards

Robert

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Osnabrueck
Germany
===

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] How to do the internationalisation?

2007-11-02 Thread Robert Roggenbuck
Hi Claudia,

thanks for the answer: now I got the main part (the 
Messages_de.properties). 'ant update' (instead of 'ant init_configs') 
and copy the *.war files were the keys to success.
But with the remaining i18n stuff I did not understand right how to do 
it. You wrote

 If you want more possibilities, you got to use this patch
 http://sourceforge.net/tracker/index.php?func=detailaid=1450491group_id=19984atid=319984
  
 
What should I do with a diff-file from the CVS-repository? Is there an 
option to apply this while performing a checkout? And: Which of the 
offered files should I use for DSpace 1.4.2? Version 1.5 I'd prefer to 
install not before the official release (even it's capabilities sounds 
good).

Best regards

Robert

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] DSpace Installation: Java-Problem

2007-10-29 Thread Robert Roggenbuck
Oh. I thing You got me wrong! The trouble was made by the 
postgresql-8.2-506.jdbc4.jar in combination with my Java 1.5 
installation. After replacing this by postgresql-8.2-506.jdbc3.jar, I 
could do the 'fresh_install'. So everything is fine with the PostgreSQL, 
Java and DSpace documentation in this point.

Regards

Robert



Christian Voelker schrieb:
 
 Am 26.10.2007 um 10:09 schrieb Robert Roggenbuck:
 
 Thanks!

 That was the Problem. In downloaded postgresql-8.2-506.jdbc4.jar instead
 of postgresql-8.2-506.jdbc3.jar! After replacing this. Starting the
 PostgreSQL (I solved my access problem with pgadmin), saying 'ant clean'
 and 'ant fresh_install' and I got finally the message 'BUILD SUCCESSFUL'!
 
 Great.
 
 It is a bit strange though. The jdbc4.jar is appropriate for Java 1.6
 according to the docs, but you listed Java 1.5 as installed on your
 machine. I think, we cant easily change the docs for the jdbc driver,
 but we can keep this information in our own space.
 
 There is an installation description for Debian or Ubuntu in the wiki.
 You might want to add your experience there for future reference.
 
 Bye, Christian
 


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Starting DSpace: Tomcat can't start DSpace

2007-10-29 Thread Robert Roggenbuck
Hi again!

I nearly finished the installation of DSpace - but when I try to start 
it by calling http://localhost:8080/dspace in my browser I get a long 
Java complain:

#
HTTP Status 500 -
type  Exception report
message
description  The server encountered an internal error () that prevented 
it from fulfilling this request.
exception
org.apache.jasper.JasperException: XML parsing error on file 
/WEB-INF/web.xml

org.apache.jasper.xmlparser.ParserUtils.parseXMLDocument(ParserUtils.java:108)

[snip]
org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:162)

root cause

org.xml.sax.SAXException: Internal Error: File 
/javax/servlet/resources/web-app_2_3.dtd not found

org.apache.jasper.xmlparser.MyEntityResolver.resolveEntity(ParserUtils.java:206)

[snip]

org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:162)

note  The full stack trace of the root cause is available in the Apache 
Tomcat/5.5.25 logs.

Apache Tomcat/5.5.25
#

When I read it right, the problem is that Tomcat can not find the file 
/javax/servlet/resources/web-app_2_3.dtd. Indeed such a path does not 
exists in my Ubuntu-Linux. But the file 'web-app_2_3.dtd' can be found:

/usr/share/java/servlet-api-2.4/src/dtd/web-app_2_3.dtd
/usr/share/java/struts-1.2.7/lib/web-app_2_3.dtd
/usr/share/struts1.2/web-app_2_3.dtd

Where the last two files are identical. I would guess the first one is 
the one where Tomcat is looking for. But how can I direct it? Or do I 
missed a prerequisit?

Thanks for help

Robert
-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Germany
===

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] DSpace Installation: Java-Problem

2007-10-25 Thread Robert Roggenbuck
Dear All,

I'd like to install DSpace to check whether we can use it for our 
planned OA-Repository. But reaching the point to say 'ant fresh_install' 
I get the following error message where I can not figure out the reason:

Buildfile: build.xml

compile:

install_code:

build_wars:

init_configs:

setup_database:
  [java] 2007-10-25 12:36:16,477 INFO 
org.dspace.storage.rdbms.InitializeDatabase @ Initializing Database
  [java] 2007-10-25 12:36:16,536 INFO 
org.dspace.core.ConfigurationManager @ DSpace logging installed using 
log4j.properties
  [java] Exception in thread main 
java.lang.UnsupportedClassVersionError: Bad version number in .class file
  [java] at java.lang.ClassLoader.defineClass1(Native Method)
  [java] at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
  [java] at 
java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
  [java] at 
java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
  [java] at 
java.net.URLClassLoader.access$100(URLClassLoader.java:56)
  [java] at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
  [java] at java.security.AccessController.doPrivileged(Native 
Method)
  [java] at 
java.net.URLClassLoader.findClass(URLClassLoader.java:188)
  [java] at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
  [java] at 
sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
  [java] at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
  [java] at 
java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
  [java] at java.lang.Class.forName0(Native Method)
  [java] at java.lang.Class.forName(Class.java:164)
  [java] at 
org.dspace.storage.rdbms.DatabaseManager.initialize(DatabaseManager.java:1607)
  [java] at 
org.dspace.storage.rdbms.DatabaseManager.getConnection(DatabaseManager.java:715)
  [java] at 
org.dspace.storage.rdbms.DatabaseManager.loadSql(DatabaseManager.java:1062)
  [java] at 
org.dspace.storage.rdbms.InitializeDatabase.main(InitializeDatabase.java:71)

BUILD FAILED
/opt/dspace-1.4.2-source/build.xml:293: Java returned: 1

Total time: 3 seconds


Any suggestions? I think its not directly a problem with dspace, but 
with my Java installation. But anyway I would be glad for any hint.

Here some info about my environment:

 uname -a
Linux OSU458 2.6.20-16-generic #2 SMP Sun Sep 23 19:50:39 UTC 2007 i686 
GNU/Linux
(in fact it's an Ubuntu 7.04)

 javac -version
Eclipse Java Compiler v_686_R32x, 3.2.2 release, Copyright IBM Corp 
2000, 2006. All rights reserved.

 java -version
java version 1.5.0_11
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_11-b03)
Java HotSpot(TM) Server VM (build 1.5.0_11-b03, mixed mode)

 echo $JAVA_HOME
/usr/lib/jvm/java-1.5.0-sun

 psql --version
psql (PostgreSQL) 8.2.5

Further I installed Tomcat 5.5.25 successfully.


Best regards

Robert

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Germany
===

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] DSpace Installation: Java-Problem

2007-10-25 Thread Robert Roggenbuck
I've 'ant-optional' already installed...

Obiajulu Odu schrieb:
 Install ant-optional to see if it can help. 
 Example in Debian apt-get install ant-optional
 
 Obi
 
 | -Opprinnelig melding-
 | Fra: [EMAIL PROTECTED] 
 | [mailto:[EMAIL PROTECTED] På vegne 
 | av Robert Roggenbuck
 | Sendt: 25. oktober 2007 13:24
 | Til: Graham Triggs
 | Kopi: DSpace-tech@lists.sourceforge.net
 | Emne: Re: [Dspace-tech] DSpace Installation: Java-Problem
 | 
 | 
 | Graham Triggs schrieb:
 |   What is the output of:
 |  
 |   ant -diagnostics
 |  
 | 
 | Wow, ant is very verbose with its '-diagnostics':
 | 
 | --- Ant diagnostics report ---
 | Apache Ant version 1.6.5 compiled on July 5 2006
 | 
 | ---
 |   Implementation Version (JDK1.2+ only)
 | ---
 | core tasks : null
 | optional tasks : 1.6.5
 | 
 | ---
 |   ANT_HOME/lib jar listing
 | ---
 | ant.home: /usr/share/ant
 | ant-nodeps.jar (421921 bytes)
 | ant-apache-bcel.jar (8765 bytes)
 | ant-commons-net.jar (35519 bytes)
 | ant-swing.jar (6768 bytes)
 | ant-bootstrap.jar (15970 bytes)
 | ant-junit.jar (72936 bytes)
 | junit.jar (68448 bytes)
 | tomcat5.5-jkstatus-ant.jar (20816 bytes)
 | ant-antlr.jar (5758 bytes)
 | ant-launcher.jar (9180 bytes)
 | catalina5.5-ant.jar (26712 bytes)
 | ant-apache-resolver.jar (4064 bytes)
 | ant-javamail.jar (6811 bytes)
 | ant-trax.jar (68529 bytes)
 | catalina5.5-ant-jmx.jar (23778 bytes)
 | ant-apache-bsf.jar (12574 bytes)
 | ant-apache-regexp.jar (3748 bytes)
 | ant-jsch.jar (22991 bytes)
 | ant-apache-oro.jar (48180 bytes)
 | ant-jdepend.jar (8172 bytes)
 | ant-commons-logging.jar (3990 bytes)
 | ant.jar (1060964 bytes)
 | ant-jmf.jar (6520 bytes)
 | ant-apache-log4j.jar (3012 bytes)
 | 
 | ---
 |   Tasks availability
 | ---
 | image : Not Available
 | sshexec : Missing dependency com.jcraft.jsch.UserInfo
 | wlrun : Not Available
 | icontract : Not Available
 | scp : Missing dependency com.jcraft.jsch.UserInfo
 | vajload : Not Available
 | stlist : Not Available
 | netrexxc : Not Available
 | starteam : Not Available
 | stylebook : Not Available
 | stlabel : Not Available
 | jdepend : Missing dependency jdepend.xmlui.JDepend
 | stcheckin : Not Available
 | vajexport : Not Available
 | stcheckout : Not Available
 | ejbc : Not Available
 | vajimport : Not Available
 | wlstop : Not Available
 | ddcreator : Not Available
 | 
 | ---
 |   org.apache.env.Which diagnostics
 | ---
 | Not available.
 | Download it at http://xml.apache.org/commons/
 | 
 | ---
 |   XML Parser information
 | ---
 | XML Parser : org.apache.xerces.jaxp.SAXParserImpl
 | XML Parser Location: /usr/share/java/xercesImpl.jar
 | 
 | ---
 |   System properties
 | ---
 | java.runtime.name : Java(TM) 2 Runtime Environment, Standard 
 | Edition sun.boot.library.path : 
 | /usr/lib/jvm/java-1.5.0-sun-1.5.0.11/jre/lib/i386
 | java.vm.version : 1.5.0_11-b03
 | ant.library.dir : /usr/share/ant/lib
 | java.vm.vendor : Sun Microsystems Inc.
 | java.vendor.url : http://java.sun.com/
 | path.separator : :
 | java.vm.name : Java HotSpot(TM) Server VM
 | file.encoding.pkg : sun.io
 | user.country : DE
 | sun.java.launcher : SUN_STANDARD
 | sun.os.patch.level : unknown
 | java.vm.specification.name : Java Virtual Machine 
 | Specification user.dir : /opt/dspace-1.4.2-source 
 | java.runtime.version : 1.5.0_11-b03 java.awt.graphicsenv : 
 | sun.awt.X11GraphicsEnvironment java.endorsed.dirs : 
 | /usr/lib/jvm/java-1.5.0-sun-1.5.0.11/jre/lib/endorsed
 | os.arch : i386
 | java.io.tmpdir : /tmp
 | line.separator :
 | 
 | java.vm.specification.vendor : Sun Microsystems Inc.
 | os.name : Linux
 | ant.home : /usr/share/ant
 | sun.jnu.encoding : UTF-8
 | java.library.path : 
 | /usr/lib/jvm/java-1.5.0-sun-1.5.0.11/jre/lib/i386/server:/usr/
 | lib/jvm/java-1.5.0-sun-1.5.0.11/jre/lib/i386:/usr/lib/jvm/java
 | -1.5.0-sun-1.5.0.11/jre/../lib/i386
 | java.specification.name : Java Platform API Specification 
 | java.class.version : 49.0 sun.management.compiler : HotSpot 
 | Server Compiler os.version : 2.6.20-16-generic user.home : 
 | /home/dspace user.timezone : java.awt.printerjob : 
 | sun.print.PSPrinterJob file.encoding : UTF-8 
 | java.specification.version : 1.5 user.name : dspace java.class.path : 
 | /usr/share/ant/lib/ant-launcher.jar:/usr/share/java/xmlParserA
 | PIs.jar:/usr/share/java/xercesImpl.jar:/opt/apache-tomcat-5.5.
 | 25/common/lib/jsp-api.jar:/opt/apache-tomcat-5.5.25/common/lib
 | /servlet-api.jar:/usr/share/ant/lib/ant-nodeps.jar:/usr/share/
 | ant/lib/ant-apache-bcel.jar:/usr

Re: [Dspace-tech] DSpace Installation: Java-Problem

2007-10-25 Thread Robert Roggenbuck
roopal oswal schrieb:
 HI Robert,
 Is your Rdbm server running???
 if u have installed postgresql ...then open pgadmin... connect the 
 database..and then do install ant...

I Would never thought that this error could have any connection to the 
PostgreSQL server. But in fact I could not get access to the server 
using pgadmin. I think that Ubuntu created the user 'postgres' with the 
permission to never login. I will look up this issue and report the 
result. but anyway looking in the process table it semms to me the 
server is running:

postgres  6377 1  0 12:13 ?00:00:00 
/usr/lib/postgresql/8.2/bin/postgres -D /var/lib/postgresql/8.2/main -c 
config_file=/etc/postgresql/8.2/main/postgresql.conf
postgres  6383  6377  0 12:13 ?00:00:00 postgres: writer process 
 

postgres  6384  6377  0 12:13 ?00:00:00 postgres: stats 
collector process

Best regrds

Robert



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Questions about DSpace Features

2007-09-28 Thread Robert Roggenbuck
Hi all,

I am a member of the University Library of Osnabrueck (Germany). We are
looking for a solution to enable an open access structure in our
university. The software DSpace seems to us a possible candidate for our 
system. But unfortunately the information we found at 
http://www.dspace.org/ and the various other sources, could give us not 
all information to determine whether DSpace is suitable for us or not. 
Could You please answer the following questions about it?

* Does DSpace have service devices (like SOA or SOAP)?

* Is it correct that DSpace does not have an internal storage
management, which would mean (e.g.) to compress documents which are not
accessed for a given period, or to move them to an other storage 
location (e.g. a tape server) if the last access is much older?

* And is it possible to bundle / relate different versions of the same 
document, e.g. preprint and postprint?

* Does DSpace keep track of different versions of the same document to 
have a history of minor changes (compared to pre- and postprint)?

Best Regards

Robert

-- 

===
Robert Roggenbuck
Universitaetsbibliothek Osnabrueck
Alte Muenze 16
D-49074 Osnabrueck
Germany
Tel ++49/541/969-4344  Fax -4482

Postbox:
Postfach 4496
D-49034 Osnabrueck
===

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech