Re: [Dspace-tech] How to configure port number for DSpace

2007-05-10 Thread Richard Jones

 In your DSpace source directory edit the file src\org\dspace\core\Email.java
 
 At line 258 in that file, insert a new line:
 props.put(mail.smtp.port, 587);
 
 Note, this line should be right below a line that says: 
 props.put(mail.smtp.host, server);
 
 Rebuild your DSpace and you should be good to go

While you're doing that, if you want to actually add:

int portNo = ConfigurationManager.getIntProperty(mail.server.port);
if (portNo == -1)
{
   portNo = 25;
}
props.put(mail.smtp.port, portNo);

Add mail.server.port to dspace.cfg, check it works ok, and submit it as 
a patch that would be grand!

Cheers,

Richard

 At / À 07:32 AM 09/05/2007, thirunavukarasu selvam wrote / a écrit:
 
 Hi Kyle,

 Ya  You are right.
 I need the DSpace to connect to a mail server using port  587 for  SMTP.

 Thank you
 Thiru..

 -
 This SF.net email is sponsored by DB2 Express
 Download DB2 Express C - the FREE version of DB2 express and take
 control of your XML. No limits. Just data. Click to get it now.
 http://sourceforge.net/powerbar/db2/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 
 
 -
 This SF.net email is sponsored by DB2 Express
 Download DB2 Express C - the FREE version of DB2 express and take
 control of your XML. No limits. Just data. Click to get it now.
 http://sourceforge.net/powerbar/db2/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech


-- 
Richard

Richard Jones| t: +44 (0)20 759 [48614 / 41815]
Web  Database   | e: [EMAIL PROTECTED]
   Technology Specialist  | b: http://chronicles-of-richard.blogspot.com/
Imperial College London  |


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] 'node id' in controlled vocabulary .xml file ?

2007-05-10 Thread Andres Quast
Hi Mike,

 
 Looking at the .xsl file, I don't think the node id attribute is used
 in any way.

you're right with this. It was a long time ago, I've thought about the 
rendering by the stylesheet. If you wish to use the node id attribute for 
searching you may try the way I've attached.

Andres
-- 
Dr. Andres Quast
Virtual Library GEO-LEO
Staats- und Universitätsbibliothek Göttingen
Platz der Göttinger Sieben 1
37070 Göttingen

email: [EMAIL PROTECTED]
tel: +49 551-39 4255
http://www.geo-leo.org
vocabulary2html.xsl
Snipped:

input class=controlledvocabulary type=checkbox name={$checkBoxName} 
value={$nodePath}/

:Snipped

has to be changed somehow like:

Snipped:

input class=controlledVocabulary type=checkbox name={$checkBoxName}
xsl:attribute name=valuexsl:value-of select=@id//xsl:attribute
/input

:Snipped

Now you searches for the node id content.  But if you do so, you also have to 
configure the submission workflow making sure that the node id attribute will 
be stored in a dc:subject -field

Therefore change this within the controlledvocabulary.jsp

Snipped:
while(node != null) {
if(firstNode == 1) {
resultPath = getTextValue(node);
firstNode = 0;
} else {
resultPath = getTextValue(node) + pathSeparator 
+ resultPath;
}
node = getParentTextNode(node);
}

:Snipped

to

Snipped:

resultPath = getTextValue(node);

:Snipped


and then you have to make another change within the xsl-Stylesheet:

Snipped:

xsl:otherwise
a class=value onClick=javascript: i(this); href=javascript:void(null);
xsl:value-of select=@label/
/a
/xsl:otherwise

:Snipped

to 

Snipped:

xsl:otherwise
a class=value onClick=javascript: i(this); href=javascript:void(null);
xsl:value-of select=@id/
/a
font color=black
(xsl:value-of select=@label/)/font
/xsl:otherwise

:Snipped


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Handle

2007-05-10 Thread luis jose miralls

Hello:

My name is Luis and i am installing DSpace in my University (Spain).
We are doing an installation like the University of Barcelona.

We would like to make a repository for tesis, another for E-prints,
and another for magazines. We would like to create two repositories
for e-documents too.

Those repositories are all indexed by another one.

We have 5 repositories but i only want to pay one handle server.
Is that possible ?

If it is not possible i would have to think other solution.
I would like you to answer me if it is possible?

Thank you very much.
-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] DSpace 1.4.2 released

2007-05-10 Thread James Rutherford
Dear All,

The DSpace community is pleased to announce the release of DSpace 1.4.2!
Thanks to everyone who downloaded and tested the beta release.

This is primarily a bug fix release incorporating numerous bug fixes and
enhancements. Refer to the CHANGES file within the distribution for the
full list of enhancements, alternatively check here:
http://wiki.dspace.org/CurrentReleaseToDo

There was only bug introduced in the beta release, and that has been
addressed in this release. All DSpace users are encouraged to update to
this 1.4.2.

The documentation for this release is bundled within the package.

DSpace 1.4.2 can be downloaded from the files area at
http://sourceforge.net/projects/dspace/ or with SVN from
tags/dspace-1_4_2.

Please use the mailing lists to provide feedback on this release.

Those wishing to do development work with DSpace are strongly encouraged
to obtain the source code using SubVersion. This is very straightforward
and a guide to doing this is available here:
http://wiki.dspace.org/ContributionGuidelines

We would also like to take this opportunity to invite you all to take
part in the DSpace development process. Extra developer hands are always
welcome, but there are other ways you can help:

- Test the system and report bugs
- Provide documentation (for end users and institutions, as well as 
  technical)
- Provide or update language packs
- Share your deployment experiences
- Donate content and metadata for testing and research
- Share your technical experience and ideas

Please visit the DSpace Wiki to see the various resources and
collaboration tools available to the DSpace community:
http://wiki.dspace.org/DspaceResources

Regards,

The DSpace Committer Group

-- 
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.

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech