Changes between Version 14 and Version 15 of ITC 371 Project Management


Ignore:
Timestamp:
12/04/13 19:43:44 (11 years ago)
Author:
FightingMongooses
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ITC 371 Project Management

    v14 v15  
    1313
    1414== 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.
     15This 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.
    1616
    1717Example:  [[http://www.web2py.com/books/default/chapter/29/06/the-database-abstraction-layer]]
     
    2323
    2424
    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.
     25Email 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.
    2626
    2727Example:  [[http://www.web2py.com/book/default/chapter/08]]
    2828
    2929
    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. 
     30SMS 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. 
    3131
    3232Example:  [[http://web2py.com/books/default/chapter/37/08/emails-e-sms-todo]]
    3333
    3434
    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.
     35Twitter 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.
    3636
    3737Example:  [[http://www.web2py.com/book/default/chapter/14#Twitter-API]]