Re: [Dspace-tech] JAVA question

2007-04-13 Thread Graham Triggs
> Private static Logger log = Logger.getLogger(SFXLinkTag.class);
>
> My question is this:  How do I make these same changes in a .jsp, such as
> display-item.jsp?   I was able to figure out the syntax for the 1st and 
> last
> lines of code, but didn't know what to do with the parameter inside Logger
> getLogger(   ), and of course got an error
> when I completely left this line out.

Sue,

Documentation for the Logger class is here:

http://logging.apache.org/log4j/docs/api/org/apache/log4j/Logger.html

As you can see, there are two variations of getLogger - one that takes a 
Class (as used above), and one that takes a String.

Ultimately, the Class based method is retrieving the name of the class as a 
string, and in both cases the logger for that name / value is returned (or 
created).

For JSPs, classes are generated automatically, and hence given obscure 
names. This makes configuration at best awkward, if not impossible. But as 
you can pass a String to getLogger(), simply pass a value you are 
comfortable with (ie. "DisplayItemJSP").

G 
 
 
This e-mail is confidential and should not be used by anyone who is not the 
original intended recipient. BioMed Central Limited does not accept liability 
for any statements made which are clearly the sender's own and not expressly 
made on behalf of BioMed Central Limited. No contracts may be concluded on 
behalf of BioMed Central Limited by means of e-mail communication. BioMed 
Central Limited Registered in England and Wales with registered number 3680030 
Registered Office Middlesex House, 34-42 Cleveland Street, London W1T 4LB

-
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.php&p=sourceforge&CID=DEVDEV
___
DSpace-tech mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Internal error - User registration

2007-04-13 Thread Jayan Chirayath Kurian
hi!
 
are u able to create administrator account from Dspace\bin 
 
 


From: [EMAIL PROTECTED] on behalf of Eduardo Santos
Sent: Sat 4/14/2007 5:36 AM
To: [EMAIL PROTECTED]
Subject: [Dspace-tech] Internal error - User registration


Hi all,
I have some problems when I attempt to register a new user.
It occurs "Internal System Error". 
I have DSpace 1.4.1 on Fedora 6 + Tomcat 5.5.17 + JDK 1.5.0_11.
Any ideas?
Thanks
Eduardo
 
dspace.log:
 
2007-04-13 18:08:46,900 WARN  org.dspace.app.webui.servlet.InternalErrorServlet 
@ :session_id=8D052190116945B0EB5912C404E61981:internal_error:-- URL Was: 
http://nms1.senado.gov.br:8080/dspace/register 
-- Method: POST
-- Parameters were:
-- submit: "Register"
-- email: "[EMAIL PROTECTED]"
-- step: "1"

java.lang.ClassCastException: gnu.mail.handler.TextPlain
 at 
javax.activation.MailcapCommandMap.getDataContentHandler(MailcapCommandMap.java:596)
 at 
javax.activation.MailcapCommandMap.createDataContentHandler(MailcapCommandMap.java
 :550)
 at javax.activation.DataHandler.getDataContentHandler(DataHandler.java:611)
 at javax.activation.DataHandler.writeTo(DataHandler.java:315)
 at javax.mail.internet.MimeUtility.getEncoding(MimeUtility.java:248) 
 at javax.mail.internet.MimeBodyPart.updateHeaders(MimeBodyPart.java:1268)
 at javax.mail.internet.MimeMessage.updateHeaders(MimeMessage.java:2012)
 at javax.mail.internet.MimeMessage.saveChanges(MimeMessage.java :1980)
 at javax.mail.Transport.send(Transport.java:97)
 at org.dspace.core.Email.send(Email.java:330)
 at org.dspace.eperson.AccountManager.sendEmail(AccountManager.java:294)
 at org.dspace.eperson.AccountManager.sendInfo (AccountManager.java:254)
 at 
org.dspace.eperson.AccountManager.sendRegistrationInfo(AccountManager.java:99)
 at 
org.dspace.app.webui.servlet.RegisterServlet.processEnterEmail(RegisterServlet.java:284)
 at org.dspace.app.webui.servlet.RegisterServlet.doDSPost 
(RegisterServlet.java:209)
 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:709)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
 at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
 at org.apache.catalina.core.ApplicationFilterChain.doFilter 
(ApplicationFilterChain.java:173)
 at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
 at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
 at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
 at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
 at org.apache.catalina.core.StandardEngineValve.invoke 
(StandardEngineValve.java:107)
 at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
 at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
 at 
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection
 (Http11BaseProtocol.java:664)
 at 
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
 at 
org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
 
 at 
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
 at java.lang.Thread.run(Thread.java:595)

-
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.php&p=sourceforge&CID=DEVDEV___
DSpace-tech mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] another customization question

2007-04-13 Thread Pan Family

Hi,

If I click on Titles, by defult I am seeing the 1st 21 items
available.  How do I change the default value so I can
show more items per page?

Also, the default look and feel does not use space
efficiently.  How can I change the texts "DEV DSpace at XXX,"
"Browse by Title," "Jump to: 0-9 ...," "or enter first few ...,"
and "Showing items ..." to a different location (e.g., bottom)
or to use less space?

Thanks!

-Pan
-
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.php&p=sourceforge&CID=DEVDEV___
DSpace-tech mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Internal error - User registration

2007-04-13 Thread Eduardo Santos

Hi all,
I have some problems when I attempt to register a new user.
It occurs "Internal System Error".
I have DSpace 1.4.1 on Fedora 6 + Tomcat 5.5.17 + JDK 1.5.0_11.
Any ideas?
Thanks
Eduardo

dspace.log:

2007-04-13 18:08:46,900 WARN
org.dspace.app.webui.servlet.InternalErrorServlet @
:session_id=8D052190116945B0EB5912C404E61981:internal_error:-- URL Was:
http://nms1.senado.gov.br:8080/dspace/register
-- Method: POST
-- Parameters were:
-- submit: "Register"
-- email: "[EMAIL PROTECTED]"
-- step: "1"

java.lang.ClassCastException: gnu.mail.handler.TextPlain
at javax.activation.MailcapCommandMap.getDataContentHandler(
MailcapCommandMap.java:596)
at javax.activation.MailcapCommandMap.createDataContentHandler(
MailcapCommandMap.java:550)
at javax.activation.DataHandler.getDataContentHandler(DataHandler.java:611)
at javax.activation.DataHandler.writeTo(DataHandler.java:315)
at javax.mail.internet.MimeUtility.getEncoding(MimeUtility.java:248)
at javax.mail.internet.MimeBodyPart.updateHeaders(MimeBodyPart.java:1268)
at javax.mail.internet.MimeMessage.updateHeaders(MimeMessage.java:2012)
at javax.mail.internet.MimeMessage.saveChanges(MimeMessage.java:1980)
at javax.mail.Transport.send(Transport.java:97)
at org.dspace.core.Email.send(Email.java:330)
at org.dspace.eperson.AccountManager.sendEmail(AccountManager.java:294)
at org.dspace.eperson.AccountManager.sendInfo(AccountManager.java:254)
at org.dspace.eperson.AccountManager.sendRegistrationInfo(
AccountManager.java:99)
at org.dspace.app.webui.servlet.RegisterServlet.processEnterEmail(
RegisterServlet.java:284)
at org.dspace.app.webui.servlet.RegisterServlet.doDSPost(
RegisterServlet.java:209)
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:709)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(
ApplicationFilterChain.java:252)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(
ApplicationFilterChain.java:173)
at org.apache.catalina.core.StandardWrapperValve.invoke(
StandardWrapperValve.java:213)
at org.apache.catalina.core.StandardContextValve.invoke(
StandardContextValve.java:178)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java
:126)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java
:105)
at org.apache.catalina.core.StandardEngineValve.invoke(
StandardEngineValve.java:107)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java
:148)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java
:869)
at
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection
(Http11BaseProtocol.java:664)
at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(
PoolTcpEndpoint.java:527)
at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(
LeaderFollowerWorkerThread.java:80)
at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(
ThreadPool.java:684)
at java.lang.Thread.run(Thread.java:595)
-
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.php&p=sourceforge&CID=DEVDEV___
DSpace-tech mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] generation of format.extent and format.mimetype

2007-04-13 Thread Farrell,Gabriel
> -Original Message-
> From: Claudia Jürgen [mailto:[EMAIL PROTECTED] 
> Sent: Friday, April 13, 2007 10:10 AM
> To: Farrell,Gabriel
> Cc: [EMAIL PROTECTED]
> Subject: Re: [Dspace-tech] generation of format.extent and 
> format.mimetype
> 
> Hello Gabriel,
> 
> this was a purposeful change.
> 
> This metadata is no longer created on item creation. The 
> reason was, that it referred to individual bitstreams and not 
> the item, e. g. having an item with foo1.pdf foo2.pdf and 
> thus 2 times format.extent and format.mimetype it was no 
> longer clear which metainformation belonged to which bitstream.
> 

That does make sense.  Thanks for the clarification. 

> With the new data/metadata model as result of the 
> architectural review there will be better mechanisms for 
> data-metadata handling in the future.
> 

Great.  Looking forward to it.

> 
> Claudia
> 
> 
> 
> 
> 
> 
> 
> Farrell,Gabriel schrieb:
> > After the upgrade from 1.3.2 to 1.4.1, our DSpace instance stopped
> > showing the dc.format.extent and dc.format.mimetype in the 
> full metadata
> > record for newly created items.  See, for example,
> > 
> http://idea.library.drexel.edu/handle/1860/1204?mode=full&subm
it_simple=
> > Show+full+item+record, an item created before the update, versus
> > 
> http://idea.library.drexel.edu/handle/1860/1377?mode=full&subm
it_simple=
> > Show+full+item+record, an item created after.  A quick look in the
> > database reveals that the newer item has no entries for
> > metadata_field_id 34 or 36, extent or mimetype.  
> > 
> > This information is now stored somewhere else (still shows up in the
> > View/Open box).  Was this a purposeful change from 1.3.2 to 
> 1.4.1, or
> > has our installation gone a little awry?
> > 
> > Gabe
> > 
> > 
> > --
> > Gabriel Farrell
> > Library Systems Developer
> > Hagerty Library
> > Drexel University
> > [EMAIL PROTECTED]
> > +1 215 895 1871 
> > 
> > 
> > 
> --
> --
> > 
> > 
> --
> ---
> > 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.php&p=sourceforge
&CID=DEVDEV
> > 
> > 
> > 
> --
> --
> > 
> > ___
> > DSpace-tech mailing list
> > [EMAIL PROTECTED]
> > https://lists.sourceforge.net/lists/listinfo/dspace-tech
> 

-
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.php&p=sourceforge&CID=DEVDEV
___
DSpace-tech mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Some DSpace On-Site work needed

2007-04-13 Thread Strongin-Garry, Ilene (IHG)
We are looking for a DSpace expert that can come to our offices for one
- two weeks (as long as the job takes) to assist us with upgrading our
DSpace, ensuring everything is running optimally, adding any new feature
add-ons that we don't currently have, etc.

Please let me know if you are interested and the cost for this work.

Ilene R. Strongin-Garry
IHG 



-
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.php&p=sourceforge&CID=DEVDEV
___
DSpace-tech mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Oracle and dspace

2007-04-13 Thread Hulbert, Linda A.
  

The University has begun a project to implement dspace using Oracle. I have
heard differing levels of success (mostly not) using Oracle. While I am not
an IT person, I will be passing any comments on to our IT and web services
colleagues. Ha anyone out there successfully launched dspace using Oracle?

 

Thanks so much for your time.

 

Linda

Linda Hulbert, Associate Director 
Technical Services 
O'Shaughnessy-Frey Library #5004
University of Saint Thomas 
2115 Summit Avenue 
St. Paul, MN 55105 
Phone: (651) 962-5016 Fax: (651) 962-5486email:
[EMAIL PROTECTED]   

Edison said: Opportunity is missed by most people because it is dressed in
overalls and looks like work.

   

 



image001.gif
Description: GIF image
-
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.php&p=sourceforge&CID=DEVDEV___
DSpace-tech mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Duplicate Key Exists

2007-04-13 Thread Claudia Jürgen
Hello Keith,

if you updated from 1.2 the bug is due to
http://sourceforge.net/tracker/index.php?func=detail&aid=1638565&group_id=19984&atid=119984

The patch for this is
http://sourceforge.net/tracker/index.php?func=detail&aid=1638569&group_id=19984&atid=319984

Claudia


Keith Jones schrieb:
> Hi,
> 
> I'm running into the following problem.  I am getting a duplicate exist 
> error when I try to create a submitters group through the edit collection 
> page.  When the edit collection page is displayed it shows a "create" 
> button for submitters or admins, but when you click the create button an 
> internal error is generated.  Have others had this problem?  We recently 
> upgraded an existing Dspace 1.2 install to a 1.4.1 version.
> 
> Here is a error report:
> 
> An internal server error occurred on http://dspace.udel.edu:8080/dspace:
> 
> Date:   4/12/07 1:46 PM
> Session ID: A69E39DD55189A05F5519E4B1D3AFF5C
> 
> -- URL Was: http://dspace.udel.edu:8080/dspace/tools/edit-communities
> -- Method: POST
> -- Parameters were:
> -- action: "9"
> -- community_id: "29"
> -- submit_submitters_create: "Create..."
> -- create: "false"
> -- introductory_text: ""
> -- name: "Publications"
> -- introductory_text: ""
> -- name: "Publications"
> -- copyright_text: ""
> -- short_description: ""
> -- collection_id: "48"
> -- license: ""
> -- side_bar_text: ""
> -- provenance_description: ""
> 
> 
> Exception:
> java.sql.SQLException: ERROR:  Cannot insert a duplicate key into unique
> index epersongroup_name_key
> 
> .
> 
> 
> Any help would be welcomed.
> 
> Thank You
> K Jones
> 
> -
> 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.php&p=sourceforge&CID=DEVDEV
> ___
> DSpace-tech mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/dspace-tech

-
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.php&p=sourceforge&CID=DEVDEV
___
DSpace-tech mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Duplicate Key Exists

2007-04-13 Thread Keith Jones

Hi,

I'm running into the following problem.  I am getting a duplicate exist 
error when I try to create a submitters group through the edit collection 
page.  When the edit collection page is displayed it shows a "create" 
button for submitters or admins, but when you click the create button an 
internal error is generated.  Have others had this problem?  We recently 
upgraded an existing Dspace 1.2 install to a 1.4.1 version.

Here is a error report:

An internal server error occurred on http://dspace.udel.edu:8080/dspace:

Date:   4/12/07 1:46 PM
Session ID: A69E39DD55189A05F5519E4B1D3AFF5C

-- URL Was: http://dspace.udel.edu:8080/dspace/tools/edit-communities
-- Method: POST
-- Parameters were:
-- action: "9"
-- community_id: "29"
-- submit_submitters_create: "Create..."
-- create: "false"
-- introductory_text: ""
-- name: "Publications"
-- introductory_text: ""
-- name: "Publications"
-- copyright_text: ""
-- short_description: ""
-- collection_id: "48"
-- license: ""
-- side_bar_text: ""
-- provenance_description: ""


Exception:
java.sql.SQLException: ERROR:  Cannot insert a duplicate key into unique
index epersongroup_name_key

.


Any help would be welcomed.

Thank You
K Jones

-
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.php&p=sourceforge&CID=DEVDEV
___
DSpace-tech mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] generation of format.extent and format.mimetype

2007-04-13 Thread Claudia Jürgen
Hello Gabriel,

this was a purposeful change.

This metadata is no longer created on item creation. The reason was, 
that it referred to individual bitstreams and not the item, e. g. having 
an item with
foo1.pdf
foo2.pdf
and thus 2 times format.extent and format.mimetype it was no longer 
clear which metainformation belonged to which bitstream.

With the new data/metadata model as result of the architectural review 
there will be better mechanisms for data-metadata handling in the future.


Claudia







Farrell,Gabriel schrieb:
> After the upgrade from 1.3.2 to 1.4.1, our DSpace instance stopped
> showing the dc.format.extent and dc.format.mimetype in the full metadata
> record for newly created items.  See, for example,
> http://idea.library.drexel.edu/handle/1860/1204?mode=full&submit_simple=
> Show+full+item+record, an item created before the update, versus
> http://idea.library.drexel.edu/handle/1860/1377?mode=full&submit_simple=
> Show+full+item+record, an item created after.  A quick look in the
> database reveals that the newer item has no entries for
> metadata_field_id 34 or 36, extent or mimetype.  
> 
> This information is now stored somewhere else (still shows up in the
> View/Open box).  Was this a purposeful change from 1.3.2 to 1.4.1, or
> has our installation gone a little awry?
> 
> Gabe
> 
> 
> --
> Gabriel Farrell
> Library Systems Developer
> Hagerty Library
> Drexel University
> [EMAIL PROTECTED]
> +1 215 895 1871 
> 
> 
> 
> 
> -
> 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.php&p=sourceforge&CID=DEVDEV
> 
> 
> 
> 
> ___
> DSpace-tech mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/dspace-tech

-
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.php&p=sourceforge&CID=DEVDEV
___
DSpace-tech mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] generation of format.extent and format.mimetype

2007-04-13 Thread Farrell,Gabriel
After the upgrade from 1.3.2 to 1.4.1, our DSpace instance stopped
showing the dc.format.extent and dc.format.mimetype in the full metadata
record for newly created items.  See, for example,
http://idea.library.drexel.edu/handle/1860/1204?mode=full&submit_simple=
Show+full+item+record, an item created before the update, versus
http://idea.library.drexel.edu/handle/1860/1377?mode=full&submit_simple=
Show+full+item+record, an item created after.  A quick look in the
database reveals that the newer item has no entries for
metadata_field_id 34 or 36, extent or mimetype.  

This information is now stored somewhere else (still shows up in the
View/Open box).  Was this a purposeful change from 1.3.2 to 1.4.1, or
has our installation gone a little awry?

Gabe


--
Gabriel Farrell
Library Systems Developer
Hagerty Library
Drexel University
[EMAIL PROTECTED]
+1 215 895 1871 
BEGIN:VCARD
VERSION:2.1
N:Farrell;Gabriel
FN:Farrell,Gabriel
EMAIL;PREF;INTERNET:[EMAIL PROTECTED]
REV:20060823T140818Z
END:VCARD
-
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.php&p=sourceforge&CID=DEVDEV___
DSpace-tech mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Google Summer of Code projects

2007-04-13 Thread Robert Tansley
Folks,

The Google Summer of Code student projects for DSpace have been confirmed!

We had 19 student applications to work on DSpace projects.  We wish we
could accept all of them, but we had to limit the number of projects
to 5.

The successful student applicants and projects are listed here:

http://code.google.com/soc/dspace/about.html

Congratulations to the successful students, and many thanks to all
applicants, we hope you'll try again next year!

Rob

-
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.php&p=sourceforge&CID=DEVDEV
___
DSpace-tech mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Accents

2007-04-13 Thread jgarbarino
Mensaje escrito por:  James Rutherford <[EMAIL PROTECTED]>:

> On Fri, Apr 13, 2007 at 09:10:35AM -0300, [EMAIL PROTECTED] wrote:
>> I had the same problem, you should try what Lucía said, if that
>> doesn't work you can make a "search and replace" with any editor like
>> this:
>>
>> á --> á
>> é --> é
>> í --> í
>> ó --> ó
>> ú --> ú
>> ñ --> ñ
>
> This kind of approach, although effective, isn't a Good Idea. The
> content you store in DSpace shouldn't be specific to any particular
> presentation (in this case HTML). If you're having trouble making
> accented characters display correctly, then I'm sure there are people
> who have made it work cleanly who can help you out :)
>
> cheers,
>
> 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".
>


You are right, what I wrote was just for the messages.properties not  
content stored, sorry I wasn't clear

Juan Pablo






---
   Centro de Telemática - UNL
   Pje. Martinez 2652 - S3002AAB Santa Fe - Argentina
tel +54(342)455-4245 - FAX +54(342)457-1240


-
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.php&p=sourceforge&CID=DEVDEV
___
DSpace-tech mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Accents

2007-04-13 Thread James Rutherford
On Fri, Apr 13, 2007 at 09:10:35AM -0300, [EMAIL PROTECTED] wrote:
> I had the same problem, you should try what Lucía said, if that  
> doesn't work you can make a "search and replace" with any editor like  
> this:
> 
> á --> á
> é --> é
> í --> í
> ó --> ó
> ú --> ú
> ñ --> ñ

This kind of approach, although effective, isn't a Good Idea. The
content you store in DSpace shouldn't be specific to any particular
presentation (in this case HTML). If you're having trouble making
accented characters display correctly, then I'm sure there are people
who have made it work cleanly who can help you out :)

cheers,

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.php&p=sourceforge&CID=DEVDEV
___
DSpace-tech mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Accents

2007-04-13 Thread jgarbarino

Hi,
I had the same problem, you should try what Lucía said, if that  
doesn't work you can make a "search and replace" with any editor like  
this:

á --> á
é --> é
í --> í
ó --> ó
ú --> ú
ñ --> ñ

Maybe this is not the right thing to do, but is the only thing that  
worked for me.
references:

http://www.htmlhelp.com/reference/html40/entities/latin1.html

good luck

Juan Pablo Garbarino

> Luis Jose,
>
> maybe you must convert your file from iso to utf8...
> Try this:
>
> iconv -f iso-8859-1 -t utf-8 entrada-iso.html -o salida-utf.html
>
> or in vi editor while you're editing:
>
> :set fileencoding=utf-8
>
> Lucía
>
> luis jose miralls wrote:
>> Hi,
>>
>> Just a little thing.
>> I can't see the accents in my dspace aplication.
>>
>> When I write "Botón" on Messages propieties then i read "Bot??n"
>>
>> Thanks a million.
>>
>>
>> 
>>
>> -
>> 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.php&p=sourceforge&CID=DEVDEV
>>
>>
>> 
>>
>> ___
>> DSpace-tech mailing list
>> [EMAIL PROTECTED]
>> https://lists.sourceforge.net/lists/listinfo/dspace-tech
>
> -
> 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.php&p=sourceforge&CID=DEVDEV
> ___
> DSpace-tech mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/dspace-tech
>





---
   Centro de Telemática - UNL
   Pje. Martinez 2652 - S3002AAB Santa Fe - Argentina
tel +54(342)455-4245 - FAX +54(342)457-1240


-
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.php&p=sourceforge&CID=DEVDEV
___
DSpace-tech mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dspace-tech