1 / 29

DIY Suggestion Box

DIY Suggestion Box. Glen Parker System Administrator University of South Florida. 10000ft. Demo Dissection Discussion. Overview. bb-manifest file entry points & permissions config file, data storage sending email bbUI:list. Overview (again). bb-manifest file

aelwen
Download Presentation

DIY Suggestion Box

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. DIY Suggestion Box • Glen Parker • System Administrator • University of South Florida

  2. 10000ft • Demo • Dissection • Discussion

  3. Overview • bb-manifest file • entry points & permissions • config file, data storage • sending email • bbUI:list

  4. Overview (again) • bb-manifest file • entry points & permissions • config file, data storage • sending email • bbUI:list

  5. bb-manifest.xml <module-type ext-ref="suggestions" title="Suggestions for new Blackboard Features" uicreatable="false"> <jsp-dir>module</jsp-dir> <jsp> <view>view.jsp</view> </jsp> </module-type>

  6. bb-manifest.xml <module type="suggestions" useraddable="false" isadmin="true" isdeletable="true" isdetachable="true" title="Suggestions for new Blackboard Features ">... </module>

  7. bb-manifest.xml <application handle="suggestions" type="shared" ...> <link> <type value="tool"/> <type value="course_tool"/> <type value="system_tool"/> </link> Blackboard_Building_Blocks_Developer_Guide_for_Release_8.pdf

  8. bb-manifest.xml “attribute” name=user.authinfo actions=get “attribute” name=user.personalinfo actions=get “socket” name=* actions=connect,resolve

  9. Overview (again) • bb-manifest file • integration points & permissions • config file, data storage • sending email • bbUI, bbNG • bbUI:list

  10. config files usf-suggestions/ |---config/ |---custom.properties |---data/ |---webapps |---WEB-INF/ |---module/ |---........

  11. config files File dir = blackboard.platform.plugin.PlugInUtil. getConfigDirectory("usf","suggestions"); dir = /usr/local/blackboard/.../plugins/usf-suggestions/config/ File cfg = new File(dir,"custom.properties");

  12. data storage SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss"); Date mydate = new Date(); String filename = sdf.format(mydate) + ".txt"; example data file: 20090716170000.txt

  13. Overview (again) • bb-manifest file • integration points & permissions • config file, data storage • sending email • bbUI, bbNG • bbUI:list

  14. sending email Properties Session MimeMessage InternetAddress Transport.send();

  15. Overview (again) • bb-manifest file • integration points & permissions • config file, data storage • sending email • bbUI • bbUI:list

  16. bbUI / bbNG public RequestRecord(String netid, String email, String fname, String lname, String phone, ..... String file) requestList.add(rec);

  17. bbUI / bbNG <bbUI:list collection="<%=requestList %>" objectId="ud"> <bbUI:listElement label="Full Name" name="Full Name" comparator="<%= cmSortByLastName %>"> <%=ud.getFullName() %> </bbUI:listElement>

  18. Questions Glen Parker glparker@usf.edu Slides & Notes http://presentation.glenparker.net Also on http://edugarage.com

More Related