Re: [Dspace-tech] symbolic link problem and update causes no changes

2009-06-30 Thread Κώστας Παρασκευόπουλος
hello,
try to un-deploy the webapp before copying the new one (with tomcat manager)
If it's a caching issue (probably is), kill tomcat/work contents for your
webapp (ROOT, jspui)
there is no reason to copy webapps to tomcat/webapps
Either
make a symbolic link to tomcat/webapps for /dspace/webapps/JSPUI (and rename
it to ROOT if you need to) in this way you wouldn't have to copy each time
you rebuild the contents of the webapps folder (just to rename jspui to ROOT
in order for the link to work)
Or copy jspui as ROOT in tomcat/webapps

The difference in windows and linux is that there aren't symbolic links (at
least to my knowledge)

Best of luck!

Kostas Paraskevopoulos
Κωνσταντίνος Παρασκευόπουλος
George Burns 
- "I would go out with women my age, but there are no women my age."

On Tue, Jun 30, 2009 at 09:52, Alexia Kounoudes
wrote:

>  Hi
>
> I am having some problems with tomcat in dspace.I am using Dspace 1.5 in
> Redhat Linux.
>
> As I do not want to use the extension /jspui in my repository’s url I
> create a symbolic link ROOT in tomcat directory /var/lib/tomcat5/webapps
> which points to the installation directory of my dspace
> /usr/local/dspace/webapps/jspui. i do this every time i run the ant update
> command.
>
> What happens is that the link works in the browser ie when I do not use the
> /jspui in the URL my repository appears but it seems to use some old
> configuration.
>
> an xample: I changed the file full.jsp under the source directory of dspace
> …/webapps/jspui/browse/full.jsp in order to produce a browsing index using
> the greek alphabet characters. Then I rebuilt dspace using ant update, then
> I stopped the tomcat service from running, I removed the old webapps
> directory from /var/lib/tomcat5/, then I copied the
> /usr/local/dspace/webapps directory to the tomcat dir using
>
> cp –R webapps/ /var/lib/tomcat5/
>
> And then
>
> cd /var/lib/tomcat5/webapps
>
> ln –s /usr/local/dspace/webapps/jspui ROOT
>
> in order to create the link.
>
> It seems that when I use the jspui in my URL ie
> http://ktisis.cut.ac.cy/jspui the browsing index appears correctly,
> however when I do not use it it shows some old configuration I did in the
> past in the full.jsp file. I have no clue as to where it reads this old
> configuration from as I have deleted this change and also I have removed the
> old webapps directories both from tomcat directory and dspace directories.
> After a few days the browsing index appeared correctly in both ways.
>
> The same situation occurs when I try to do more changes. My changes do not
> seem to take place oimmediately or at all.
>
>
> I have also noticed some other odd behaviour of tomcat. If I remove
> completely the webapps directory from /var/lib/tomcat5/ and I restart tomcat
> my reposiytory works fine, ie it does not read the webapps from the tomcat
> directory.
>
> Has anybody got a clue as to what is going on?
>
>
> I have used dspace and tomcat in the past but in a windows server and if
> webapps directory was missing from tomcat’s directory then it wouldn't work.
> Is something different in linux?
>
>
>
>
>
>
> *Kind regards,*
>
> * *
>
> *Alexia Kounoudes*
>
> *Library Information Systems Support Office***
>
> *Cyprus University of Technology**
>
>
> ***
>
> * *
>
> *alexia.kounou...@cut.ac.cy*
>
> *tel: 00357 25002568***
>
> *fax:00357 25002761***
>
>
>
>
> --
>
> ___
> DSpace-tech mailing list
> DSpace-tech@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/dspace-tech
>
>
--
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Error of installation

2009-06-25 Thread Κώστας Παρασκευόπουλος
Fei,

You did a fresh install I guess.
If so, did you have any errors during "ant fresh_install"?
The error says that there is a problem with the database communication with
the application you ran.
Check that the database for DSpace exists (I think there is a pgadmin3 tool
for windows, or use "psql") and is not empty (it should have some tables).
If the DSpace db has nothing in it, you probably have a configuration error
(hostname, user/pass, blocked access to the DB...)

Double/triple check the configuration settings (dspace.cfg) and try again.
Most of the Database/hostname settings are at the begining of dspace.cfg


Kostas Paraskevopoulos
Κωνσταντίνος Παρασκευόπουλος
Yogi Berra   -
"I never said most of the things I said."

On Thu, Jun 25, 2009 at 13:07, Fei Teng  wrote:

>  Hi,
>
> I've installed DSpace in my desktop successfully. But when I wanted to
> install it in my laptop, in the last step I got this message:
>
>
>
> C:\DSpace\bin>dsrun org.dspace.administer.CreateAdministrator
> Using DSpace installation in: C:\DSpace
> Exception in thread "main" java.sql.SQLException:
> java.lang.ClassNotFoundException:
> at
> org.dspace.storage.rdbms.DatabaseManager.initialize(DatabaseManager.java:1625)
> at
> org.dspace.storage.rdbms.DatabaseManager.getConnection(DatabaseManager.java:548)
> at org.dspace.core.Context.(Context.java:128)
> at
> org.dspace.administer.CreateAdministrator.(CreateAdministrator.java:125)
> at
> org.dspace.administer.CreateAdministrator.main(CreateAdministrator.java:94)
> C:\DSpace\bin>
>
>
>
> I've done exactely the same procedure in the laptop as in the desktop, and
> I've checked all the variables and files and even the DSpace files are well
> installed. However I still couldn't create an administrator. I use Java
> 1.6.0_13, PostgreSQL 8.3. The programs are fine because I also installed
> Fedora Commons which uses the same database, and Fedora works well. If you
> have met this kind of problem, please help me on it.
>
> Thanks a lot!
>
> Best regards,
>
> Fei
>
>
>
>
>
>
>
> --
> Windows Live™: Keep your life in sync. Check it 
> out!
>
>
> --
>
> ___
> DSpace-tech mailing list
> DSpace-tech@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/dspace-tech
>
>
--
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] New user registration + internal system error

2009-06-23 Thread Κώστας Παρασκευόπουλος
Hi,

to simply check if it is a smtp issue, try to use the recover function for a
know account (administrator maybe) if you encounter an internal server error
page, then it's probably the smtp configuration in dspace.cfg.

Kostas Paraskevopoulos
Κωνσταντίνος Παρασκευόπουλος
Bill Cosby   -
"A word to the wise ain't necessary - it's the stupid ones that need the
advice."

On Fri, Jun 19, 2009 at 15:42, gathub  wrote:

>
> probably a problem with your mail server. check your
> [dspace]/log/dspace.log
> file
>
>
> Zico-5 wrote:
> >
> > Hi,
> >
> > When i goes for the registration of a new user, then "internal system
> > error"
> > occurs.
> >
> > Here is my ldap configuration in dspace.cfg:
> >
> > ldap.enable = true
> >
> > ldap.provider_url = ldap://ldap.dspace.bracu.ac.bd/
> >
> > ldap.id_field = cn
> >
> > ldap.object_context = ou=staff,ou=Zico,o=ZICO
> >
> > ldap.search_context = ou=staff
> >
> > ldap.email_field = mail
> >
> >
> > What i tried to do is:
> >
> > Step 1: I have added an "e-person" as "mailz...@gmail.com"
> >
> > Step 2: I logged out & tried to register there as "mailz...@gmail.com"
> in
> > http://dspace.bracu.ac.bd/register page
> >
> > then the "internal system error" comes.
> >
> > How can i add new users who may have administrative power like inserting
> > new
> > items there in dspace server?
> > --
> > Best,
> > Zico
> >
> >
> --
> > Crystal Reports - New Free Runtime and 30 Day Trial
> > Check out the new simplified licensing option that enables unlimited
> > royalty-free distribution of the report engine for externally facing
> > server and web deployment.
> > http://p.sf.net/sfu/businessobjects
> > ___
> > DSpace-tech mailing list
> > DSpace-tech@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/dspace-tech
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/New-user-registration-%2B-internal-system-error-tp24101465p24110738.html
> Sent from the DSpace - Tech mailing list archive at Nabble.com.
>
>
>
> --
> Crystal Reports - New Free Runtime and 30 Day Trial
> Check out the new simplified licensing option that enables unlimited
> royalty-free distribution of the report engine for externally facing
> server and web deployment.
> http://p.sf.net/sfu/businessobjects
> ___
> DSpace-tech mailing list
> DSpace-tech@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/dspace-tech
>
--
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] XMLUI: how to add the commuinities & collections in the starting page

2009-06-23 Thread Κώστας Παρασκευόπουλος
Hi Yureshwar,

You want to remove all else from the front page in xmlui and place a full
listing of "communities and collections" or just want to render the full
list.
In both cases you need to edit
[dspace
source]/dspace-xmlui/dspace-xmlui-api/src/main/resources/aspects/ArtifactBrowser/sitemap.xmap
Since you want to change the front page find the  and
either remove / comment out the

you don't want to appear
or change the parameter for 
to 999 in order to render the full list in the front page

after the changes rebuild / update_webapps / deploy...

Kostas Paraskevopoulos
Κωνσταντίνος Παρασκευόπουλος
Casey Stengel
- "All right everyone, line up alphabetically according to your
height."

On Fri, Jun 5, 2009 at 10:10, Yureshwar Dspace
wrote:

> Hi all,
>
> Can anyone help me how to add communities & collections page to the
> front page in xmlui.
>
>
>
>
>
> --
> OpenSolaris 2009.06 is a cutting edge operating system for enterprises
> looking to deploy the next generation of Solaris that includes the latest
> innovations from Sun and the OpenSource community. Download a copy and
> enjoy capabilities such as Networking, Storage and Virtualization.
> Go to: http://p.sf.net/sfu/opensolaris-get
> ___
> DSpace-tech mailing list
> DSpace-tech@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/dspace-tech
>
>
--
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] upgrade help

2009-01-18 Thread Κώστας Παρασκευόπουλος
Rod,
You probably forgot to recreate the db that's why you got the errors,
run before you restore the data (and after you created the empty database):
(from the target directory)
ant setup_database
ant load_registries
now restore your database
*psql -U dspace -d dspace < dspace-backup.sql
*and finally (if all goes well) run the
database_schema_14-15.sql

I hope it helps!
Kostas Paraskevopoulos

Katharine Hepburn  - "Death will be a great relief. No more interviews."

On Mon, Jan 19, 2009 at 05:25, Rod Harris  wrote:

>  Hi all
>
> I'm still trying to move our dspace 1.4 instance to a separate machine
> running 1.5. All the docs I've found only tell how to upgrade a 1.4 to 1.5
> instance of dspace, not move everything to  a new machine altogether and
> upgrade to 1.5 at the same time.
>
> I have done a *pg_dump --oids -U dspace -f dspace-backup.sql dspace*
> from the 1.4 machine
>
> then scp the dspace-backup.sql file to the 1.5 machine.
>
> Then on the 1.5 machine (which had a running vanilla dspace 1.5 install)
>
> *dropdb dspace*
> *createdb -U dspace -E UNICODE dspace*
> *psql -U dspace -d dspace < dspace-backup.sql*
>
> but that fell in a heap - there was something printed to the terminal (that
> went by too fast to catch with ^c and I wasn't able to redirect the output
> to a file either) then a lot of:
> invalid command \N
>
> and occasionally
> syntax error near ...
>
> and finally
>
> Failed
>
>
> Does what I've done actually look at all right or is it the wrong approach
> altogether?
>
> I also know of the 'database_schema_14-15.sql' but do I use it before I try
> to load the 1.4 dump into the 1.5 database or after?
>
> Cheers. Rod
>
>
> --
> This SF.net email is sponsored by:
> SourcForge Community
> SourceForge wants to tell your story.
> http://p.sf.net/sfu/sf-spreadtheword
> ___
> DSpace-tech mailing list
> DSpace-tech@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/dspace-tech
>
>
--
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Applying nested lists to front page

2008-12-19 Thread Κώστας Παρασκευόπουλος
Thomas,
I although I didn't try this change I suggested this change to another
person and he confirmed that this change worked for him, so I guessed it
does, if not I'm sorry :) but if sitemap.xmap doesn't do the trick for you
maybe you should check your theme (just another guess)

The link from the list is:
http://sourceforge.net/mailarchive/message.php?msg_id=db031a2e0811102300j1a997df9u2f7f9bb7135c8d07%40mail.gmail.com

Best wishes,
Kostas Paraskevopoulos

Phyllis Diller  - "I want my children to have all the things I couldn't
afford. Then I want to move in with them."

On Fri, Dec 19, 2008 at 16:12, McGee, Thomas A. wrote:

> It was already set to a higher number in the source code when it was
> installed.

Isn't there a simple way to apply what's being displayed on the C&C page to
> the home page?


>
> Oh how I wish DSpace was written in PHP...
>
> Kostas Paraskevopoulos wrote:
>
> You can change a parameter in sitemap.xmap
> in:
> [source]/dspace-xmlui/dspace-
> xmlui-api/src/main/resources/aspects/ArtifactBrowser/
>
> ...
> 
> ...
> 
> 
> 
> 
> 
> ...
>
> Change the value of "depth" to 100, or more (it's 999 for match
> pattern="community-list")
> So when you are at the home page () the tranformer
> CommunityBrowser will display communities and collection until it reaches
> "depth" 100
> After that rebuild, update...
>
> 
> Tom McGee
> Seton Hall University
> 
>
>
> --
> ___
> DSpace-tech mailing list
> DSpace-tech@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/dspace-tech
>
--
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Applying nested lists to front page

2008-12-19 Thread Κώστας Παρασκευόπουλος
You can change a parameter in sitemap.xmap
in:
[source]/dspace-xmlui/dspace-
xmlui-api/src/main/resources/aspects/ArtifactBrowser/

...

...





...

Change the value of "depth" to 100, or more (it's 999 for match
pattern="community-list")
So when you are at the home page () the tranformer
CommunityBrowser will display communities and collection until it reaches
"depth" 100
After that rebuild, update...

Kostas Paraskevopoulos

Kostas Paraskevopoulos

Phyllis Diller  - "I want my children to have all the things I couldn't
afford. Then I want to move in with them."

On Thu, Dec 18, 2008 at 21:58, Dorothea Salo  wrote:

> > To appear on my home page. Out-of-the-box I just get the bare listing of
> > communities.
> >
> > I'm using 1.5 with XMLUI, and I can't quite figure out where in the XSLT
> > that decision is made. Thanks.
>
> The problem is that it's not made in the XSLT. What you want is to get
> your home-page XMLUI aspect to fire CommunityBrowser.java in the
> aspect/artifactbrowser folder, so that everything gets added to the
> DRI... but I'm baffled by what aspect actually builds the home page.
> Anybody?
>
> Dorothea
>
> --
> Dorothea Salods...@library.wisc.edu
> Digital Repository Librarian  AIM: mindsatuw
> University of Wisconsin
> Rm 218, Memorial Library
> (608) 262-5493
>
>
> --
> SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
> The future of the web can't happen without you.  Join us at MIX09 to help
> pave the way to the Next Web now. Learn more and register at
>
> http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
> ___
> DSpace-tech mailing list
> DSpace-tech@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/dspace-tech
>
--
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] How to remove Communities in DSpace block from the front page

2008-11-13 Thread Κώστας Παρασκευόπουλος
Hi Serhiy,

Check the sitemap.xmap for this aspect (Artifact Browser) and remove the
transform for the front page communities list... (or comment it out or
something) it's at Line 122 (in default source)
This time I'm almost sure this will work

On your second question check again the sitemap (line 122) and alter the
depth value (also replied to your other message about this)

Good luck
Kostas Paraskevopoulos

George Burns  - "At my age flowers scare me."

On Thu, Nov 13, 2008 at 07:36, Serhiy Polyakov <[EMAIL PROTECTED]> wrote:

> Hello,
>
> I use DSpace 1.5.1 with xmlui interface and I am trying to modify
> Reference theme.
>
> How to remove "Communities in DSpace" block from the front page?
> I can hide it in theme's xsl like this:
>
>  match="dri:[EMAIL 
> PROTECTED]'aspect.artifactbrowser.CommunityBrowser.div.community-browser']>
> 
>
> but it also hides from the Communities and Collection page accessible
> under browse on the right. I don't want this.
>
> Also, this block on the front page shows only top level communities
> while the same block when I access it from Browse on right shows
> collections in addition. Where to control this?
>
> I was trying many things in CommunityBrowser.java but no results so far.
>
> Thanks,
> Serhiy
>
> -
> 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=100&url=/
> ___
> DSpace-tech mailing list
> DSpace-tech@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/dspace-tech
>
-
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=100&url=/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] List of collections on the home page

2008-11-13 Thread Κώστας Παρασκευόπουλος
Serhiy,
You should check your "sitemap.xmap" for "ArtifactBrowser Aspect" there are
a few lines that say,


   


My best guess is that you could change the "depth" value to 999 as it is
actually for the Full Tree view.
Hope it helps

Kostas Paraskevopoulos

Bob Hope  - "I love to go to Washington - if only to be near my money."

On Tue, Nov 11, 2008 at 09:00, Serhiy Polyakov <[EMAIL PROTECTED]> wrote:

> Hello,
>
> Home page of XMLUI interface in DSpace 1.5.1 shows list of top level
> communities. Browse collections page (link to it is on the top of the
> browse indexes) shows communities and collections tree.
>
> How to show the same tree on the home page?
>
> I tried to modify CommunityBrowser.java where is builds
> "community-browser" division but nothing worked out so far.
>
> Thanks,
> Serhiy
>
> -
> 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=100&url=/
> ___
> DSpace-tech mailing list
> DSpace-tech@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/dspace-tech
>
-
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=100&url=/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Override user agent language in XMLUI

2008-10-07 Thread Κώστας Παρασκευόπουλος
Hi,

Is there any way to override the locale of the browser via the XMLUI (with
an aspect, link, sitemap change) so that users can select the interface
language without having to change their browser settings?

Thanks in advance
-
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=100&url=/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] index-init fails

2008-05-07 Thread Κώστας Παρασκευόπουλος
Hi,
I had a similar problem when I tested 1.4 --> 1.5,
The problem was in the configuration file dspace.cfg
Check the values for:
${default.db.name}
${default.db.url}
${default.db.driver}
${default.db.username}
${default.db.password}

I hope this helps.

Hamish Brett wrote:
> Hi
>
> I am upgrading to 1.5 from 1.4.1 when I rebuild the browse and search
> indexes eith
>
> $index-init
>
> I receive the following error
>
> Exception in thread "main" java.sql.SQLException:
> java.lang.ClassNotFoundException:
> at
> org.dspace.storage.rdbms.DatabaseManager.initialize(DatabaseManager.java:1555)
> at
> org.dspace.storage.rdbms.DatabaseManager.getConnection(DatabaseManager.java:512)
> at org.dspace.core.Context.(Context.java:117)
> at org.dspace.browse.IndexBrowse.main(IndexBrowse.java:617)
> Exception in thread "main" java.sql.SQLException:
> java.lang.ClassNotFoundException:
> at
> org.dspace.storage.rdbms.DatabaseManager.initialize(DatabaseManager.java:1555)
> at
> org.dspace.storage.rdbms.DatabaseManager.getConnection(DatabaseManager.java:512)
> at org.dspace.core.Context.(Context.java:117)
> at org.dspace.browse.ItemCounter.main(ItemCounter.java:83)
> Creating search index
> Exception in thread "main" java.sql.SQLException:
> java.lang.ClassNotFoundException:
> at
> org.dspace.storage.rdbms.DatabaseManager.initialize(DatabaseManager.java:1555)
> at
> org.dspace.storage.rdbms.DatabaseManager.getConnection(DatabaseManager.java:512)
> at org.dspace.core.Context.(Context.java:117)
> at org.dspace.search.DSIndexer.main(DSIndexer.java:467)
> [EMAIL PROTECTED]:~$ locate DatabaseManager.java
>
> My classpath is
> /usr/lib/jvm/java-1.5.0-sun-1.5.0.14/jre/lib:/dspace/lib
>
> Any ideas
>
> Thanks
>
> Hamish
>
>
>
>
> IMPORTANT: This email remains the property of the Australian Defence 
> Organisation and is subject to the jurisdiction of section 70 of the CRIMES 
> ACT 1914.  If you have received this email in error, you are requested to 
> contact the sender and delete the email.
>
>
>
> -
> 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
>
>   


-
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