Re: [Dspace-tech] Unable to customise webui of dspace

2007-03-27 Thread Jayan Chirayath Kurian
From the administrator interface you can edit the side bar and the
message displayed. I think HTML is not parsed for errors there. 

 

http://localhost:8080/dspace/dspace-admin/news-edit

 

Jayan

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of rudra
chandana
Sent: Tuesday, March 27, 2007 3:15 PM
To: dspace-tech@lists.sourceforge.net
Subject: [Dspace-tech] Unable to customise webui of dspace

 

Hi,
  I ve successfully installed dspace1.4 and everything is working fine.
Now i need  to customise the user interface of dspace page. According to
the process ive read in the documentation i culd do little
customisation.But i did not know how to customise the side bar news and
the msg which appears in the centre.
 the process i followed is :
what ever i thought to customise i ve kept those in jsp/local
folder like wise for header and footer ive kept in jsp/local/layout
folder and customised. 
 But i culd not edit the side bar news, what should i do?
Plz tell me.

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] [Fwd: DSpace adding a new field]

2007-03-27 Thread berkertore

Hello,

Thanks this worked. We added a lot of fields and appeared a new 
situation; we need to group these fields.
When we check some boxes or choose a combo item, some of these fields 
should be shown and others not.
Can we do this? 


Berker

Jayan Chirayath Kurian wrote:

i think u can try creating a DB field using 
http://hostname:8080/dspace/dspace-admin
select metadata registry and towards the bottom of form there is an 
option to create metadata and qualifier which adds field to DB.
 
Jayan



From: [EMAIL PROTECTED] on behalf of berkertore
Sent: Mon 3/26/2007 9:57 PM
To: dspace-tech@lists.sourceforge.net
Subject: [Dspace-tech] [Fwd: DSpace adding a new field]

 




--

Berker BEKTĂ–RE
Information Technology

Sabanci University
Orhanli, Tuzla 34956, Istanbul TURKEY

Web
e-mail
Phone
Fax 	: http://people.sabanciuniv.edu/~berkertore/ 
http://people.sabanciuniv.edu/%7Eberkertore/

: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
: +90.216.483 9174
: +90.216.483 9186

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] 2 Tier Dspace Implementation

2007-03-27 Thread James Rutherford
On Tue, Mar 27, 2007 at 06:09:33PM +0800, Jayan Chirayath Kurian wrote:
 (1) By enabling Telnet service on the DB server, through services.msc,
 client was able to get connected to the DB server. 

As someone else noted, you definitely do not want telnet running on the
server. The use suggested by Stuart was to make sure you could connect
to the postgres tcp port (5432).

 (2) While giving telnet dspace.student.main.ntu.edu.sg 5432 from the
 client, the connection was getting refused. The message displayed was
 Could not open connection to the host, on port 5432: connection failed

On the database server, try running

lsof -i tcp:5432

This will let you know whether anything is listening on tcp port 5432.
If it isn't, then postgres has been set up incorrectly. Check to see
what arguments were passed to postgres at startup by running

ps ax | grep post

Which should show something like this:

[EMAIL PROTECTED] ~ $ ps ax | grep postmaster
31529 ?S  0:20 /usr/bin/postmaster -i

Note the -i flag which means my postmaster is listening for tcp
connections.

 (3) In the server, pg_hba was modified to include a single line that
 gives the IP address/subnet of client. 
 
 hostall all 155.69.24.194 255.255.255.0
 trust

That looks fine, but I wouldn't use 'trust' unless you're restricting
access to that machine by some other means; 'md5' would be safer.

 (4) In the server, postgresql.cfg file was modified to include 
 
 tcpip_socket=true
 
 listen_addresses = '*'  

That looks fine.

I'd check the scripts used to start postgres (usually in /etc/init.d/).
Just make sure the -i flag is being passed at startup. What operating
system is the database server running?

Jim

-- 
James Rutherford  |  Hewlett-Packard Limited registered Office:
Research Engineer |  Cain Road,
HP Labs   |  Bracknell,
Bristol, UK   |  Berks
+44 117 312 7066  |  RG12 1HN.
[EMAIL PROTECTED]   |  Registered No: 690597 England

The contents of this message and any attachments to it are confidential and
may be legally privileged. If you have received this message in error, you
should delete it from your system immediately and advise the sender. To any
recipient of this message within HP, unless otherwise stated you should
consider this message and attachments as HP CONFIDENTIAL.

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] sshfs assetstore and index-all

2007-03-27 Thread Mark Diggory
Grahams right Monika, sorry I missed that one...

On Mar 27, 2007, at 4:14 AM, Graham Triggs wrote:

 Monika,

 Your local mount point is /var/www/dspace_root/assetstore - your asset
 store is only available (locally) through that path.

 However, your config file is set to have reference the datastore
 as /dspace/assetstore

 (your config likely reads: assetstore.dir=${dspace.dir}/assetstore,
 where dspace.dir=/dspace).

 Either amend your dspace.cfg to refer set:

 assetstore.dir=/var/www/dspace_root/assetstore

 or change the local mount point to /dspace/assetstore

 G

 On Mon, 2007-03-26 at 18:14 -0400, Monika Mevenkamp wrote:
 I run vanilla dspace-1.4
 with postgres
 on Ubuntu

 I used sshfs to mount the assetstore:
  sshfs -o allow_other
 [EMAIL PROTECTED]:/dspace/assetstore /var/www/ 
 dspace_root/assetstore

 I am trying to access the test assetsore on another machine, which is
 too big to be copied.
 Is there something inherently wrong with doing sshfs ?

 As the dspace user I can list,view, and touch files in the assetstore
 but index-all still dies ungracefully as follows:

 Creating browse index
 Indexing all Items in DSpace2007-03-26 17:50:21,124 INFO
 org.dspace.core.ConfigurationManager @ DSpace logging installed using
 log4j.properties
  ... Done
 Creating search index
 2007-03-26 17:50:55,060 INFO  org.dspace.core.ConfigurationManager @
 DSpace logging installed using log4j.properties
 2007-03-26 17:50:59,871 DEBUG
 org.dspace.storage.bitstore.BitstreamStorageManager @ Local filename
 for 107718164672031636339452188487841053759
 is /dspace/assetstore/ 
 10/77/18/107718164672031636339452188487841053759
 2007-03-26 17:50:59,871 DEBUG
 org.dspace.storage.bitstore.BitstreamStorageManager @
 IinputBitStream /dspace/assetstore/ 
 10/77/18/107718164672031636339452188487841053759
 Exception in thread main
 java.io.FileNotFoundException : /dspace/assetstore/ 
 10/77/18/107718164672031636339452188487841053759 (No such file or  
 directory)
 at java.io.FileInputStream.open(Native Method)
 at java.io.FileInputStream.init(FileInputStream.java :106)
 at
 edu.sdsc.grid.io.local.LocalFileInputStream.open 
 (LocalFileInputStream.java:171)
 at
 edu.sdsc.grid.io.GeneralFileInputStream.init 
 (GeneralFileInputStream.java:145)
 at
 edu.sdsc.grid.io.local.LocalFileInputStream .init 
 (LocalFileInputStream.java:139)
 at
 edu.sdsc.grid.io.FileFactory.newFileInputStream(FileFactory.java:454)
 at
 org.dspace.storage.bitstore.BitstreamStorageManager.retrieve 
 (BitstreamStorageManager.java :553)
 at org.dspace.content.Bitstream.retrieve(Bitstream.java:512)
 at
 org.dspace.search.DSIndexer.writeItemIndex(DSIndexer.java:694)
 at
 org.dspace.search.DSIndexer.indexAllItems(DSIndexer.java :397)
 at org.dspace.search.DSIndexer.createIndex(DSIndexer.java: 
 192)
 at org.dspace.search.DSIndexer.main(DSIndexer.java:225)

 The second log message is produced by a log.debug call added in:

 package org.dspace.storage.bitstore;
 class BitstreamStorageManager.java;
 
 public static InputStream retrieve(Context context, int id)
 throws SQLException, IOException
 {
 TableRow bitstream = DatabaseManager.find(context,
 bitstream, id);

 GeneralFile file = getFile(bitstream);
 log.debug(InputBitStream  + file.getPath());
 return (file != null) ? FileFactory.newFileInputStream 
 (file) :
 null;
 }


 Thanks for any tips ?

 Monika

 -- 
 Monika Mevenkamp
 Georgia Institute of Technology
 Library and Information Center
 Phone: 404.385.0108
 - 
 
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to  
 share your
 opinions on IT  business topics through brief surveys-and earn cash
 http://www.techsay.com/default.php? 
 page=join.phpp=sourceforgeCID=DEVDEV
 ___ DSpace-tech  
 mailing list DSpace-tech@lists.sourceforge.net https:// 
 lists.sourceforge.net/lists/listinfo/dspace-tech
 This email has been scanned by Postini.
 For more information please visit http://www.postini.com


 -- 
 ---
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to  
 share your
 opinions on IT  business topics through brief surveys-and earn cash
 http://www.techsay.com/default.php? 
 page=join.phpp=sourceforgeCID=DEVDEV
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech

~
Mark R. Diggory - DSpace Systems Manager
MIT Libraries, Systems and Technology Services
Massachusetts Institute of Technology
Office: E25-131
Phone: (617) 253-1096




Re: [Dspace-tech] 2 Tier Dspace Implementation

2007-03-27 Thread James Rutherford
On Tue, Mar 27, 2007 at 08:23:09PM +0800, Jayan Chirayath Kurian wrote:
 we have Dspace 1.4.1 on Windows 2003 standard edition R2 with tomcat
 6.0 and postgresql 8.1

In this case, everything I said doesn't apply. They're linux commands. I
have no idea how to set up postgres on windows, sorry. There must be
some good postgres-on-windows tutorials out there somewhere.

Jim

-- 
James Rutherford  |  Hewlett-Packard Limited registered Office:
Research Engineer |  Cain Road,
HP Labs   |  Bracknell,
Bristol, UK   |  Berks
+44 117 312 7066  |  RG12 1HN.
[EMAIL PROTECTED]   |  Registered No: 690597 England

The contents of this message and any attachments to it are confidential and
may be legally privileged. If you have received this message in error, you
should delete it from your system immediately and advise the sender. To any
recipient of this message within HP, unless otherwise stated you should
consider this message and attachments as HP CONFIDENTIAL.

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Google Summer of Code - Status?

2007-03-27 Thread Christian Voelker
Hello,

I am curious. Are there any applicants for a DSpace proposal
for Google SoC?

We managed to mail some professors at the local university
(Hamburg, Germany) and get a poster put up at the informatics
library within the last week of the application period to tell
students that there are users nearby where they can meet people
working with DSpace, but nobody came back to us. Maybe it was
just the wrong time because of our holiday season.

BTW, when I saw the professional poster layout available for
the Gnome project I thought, that we should have something
similar at hand for DSpace by next year:

http://live.gnome.org/SummerOfCode2007/Poster

Bye, Christian


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] XSL and SRW

2007-03-27 Thread LeVan,Ralph
You need an output declaration in your stylesheet.

 

xsl:output method=xml indent=yes omit-xml-declaration=yes/

 

Ralph

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of orlando
carvalho
Sent: Tuesday, March 27, 2007 10:28 AM
To: dspace-tech@lists.sourceforge.net;
[EMAIL PROTECTED]
Subject: [Dspace-tech] XSL and SRW

 

Hi!
I'm using SRW to acess the content of Dspace and it is working!
Probably this might be a silly question but when i apply the XSL below
to the XML files, it gives the output i want but the ?xml version=
1.0 encoding=UTF-8?
line is always in the output!!I think it's weird and I would like to
remove it from the output!Does anibosy know how?Thanks
 
?xml version=1.0 encoding=UTF-8? 
xsl:stylesheet version=1.0
xmlns:xsl=http://www.w3.org/1999/XSL/Transform; 
xmlns:dc=http://purl.org/dc/elements/1.1/;
xmlns:srw_dc=info:srw/schema/1/dc-v1.1 
 
xsl:template match=/ 
xsl:apply-templates / 
/xsl:template 
 
xsl:template match=srw_dc:dc
 
AUTOR: xsl:value-of select=dc:contributor.author/ 
TITULO: xsl:value-of select=dc:title/ 
DESCRICAO: xsl:value-of select=dc:description/
 
/xsl:template 
/xsl:stylesheet
##
-- 
Orlando Carvalho 

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] UI customisation

2007-03-27 Thread rudra chandana

Hi,
  Thanks monika , jayan . I ve done the process and its working fine now.
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech