[Dspace-tech] Problem in dspace installation

2009-08-19 Thread Nihal Alam
hi,
During dspace installation i  got an error when i was triying to complie the
ant

ant fresh_install


BUILD FAILED
/home/dspace/dspace-1.5/dspace/target/dspace-1.5.2-build.dir/build.xml:629:
Java returned: 1

 JAVA_HOME=/home/dspace/jdk1.6.0_13
ANT_HOME=/home/dspace/apache-ant-1.7
CATALINA_HOME=/home/dspace/tomcat-6
MVN_HOME=/home/dspace/maven-2.1

PATH=$JAVA_HOME/bin:$ANT_HOME/bin:$CATALINA_HOME/bin:$MVN_HOME/bin$PATH
export PATH JAVA_HOME ANT_HOME CATALINA_HOME MVN_HOME


JAVA version
java version "1.6.0_0"
IcedTea6 1.3.1 (6b12-0ubuntu6.5) Runtime Environment (build 1.6.0_0-b12)
OpenJDK Client VM (build 1.6.0_0-b12, mixed mode, sharing)

please help

--nihal
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Recent submissions text does not change when metadata is updated

2009-08-19 Thread Sean Carte
2009/8/19 John Preston :
> Ok I have been running dspace under jetty because I was having some issues
> with tomcat caching pages. I would login and then two pages on it would ask
> me to login again, or I would change some metadata and the page would not
> show it until I cleared the browser cache. This didn't seem to happen with
> the same frequency under jetty. But now when I change back to tomcat 6.0.18
> this problem has disappeared.

I found deleting the cocoon cache file
(/var/cache/tomcat5.5/Catalina/localhost/xmlui/cache-dir/cocoon-ehcache.data
-- Ubuntu) fixed many weird problems that were causing me to lose
hair.

Sean
-- 
Sean Carte
esAL Library Systems Manager
+27 72 898 8775
+27 31 373 2490
fax: 0866741254
http://esal.dut.ac.za/

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Bit streams size

2009-08-19 Thread Van Ly

On 19/08/2009, at 7:06 PM, Mariano A. Belladonna wrote:

> Is there a limit imposed by DSpace on the size of files to be included
> into an item? Can it be fixed somehow?
>
>


DSpace 1.4.2 has the parameter `upload.max' you can set in  
dspace.cfg. How it works is detailed in FileUploadRequest.java. Look for

  int maxSize = ConfigurationManager.getIntProperty("upload.max");
  DiskFileUpload upload = new DiskFileUpload();
  upload.setSizeMax(maxSize);

Best wishes,

Van Ly
vly at usyd dot edu dot au





--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] [Dspace-general] Bit streams size

2009-08-19 Thread Stuart Lewis
Hi Mariano,

> Is there a limit imposed by DSpace on the size of files to be included
> into an item? Can it be fixed somehow?

There is no limit imposed by DSpace, however there may be limits based on
your operating system, filesystem, or bandwidth to the server if initiating
large uploads from a browser.

If you want to limit the size of uploads, there is setting in the main
configuration file 'dspace.cfg' that can be used:

# Maximum size of uploaded files in bytes, negative setting will result in
no limit being set
# 512Mb
upload.max = 536870912

I hope this helps,


Stuart Lewis
IT Innovations Analyst and Developer
Te Tumu Herenga The University of Auckland Library
Auckland Mail Centre, Private Bag 92019, Auckland 1142, New Zealand
Ph: 64 9 373-7599 x81928
http://www.library.auckland.ac.nz/


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Recent submissions text does not change when metadata is updated

2009-08-19 Thread John Preston
Ok I have been running dspace under jetty because I was having some issues
with tomcat caching pages. I would login and then two pages on it would ask
me to login again, or I would change some metadata and the page would not
show it until I cleared the browser cache. This didn't seem to happen with
the same frequency under jetty. But now when I change back to tomcat 6.0.18
this problem has disappeared.

I'm not sure which application server to use? Urghh

John

On Wed, Aug 19, 2009 at 2:19 PM, John Preston  wrote:

>  Hi John this may not help but have you tried re-starting tomcat?  I’ve
>> had several cases where that was required before a change is reflected.
>>
> Restarting does not fix the problem.
>
> John
>
>> Stephen
>>
>>
>>
>> Stephen Wilkinson
>>
>> System Support Technician
>>
>> Information Technology Services
>>
>> McLaughlin Library
>>
>> University of Guelph
>>
>> GUELPH, ON.  N1G 2W1
>>
>> 519-824-4120 X 53939
>>
>> swilk...@uoguelph.ca
>>
>>
>>
>>
>>
>>
>>
>> *From:* John Preston [mailto:byhisde...@gmail.com]
>> *Sent:* Wednesday, August 19, 2009 12:28 PM
>> *To:* dspace-tech@lists.sourceforge.net
>> *Subject:* [Dspace-tech] Recent submissions text does not change when
>> metadata is updated
>>
>>
>>
>> I am using dspace 1.5.2 with xmlui. Ir submitted an item without problems.
>> However, when I update the metadata data, specifically the title and
>> dc.publisher, when I view the collection page the recent submission text for
>> the item does not reflect the updated metadata. It still shows the old
>> author and dc.publisher.
>>
>> Where do I need to change this data.
>>
>> John
>>
>
>
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Recent submissions text does not change when metadata is updated

2009-08-19 Thread John Preston
>
>  Hi John this may not help but have you tried re-starting tomcat?  I’ve
> had several cases where that was required before a change is reflected.
>
Restarting does not fix the problem.

John

> Stephen
>
>
>
> Stephen Wilkinson
>
> System Support Technician
>
> Information Technology Services
>
> McLaughlin Library
>
> University of Guelph
>
> GUELPH, ON.  N1G 2W1
>
> 519-824-4120 X 53939
>
> swilk...@uoguelph.ca
>
>
>
>
>
>
>
> *From:* John Preston [mailto:byhisde...@gmail.com]
> *Sent:* Wednesday, August 19, 2009 12:28 PM
> *To:* dspace-tech@lists.sourceforge.net
> *Subject:* [Dspace-tech] Recent submissions text does not change when
> metadata is updated
>
>
>
> I am using dspace 1.5.2 with xmlui. Ir submitted an item without problems.
> However, when I update the metadata data, specifically the title and
> dc.publisher, when I view the collection page the recent submission text for
> the item does not reflect the updated metadata. It still shows the old
> author and dc.publisher.
>
> Where do I need to change this data.
>
> John
>
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Recent submissions text does not change when metadata is updated

2009-08-19 Thread John Preston
I am using dspace 1.5.2 with xmlui. Ir submitted an item without problems.
However, when I update the metadata data, specifically the title and
dc.publisher, when I view the collection page the recent submission text for
the item does not reflect the updated metadata. It still shows the old
author and dc.publisher.

Where do I need to change this data.

John
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Bit streams size

2009-08-19 Thread Mariano A. Belladonna
Is there a limit imposed by DSpace on the size of files to be included 
into an item? Can it be fixed somehow?

Thanks.

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Organize icons and add file descriptions in browse and search results

2009-08-19 Thread Fabricio Costa
Steven,

Thanks.

I've already added vertical-align="middle" to your format-icon class in my CSS. 
The issue is not vertical alignment. The problem is that items don't stay below 
each other (see images).

I also couldn't insert description, i don't know why. I used the code, but 
nothing appeared.

As i'm not a programmer or something like that, maybe i'm doing something wrong.

The code for the slider in theme's XSL is below. Thanks.









xmlui.dri2xhtml.METS-1.0.item-isVersionOf:







xmlui.dri2xhtml.METS-1.0.item-relationUri:


































 




 









(mais arquivos)








 






/






  

  


  

/

  

  


   (
  

  
  )   




(mais arquivos)







> De: Williams, Steven D 
> Assunto: Re: [Dspace-tech] Organize icons and add file descriptions in browse 
> and search results
> Para: "Dspace Tech" 
> Data: Terça-feira, 18 de Agosto de 2009, 17:13
> Hello Fabricio,
> 
> Try adding vertical-align="middle" to your format-icon
> class in your CSS. The file description issue has been
> corrected with the following patch http://jira.dspace.org/jira/browse/DS-156. 
> The patch is
> easy to apply in your  theme XSL. The section of XSL
> that displays the file description is below...
> 
> ///
> 
> 
>          test="$context/mets:fileSec/mets:fileGrp/mets:file/mets:FLocat/@xlink:label
> != ''">
>              
>    select="mets:floc...@loctype='URL']/@xlink:label"/>
>         
> 
>  
> 
> Hope this helps.
> 
> Steven Williams
> Webmaster
> Technology Integration Services
> University of Texas Libraries
> University of Texas at Austin
> PCL 1.128G
> 
> -Original Message-
> From: Fabricio Costa [mailto:brizzi...@yahoo.com.br]
> 
> Sent: Tuesday, August 18, 2009 9:17 AM
> To: dspace-tech@lists.sourceforge.net
> Subject: [Dspace-tech] Organize icons and add file
> descriptions in browse and search results
> 
> 
> Hi,
> 
> We are using a theme based on Kubrick. It uses sliders to
> show details about the items.
> 
> We're trying to show "file format icon + file type
> description + file size + file description) instead of
> "title + filename.pdf + file size) with no success.
> 
> We tried some code tricks, but it doesn't align items. They
> appear incorrectly. The file description doesn't appear
> too.
> 
> The code is here 
> (http://aplicacao.tst.jus.br/dspace/themes/Tst_legis/Tst_legis.xsl)
> 
> And a sample image is here: 
> http://i8.photobucket.com/albums/a23/brizziodf/Rascunho/sample_dspace001.jpg
> 
> 
> Any help?
> 
> 
> 
> 
>      
> 
> Veja quais são os assuntos do momento no Yahoo! +Buscados
> ht