Re: [Dspace-tech] Email notification to existing specified users only

2013-06-17 Thread LifeH2O
I want to select dc.contributor.author in input forms (submission form) from
existing EPersons only. How do I do that?



--
View this message in context: 
http://dspace.2283337.n4.nabble.com/Email-notification-to-existing-specified-users-only-tp4664880p4664978.html
Sent from the DSpace - Tech mailing list archive at Nabble.com.

--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


Re: [Dspace-tech] Email notification to existing specified users only

2013-06-17 Thread helix84
Hi LifeH2O,

perhaps you could try asking these question again at dspace-devel,
maybe you'll get an answer there.

On Mon, Jun 17, 2013 at 12:08 PM, LifeH2O life...@gmail.com wrote:
 I want to select dc.contributor.author in input forms (submission form) from
 existing EPersons only. How do I do that?

I'm afraid you can't. DSpace currently has no ties between epersons
and authors. There aren't even proper objects for authors, authors are
only strings in metadata. The only thing that binds a single author in
multiple items is an optional authority identifier. I think this is
something that would be much appreciated if you're willing to work on
it.


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


Re: [Dspace-tech] Email notification to existing specified users only

2013-06-17 Thread LifeH2O
Ok. Then is it possible to select authors from all existing
dc.contributor.author ?
User can always enter incorrect name for dc.contributor.author,
dc.contributor.advisor etc. We want name to be suggested from existing
metadata elements.

I have seen choice authority system but unable to make it work like my
understanding.
I'll ask it on dspace-devel if you still cannot help.



--
View this message in context: 
http://dspace.2283337.n4.nabble.com/Email-notification-to-existing-specified-users-only-tp4664880p4664986.html
Sent from the DSpace - Tech mailing list archive at Nabble.com.

--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


Re: [Dspace-tech] Email notification to existing specified users only

2013-06-17 Thread helix84
On Mon, Jun 17, 2013 at 2:00 PM, LifeH2O life...@gmail.com wrote:
 Ok. Then is it possible to select authors from all existing
 dc.contributor.author ?
 User can always enter incorrect name for dc.contributor.author,
 dc.contributor.advisor etc. We want name to be suggested from existing
 metadata elements.

You could try something like this:

SELECT *FROM metadatavalueWHERE metadata_field_id IN (
  SELECT metadata_field_id
  FROM metadatafieldregistry
  WHERE element = 'contributor'
  AND qualifier = 'author')

Notice the text_value column, that's where the strings are. When using
authority control, the authority identifier will be in the authority column
and there will also be a confidence value.

 I have seen choice authority system but unable to make it work like my
 understanding.
 I'll ask it on dspace-devel if you still cannot help.

IMHO, the authority system is currently the best way to make the connection
between epersons and authors (because of the lack of an author object).
What kind of problem did you have with making it work?


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette
--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] Email notification to existing specified users only

2013-06-17 Thread Konstantinos Stamatis
Dear LifeH2O

As helix mentioned, this is not possible in DSpace.

To give you a hint on how you can implement it, you need to create a new
type of input control for the submission form, which will make ajax requests
upon completion to a new servlet that will be responsible to answer such
requests with an XML or JSON, depending on the autocomplete control that you
will be using. In this servlet you can search (and return) all metadata
values of a specific field, or all epersons as you mentioned or whatever.


Regards,

Kostas



-Original Message-
From: LifeH2O [mailto:life...@gmail.com] 
Sent: Monday, June 17, 2013 3:01 PM
To: dspace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Email notification to existing specified users
only

Ok. Then is it possible to select authors from all existing
dc.contributor.author ?
User can always enter incorrect name for dc.contributor.author,
dc.contributor.advisor etc. We want name to be suggested from existing
metadata elements.

I have seen choice authority system but unable to make it work like my
understanding.
I'll ask it on dspace-devel if you still cannot help.



--
View this message in context:
http://dspace.2283337.n4.nabble.com/Email-notification-to-existing-specified
-users-only-tp4664880p4664986.html
Sent from the DSpace - Tech mailing list archive at Nabble.com.


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette:
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


Re: [Dspace-tech] Email notification to existing specified users only

2013-06-17 Thread helix84
On Mon, Jun 17, 2013 at 2:24 PM, Konstantinos Stamatis kstama...@ekt.gr wrote:
 To give you a hint on how you can implement it, you need to create a new
 type of input control for the submission form, which will make ajax requests
 upon completion to a new servlet that will be responsible to answer such
 requests with an XML or JSON, depending on the autocomplete control that you
 will be using. In this servlet you can search (and return) all metadata
 values of a specific field, or all epersons as you mentioned or whatever.

There would also need to be a server-side component in the submission
step that would verify the input once again to prevent any manual
changes to the form variables (bypassing JavaScript).


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


[Dspace-tech] Email notification to existing specified users only

2013-06-13 Thread LifeH2O
We are making system for university. When a student submits his report with
adviser and co-adviser names, only the adviser/co-adviser should be notified
by email to accept/reject/edit submission.

What we want is that while submitting advisor should be selected in drop
down (or suggested while typing). So only the advisors who already exist in
the system can be selected. When item submission completes only those
selected advisors should be emailed. Not the whole group in workflow who can
accept/reject.


It looks like *choice authority plugin, *is made for this job, how should we
configure it for this kind of use?



--
View this message in context: 
http://dspace.2283337.n4.nabble.com/Email-notification-to-existing-specified-users-only-tp4664880.html
Sent from the DSpace - Tech mailing list archive at Nabble.com.

--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


[Dspace-tech] Email notification for RSS

2012-10-31 Thread Lewatle Phaladi
Hi All

Please advise, I would like to have email notification on RSS feeds, when new 
item is loaded and I have subscribed to that feeds I would like to receive 
email notification about newly loaded item or any update, just to have 
interactive RSS. Any idea is appreciated as always.

Regards,
Lewatle



htmlpfont face = verdana size = 0.8 color = navyThis communication 
is intended for the addressee only. It is confidential. If you have received 
this communication in error, please notify us immediately and destroy the 
original message. You may not copy or disseminate this communication without 
the permission of the University. Only authorized signatories are competent to 
enter into agreements on behalf of the University and recipients are thus 
advised that the content of this message may not be legally binding on the 
University and may contain the personal views and opinions of the author, which 
are not necessarily the views and opinions of The University of the 
Witwatersrand, Johannesburg. All agreements between the University and 
outsiders are subject to South African Law unless the University agrees in 
writing to the contrary./font/p/html
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Email notification for RSS

2012-10-31 Thread helix84
On Wed, Oct 31, 2012 at 8:20 AM, Lewatle Phaladi
lewatle.phal...@wits.ac.za wrote:
 Please advise, I would like to have email notification on RSS feeds, when
 new item is loaded and I have subscribed to that feeds I would like to
 receive email notification about newly loaded item or any update, just to
 have interactive RSS. Any idea is appreciated as always.

Hi Lewatle,

you're mixing 2 distinct notification features here:

1) There's RSS, which works best with a specialized application called
RSS reader; this has nothing to do with email at all.

2) There are subscriptions, which are sent by email. As administrator,
you have to have SMTP properly configured in DSpace. As the
subscribing user, you should select a collection/community you wish to
subscribe to.


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Email notification for RSS

2012-10-31 Thread helix84
On Wed, Oct 31, 2012 at 10:53 AM, helix84 heli...@centrum.sk wrote:
 2) There are subscriptions, which are sent by email. As administrator,
 you have to have SMTP properly configured in DSpace.

You also have to set up a cron task to send these emails periodically.
Here's an example of a cron entry to send it daily:

0 1 * * * /dspace/bin/dspace sub-daily


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Email notification

2012-07-05 Thread Miguel Angel Robledo
Hi,

Is possibleconfigure the mail notifications to send mailsonly to set 
passwords and remove the mail notifications about deposit.

I tested by setting the following

mail.server.disabled = true

But I need send the mail to register a user.

-- 
Ing. Miguel Angel Robledo


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] email notification

2010-02-04 Thread Sergiu Ioan Irimia
Hello. I'm using Dspace 1.5.2. Manakin/xmlui on windows server 2003.My problem 
is that we do not want to use handle server. So far I've managed to change all 
the links that bothered me including http://handle.net/ manually, but I'm 
stuck at a link generated by the system in the email send to confirm the 
acceptance of a submission. 
Here is the message:You submitted: fasdf

To collection: 1.2. .

Your submission has been accepted and archived in ,
and it has been assigned the following identifier:
http://hdl.handle.net/123456789/116

Please use this identifier or the URL address when citing your submission.

Many thanks!

I would like to change the identifier received in this mail from 
http://hdl.handle.net/123456789/116 to http://[my site]/123456789/116, 
preferably without recompiling dspace. I've tried to resolve the problem but no 
luck. Any help is highly appreciated.  


  --
The Planet: dedicated and managed hosting, cloud storage, colocation
Stay online with enterprise data centers and the best network in the business
Choose flexible plans and management services without long-term contracts
Personal 24x7 support from experience hosting pros just a phone call away.
http://p.sf.net/sfu/theplanet-com___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech