Ce diaporama a bien été signalé.
Le téléchargement de votre SlideShare est en cours. ×

CTS Conference Web 2.0 Tutorial Part 2

Publicité
Publicité
Publicité
Publicité
Publicité
Publicité
Publicité
Publicité
Publicité
Publicité
Publicité
Publicité
Chargement dans…3
×

Consultez-les par la suite

1 sur 122 Publicité

Plus De Contenu Connexe

Diaporamas pour vous (20)

Publicité

Similaire à CTS Conference Web 2.0 Tutorial Part 2 (20)

Plus par Geoffrey Fox (20)

Publicité

Plus récents (20)

CTS Conference Web 2.0 Tutorial Part 2

  1. 1. Marlon Pierce, Geoffrey Fox Community Grids Lab Indiana University
  2. 2. Acknowledgements <ul><li>The following people helped create the slides and material for this presentation: </li></ul><ul><ul><li>Siddharth Maini </li></ul></ul><ul><ul><li>Joshua Rosen </li></ul></ul><ul><ul><li>Huapeng Yuan </li></ul></ul><ul><ul><li>Yu Deng </li></ul></ul><ul><ul><li>Fatih Mustacoglu </li></ul></ul>
  3. 3. We discuss the impact of Web 2.0 on e-Science, Cyberinfrastructure, and Grids
  4. 4. Rich Client Interfaces <ul><li>Concept of rich and interactive user interfaces that are locally deployed to the client machine </li></ul><ul><li>Designed to increase the usability of the interface </li></ul><ul><li>Increases the actual User Experience </li></ul>Source: http://www.vw.com/
  5. 5. AJAX <ul><li>Stands for Asynchronous JavaScript + XML </li></ul><ul><li>Ajax is not a technology but a combination of: </li></ul><ul><ul><li>Standards-based presentation using XHTML and CSS </li></ul></ul><ul><ul><li>Dynamic update and display content using DOM (Document Object Model) </li></ul></ul><ul><ul><li>Data communication using XMLHttpRequest </li></ul></ul><ul><ul><li>Asynchronous JavaScript </li></ul></ul><ul><li>Being Asynchronous in nature </li></ul><ul><ul><li>Make requests to the server without a page refresh. </li></ul></ul><ul><ul><li>Parse and work with XML documents </li></ul></ul><ul><li>Extensively used by Google. E.g. Google Suggest </li></ul><ul><li>Used to developed a variety of Web Applications </li></ul><ul><li>Web page can communicate with web server online as user enters data into an HTML form </li></ul>Source: http://www.google.com/webhp?complete=1&hl=en
  6. 6. <ul><li><script type=&quot;text/javascript&quot; language=&quot;javascript&quot;> </li></ul><ul><li>var http_request ; </li></ul><ul><li>function makeRequest(url) { </li></ul><ul><li>if (window.XMLHttpRequest) { // For Mozilla, Safari </li></ul><ul><li>http_request = new XMLHttpRequest(); </li></ul><ul><li>} else if (window.ActiveXObject) { // For IE </li></ul><ul><li>http_request = new ActiveXObject(&quot;Msxml2.XMLHTTP&quot;); </li></ul><ul><li>} </li></ul><ul><li>http_request.onreadystatechange = alertContents; </li></ul><ul><li>http_request.open('GET', url, true); </li></ul><ul><li>http_request.send(null); </li></ul><ul><li> function alertContents() { </li></ul><ul><li>if (http_request.readyState == 4) { </li></ul><ul><li> if (http_request.status == 200) { </li></ul><ul><li>alert(http_request.responseText); </li></ul><ul><li>} else { alert('There was a problem with the request.'); } </li></ul><ul><li> } </li></ul><ul><li>} </script> </li></ul><ul><li><span style=&quot;cursor: pointer; text-decoration: underline;&quot; onclick=&quot;makeRequest('test.html')&quot;> </li></ul><ul><li>Make a request </li></ul><ul><li></span> </li></ul>Make an HTTP request using XMLHttpRequest class Provide HTTP request object the name of JavaScript object which will process the response using onreadystatechange property Once the state of request AND status code of server response is checked, we can process the data User makes the request in browser
  7. 7. Output <ul><li>User clicks the link “Make a Request in the Browser” </li></ul><ul><li>This calls the makerequest(“test.html”) with test.html in the same directory </li></ul><ul><li>Request is made and then ( onreadystatechange) execution is passed to alertContents() </li></ul><ul><li>alertContents() verifies the response received and then alert()s the content of test.html file (as part of processing the data) </li></ul>
  8. 8. Limits of AJAX <ul><li>XMLHttpRequest object lets JavaScript make GET, POST and other types of HTTP requests </li></ul><ul><li>But as a security feature you cannot call third party domains through latest web browsers </li></ul><ul><ul><li>Exception IE 5 and 6 only under low security settings </li></ul></ul><ul><li>You can only make requests back to the original server/hostname </li></ul><ul><li>Solution: Some hacks/methods </li></ul><ul><ul><ul><li>Application proxies </li></ul></ul></ul><ul><ul><ul><li>Apache Proxy </li></ul></ul></ul><ul><ul><ul><li>JSON </li></ul></ul></ul>
  9. 9. <ul><li>Called as a “fat-free-alternative” to XML and a serialized JavaScript Object </li></ul><ul><li>It is an ultra-simple lightweight data interchange format </li></ul><ul><li>Based on subset of JavaScript syntax, array and object literals </li></ul><ul><li>Supported as an alternative output format by many Web 2.0 Services </li></ul><ul><ul><li>All Yahoo APIs, Google Maps, Del.icio.us, etc. </li></ul></ul><ul><li>Extremely fast and powerful </li></ul><ul><li>Built-in support in Browsers </li></ul>JSON: JavaScript Object Notation
  10. 10. JSON, Continued <ul><li>Can make cross-domain requests unlike AJAX which uses XMLHttpRequest </li></ul><ul><ul><li>To make cross-domain requests, just dynamically create your script tags using the DOM </li></ul></ul><ul><ul><li>Make web services requests using the dynamic script tag request, and </li></ul></ul><ul><ul><li>Web service lets you specify a JavaScript callback function </li></ul></ul><ul><ul><li>For more info: http://www.xml.com/pub/a/2005/12/21/json-dynamic-script-tag.html </li></ul></ul><ul><li>Much simpler than XML </li></ul><ul><li>Mostly used in Ajax web application development </li></ul><ul><li>CSS can also be expressed in JSON ( http://www.featureblend.com/css-json.html ) </li></ul><ul><li>JavaScript's eval() method to convert the string into a real JavaScript object </li></ul><ul><ul><li>Var data = eval('(' + req.responseText + ')'); </li></ul></ul>
  11. 11. JSON Example Defining Arrays in JavaScript JSON Syntax CSS JSON CSS Structure
  12. 12. XML -> JSON <ul><li>XML can be converted to reversible JSON if: </li></ul><ul><ul><li>all subelements names occur exactly once, or … </li></ul></ul><ul><ul><li>Subelements with identical names are in sequence. </li></ul></ul><ul><li>XML can be converted to irreversible JSON if: </li></ul><ul><ul><li>Sub elements are not unique </li></ul></ul><ul><ul><li>Element order doesn’t matter </li></ul></ul>Source : Goessner , Stephen. &quot;XML.com: Converting Between XML and JSON.&quot; XML.com . 31 May 2006. O'REILLY. 16 May 2007 <http://www.xml.com/pub/a/2006/05/31/converting-between-xml-and-json.html?page=2>.
  13. 13. JSON Compared to XML Source: Zakas, Nicholas C., Jeremy McPeak, and Joe Fawcett. Professional AJAX. 1st ed. WROX Press, 2006. XML String JSON String <classinfo> <students> <student> <name>Michael Smith</name> <average>99.5</average> <age>17</age> <graduating>true</graduating> </student> <student> <name>Steve Johnson</name> <average>34.87</average> <age>17</age> <graduating>false</graduating> </students> </classinfo> { &quot;classinfo&quot; : { &quot;students&quot; : [ { &quot;name&quot; : &quot;Michael Smith&quot;, &quot;average&quot; : 99.5, &quot;age&quot; : 17, &quot;graduating&quot; : true }, { &quot;name&quot; : &quot;Steve Johnson&quot;, &quot;average&quot; : 34.87, &quot;age&quot; : 17, &quot;graduating&quot; : false } ] } } Information repeated repeatedly Information isn’t repeated More bytes needed to store the same information Less Bytes needed to store the same information Have to convert string into JavaScript using: var books = req.responseXML.getElementsByTagName(‘< element_name '); JavaScript's eval() method to convert the string into a real JavaScript object E.g. var data = eval('(' + req.responseText + ')');
  14. 14. JavaScript/AJAX/JSON Toolkits <ul><li>To make writing Web Sites or Web Applications easier to develop </li></ul><ul><li>GWT (Google Web Toolkit) </li></ul><ul><ul><li>http://code.google.com/webtoolkit/ </li></ul></ul><ul><li>YUI (Yahoo! User Interface Library) </li></ul><ul><ul><li>http://developer.yahoo.com/yui/ </li></ul></ul><ul><li>DWR </li></ul><ul><ul><li>http://getahead.org/dwr </li></ul></ul><ul><li>script.aculo.us </li></ul><ul><ul><li>http://script.aculo.us/ </li></ul></ul><ul><li>Prototype </li></ul><ul><ul><li>http://www.prototypejs.org/ </li></ul></ul>
  15. 15. GWT (Google Web Toolkit) <ul><li>Open source Java software development framework </li></ul><ul><li>Easier AJAX application development </li></ul><ul><ul><li>You write your front end in Java using any Java IDE available (e.g. Eclipse, JProfiler, JUnit, IntelliJ…) </li></ul></ul><ul><ul><li>GWT complier will automatically convert it into browser-complaint JavaScript and HTML </li></ul></ul><ul><ul><li>Confirm that the Web App. Runs successfully in each browser </li></ul></ul><ul><li>GWT Architecture </li></ul><ul><ul><li>GWT Java-to-JavaScript Compiler: Java-to-JavaScript compiler </li></ul></ul><ul><ul><li>GWT Hosted Web Browser: run and execute your GWT applications </li></ul></ul><ul><ul><li>JRE emulation library: contains JavaScript implementations of the most widely used classes in the Java standard class library. </li></ul></ul><ul><ul><li>GWT Web UI class library: set of custom interfaces and classes that let your create web browser &quot;widgets” with use of CSS </li></ul></ul>
  16. 16. Benefits of GWT <ul><li>Static type checking in the Java language boosts productivity while reducing errors. </li></ul><ul><li>Common JavaScript errors are easily caught at compile time rather than at runtime. </li></ul><ul><li>Code prompting/completion is widely available. </li></ul><ul><li>Java-based OO designs are easier to communicate and understand </li></ul><ul><li>Makes your AJAX code base more comprehensible with less documentation. </li></ul><ul><li>Use GWT’s set of User Interface (UI) to build UI elements making an AJAX application </li></ul>
  17. 17. More GWT Benefits <ul><li>Very low Compiler-generated JavaScript size (approx. 100K for a full GWT app.) </li></ul><ul><li>End-user performance: GWT apps are always as fast as hand-written JavaScript. </li></ul><ul><li>Development time: </li></ul><ul><ul><li>Very little debugging time </li></ul></ul><ul><ul><li>More time can be spent on application functionality </li></ul></ul><ul><li>Makes site more usable by adding “back button” functionality </li></ul><ul><li>Use of JavaScript Native Interface (JSNI) </li></ul><ul><li>Browser Interoperability </li></ul><ul><li>Internationalization: create internationalized libraries and apps. </li></ul>
  18. 18. GWT Example CODE <ul><li>package com.google.gwt.sample.kitchensink.client; </li></ul><ul><li>import com.google.gwt.core.client.EntryPoint; </li></ul><ul><li>import com.google.gwt.sample.kitchensink.client.Sink.SinkInfo; </li></ul><ul><li>import com.google.gwt.user.client.History; </li></ul><ul><li>import com.google.gwt.user.client.HistoryListener; </li></ul><ul><li>import com.google.gwt.user.client.ui.DockPanel; </li></ul><ul><li>import com.google.gwt.user.client.ui.HTML; </li></ul><ul><li>/** Application that demonstrates all of the built-in widgets. */ </li></ul><ul><li>public class KitchenSink implements EntryPoint, HistoryListener { </li></ul><ul><li>protected SinkList list = new SinkList(); </li></ul><ul><li>private SinkInfo curInfo; </li></ul><ul><li>private Sink curSink; </li></ul><ul><li>private HTML description = new HTML(); </li></ul><ul><li>private DockPanel panel = new DockPanel(); </li></ul><ul><li>private DockPanel sinkContainer; </li></ul>
  19. 19. GWT Example Source: http://code.google.com/webtoolkit/documentation/examples/kitchensink/
  20. 20. YUI (Yahoo! User Interface Library) <ul><li>Collection of JavaScript and CSS resources </li></ul><ul><li>Makes RIA (Rich Internet Applications) easier to build </li></ul><ul><li>Open source </li></ul><ul><li>Yahoo! User Interface Library components fall into three groups: </li></ul><ul><ul><li>Utilities </li></ul></ul><ul><ul><li>UI Controls , and </li></ul></ul><ul><ul><li>CSS resources </li></ul></ul><ul><li>“ Better documented than GWT” (Sidd’s personal opinion) </li></ul><ul><li>Can be used with Yahoo! Design Patterns Library to easily implement design patterns </li></ul>
  21. 21. Yahoo Components <ul><li>Utilities </li></ul><ul><ul><li>Animation : to Create &quot;cinematic effects” </li></ul></ul><ul><ul><li>Browser History Manager : just like GWT’s Back Button functionality </li></ul></ul><ul><ul><li>Connection Manager : to manage XMLHttpRequest transactions in a cross-browser fashion </li></ul></ul><ul><ul><li>Data Source Utility : to provide an interface for retrieving data </li></ul></ul><ul><ul><li>Dom Collection : </li></ul></ul><ul><ul><li>Drag & Drop : Create draggable objects that can be picked up and dropped elsewhere on the page </li></ul></ul><ul><ul><li>Event : gives you easy and safe access to browser events </li></ul></ul><ul><li>Controls </li></ul><ul><ul><li>AutoComplete : </li></ul></ul><ul><ul><li>Button Control </li></ul></ul><ul><ul><li>Calendar </li></ul></ul><ul><ul><li>DataTable Control </li></ul></ul><ul><ul><li>Logger : Provides easy way to write logs to an on-screen console </li></ul></ul><ul><ul><li>Menu </li></ul></ul><ul><ul><li>Slider </li></ul></ul><ul><ul><li>Tab View </li></ul></ul><ul><ul><li>Tree View </li></ul></ul><ul><li>CSS Resources </li></ul><ul><ul><li>CSS Grids </li></ul></ul><ul><ul><li>CSS Fonts </li></ul></ul><ul><ul><li>CSS Reset </li></ul></ul>
  22. 22. YUI ANIMATION Example http://developer.yahoo.com/yui/examples/animation/anim_basic.html
  23. 23. DWR (Direct Web Remoting) <ul><li>Java open source library </li></ul><ul><li>Allows writing AJAX web sites </li></ul><ul><li>Two Main parts: </li></ul><ul><ul><li>Java Servlet running on the server to process requests and sends responses back to the browser. </li></ul></ul><ul><ul><li>JavaScript running in the browser to send requests and can dynamically update the webpage. </li></ul></ul><ul><li>It dynamically generates JavaScript </li></ul><ul><ul><li>Feels like the execution is happening in the browser </li></ul></ul><ul><ul><li>But server is executing the code , and </li></ul></ul><ul><ul><li>DWR converts data back and forth using a callback function </li></ul></ul><ul><li>In the example above, DWR dynamically generates the AjaxService class </li></ul><ul><li>It then converts all parameters and return values between Java and JavaScript </li></ul>
  24. 24. DWR features <ul><li>Integrates with </li></ul><ul><ul><li>Spring, Struts, WebWork, JSF, Hibernate, Beehive </li></ul></ul><ul><li>Supported Environments and Application Servers </li></ul><ul><ul><li>Tomcat, Weblogic, Websphere, Jboss, Jetty, Resin, Sun ONE, Glashfish </li></ul></ul><ul><li>Ability to asynchronously send data from a web-server to a browser </li></ul>Source: http://getahead.org/dwr/integration
  25. 25. DWR Example (Wal-Mart) <ul><li>Wal-Mart uses the DWR technology in the “Quick View” </li></ul><ul><li>Clicking “Quick View” will pop-up a dialog with more details, fetched asynchronously using DWR. </li></ul>
  26. 26. Features - Script.aculo.us <ul><li>Features: </li></ul><ul><ul><li>Visual Effects Library: To add animation </li></ul></ul><ul><ul><li>Drag and Drop JavaScript Library: enables drag-and-drop of elements in your Web App. </li></ul></ul><ul><ul><li>Dom utilities: Create DOM elements dynamically </li></ul></ul><ul><ul><li>Ajax Controls </li></ul></ul><ul><ul><ul><li>Drag and Drop </li></ul></ul></ul><ul><ul><ul><li>Draggables </li></ul></ul></ul><ul><ul><ul><li>Autocompletion </li></ul></ul></ul><ul><ul><ul><li>In Place Editing </li></ul></ul></ul><ul><ul><li>Integration with development frameworks </li></ul></ul><ul><ul><ul><li>Ruby On Rails, Perl, Nitro, PHP, Java </li></ul></ul></ul><ul><ul><ul><li>Plone, DotNet, Symfony, Seaside </li></ul></ul></ul><ul><ul><ul><li>AIDA/Web, Open ACS, Django </li></ul></ul></ul><ul><ul><li>Java Script Unit Testing </li></ul></ul><ul><ul><ul><li>Includes unit and functional tests for itself </li></ul></ul></ul><ul><ul><ul><li>Catch scripting and syntax errors and presenting them in a useful way without breaking the tests </li></ul></ul></ul><ul><ul><ul><li>Source: http://wiki.script.aculo.us/scriptaculous/show/UnitTesting </li></ul></ul></ul>Example Test Results
  27. 27. EXAMPLE <ul><li>Used animation and effects library to replace the Flash animation on the home page. </li></ul><ul><li>Allows easier maintenance of the drop-down menu </li></ul>
  28. 28. Summary GWT YUI DWR Script.aculo.us Code in Java and generate JavaScript/HTML automatically YES NO YES NO Internationalization (easily create international Libraries) YES NO NO NO Integration with frameworks Eclipse, IntelliJ, JProfiler, JUnit NO Spring, Structs, WebWork, JSF, Hibernate, beehive Ruby on Rails, Perl, Nitro, Eclipse, SeaSide, Django, Plone, Java, PHP
  29. 29. Google Gadgets & Widgets <ul><li>Visually appealing mini-applications that work with Google Homepage, Google Desktop, or any page on the web </li></ul><ul><li>E.g. Calendar, Mail Checker, NASA TV, Stock Prices, Weather Globes, Free SMS etc. </li></ul><ul><li>Enable a wide variety of visual effects and animation </li></ul><ul><li>Supports rich markup languages such as Flash, XML </li></ul><ul><li>Two Types of Google Gadgets </li></ul><ul><ul><li>Universal Gadgets </li></ul></ul><ul><ul><li>Desktop Gadgets </li></ul></ul>Date & Time (Universal Gadget) Google Gadget in Google Desktop (undocked and docked view
  30. 30. &quot;Google Code - Google Gadgets.&quot; Google Code . Google Inc.. 17 May 2007 <http://code.google.com/apis/gadgets/>. Universal Gadgets Desktop Gadgets Work in Google Desktop, Google Page Creator, any Web Page, Google Personalized Page, Blogger Works only with Google Desktop Easy to Create - No downloads necessary, No libraries to learn, No Web server required Features Supported <ul><li>Anything that can be done on a WebPage </li></ul><ul><li>HTML Forms </li></ul><ul><li>Easy integration with Google Maps/ Web Search </li></ul><ul><li>ActiveX </li></ul><ul><li>Client Win32 Libraries </li></ul><ul><li>Multi-user support through Google Talk e.g. Interactive Games </li></ul><ul><li>Free form shapes and transparencies </li></ul><ul><li>Search files, emails etc across computers </li></ul><ul><li>Easy to use standard UI elements </li></ul><ul><li>React to user actions outside a gadgets </li></ul>Create without Download Yes No Offline Availability No Yes Languages Supported HTML, JavaScript, generated HTML (eg PHP, Java, Perl, ASP) JavaScript, C, C++, C#, and/or VB.Net
  31. 31. Creating Google Gadgets <ul><li>Google Desktop SDK is used for creating Desktop Gadgets using Google Desktop Gadget API </li></ul><ul><li>Google Gadgets API is used to develop Universal Google Gadgets </li></ul>
  32. 32. How to Make a Desktop Gadget <ul><li>Download the Google Desktop SDK and create the following files </li></ul><ul><li>gadget.gmanifest files specifies (required) </li></ul><ul><ul><li>Metadata XML file describing Gadget </li></ul></ul><ul><ul><li>Components needed to be installed before gadget creation </li></ul></ul><ul><ul><ul><li><gadget> element with minimumGoogleDesktopVersion parameter </li></ul></ul></ul><ul><ul><ul><li><about> element (required) </li></ul></ul></ul><ul><ul><ul><li><install> element (optional) </li></ul></ul></ul><ul><li>main.xml file (required) </li></ul><ul><ul><li>Defines the <view> element to specify the overall appearance of the pane </li></ul></ul><ul><li>main.js file to write the code for gadget functionality (required) </li></ul><ul><ul><li>To handle the event </li></ul></ul><ul><li>options.xml file (optional) to add options view (optional) </li></ul><ul><li>Strings. xml file </li></ul><ul><ul><li>Contains all language-specific strings that will be visible in your gadget's UI </li></ul></ul><ul><ul><li>Contains variable assignments for the strings in a particular language. </li></ul></ul>
  33. 33. gadget.gmanifest file <ul><li>The <about> element can include these sub-elements: </li></ul><ul><ul><li><id> : The gadget's CLSID. </li></ul></ul><ul><ul><li><name> : Your gadget's name. ( Required) </li></ul></ul><ul><ul><li><description> : A short description of what the gadget does. ( Required) </li></ul></ul><ul><ul><li><version> : The gadget's version number. </li></ul></ul><ul><ul><li><author> : Who wrote the gadget. </li></ul></ul><ul><ul><li><authorEmail> : An email address for contacting the developer. </li></ul></ul><ul><ul><li><authorWebsite> : A URL for your website. </li></ul></ul><ul><ul><li><copyright> : A copyright notice. </li></ul></ul><ul><ul><li><aboutText> : Text displayed in the gadget's About dialog. </li></ul></ul><ul><ul><li><smallIcon> : A 24x24 pixels icon shown in your gadget's title bar. </li></ul></ul><ul><ul><li><icon> : A 32x32 pixels icon shown in the gadget's About dialog and in the Alerts UI </li></ul></ul><ul><ul><li><eventAPI> : the gadget can use the Google Desktop Event API. </li></ul></ul><ul><ul><li><displayAPI usesNotifier=&quot;true&quot; /> : When set to true, enables Sidebar UI notifications. </li></ul></ul><ul><ul><li><queryAPI allowModifyIndex=&quot;true&quot; /> : When set to true, allows the gadget to use the Query API and index notifications. </li></ul></ul>
  34. 34. main.xml file (example) <ul><li>Specified that the gadget has main.js as the scripting file </li></ul><ul><li>Defines 250 X 150 pixel view for the label </li></ul><ul><li>Set the horizontal and vertical position </li></ul><ul><li>Set the alignment, size of text, width, horizontal and vertical pin of the label “HELLO_WORLD” (present in strings.xml file) </li></ul><ul><li>Retrieves the name “iulabs” for the label </li></ul><ul><li>Enable the element to fire mouse/keyboard events </li></ul><ul><li>Calls “onTextClick() function defined in main.js file </li></ul>
  35. 35. Main.js file (example) <ul><li>Specify the code to spin the text clockwise </li></ul><ul><li>Taking 1500 milliseconds between 0 – 360 degrees </li></ul><ul><li>It also displays the caption “GADGET_COPYRIGHT” in the expanded view </li></ul>Google Gadget in Google Desktop (undocked and docked view
  36. 36. Strings.xml file (example) <ul><li>Specify the metadata about the string </li></ul><ul><li>Here “HELLO_WORLD” element contains the string “IU Research” which is displayed when the gadget is run in Google Desktop </li></ul>
  37. 38. Social Bookmarking / Tagging <ul><li>Users save a list of internet resources </li></ul><ul><li>They assign keywords or tags to each of these resources </li></ul><ul><li>This method of categorization is also called as folksonomy </li></ul><ul><li>Most bookmarking websites allow users to search for bookmarks on tags or keywords. </li></ul>
  38. 39. Advantages / Disadvantages <ul><li>Advantages </li></ul><ul><ul><li>You can get to your bookmarks from anywhere </li></ul></ul><ul><ul><li>You can share your bookmarks with your friends, coworkers, supervisor etc. </li></ul></ul><ul><ul><li>You can categorize or group/bundle your bookmarks according to your wish </li></ul></ul><ul><ul><li>You can search of other users registered on that website and vice versa </li></ul></ul><ul><ul><li>You also have the option to make your tags private </li></ul></ul><ul><li>Disadvantages </li></ul><ul><ul><li>No controlled vocabulary </li></ul></ul><ul><ul><li>No standard for structure of tags e.g. capitalization, singular, plural etc. </li></ul></ul><ul><ul><li>spelling mistakes in tags </li></ul></ul><ul><ul><li>Tags having multiple meanings </li></ul></ul><ul><ul><li>No hierarchical relationship </li></ul></ul><ul><ul><li>Spamming – bookmarking same page multiple times </li></ul></ul>
  39. 40. Del.icio.us <ul><li>Store links to your favorite internet resources </li></ul><ul><li>Share links / favorites with friends, family, coworkers, and the del.icio.us community. </li></ul><ul><li>Discover new things. </li></ul><ul><li>On del.icio.us, you can use tags to organize and remember your bookmarks, which is a much more flexible system than folders. </li></ul><ul><li>You can bundle the tags into groups </li></ul><ul><li>Example Uses </li></ul><ul><ul><li>Research : keeping track of your research materials </li></ul></ul><ul><ul><li>Wish list : maintain a wish list </li></ul></ul><ul><ul><li>Collaboration : friends, coworkers and other groups can use a shared account </li></ul></ul>
  40. 41. Ways to Use del.icio.us <ul><li>Web interface </li></ul><ul><li>RSS Feeds </li></ul><ul><li>Application Programming Interfaces (API) </li></ul><ul><li>Embed JavaScript code inside your web page </li></ul>
  41. 42. Personal Bookmarks * Option to make bookmarks hidden Bookmarks of other users who used common tags * Option to add any user to your network Add users to your network and browse their tags * Option to disable sharing of your network Subscribe to interesting tags to be aggregated
  42. 43. <ul><li>I can subscribe to my own feeds and feeds from any other use registered on del.icio.us </li></ul>Group / Network Feed Individual Feed
  43. 44. Application Programming Interfaces <ul><li>All del.icio.us APIs are done over https and require HTTP-Auth </li></ul><ul><li>Example </li></ul><ul><ul><li>https://api.del.icio.us/v1/tags/get </li></ul></ul><ul><ul><li>Returns a list of tags and number of times used by a user. </li></ul></ul><ul><ul><li>Output: XML </li></ul></ul><ul><ul><li>Code </li></ul></ul><ul><ul><li><?  require_once 'HTTP/Request.php';  require_once '/home/smaini/vals.php';  $req =& new HTTP_Request(&quot; https://api.del.icio.us/v1/tags/get &quot;);  $req->setBasicAuth(delTagUser,delTagPass);  $response = $req->sendRequest();  echo $req->getResponseBody(); </li></ul></ul><ul><ul><li>> </li></ul></ul>Output ->
  44. 45. API (continued) <ul><li>Update </li></ul><ul><ul><li>https://api.del.icio.us/v1/posts/update </li></ul></ul><ul><ul><ul><li>Returns the last update time for the user </li></ul></ul></ul><ul><ul><li>https://api.del.icio.us/v1/posts/all? </li></ul></ul><ul><ul><ul><li>Returns to check if the data has changed since last fetch </li></ul></ul></ul><ul><li>Tags </li></ul><ul><ul><li>https://api.del.icio.us/v1/tags/rename?old=horse&new=horses </li></ul></ul><ul><ul><li>Rename an existing tag with a new tag name </li></ul></ul><ul><ul><ul><li>Arguments required </li></ul></ul></ul><ul><ul><ul><ul><li>&old (required) - tag to rename. </li></ul></ul></ul></ul><ul><ul><ul><ul><li>&new (required) - new name. </li></ul></ul></ul></ul>
  45. 46. DELICIOUS API <ul><li>Posts </li></ul><ul><ul><li>https://api.del.icio.us/v1/posts/get ? </li></ul></ul><ul><ul><li>https://api.del.icio.us/v1/posts/recent ? </li></ul></ul><ul><ul><li>https://api.del.icio.us/v1/posts/all ? </li></ul></ul><ul><ul><li>https://api.del.icio.us/v1/posts/dates ? </li></ul></ul><ul><ul><li>https://api.del.icio.us/v1/posts/add ? </li></ul></ul><ul><ul><li>https://api.del.icio.us/v1/posts/delete ? </li></ul></ul><ul><li>Bundles </li></ul><ul><ul><li>https://api.del.icio.us/v1/tags/bundles/all </li></ul></ul><ul><ul><li>https://api.del.icio.us/v1/tags/bundles/set ? </li></ul></ul><ul><ul><li>https://api.del.icio.us/v1/tags/bundles/delete ? </li></ul></ul>
  46. 47. JavaScript Widget for Del.icio.us <ul><li>JavaScript can be embedded into your HTML code as a “Bookmarklet” </li></ul><ul><li>This code can load a JavaScript Object that contains your latest set of tags </li></ul><a href=&quot;javascript:location.href= 'http://del.icio.us/post?v=2&url='+encodeURIComponent(document.location.href)+' &title='+encodeURIComponent(document.title)+' '&quot;> Post to del.icio.us </a> Source: http://ekstreme.com/seo/socialbookmarkingcode.php
  47. 48. Connotea <ul><li>Free online references management for scientists and clinicians </li></ul><ul><li>One can save and organize references </li></ul><ul><ul><li>Step 1: Add the reference to Connotea’s library as a Bookmark (using browser button, add form or DOIs) </li></ul></ul><ul><ul><li>Step 2: Tag the reference and type in the title </li></ul></ul><ul><li>Find users who used your tags </li></ul><ul><li>Find Bookmarks matching your tags </li></ul><ul><li>Entire library can be exported to the following formats: </li></ul><ul><ul><li>RIS: Suitable for importing into Reference Manager and similar software </li></ul></ul><ul><ul><li>EndNote: Exporting to MS EndNote </li></ul></ul><ul><ul><li>BibTex: For LATEX </li></ul></ul><ul><ul><li>MODS: U.S. Library of Congress Metadata Object Description Schema (MODS) format </li></ul></ul><ul><ul><li>RSS Feeds, RDF (Resource Description Framework) </li></ul></ul><ul><li>Can Import links / references using local file </li></ul><ul><ul><li>RIS, BibTeX, EndNote, MODS, ISI Web of knowledge, Firefox bookmarks </li></ul></ul>
  48. 49. Automatic Collection of Bibliographic Information <ul><ul><li>Connotea will add automatic bibliographic information for pages saved from the following sources </li></ul></ul><ul><ul><li>Nature.com , PubMed , PubMed Central , Science </li></ul></ul><ul><ul><li>PloS , BioMed Central , Supported Eprints repositories </li></ul></ul><ul><ul><li>Supported Highwire Press publications </li></ul></ul><ul><ul><li>Blackwell Synergy , Wiley Interscience , Scitation </li></ul></ul><ul><ul><li>arXiv.org , Smithsonian/NASA Astrophysics Data system </li></ul></ul><ul><ul><li>Amazon , HubMed , D-Lib Magazine </li></ul></ul>
  49. 50. Web Interface 1) Find an interesting article to be tagged 4) This tags the Article of Interest in “My Library” 2) Click on “Add to Connotea” button in the browser 3) Type in the Display Title, Tags, Descriptions etc.
  50. 51. RSS Feeds Individual RSS Feed Group RSS Feed
  51. 52. Multiple Users and Tags <ul><li>Clicking around on user and tag names allows you to view the articles for one user or one tag </li></ul><ul><li>But you can construct a URL for combining the tags using AND and OR operators </li></ul><ul><li>To see a list of articles for the users fdr and jfk , construct the URL as: http://www.connotea.org/user/fdr/jfk </li></ul><ul><li>This, in fact, filters for fdr OR jfk </li></ul><ul><ul><li>http://www.connotea.org/user/fdr+jfk </li></ul></ul><ul><li>A plus signs means AND, whereas a forward slash means OR. </li></ul>
  52. 53. More Tag Searching Rules <ul><li>This works for tag names too, and you can combine user names, tag names, +'s and /'s in any combination. </li></ul><ul><li>For example: </li></ul><ul><li>http://www.connotea.org/user/fdr+hst/jfk+lbj/tag/topsecret/classified </li></ul><ul><li>gives you a list of articles tagged as 'topsecret' or 'classified' by both fdr and hst , or by both jfk and lbj . </li></ul><ul><li>After getting the results you have the option to export the list as any of the formats mentioned including RSS Feeds </li></ul>
  53. 54. Programming Interface <ul><li>API Version 1 released wrapper libraries in Perl and Ruby </li></ul><ul><li>URL Structure: </li></ul><ul><ul><li>http://www.connotea.org/data </li></ul></ul><ul><ul><li>/bookmarks or /tags or '' (empty string, which means 'posts') </li></ul></ul><ul><ul><li>/user/ [username] </li></ul></ul><ul><ul><li>/tag/ [tagname] </li></ul></ul><ul><ul><li>/date/ [date of form YYYY-MM-DD ] </li></ul></ul><ul><ul><li>/uri/ [uri or hash] </li></ul></ul><ul><ul><li>? q= [free text search string] </li></ul></ul><ul><ul><li>& num= [number of results per] </li></ul></ul><ul><ul><li>& start= [result number to start at] </li></ul></ul><ul><li>All these are standard HTTP requests </li></ul><ul><li>Use GET to retrieve the URL </li></ul><ul><li>Output Format: RDF Format (Resource Descriptor Framework Format) </li></ul>Example: http://www.connotea.org/data/tags/user/sidds1601
  54. 55. Embedding Connotea JavaScript Widgets <ul><li><a style=&quot;cursor:pointer;&quot; onclick=&quot;javascript: w=open('http://www.connotea.org/addpopup?'); <img src=&quot;images/connotea.png&quot; border=&quot;0“ alt=&quot;add bookmark to connotea&quot; align=&quot;absmiddle&quot;>Add to Connotea</a> </li></ul><ul><li>Will display “Add to Connotea” icon in your webpage. </li></ul>
  55. 56. CiteULike <ul><li>Purpose: To share, store, and organize the papers </li></ul><ul><li>Provides “Bookmarklets” to extract information from current page </li></ul><ul><li>Can manually post an article </li></ul><ul><li>Can add URLs/DOIs and bibliographic metadata using its supported sites </li></ul><ul><li>You can add tags to your own or other entries </li></ul>
  56. 57. CiteULike <ul><li>It also provides extra bibliographic information from various databases </li></ul><ul><li>It is NOT open source </li></ul><ul><li>It can only import references from BibTex </li></ul><ul><li>It can export reference list to: </li></ul><ul><ul><li>EndNote or </li></ul></ul><ul><ul><li>BibTex format </li></ul></ul><ul><li>Supports Watch Lists: Page with papers that may be relevant to your field of study in the future. </li></ul><ul><li>Note: you can watch a page only on one tag and not more than one. </li></ul><ul><li>You only have the option to watch a page when you click on the active tags on the site. </li></ul>
  57. 58. Web Interface Click to save it as a reference
  58. 59. RSS Feeds Entire libraries can be exported as an RSS feed.
  59. 60. Inserting JavaScript Code <ul><li><script type=&quot;text/javascript&quot; src=&quot;http://static.citeulike.org/button.js&quot;> </script> </li></ul>Citeulike icon in your Web Page
  60. 61. Similarities / Comparison Connotea CiteUlike Bookmarklets Yes Yes Export Formats <ul><ul><li>RIS </li></ul></ul><ul><ul><li>EndNote </li></ul></ul><ul><ul><li>BibTex </li></ul></ul><ul><ul><li>MODS </li></ul></ul><ul><ul><li>RSS Feeds </li></ul></ul><ul><ul><li>RDF </li></ul></ul><ul><ul><li>EndNote: </li></ul></ul><ul><ul><li>BibTex: </li></ul></ul>Tag Sorting Order of Entry Alphabetically OpenSource Yes No
  61. 62. A short guide to REST-style Web Services.
  62. 63. Representational State Transfer <ul><li>REST is HTTP as a CS Ph. D. thesis. </li></ul><ul><ul><li>Roy Fielding, co-author of HTTP specification </li></ul></ul><ul><li>Standard Web Services have </li></ul><ul><ul><li>WSDL is an API language. </li></ul></ul><ul><ul><li>SOAP is the network message envelop </li></ul></ul><ul><li>REST proposes to use Internet as programming platform with only HTTP. </li></ul><ul><ul><li>Use HTTP to ship machine process-able content, not just HTML. </li></ul></ul><ul><ul><li>Simple (simplistic) but scales. </li></ul></ul><ul><li>Clients to REST services have one API for all occasions. </li></ul><ul><ul><li>HTTP GET, PUT, POST, DELETE </li></ul></ul><ul><ul><li>Operations are performed on URLs. </li></ul></ul><ul><ul><li>Very suitable for AJAX and JSON programming </li></ul></ul><ul><li>REST services are stateless (or idempotent). </li></ul><ul><ul><li>Identical requests give identical responses. </li></ul></ul>
  63. 64. REST Services, Continued <ul><li>Content of URLs should be XML or similar encoded data (not just HTML). </li></ul><ul><li>No universal message format like SOAP, but RSS and Atom are commonly used. </li></ul><ul><ul><li>You could use SOAP also. </li></ul></ul><ul><li>Real implication is that there are no SOAP headers </li></ul><ul><ul><li>No SOAP header processing </li></ul></ul><ul><ul><li>Quality of REST services are what you get with HTTP and TCP/IP. </li></ul></ul><ul><ul><ul><li>No additional SOAP QOS layer </li></ul></ul></ul><ul><ul><li>No SOAP relay messaging, fault handling, RPC encoding, etc. </li></ul></ul>
  64. 65. An April Fools Critique of REST <ul><li>REST tends to attract passionate religious debates </li></ul><ul><li>Sanjiva Weerawarana sees the light: </li></ul><ul><ul><li>http://www.bloglines.com/blog/sanjiva?id=196 </li></ul></ul><ul><ul><li>Weerarana is co-author of WSDL specification, project leader of IBM Web Service efforts, Apache Axis 2, CEO of WSO2 </li></ul></ul><ul><li>See also his more serious comments at </li></ul><ul><ul><li>http://www.infoq.com/articles/sanjiva-rest-myths </li></ul></ul>echo “ Groundskeeper Willie : It won't last. Brothers and sisters are natural enemies. Like Englishmen and Scots! Or Welshmen and Scots! Or Japanese and Scots! Or Scots and other Scots! Damn Scots! They ruined Scotland! Principal Skinner : You Scots sure are a contentious people. Groundskeeper Willie : You just made an enemy for life!” | sed “s/Scots/RESTifarians/”
  65. 66. We examine Amazon’s Simple Storage System as a REST case study.
  66. 67. <ul><li>S3 issues two codes to each account. </li></ul><ul><ul><li>An account access key: your identity </li></ul></ul><ul><ul><li>Shared secret key: used to digitally sign communications </li></ul></ul><ul><li>In each HTTP request, you have to add an Authorization field. </li></ul><ul><ul><li>It will use the account access key and a “Signature” which is a HMAC-SHA1 hash of the request (sans “Authorization” line) using the secret access key as the key. </li></ul></ul>Authorization: AWS 1ATXQ3HHA59CYF1CVS02:SZf1cHmQ/nrZbsrC13hCZS061yw= “ Authorization: AWS “+ AWSAccessKeyID + “:” + Signature The authorization line is formed like so: An example :
  67. 68. Buckets: Grouping Your Files <ul><li>Objects (stored files) are stored in buckets. </li></ul><ul><li>An account can have multiple buckets. </li></ul><ul><li>These bucket names are not user specific. </li></ul><ul><ul><li>In other words, if aS3 user is already using a desired bucket name, that name is unavailable for everyone else. </li></ul></ul><ul><li>This bucket name will be used in the url for your resources. An example would be : </li></ul><ul><li> http://s3.amazonaws.com/bucket_name/sample.jpeg </li></ul>
  68. 69. Buckets (cont’d) Buckets are created with an http PUT formed like this : PUT /[bucket-name] HTTP/1.0 Date: Wed, 08 Mar 2006 04:06:15 GMT Authorization: AWS [aws-access-key-id]:[header-signature] Host: s3.amazonaws.com If properly formed it would return a response of HTTP/1.1 200 OK x-amz-id-2: VjzdTviQorQtSjcgLshzCZSzN+7CnewvHA+6sNxR3VRcUPyO5fmSmo8bWnIS52qa x-amz-request-id: 91A8CC60F9FC49E7 Date: Wed, 08 Mar 2006 04:06:15 GMT Location: /[bucket-name] Content-Length: 0 Connection: keep-alive Server: AmazonS3
  69. 70. Objects: Stored Files <ul><li>There is more to these objects than the content of the file. </li></ul><ul><ul><li>Metadata can be included with each object. </li></ul></ul><ul><ul><li>Name/value pair collections </li></ul></ul><ul><li>The objects must have unique names (keys) in regards to their own bucket. </li></ul><ul><ul><li>In other words, “s3.txt” can exist in multiple buckets, but only once in a single bucket. </li></ul></ul><ul><li>There are no “sub-buckets” so many programmers decide to group files by prefixing. For instance, all pictures would start with “Pictures.” </li></ul><ul><ul><li>This works well with the “list” operation. </li></ul></ul>
  70. 71. Replacing/Overwriting Objects <ul><li>If a file is uploaded that has a key that already exists, that file is then replaced. </li></ul><ul><ul><li>This queue is based on when the file completes upload. </li></ul></ul><ul><li>So if one user starts to upload a large file to foo.bar and another one starts a much smaller file to that same key, even thought the smaller one started last, it is quite possible the larger one will overwrite the smaller one when it finishes. </li></ul><ul><ul><li>The firs S stands for “simple” </li></ul></ul>
  71. 72. PUT /[bucket-name]/[key-name] HTTP/1.0 Date: Wed, 08 Mar 2006 04:06:16 GMT Authorization: AWS [aws-access-key-id]:[header-signature] Host: s3.amazonaws.com Content-Length: 14 x-amz-meta-title: my title Content-Type: text/plain this is a test The HTTP request to upload a file will look like this: This will give the following response: HTTP/1.1 200 OK x-amz-id-2: wc15E1LUrjDZhNtT4QZtsbtadnOMKGjw5QTxkRDVO1owwbA6YoiqJJEuKShopufw x-amz-request-id: 7487CD42C5CA7524 Date: Wed, 08 Mar 2006 04:06:16 GMT ETag: &quot;54b0c58c7ce9f2a8b551351102ee0938&quot; Content-Length: 0 Connection: keep-alive Server: AmazonS3
  72. 73. File Permissions <ul><li>There are extensive rules to read and write access to objects and buckets. </li></ul><ul><li>These rights are stored in an ACL (access control list), which is an XML document. </li></ul><ul><li>Rights can be granted to users on a one to one basis, or to pre-defined groups. </li></ul>
  73. 74. <ul><li>READ: For a bucket, allows listing of the objects in that bucket. For an object, allows reading of data and/or metadata </li></ul><ul><li>WRITE: For a bucket, allows the creation and deletion of all new and existing objects in this bucket. There is no support or WRITE on an object. </li></ul><ul><li>READ_ACP: Allows the reading of a bucket or object’s ACL. </li></ul><ul><li>WRITE_ACP: Allows the changing of a bucket or object’s ACL. </li></ul><ul><li>FULL_CONTROL: Grants all of the above permissions. No other rights are added with this type. </li></ul>
  74. 75. Permissions (Grantee Types) <ul><li>User : Has to be a user of S3. </li></ul><ul><ul><li>Can be identified either by e-mail address or by an id supplied by Amazon (canonical). </li></ul></ul><ul><li>Owner : Always has full rights and is always the creator of the object. </li></ul><ul><li>Group : Currently there are only two groups: all users and authenticated users </li></ul><ul><ul><li>Rights given by these groups do not overwrite other access control considerations. </li></ul></ul><ul><ul><li>http://acs.amazonaws.com/grouops/global/AllUsers: Represents everyone, anonymous or authenticated. </li></ul></ul><ul><ul><li>http://acs.amazonaws.com/groups/global/AuthenticatedUsers: Represents non-anonymous users. </li></ul></ul>
  75. 76. <AccessControlPolicy> <Owner> <ID>a9a7b886d6fd24a52fe8ca5bef65f89a64e0193f23000e241bf9b1c61be666e9</ID> <DisplayName>chriscustomer</DisplayName> </Owner> <AccessControlList> <Grant> <Grantee xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xsi:type=&quot;CanonicalUser&quot;> <ID>a9a7b886d6fd24a52fe8ca5bef65f89a64e0193f23000e241bf9b1c61be666e9</ID> <DisplayName>chriscustomer</DisplayName> </Grantee> <Permission>FULL_CONTROL</Permission> </Grant> <Grant> <Grantee xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xsi:type=&quot;Group&quot;> <URI>http://acs.amazonaws.com/groups/global/AllUsers<URI> </Grantee> <Permission>READ</Permission> </Grant> </AccessControlList> </AccessControlPolicy> Single User Entry Group Entry Owner
  76. 77. How to Use S3 With PHP programming examples
  77. 78. Define Constants <ul><li>When a new account is created, it will have a key and “secret code” attached to it. </li></ul><ul><li>These should be placed in a separate file and be defined as constants. </li></ul><ul><ul><li>For these purposes, they will be known as ‘amazonKey’ and ‘amazonSecret’, respectively. </li></ul></ul>define (“amazonKey”,”15B4D3491F177624206A”); define (“amazonSecret”,”(secret code given by S3)”); define (“amazonURL”,”http://s3.amazonaws.com/” ); define (“amazonBucket”,”BucketName”);
  78. 79. $ pear install HTTP_Request $ pear install Crypt_HMAC require_once ‘Crypt/HMAC.php’; require_once ‘HTTP/Request.php’; S3 requires the use of HTTP Requests and RFC 2104 compliant hashes. Luckily, the Pear framework (which comes with PHP) has made packages for these purposes. Before using these packages, they must be added to PHP. Simply run these commands (pear is found in /bin under the /php directory). Any php script that will use these packages must include these two lines.
  79. 80. function hex2b64($str) { $raw = ''; for ($i=0; $i < strlen($str); $i+=2) { $raw .= chr(hexdec(substr($str, $i, 2))); } return base64_encode($raw); } function constructSig($str) { $hasher =& new Crypt_HMAC(amazonSecret, &quot;sha1&quot;); $signature = hex2b64($hasher->hash($str)); return($signature); } Two functions will need to be created to facilitate the use of S3. Converts a string from hex to base 64 Constructs the “Signature” using the secret key to hash the given string and encode it
  80. 81. function createBucket($bucket, $acl = 'private') { $httpDate = gmdate(&quot;D, d M Y G:i:s T&quot;); echo $httpDate; $stringToSign = &quot;PUT$httpDatex-amz-acl:$acl/$bucket&quot;; $signature = constructSig($stringToSign); $req =& new HTTP_Request(amazonUrl . $bucket); $req->setMethod(&quot;PUT&quot;); $req->addHeader(&quot;Date&quot;, $httpDate); $req->addHeader(&quot;Authorization&quot;, &quot;AWS &quot; . amazonKey. &quot;:&quot; . $signature); $req->addHeader(&quot;x-amz-acl&quot;, $acl); $response = $req->sendRequest(); $responseCode=$req->getResponseCode(); if ($responseCode == 200) { return true; } else { return false; } } This section constructs the signature This section constructs the headers, and creates the signature Send the request and return whether or not it was successful
  81. 82. createBucket(amazonBucket); <ul><li>Once that function is created, it’s pretty simple to create a bucket. </li></ul><ul><li>It is usually more desirable to keep the ACL private, so we’ll keep that blank. </li></ul><ul><li>The objects under it can still be made publicly readable, which allows browser access </li></ul><ul><ul><li>This prevents others from searching the directory, and adding objects of their own. </li></ul></ul>PUT / BucketName HTTP/1.0 Content-Length: 0 Authorization: AWS 15B4D3461F177624206A:YFhSWKDg3qDnGbV7JCnkfdz/IHY= Date: Thu, 17 Nov 2005 02:40:52 GMT So in this instance, running this line (see previous slide): should create an HTTP request looking like :
  82. 83. function putObject($bucket, $key, $filePath, $contentType, $contentLength, $acl, $metadataArray=array(), $md5=&quot;&quot;){ sort($metadataArray); $resource = &quot;$bucket/$key&quot;; $resource = urlencode($resource); $req = & new HTTP_Request($this->serviceUrl.$resource); $req->setMethod(&quot;PUT&quot;); $httpDate = gmdate(&quot;D, d M Y G:i:s T&quot;); $req->addHeader(&quot;Date&quot;, $httpDate); $req->addHeader(&quot;Content-Type&quot;, $contentType); $req->addHeader(&quot;Content-Length&quot;, $contentLength); $req->addHeader(&quot;x-amz-acl&quot;, $acl); if($md5){ $MD5 = $this->hex2b64(md5_file($filePath)); $req->addHeader(&quot;Content-MD5&quot;, $MD5); } $req->setBody(file_get_contents($filePath)); $stringToSign=&quot;PUT$MD5$contentType$httpDatex-amz-acl:$acl&quot;; foreach($metadataArray as $current){ if($current!=&quot;&quot;){ $stringToSign.=&quot;x-amz-meta-$current&quot;; $header = substr($current,0,strpos($current,':')); $meta = substr($current,strpos($current,':')+1,strlen($current)); $req->addHeader(&quot;x-amz-meta-$header&quot;, $meta); } } $stringToSign.=&quot;/$resource&quot;; $signature = $this->constructSig($stringToSign); $req->addHeader(&quot;Authorization&quot;, &quot;AWS &quot; . $this->accessKeyId . &quot;:&quot; . $signature); $response = $req->sendRequest(); $responseCode = $req->getResponseCode(); if (responseCode == 200) { return true; } else { echo $req->getResponseBody(); return false; } } Prepare the request Add the necessary Headers Includes an md5 if specified Creates the signature, with metadata Add the contents of the file to the body of the request Send the request and return the response
  83. 84. putObject (amazonBucket, $_FILES[‘upFile’][‘name’], $_FILES[‘upFile’][‘tmp_name’], $_FILES[‘upFile’][‘type’], filesize($_FILES[‘upFile’][‘tmp_name’]), ‘public_read’); In this instance, a file is being uploaded that is simply called “Message”. This is a simple text file with the contents “Paper or Plastic”. PUT /BucketName/Neo HTTP/1.0 Content-Length: 16 Authorization: AWS 15B4D3461F177624206A:xQE0diMbLRepdf3YB+FIc8F2Cy8= Date: Thu, 17 Nov 2005 07:48:33 GMT Content-Type: text/plain Paper or Plastic This will produce the HTTP request seen here : Which will upload this file to the S3 server which can be accessed either by the REST service or directly by accessing the link: http://s3.amazonaws.com/BucketName/Neo
  84. 85. A brief overview of news feeds, how to create, and how to consume.
  85. 86. Atomsphere <ul><li>An Atom feed library written in Java </li></ul><ul><li>http://www.colorfulsoftware.com/projects/atomsphere </li></ul><ul><li>Download packages </li></ul><ul><ul><li>atomsphere </li></ul></ul><ul><ul><li>atomsphere-taglib </li></ul></ul><ul><ul><li>atomsphere-webapp </li></ul></ul><ul><ul><li>atomsphere-weblib </li></ul></ul><ul><li>Add jar files included in the packages above to the project </li></ul>
  86. 87. Create Atom Feed for Bay1Temp <ul><li>Create an atom feed document </li></ul><ul><ul><li>add attribute “xmlns” to be “ http://www.w3.org/2005/Atom ” to the feed </li></ul></ul><ul><ul><li>add elements “Author”, “Id”, “Title”, “Link” , “Updated” </li></ul></ul><ul><li>Add an entry document to the feed </li></ul><ul><ul><li>add elements “Author”, “Id”, “Title”, “Updated” </li></ul></ul><ul><ul><li>add element “Content” which contains parameters’ value of Bay1Temp </li></ul></ul>
  87. 88. Java Code for creating an atom feed doc <ul><li>// New a feed </li></ul><ul><li>Feed theFeed = new Feed(); </li></ul><ul><li>// Add &quot;xmlns&quot; attribute to the feed </li></ul><ul><li>theFeed.addAttribute(new Attribute(&quot;xmlns&quot;,&quot;http://www.w3.org/2005/Atom&quot;)); </li></ul><ul><li>// Add Author </li></ul><ul><li>theFeed.addAuthor(new Author(&quot;Yu(Carol) Deng&quot;)); </li></ul><ul><li>// Set a universally unique Id for the feed </li></ul><ul><li>theFeed.setId(new Id(&quot;urn:uuid:&quot; + new UID().toString())); </li></ul><ul><li>// Add Title </li></ul><ul><li>Title feedTitle = new Title(&quot;text&quot;); // Set title type for the feed </li></ul><ul><li>feedTitle.setText(&quot;Bay1Temp Atom Feed&quot;); // Set title content </li></ul><ul><li>theFeed.setTitle(feedTitle); // Set the title </li></ul><ul><li>// Add Link </li></ul><ul><li>Link feedLink = new Link(); // New a Link in the feed </li></ul><ul><li>feedLink.setRel(new Attribute(&quot;rel&quot;, &quot;self&quot;)); //Set &quot;rel&quot; attribute of the link </li></ul><ul><li>feedLink.setType(new Attribute(&quot;type&quot;, &quot;application/atom+xml&quot;)); //Set &quot;type&quot; attribute of the link </li></ul><ul><li>feedLink.setHref(new Attribute(&quot;href&quot;, FeedHref)); //Set &quot;href&quot; attribute of the link </li></ul><ul><li>theFeed.addLink(feedLink); </li></ul><ul><li>// Set Updated to the entry </li></ul><ul><li>the Feed.setUpdated(new Updated(new Date())); </li></ul>
  88. 89. Code for adding an entry doc to feed <ul><li>// New an Entry </li></ul><ul><li>parcelEntry = new Entry(); </li></ul><ul><li>// Add Author </li></ul><ul><li>parcelEntry.addAuthor(new Author(&quot;Yu(Carol) Deng&quot;)); </li></ul><ul><li>// Add Title </li></ul><ul><li>Title parcelTitle = new Title(&quot;text&quot;); // Set title type for the feed </li></ul><ul><li>parcelTitle.setText(&quot;SensorName, TimeStamp, DoubleData&quot;); // Set title content </li></ul><ul><li>parcelEntry.setTitle(parcelTitle); // Set the title </li></ul><ul><li>// Set a universally unique Id for the entry </li></ul><ul><li>parcelEntry.setId(new Id(&quot;urn:uuid:&quot; + new UID().toString())); </li></ul><ul><li>// Set Updated to the entry </li></ul><ul><li>Calendar cal = new GregorianCalendar(); </li></ul><ul><li>parcelEntry.setUpdated(new Updated(cal.getTime())); </li></ul><ul><li>// Set the current data to the Content </li></ul><ul><li>parcelEntry.setContent(nodeSensorName + nodeTimeStamp + nodeDoubleData); </li></ul><ul><li>// Add the Entry to the feed </li></ul><ul><li>currentFeed.addEntry(parcelEntry); </li></ul>
  89. 90. Atom Feed for Bay1Temp <ul><li><?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?> </li></ul><ul><li><feed xmlns=&quot; http://www.w3.org/2005/Atom &quot;> </li></ul><ul><li>  <id> urn:uuid:29fefa08:112967cfbb9:-8000 </id> </li></ul><ul><li><updated> 2007-05-16T16:07:16.376-05:00 </updated> </li></ul><ul><li><title type=&quot; text &quot;> Bay1Temp Atom Feed </title> </li></ul><ul><li><author> </li></ul><ul><li><name> Yu(Carol) Deng </name> </li></ul><ul><li></author> </li></ul><ul><li><link rel=&quot; self &quot; type=&quot; application/atom+xml &quot; href=&quot; http://hagar.cs.indiana.edu:8181/foo.xml &quot; /> </li></ul><ul><li><entry> </li></ul><ul><li><id> urn:uuid:29fefa08:112967cfbb9:-7fff </id> </li></ul><ul><li><updated> 2007-05-16T16:03:32.423-05:00 </updated> </li></ul><ul><li><title type=&quot; text &quot;> SensorName, TimeStamp, DoubleData </title> </li></ul><ul><li><author> </li></ul><ul><li><name> Yu(Carol) Deng </name> </li></ul><ul><li></author> </li></ul><ul><li><content type=&quot; html &quot;> Bay1Temp 2007-05-16 20:06:35Z 25.2<br>Bay1Temp 2007-05-16 20:06:55Z 25.1<br>Bay1Temp 2007-05-16 20:07:15Z 25.1 </content> </li></ul><ul><li></entry> </li></ul><ul><li></feed> </li></ul>
  90. 91. Bay1Temp Atom Feed in iGoogle
  91. 92. Making Your Own Feed Consumer <ul><li>There are plenty of libraries for consuming feeds that you can embed in your own Web pages, blogs, wikis, etc. </li></ul><ul><li>I looked at two for PHP: </li></ul><ul><ul><li>Magpie RSS: wasted an afternoon trying to get this to work. </li></ul></ul><ul><ul><li>SimplePie: worked in 5 minutes. </li></ul></ul><ul><li>We’ll look at SimplePie for MediaWiki </li></ul>
  92. 93. Adding SimplePie to MediaWiki, Part I <ul><li>These steps require access to MediaWiki’s directories under Apache </li></ul><ul><li>Download SimplePie and put the simplepie.inc file in your MediaWiki’s “extensions” folder. </li></ul><ul><li>Download the MediaWiki plugin and put it (simple_pie.php) in your extensions folder also. </li></ul><ul><li>Edit LocalSettings.php to add the line </li></ul><ul><ul><li>include(&quot;./extensions/simplepie_mediawiki.php&quot;); </li></ul></ul><ul><li>Next steps can be done by anyone. </li></ul>
  93. 94. Adding a Feed, Part II <ul><li>To show just dates and titles, do this: </li></ul><ul><li><feed showdesc=&quot;false&quot; showdate=&quot;true&quot;> </li></ul><ul><li>... </li></ul><ul><li></feed> </li></ul><ul><li>In the text area, add a line like </li></ul><ul><ul><li><feed> </li></ul></ul><ul><ul><li>http://myblog.host.org/rss/ </li></ul></ul><ul><ul><li></feed> </li></ul></ul><ul><li>Let’s say you want to add your blog’s RSS feed to your team’s wiki. </li></ul><ul><li>Create a new Wiki page and edit it. </li></ul><ul><ul><li>Part of the art of a wiki... </li></ul></ul>
  94. 95. Use blog to create posts. Display blog RSS feed in MediaWiki.
  95. 96. Aggregating the Rich Internet Experiences and other buzz phrases
  96. 97. What Is a Portal? <ul><li>Traditionally, a portal is personalized Web page that recognizes you. </li></ul><ul><ul><li>You have to log in and set cookies. </li></ul></ul><ul><li>You get customized content and layouts. </li></ul><ul><ul><li>Typically newsfeeds but this is also a good model for science gateways. </li></ul></ul><ul><li>Portals have a component model. Collections of components are managed by a portal container. </li></ul><ul><li>Enterprise portals are based on standards like </li></ul><ul><ul><li>JSR 168 (Java) </li></ul></ul><ul><ul><li>Web Services for Remote Portlets (WSRP) </li></ul></ul><ul><li>Web 2.0 equivalent is called a Start Page. </li></ul>
  97. 98. Science Portals <ul><li>Science Portals are often built using portlet components. </li></ul><ul><ul><li>Ex: TeraGrid Science Gateways </li></ul></ul><ul><li>Portlets are a server side technology. </li></ul><ul><ul><li>Can be built with enterprise technologies like JSF. </li></ul></ul><ul><li>Users can select from available portlets and customize their layouts. </li></ul>
  98. 99. Web 2.0 Challenges for Science Portals <ul><li>Client-side integration of components from multiple service providers. </li></ul><ul><ul><li>Start Pages do this all the time with widget “ecosystems” </li></ul></ul><ul><li>Multiple views of the same Web application. </li></ul><ul><ul><li>Consider del.icio.us: Browser, JSON, REST/XML, JavaScript Widget interfaces all to the same application. </li></ul></ul><ul><ul><li>You don’t have to go to http://del. icio .us to use it. </li></ul></ul><ul><li>Simple programming interfaces that encourage “do it yourself” science mash-ups. </li></ul><ul><ul><li>JSON, AJAX compatible REST APIs. </li></ul></ul><ul><li>Widgets/gadgets that allow portal capabilities to be exported to other Web sites and start pages. </li></ul><ul><ul><li>Easily add stuff like Digg, YouTube, MySpaces, etc. </li></ul></ul>
  99. 100. Google Gadgets Netvibes Widgets
  100. 101. <ul><li>Integrate content from anywhere. </li></ul><ul><ul><li>Content is under complete control of user. </li></ul></ul><ul><li>Universal widget modules with supporting JavaScript libraries. </li></ul><ul><ul><li>Any standalone HTML application can be converted into a widget/gadget. </li></ul></ul><ul><ul><li>Javascript expertise needed to make sophisticated widgets. </li></ul></ul><ul><li>Gadgets are easily created, published and shared. </li></ul><ul><ul><li>Anyone can write a gadget. </li></ul></ul><ul><ul><li>Gadgets can be anywhere on the Web </li></ul></ul><ul><ul><li>Netvibes ecosystem </li></ul></ul><ul><li>But you don’t have access to Netvibes or Google container source code. </li></ul><ul><ul><li>Downloadable Start Page containers? </li></ul></ul><ul><li>Containers only show content deployed on the portal server. </li></ul><ul><ul><li>Users can only choose from portlets deployed in the container. </li></ul></ul><ul><li>Portlets have Java programming API. </li></ul><ul><ul><li>Requires expertise in Java web programming (JSP, JSF, Struts, etc). </li></ul></ul><ul><li>Portlets must be deployed on the server that runs the portal container. </li></ul><ul><ul><li>Only the portal administrator can add a new portlet </li></ul></ul><ul><ul><li>No way to share running JSR 168 portlets between portal containers. </li></ul></ul><ul><ul><li>WSRP is supposed to solve this. </li></ul></ul><ul><ul><li>Iframes are more practical </li></ul></ul><ul><li>But the portal administrators have complete control over the container and content. </li></ul><ul><ul><li>You download and run everything on your server. </li></ul></ul>Start Pages, Gadgets Portals, Portlets
  101. 102. Writing a Google Gadget <ul><li>We first create a simple XML description for the gadget and place in a URL. </li></ul><ul><li>For example, content of the gadget descriptor located will be located at http://hostname:8080/gridsphere/ogcegadget.html </li></ul>
  102. 103. Gadget XML Description <ul><li>Content of ogcegadget.html is </li></ul><ul><li><?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; ?> </li></ul><ul><li><Module> <ModulePrefs title=&quot;OGCE Portal&quot; /> <Content type=&quot;url&quot; href=&quot;http://hostname:8080/gridsphere/ogce1.html&quot; /> </li></ul><ul><li></Module> </li></ul>
  103. 104. Add it to your iGoogle page in the usual fashion (click “Add Stuff”). Gadget shows up in your layout.
  104. 105. Writing a Netvibes Widget <ul><li>Basic steps are as follows: </li></ul><ul><ul><li>Write an HTML page. </li></ul></ul><ul><ul><li>Decorate with Netvibes metatags (required). </li></ul></ul><ul><ul><li>Use Netvibes CSS style sheets (optional) </li></ul></ul><ul><ul><li>Use Netvibes JavaScript libraries (optional) </li></ul></ul><ul><ul><li>Add to your Netvibes content. </li></ul></ul>
  105. 106. <ul><li><?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?> </li></ul><ul><li><!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;> </li></ul><ul><li><html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;> </li></ul><ul><li><head> </li></ul><ul><ul><li><meta name=&quot;author&quot; content=&quot;Huapeng Yuan&quot; /> </li></ul></ul><ul><ul><li><meta name=&quot;description&quot; content=&quot;A Netvibes Widget for OGCE&quot; /> </li></ul></ul><ul><ul><li><meta name=&quot;apiVersion&quot; content=&quot;1.0&quot; /> </li></ul></ul><ul><ul><li><meta name=&quot;inline&quot; content=&quot;true&quot; /> </li></ul></ul><ul><ul><li><meta name=&quot;debugMode&quot; content=&quot;false&quot; /> </li></ul></ul><ul><ul><li><link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;http://www.netvibes.com/themes/uwa/style.css&quot; />   </li></ul></ul><ul><ul><li><script type=&quot;text/javascript&quot; src=&quot;http://www.netvibes.com/js/UWA/load.js.php?env=Standalone&quot;> </script>  </li></ul></ul><ul><li><title>OGCE Portal</title> </li></ul><ul><ul><li><link rel=&quot;icon&quot; type=&quot;image/png&quot; href=&quot;http://www.netvibes.com/favicon.ico&quot; /> </li></ul></ul><ul><li></head> </li></ul><ul><li><!—Begin HTML web form --> </li></ul><ul><li><body></body> </li></ul>Add required Netvibes meta tags. Use Netvibes style sheets. Import netvibes JavaScript
  106. 108. Building Better Netvibes Widgets <ul><li>The previous example was for a minimal widget. </li></ul><ul><ul><li>Only HTML </li></ul></ul><ul><li>Netvibes JavaScript libraries let you do the following: </li></ul><ul><ul><li>“ widget” object: replaces JS document and window. </li></ul></ul><ul><ul><ul><li>Sandboxes the widget from other widgets in the same page. </li></ul></ul></ul><ul><ul><li>“ el” object: allows you to manipulate HTML in the widget. </li></ul></ul><ul><ul><li>AJAX utility methods: UWA.Data.{getFeed(), getXML(), getJson(), getText(), request()} </li></ul></ul><ul><li>You need these to process results inline (i.e. not redirect away to a new page as a result of a form action). </li></ul>
  107. 109. I want to say just one word to you. Just one word. Are you listening? Microformats.
  108. 110. Microformats <ul><li>Microformats, like Ajax, follow a technical methodology. </li></ul><ul><ul><li>Not a new technology. </li></ul></ul><ul><li>Main Idea: Use existing XHTML extension mechanisms to create tag sets the represent data objects. </li></ul><ul><ul><li><div> and <span> tags </li></ul></ul><ul><li>Use community conventions to drive adoption of specific formats. </li></ul><ul><li>Stay away from hard problems that have bogged down the Semantic Web. </li></ul><ul><ul><li>Logics, inference, and artificial intelligence. </li></ul></ul>
  109. 111. An Example: A Fault <ul><li>Note this is just HTML. </li></ul><ul><li>Note we have used custom tags to encode data meaning and not data formatting. </li></ul><ul><li>CSS style sheets would be used to format the display. </li></ul><ul><li><div class=”earthquake.fault”> </li></ul><ul><li><div class=”faultName”> </li></ul><ul><li>Northridge </li></ul><ul><li></div> </li></ul><ul><li><div class=”latStart>…</div> </li></ul><ul><li><div class=”lonStart>…</div> </li></ul><ul><li><div class=”latEnd”>…</div> </li></ul><ul><li><div class=”lonEnd”>…</div> </li></ul><ul><li><div class=”strike”></div> </li></ul><ul><li><div class=”dip”>…</div> </li></ul><ul><li></div> </li></ul>
  110. 112. Other Examples <ul><li>People: </li></ul><ul><ul><li>hCard: the Microformat version of the IETF standard vCard. </li></ul></ul><ul><li>Dates: </li></ul><ul><ul><li>hCalendar: the Microformat version of IETF standard iCalendar. </li></ul></ul><ul><li>Both of these characterized by sets of name/value pair conventions </li></ul><ul><li>Dublin Core publication metadata is another potential application. </li></ul><ul><li>Unlike Semantic Web, no way to express inter-format relationships. </li></ul>
  111. 113. vCard-->hCard <ul><li>BEGIN:VCARD </li></ul><ul><li>VERSION:3.0 </li></ul><ul><li>N:Çelik;Tantek </li></ul><ul><li>FN:Tantek Çelik </li></ul><ul><li>URL:http://tantek.com/ </li></ul><ul><li>ORG:Technorati </li></ul><ul><li>END:VCARD </li></ul><ul><li><div class=&quot;vcard&quot;> </li></ul><ul><li><a class=&quot;url fn&quot; href=&quot;http://tantek.com/&quot;> </li></ul><ul><li>Tantek Çelik </li></ul><ul><li></a> </li></ul><ul><li><div class=&quot;org&quot;> </li></ul><ul><li>Technorati </li></ul><ul><li></div> </li></ul><ul><li></div> </li></ul>http://microformats.org/wiki/hcard
  112. 114. Should You Care? <ul><li>Microformats’ value really only appears when they are adopted as regular conventions. </li></ul><ul><ul><li>JavaScript libraries and related browser tool support. </li></ul></ul><ul><li>Both Firefox 3 and IE 8 may support some standard microformats. </li></ul><ul><ul><li>Ex: automatically detect hCard and hCalendar. </li></ul></ul><ul><ul><li>Allow these to be exported to your favorite address book and calendar application automatically. </li></ul></ul><ul><ul><li>Our fault microformat may be associated with a Google Map or an HTML form interface generator, for example. </li></ul></ul><ul><li>Nifty hcard/hcalendar demo: </li></ul><ul><ul><li>http://spaces.live.com/editorial/rayozzie/demo/liveclip/liveclipsample/clipboardexample.html </li></ul></ul><ul><ul><li>View source when you are done playing. </li></ul></ul>
  113. 116. Social Networking Sites <ul><li>These are sites that build online social networks of people with shared interests. </li></ul><ul><li>For the big list, see </li></ul><ul><ul><li>http://en.wikipedia.org/wiki/List_of_social_networking_websites </li></ul></ul><ul><li>Note the scale of users </li></ul><ul><ul><li>Flickr has 4,000,000 registered users. </li></ul></ul><ul><ul><li>It is a medium-sized site. </li></ul></ul><ul><li>We’ll look at Flickr as an example. </li></ul><ul><ul><li>I chose it because it has the second most used API (after Google Maps) at programmableweb.com. </li></ul></ul>
  114. 117. Pre-History of Flickr <ul><li>Flickr began life as a side project of a massive multiplayer game </li></ul><ul><ul><li>“ Game Neverending” ended in 2004 </li></ul></ul><ul><li>It continued to evolve... </li></ul><ul><li>Early capabilities that were dropped: </li></ul><ul><ul><li>Chats, real-time photo-sharing </li></ul></ul><ul><li>Capabilities added later </li></ul><ul><ul><li>Tags (and tag clouds), favorites, group photo pools </li></ul></ul><ul><ul><li>Interestingness: a proprietary algorithm for determining most interesting photos for a particular time period. </li></ul></ul><ul><ul><ul><li>Who tags, how many click, number of comments, etc. </li></ul></ul></ul><ul><li>Synchronous to asynchronous collaboration </li></ul>Source: http://en.wikipedia.org/wiki/Flickr
  115. 118. Flickr API Overview <ul><li>It is quite extensive. </li></ul><ul><li>Supported request formats: </li></ul><ul><ul><li>REST </li></ul></ul><ul><ul><li>XML-RPC </li></ul></ul><ul><ul><li>SOAP </li></ul></ul><ul><li>Response Formats </li></ul><ul><ul><li>The above, plus JSON and serialized PHP </li></ul></ul><ul><li>API Kits: </li></ul><ul><ul><li>PHP, Python, Ruby, Perl, .NET, Java, Cold Fusion, … </li></ul></ul>http://www.flickr.com/services/api/
  116. 119. What Can You Do with the API? <ul><li>Activity: see recent photos and comments by a particular user. </li></ul><ul><li>Favorites: add, remove, and get a list of favorites. </li></ul><ul><li>Interestingness: get a list of photos with high interestingness scores. </li></ul><ul><li>People: get information (email, group membership, etc). </li></ul><ul><li>Photos: add a tag, add a comment, find the location, upload, etc. </li></ul><ul><li>Reflection: get information about other API methods. </li></ul><ul><li>And more. </li></ul>
  117. 120. Feeds <ul><li>Flickr supports Atom 1.0 and various versions of RSS. </li></ul><ul><li>You can subscribe to the following feeds </li></ul><ul><ul><li>Public photos, friends’ photos, group posts, discussions, news, etc. </li></ul></ul><ul><li>Feed URLs support optional query parameters. </li></ul><ul><ul><li>Useful for REST style programming. </li></ul></ul><ul><ul><li>Specify a specific user ID, a specific set of tags, etc. </li></ul></ul>
  118. 121. Badges: Flickr Widgets <ul><li>Small, embedded HTML or Flash “widget” that you can place in other websites </li></ul><ul><ul><li>Like your blog. </li></ul></ul><ul><li>Yet another example of client side integration. </li></ul>
  119. 122. More Information <ul><li>Slides and a related document will be available from </li></ul><ul><ul><li>http://grids.ucs.indiana.edu/ptliupages/presentations </li></ul></ul><ul><ul><li>http://grids.ucs.indiana.edu/ptliupages/publications </li></ul></ul><ul><li>Contact: [email_address] </li></ul><ul><li>Blog: http://communitygrids.blogspot.com </li></ul>

×