Changes between Version 14 and Version 15 of ITC 371 Project Management
- Timestamp:
- 12/04/13 19:43:44 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ITC 371 Project Management
v14 v15 13 13 14 14 == Requirements == 15 This project is to be completed in Web2py. Web2py provides all of the functionality of an SQL database through a Database Abstraction Layer, so constructing a relational database within the existing system would present no problem. This provides the functionality for a "many to many" relationship between incidents and resources or resource pools.15 This project is to be completed in web2py. web2py provides all of the functionality of an SQL database through a Database Abstraction Layer, so constructing a relational database within the existing system would present no problem. This provides the functionality for a "many to many" relationship between incidents and resources or resource pools. 16 16 17 17 Example: [[http://www.web2py.com/books/default/chapter/29/06/the-database-abstraction-layer]] … … 23 23 24 24 25 Email notification is also possible within Web2py. It requires that settings, similar to those you would configure when setting up an email client, be configured within the code. This allows the client application to connect to an SMTP server to send email notifications to users.25 Email notification is also possible within web2py. It requires that settings, similar to those you would configure when setting up an email client, be configured within the code. This allows the client application to connect to an SMTP server to send email notifications to users. We recommend the utilization of the SMTPS protocol for secure delivery. 26 26 27 27 Example: [[http://www.web2py.com/book/default/chapter/08]] 28 28 29 29 30 SMS notification to resource cell phones is possible through Web2py. It does require the utilization of an SMSC proxy. The data is encrypted for secure transmission across the Internet with the use of an X.509 certificate.30 SMS notification to resource cell phones is possible through web2py. It does require the utilization of an SMSC proxy. The data is encrypted for secure transmission across the Internet with the use of an X.509 certificate. 31 31 32 32 Example: [[http://web2py.com/books/default/chapter/37/08/emails-e-sms-todo]] 33 33 34 34 35 Twitter notification is also possible for notification within Web2py. There is a constraint with Twitter notifications. Although the notifications can be sent across Twitter, the tweets will still be constrained to the 140 character limit. This would require that the subject and incident number only be included within the notification, and the user would have to use an alternative method to acquire the full incident description. As such, this aspect of the notification module could provide notification only. It would require further intervention from the resource receiving the message.35 Twitter notification is also possible for notification within web2py. There is a constraint with Twitter notifications. Although the notifications can be sent across Twitter, the tweets will still be constrained to the 140 character limit. This would require that the subject and incident number only be included within the notification, and the user would have to use an alternative method to acquire the full incident description. As such, this aspect of the notification module could provide notification only. It would require further intervention from the resource receiving the message. 36 36 37 37 Example: [[http://www.web2py.com/book/default/chapter/14#Twitter-API]]