diff -r 307f699e6102 -r 59107ce0a618 taskapp/utilities/notification.py --- a/taskapp/utilities/notification.py Wed Jan 05 18:52:48 2011 +0530 +++ b/taskapp/utilities/notification.py Wed Jan 05 22:22:10 2011 +0530 @@ -9,12 +9,12 @@ sent_to: a user to which the notification is to be sent sent_from : a user from which the message has originated A user who approves/rejects in case of request - A mentor who closes/complets the task + A reviewer who closes/complets the task reply: A boolean task: a task if applicable requested_by: a user makes the request - A mentor who assigns credits in case of pynts - A mentor who requests to act as a mentor + A reviewer who assigns credits in case of pynts + A reviewer who requests to act as a reviewer remarks: any remarks for rejecting receiving_user: user receiving pynts pynts: the obvious @@ -33,18 +33,18 @@ task_url= '%s'%(task.id, task.title) credits_url = '%s'%(task.id, "click here") - mentor_url = '%s'%(requested_by.id, requested_by.username) + reviewer_url = '%s'%(requested_by.id, requested_by.username) admin_url = '%s'%(sent_from.id, sent_from.username) user_url = '%s'%(receiving_user.id, receiving_user.username) if reply: notification.sub = "Approved request for assign of credits for %s"%task.title[:20] notification.message = """ Request made by %s to assign %s pynts to %s for the task %s has been approved by %s
- %s if you want the view/assign pynts page of the task.
"""%(mentor_url, pynts, user_url, task_url, admin_url, credits_url) + %s if you want the view/assign pynts page of the task.
"""%(reviewer_url, pynts, user_url, task_url, admin_url, credits_url) else: notification.sub = "Rejected request for assign of credits for %s"%task.title[:20] - notification.message = """ Request made by %s to assign %s pynts to %s for the task %s has been rejected by %s.
"""%(mentor_url, pynts, user_url, task_url, admin_url) + notification.message = """ Request made by %s to assign %s pynts to %s for the task %s has been rejected by %s.
"""%(reviewer_url, pynts, user_url, task_url, admin_url) if remarks: notification.remarks = remarks notification.message += "Reason: %s
"%remarks @@ -56,18 +56,18 @@ notification.sent_from = sent_from task_url= '%s'%(task.id, task.title) - requested_mentor_url = '%s'%(requested_by.id, requested_by.username) - new_mentor = sent_from - new_mentor_url = '%s'%(new_mentor.id, new_mentor.username) + requested_reviewer_url = '%s'%(requested_by.id, requested_by.username) + new_reviewer = sent_from + new_reviewer_url = '%s'%(new_reviewer.id, new_reviewer.username) if reply: - notification.sub = "New mentor for the task %s"%task.title[:20] - notification.message = "%s has accepted the request made by %s, asking him act as a mentor for the task %s
"%(new_mentor_url, requested_mentor_url, task_url) - notification.message += "He can be contacted on %s"%new_mentor.email + notification.sub = "New reviewer for the task %s"%task.title[:20] + notification.message = "%s has accepted the request made by %s, asking him act as a reviewer for the task %s
"%(new_reviewer_url, requested_reviewer_url, task_url) + notification.message += "He can be contacted on %s"%new_reviewer.email else: - notification.sub = "%s rejected request to act as a mentor"%new_mentor.username - notification.message = "%s has rejected your request asking him to act as a mentor for %s.
"%(new_mentor_url, task_url) + notification.sub = "%s rejected request to act as a reviewer"%new_reviewer.username + notification.message = "%s has rejected your request asking him to act as a reviewer for %s.
"%(new_reviewer_url, task_url) if remarks: notification.remarks = remarks notification.message += "Remarks: %s
"%remarks @@ -95,16 +95,16 @@ elif role == "NT": notification.task = task - new_mentor = sent_to - mentor_learn_url = 'learn more' + new_reviewer = sent_to + reviewer_learn_url = 'learn more' task_url= '%s'%(task.id, task.title) - notification.sub = "You are mentoring the task %s"%task.title[:20] - notification.message = "You have accepted to act as a mentor%s for the task %s.
"%(mentor_learn_url, task_url) - notification.message += " Here is a list of other mentors and their email addresses.

" - notification.message += "Happy Mentoring." + notification.message += "Happy Reviewering." elif role == "NU": @@ -150,17 +150,17 @@ notification.task = task notification.remarks = remarks - mentor = sent_from - mentor_url = '%s'%(mentor.id, mentor.username) + reviewer = sent_from + reviewer_url = '%s'%(reviewer.id, reviewer.username) task_url= '%s'%(task.id, task.title) if role == "CM": notification.sub = "%s has been marked complete"%task.title - notification.message = "The task %s has been marked complete by %s.
"%(task_url, mentor_url) + notification.message = "The task %s has been marked complete by %s.
"%(task_url, reviewer_url) elif role == "CD": notification.sub = "%s has been closed"%task.title - notification.message = "The task %s has been closed by %s.
"%(task_url, mentor_url) + notification.message = "The task %s has been closed by %s.
"%(task_url, reviewer_url) if remarks: notification.remarks = remarks @@ -171,17 +171,17 @@ notification.task = task notification.sent_from = sent_from added_user = sent_to - mentor = sent_from - assigned_by_url = '%s'%(mentor.id, mentor.username) + reviewer = sent_from + assigned_by_url = '%s'%(reviewer.id, reviewer.username) task_url= '%s'%(task.id, task.title) notification.sub = "Your claim for the task %s accepted."%task.title[:20] notification.message = "You have been selected to work on the task %s by %s.
"%(task_url, assigned_by_url) - notification.message += "You can now start working on the task and will be credited by the mentors for your work.
" + notification.message += "You can now start working on the task and will be credited by the reviewers for your work.
" - notification.message += " Here is a list of mentors for the task and their email addresses.