Pro Web 2.0 Mashups Remixing Data and Web Services phần 10 pps

57 271 0
Pro Web 2.0 Mashups Remixing Data and Web Services phần 10 pps

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

hCard and adr hCard (http://microformats.org/wiki/hcard) is used to represent such entities as people, organizations, companies, and places. An easy way to get started with hCard is to use the hCard Creator at http://microformats.org/code/hcard/creator. Let’s create an hCard for Tim Berners-Lee, the inventor of the Web, drawing on his web page at http://www.w3.org/People/Berners-Lee/ to come up with the following: <div id="hcard-Tim-Berners-Lee" class="vcard"> <a class="url fn" href="http://www.w3.org/People/Berners-Lee/">Tim Berners-Lee</a> <div class="org">World Wide Web Consortium</div> <a class="email" href="mailto:timbl@w3.org">timbl@w3.org</a> <div class="adr"> <div class="street-address">77 Massachusetts Ave. (MIT Room 32-G524)</div> <span class="locality">Cambridge</span> , <span class="region">MA</span> , <span class="postal-code">02139</span> <span class="country-name">USA</span> </div> <div class="tel">+1 (617) 253 5702</div> <p style="font-size:smaller;">This <a href="http://microformats.org/wiki/hcard"> hCard</a> created with the <a href="http://microformats.org/code/hcard/creator"> hCard creator</a>. </p> </div> You’ll notice that inside the hCard microformat is the adr microformat (http:// microformats.org/wiki/adr). adr is a mapping of vCard: This specification introduces the adr microformat, which is a 1:1 representation of the aforementioned adr property from the vCard standard, by simply reusing the adr prop- erty and sub-properties as-is from the hCard microformat. There is support in adr for the following properties, which show up in adr as (X)HTML attributes according to class-design-pattern: • post-office-box • extended-address • street-address • locality • region CHAPTER 18 ■ USING MICROFORMATS AND RDFA AS EMBEDDABLE DATA FORMATS550 858Xch18FINAL.qxd 2/4/08 3:37 PM Page 550 • postal-code • country-name hCalendar hCalendar (http://microformats.org/wiki/hcalendar) is a microformat-based iCalendar used to represent calendar information. To quickly create an instance, use the hCalendar Creator (http://microformats.org/code/hcalendar/creator), or consult the hCalendar cheat sheet (http://microformats.org/wiki/hcalendar-cheatsheet). Let’s create an hCalendar for the WWW 2008 conference (http://www2008.org/): <div class="vevent" id="hcalendar-WWW-2008-17th-International-World-Wide-Web-Conference"> <a class="url" href="http://www2008.org/"> <abbr class="dtstart" title="20080421">April 21th</abbr> &mdash; <abbr class="dtend" title="20080426">25th, 2008</abbr> <span class="summary"> WWW 2008 (17th International World Wide Web Conference) </span>&mdash; at <span class="location">Beijing International Convention Center, </span> </a> <div class="description">"The World Wide Web Conference is a global event bringing together key researchers, innovators, decision-makers, technologists, businesses, and standards bodies working to shape the Web. Since its inception in 1994, the WWW conference has become the annual venue for international discussions and debate on the future evolution of the Web."</div> <p style="font-size: smaller;">This <a href="http://microformats.org/wiki/hcalendar">hCalendar event</a> brought to you by the <a href="http://microformats.org/code/hcalendar/creator">hCalendar Creator</a>. </p> </div> Other Microformats Here are some other noteworthy microformats: • xoxo (http://microformats.org/wiki/xoxo) represents hierarchical outlines (that is, nested lists). • vote-links (http://microformats.org/wiki/vote-links) indicates whether a link repre- sents a vote-for, vote-abstain, or vote-against the link. • hReview (http://microformats.org/wiki/hreview) represents reviews of URLs. • hResume (http://microformats.org/wiki/hresume) represents resumes. CHAPTER 18 ■ USING MICROFORMATS AND RDFA AS EMBEDDABLE DATA FORMATS 551 858Xch18FINAL.qxd 2/4/08 3:37 PM Page 551 Microformats in Practice You can learn a lot about microformats by studying how they are actually being used on the Web. Some implementations include the following: • The use of adr, hCard, hCalendar, tag, and geo by Upcoming.yahoo.com and Eventful.com • The use of adr and hCard at Yahoo! Local • The use of hCard and adr on Technorati I suggest using the list of implementations of microformats in the wild (http:// microformats.org/wiki/examples-in-the-wild), which includes lists for geo, hCalendar, hCard, hReview, and include-pattern. Go to the listed sites, and use Operator to pick out the microformats. Programming with Microformats For simple microformats, including the ones that depend on rel-design-pattern, it should be simple enough to write your own code to parse data from and write data to the appropriate rel and rev attributes. It takes a lot more work to handcraft parsers for complicated microfor- mats such as hCard and hCalendar because there are many possible properties. There are no schemas for microformats, only specifications written for direct human interpretation, which makes difficult any autogeneration of high-quality language-specific parsers from the specifications. 9 A challenge in working with microformats is the lack of validators. Norm Walsh argues that W3C Schema and Relax-NG will not work for the purpose of expressing the syntax of microformats as schemas, though Schematron might be up for the task. 10 You can use XMDP, a schema (of sorts) geared to easy human consumption, to get partway to generating valida- tors, argues Brian Suda, at least for some simple formats. 11 Hence, you will need to look for some handcrafted language-specific libraries to handle microformats. Start by looking at http://microformats.org/wiki/implementations. Language-Specific Libraries Here are some language-specific libraries: • mofo (http://mofo.rubyforge.org/) is a new Ruby library that has support for a variety of microformats including hCard, hCalendar, and xfn. • uformats (http://rubyforge.org/projects/uformats/) is another Ruby library that has support for hReview, hCard, hCalendar, rel-tag, rel-license, and include-pattern. CHAPTER 18 ■ USING MICROFORMATS AND RDFA AS EMBEDDABLE DATA FORMATS552 9. http://smackman.com/2006/06/01/an-old-idea/ and http://lists.w3.org/Archives/Public/public- rdf-in-xhtml-tf/2006Jun/0011.html. 10. See http://norman.walsh.name/2006/04/13/validatingMicroformats for more about validating microformats. Erik van der Vlist adds to this analysis at http://eric.van-der-vlist.com/blog/2277_ Validating_microformats.item. 11. http://norman.walsh.name/2005/09/05/microformats#comment0008 858Xch18FINAL.qxd 2/4/08 3:37 PM Page 552 • For PHP 5, consider using hKit (http://allinthehead.com/hkit/), which has support for hCard. • Probably the best library out there is Microformats.js, which is the heart of the Operator add-on. 12 There are interesting things to do with Operator, both for what it can do today and for how it might be a harbinger of things to come in Firefox 3 (which might have native support for microformats). 13 Operator makes a great sandbox for experimenting with microformats. Here are some things to try: • Download and install user-scripts to add new actions and new microformats (http:// www.kaply.com/weblog/operator-user-scripts/). • Try your hand at writing new actions or support for new microformats by studying existing scripts and the documentation. 14 • Study the code for Operator to pick up on the subtleties that go into working code using microformats. 15 Writing an Operator Script In this section, I’ll lead you through the process of creating a simple user script for Operator. Start by looking through the best documentation for understanding Operator scripts: http://www.kaply.com/weblog/operator-user-scripts/ There you will find a tutorial for writing a script that lets users find the closest Domino’s Pizza to a given instance of an address (adr): http://www.kaply.com/weblog/operator-user-scripts/creating-a-microformat-action- user-script-basic/ In this section, I will walk you through the steps to create a script that performs a similar function. Instead of converting an adr instance into a URL to the Domino’s Pizza web site, our script will geocode the address by creating a URL to http://geocoder.us. Since our script is similar to that of the tutorial, we will follow a two-step strategy: 1. Install the tutorial script to understand how it works. 2. Convert the script to one that geocodes the adr instance. CHAPTER 18 ■ USING MICROFORMATS AND RDFA AS EMBEDDABLE DATA FORMATS 553 12. http://svn.mozilla.org/labs/operator/chrome/operator/content/Microformats/Microformats.js 13. http://www.readwriteweb.com/archives/mozilla_does_microformats_firefox3.php 14. http://www.kaply.com/weblog/2007/04/24/operator-action-architecture/ and http://www.kaply.com/weblog/2007/04/18/microformat-objects-in-javascript/ 15. http://svn.mozilla.org/labs/operator/ 858Xch18FINAL.qxd 2/4/08 3:37 PM Page 553 Studying the Tutorial Script You will find the tutorial script here: http://www.kaply.com/weblog/wp-content/uploads/2007/07/dominos.js It’s possible that after this book is published, there might be a newer version of the refer- enced user scripts. You can check here: http://www.kaply.com/weblog/operator-user-scripts/. Install it and restart your web browser. If you run the action on this: http://upcoming.yahoo.com/event/144855 your browser will conduct a search for the closest Domino’s Pizza stores to 1401 N Shoreline Blvd in Mountain View, CA: http://www.dominos.com/apps/storelocator-EN.jsp?street=1401%20N%20Shoreline%20Blvd.&➥ cityStateZip=California,%20Mountain%20View%2094043 Let’s now study the script to understand how it works: var dominos = { description: "Find the nearest Domino's Pizza", shortDescription: "Domino's", scope: { semantic: { "adr" : "adr" } }, doAction: function(semanticObject, semanticObjectType) { var url; if (semanticObjectType == "adr") { var adr = semanticObject; url = "http://www.dominos.com/apps/storelocator-EN.jsp?"; if (adr["street-address"]) { url += "street="; url += adr["street-address"].join(", "); } if ((adr.region) || (adr.locality) || (adr["postal-code"])) { url += "&cityStateZip="; } if (adr.region) { url += adr.region; url += ", "; } if (adr.locality) { url += adr.locality; url += " "; } if (adr["postal-code"]) { url += adr["postal-code"]; } CHAPTER 18 ■ USING MICROFORMATS AND RDFA AS EMBEDDABLE DATA FORMATS554 858Xch18FINAL.qxd 2/4/08 3:37 PM Page 554 } return url; } }; SemanticActions.add("dominos", dominos); There are several elements to notice about this script as you think about how to adapt it: • The dominos JavaScript object defines an action. An action consists of four properties: description, shortDescription, scope, and doAction. • You should change the name of the JavaScript object, its description, and its shortDescription to fit the purpose of the new script. • The scope property is used to tie an action to a specific data format. The following: scope: { semantic: { "adr" : "adr" } means any adr instance. You can limit the scope to only adr instances with the property locality with this: scope: { semantic: { "adr" : "locality" } or to a certain URL: scope: { url: "http://www.flickr.com" } • Associated with the doAction property is a function that actually creates the URL for Domino’s Pizza by concatenating the various pieces of the adr instance. To adapt this function, you need to understand the URL structure of http://geocoder.us, the service we will use to geocode the address. • Note that the simplest type of action of an Operator script is to return a URL, which the browser then loads. (You can learn how to get Operator actions to perform other operations by reading the advanced tutorials at http://www.kaply.com/weblog/ operator-user-scripts/.) CHAPTER 18 ■ USING MICROFORMATS AND RDFA AS EMBEDDABLE DATA FORMATS 555 858Xch18FINAL.qxd 2/4/08 3:37 PM Page 555 Writing a Geocoding Script As you learned in Chapter 13, there are a variety of sites to use to geocode an address in the United States. One service is Geocoder.us. You can geocode an address here: http://geocoder.us/demo.cgi?address={address} For example: http://geocoder.us/demo.cgi?address=1600+Pennsylvania+Ave%2C+Washington+DC Taking the URL template for Geocoder.us into account, you can adapt the script to come up with something like the following: // based on http://www.kaply.com/weblog/wp-content/uploads/2007/07/dominos.js var geocoder_us = { description: "Geocode with geocoder_us", shortDescription: "geocoder_us", scope: { semantic: { "adr" : "adr" } }, doAction: function(semanticObject, semanticObjectType) { var url; if (semanticObjectType == "adr") { var adr = semanticObject; url = "http://geocoder.us/demo.cgi?address="; if (adr["street-address"]) { url += adr["street-address"].join(", "); url += ", "; } if (adr.locality) { url += adr.locality; url += ", "; } if (adr.region) { url += adr.region; url += ", "; } if (adr["postal-code"]) { url += adr["postal-code"]; } } return url; } }; SemanticActions.add("geocoder_us", geocoder_us); CHAPTER 18 ■ USING MICROFORMATS AND RDFA AS EMBEDDABLE DATA FORMATS556 858Xch18FINAL.qxd 2/4/08 3:37 PM Page 556 The resulting URL for Mashup Camp IV on Upcoming.yahoo.com is as follows: http://geocoder.us/demo.cgi?address=1401%20N%20Shoreline%20Blvd.,%20Mountain%20View,➥ %20California,%2094043 Resources (RDFa): A Promising Complement to Microformats There’s a lot of hype around RDF and the semantic Web, but the core concept of the Resource Description Framework (RDF) is simple: • An RDF document is just a series of statements about resources in a subject-predicate-object (triplet) form. In other words, they are statements where a resource (R) has a property (P) of a value (V)—a triplet (R,P,V). For example: ("Raymond Yee", "has age of ", 40). • RDF vocabularies define ways to talk about such things as types of resources and terms for properties. For example, a genealogical vocabulary would define properties such as “is mother of” and “is sister of.” • Once we have these types of RPVs around, we can add to the mix various logical propo- sitions. If V > 30 of an RPV with P="has age of", then (R, "has to trust status", No). In other words, a computer program should be able to deduce that Raymond Yee should not be trusted since he is older than 30, since one must not trust anyone older than 30. Tim Bray’s “What is RDF?” (http://www.xml.com/pub/a/2001/01/24/rdf.html) was the first essay I read in my attempts to understand RDF. It’s still very good. However, I think that the triplets idea was still unclear to me after reading the essay. (And I don’t blame Tim Bray for that since the idea is clearly in the essay.) So, you should follow up Bray’s essay with reading something like Aaron Schwartz’s “RDF Primer Primer” (http://notabug.com/2002/rdfprimer/). The two complement each other. You can express RDF triplets in many ways, including the standard RDF/XML syntax (http://www.w3.org/TR/rdf-syntax-grammar/). Since we have been discussing how microfor- mats embed machine-understandable data in (X)HTML, we’ll now look at RDFa (http:// rdfa.info/about/), described in the following way: With RDFa, you can easily include extra “structure” in your HTML to indicate a calendar event, contact information, a document license, etc. . . . RDFa is about total publisher control: you choose which attributes to use, which to reuse from other sites, and how to evolve, over time, the meaning of these attributes. Here is a sample RDFa assertion, in which the resource (a book with ISBN of 9781590598580) has a property (namely, the Dublin Core title) whose value is Pro Web 2.0 Mashups: Remixing Data and Web Services: 16 <span xmlns:dc="http://purl.org/dc/elements/1.1/" about="isbn:9781590598580" property="dc:title">Pro Web 2.0 Mashups: Remixing Data and Web Services</span> CHAPTER 18 ■ USING MICROFORMATS AND RDFA AS EMBEDDABLE DATA FORMATS 557 16. http://examples.mashupguide.net/ch18/sample_rdf.html 858Xch18FINAL.qxd 2/4/08 3:37 PM Page 557 I think that microformats and RDFa will both have a place on the Web. Microformats already have some good uptake and are grounded in today’s real-world problems. They are focused on very specific applications. RDFa provides a mechanism for making more general assertions about pieces of data. Reference for Further Study The following are useful resources for more on microformats: • The microformat book at http://microformatique.com/book/ • Micah Dubinko’s “What Are Microformats?” 17 • Uche Ogbuji’s “Microformats in Context” 18 Summary You can use microformats and RDFa to embed data into the human-readable contexts of (X)HTML. In this chapter, you looked at instances of microformats that you can find “in the wild” (such as on Upcoming.yahoo.com) and ones that you can craft as simple examples, and you learned about how you can use microformats to embed data (such as contact information, addresses, geolocations, bookmarks, tags, and licenses) into (X)HTML. Microformats tend to follow certain common design patterns (that is, use class attributes or use the rel attribute) and are adapted from existing standards (such as iCalendar and vCard). In this chapter, you learned how to use the Operator Firefox extension to work with micro- formats, including extracting them from web pages and invoking actions on them. You saw how these Operator actions enact simple mashups that move data from any web site with embed- ded microformats to another web site. CHAPTER 18 ■ USING MICROFORMATS AND RDFA AS EMBEDDABLE DATA FORMATS558 17. http://www.xml.com/pub/a/2005/03/23/deviant.html 18. http://www.xml.com/pub/a/2006/04/26/microformats-grddl-rdfa-nvdl.html 858Xch18FINAL.qxd 2/4/08 3:37 PM Page 558 Integrating Search No one needs to be reminded that search engines are at the heart of the current web infra- structure. Not surprisingly, it’s useful to be able to integrate search functionality and search results into mashups. If a mashup is integrated with search engines via their APIs, users of the mashups can more easily find and reuse that digital content. This chapter shows how to use the Google, Yahoo!, and Live.com search APIs, as well as configuring searchable web sites for access as a search plug-in in Firefox 2.0 or Internet Explorer 7 using OpenSearch. This chapter will also examine briefly how to use the Google Desktop Search API. Google Ajax Search Google was one of the first major search companies to provide an API: the Google SOAP API. Since December 2006, no new developer keys have been issued because Google is directing users to its newer Ajax Search API, which we will now study. The Google Ajax Search API (http://code.google.com/apis/ajaxsearch/) gives you a search widget that you can embed in your web site. You can access functionality for searching the Web, doing local searches (tied to maps), and doing video searches. The widget displays a search box and takes care of displaying search results in an HTML element that you designate. Like Google Maps, you have to sign up for a key that is tied to a specific directory; you can do that here: http://code.google.com/apis/ajaxsearch/signup.html Paste the “Hello, World” code into your page, and load it. 1 The “Hello, World” code shows you how to create a basic search box and display the results. Manipulating Search Results Let’s adapt the basic code to let a user search a particular search source (the web search) and save a result. This is done by creating a callback (KeepHandler) with the setOnKeepCallback method. You’ll also see some code to access the attributes of the result. 2 559 CHAPTER 19 ■ ■ ■ 1. http://examples.mashupguide.net/ch19/google.ajax.1.html 2. http://examples.mashupguide.net/ch19/google.ajax.2.html 858Xch19FINAL.qxd 2/4/08 3:39 PM Page 559 [...]... command-line tool, 177–178 curl invocation, 200, 427 custom template, 289–291 D Dapper mashup tool, 310 data attribute, 294 data compression, 138 Data formats tab, 547 Data Mashups Online Service mashup tool, 310 data standards, 323–324 dates submethod, 402 datetime-design-pattern format, 546 DC (Dublin Core) metadata standard, 90 dc prefix, 90 Debug Mode option, 540 de-de value, lang parameter, 87 DELETE method,... 316 RSD specification, 115–116 sending Flickr pictures to, 106 –111 blogging Flickr pictures, 110 configuring Flickr for integration, 107 – 110 overview, 106 107 WordPress, 108 Blogspot weblogs, 94 BlueOrganizer, 238 bold, ODF, 505–506 book_writing_calendar_entry.xml file, 432 BookBump, 238 BookBurro, 18 bookmark, 395, 408–409 bookmarklet, 13, 210 books, tracking, 235–239 bots, 58–59 bounding box, 270–272,... you can get an application ID and a shared secret Now, let’s do a web search that doesn’t require any authentication Consulting the documentation (http://developer.yahoo.com/search /web/ ) and specifically the classic web search documentation (http://developer.yahoo.com/search /web/ V1/webSearch.html), you can see a sample query: http://search.yahooapis.com/WebSearchService/V1/webSearch?appid=YahooDemo&➥... flows, 113 filtering, 103 finding, 93–94 Flickr, 86–92 exchange formats, 90–92 parameters, 86–87 Google News, 95–96 how to persist, 299–304 overview, 299–301 selection and deletion process for photos, 302–304 news aggregators, 96–97 overview, 78 remixing with Feedburner, 99 100 with Yahoo! Pipes, 100 104 RSS 1.0, 80–82 RSS 2.0, 78–86 scraping using GUI tools, 98–99 validating, 98 weblogs, 94 Wikipedia,... CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEYCLIENT RELATIONSHIP CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN “AS-IS” BASIS CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE License THE WORK (AS DEFINED BELOW ) IS PROVIDED UNDER THE TERMS OF... (Atom Publication Protocol), 82, 199, 316, 420, 426 appid parameter, 332, 356, 566 AppleScript, programming Google Earth via, 375 application programming interfaces See APIs applications See web sites ASIN (Amazon Standard Identification Number), 53 Atom data, Google Calendar, 424–426 in Flickr, 45 publishing, 320 Version 1.0, 82–86 Atom feeds, 27, 94, 316, 420, 545 Atom Publication Protocol (APP), 82,... (Amazon Web Services) , 476 AWSAccessKeyId parameter, 478 B b value, topic feed, 95 Bach keyword, 443, 451 badge, 317 basic value, projection parameter, 428 BBAuth authentication, 561 bbox parameter, 256, 377–378 BEA AquaLogic Pages mashup tool, 310 Berkeley Public Library (BPL), 14 Better Flickr Firefox Extension, 25 Bidochko, Andriy, 329 binding, 184 blog template, 289 BlogDesk, 111 Blogger, 109 – 110, ... 128–132 flickr.reflection methods, 146–154 kits, 165–169 limitations of, 169–170 policy, 128 request and response formats, 154–156 terms of use, 128 XML response, 124–127 blogging pictures, 110 browsing through, 40–41 configuring for blog integration, 107 – 110 Blogger blogs, 109 – 110 WordPress blogs, 108 contacts, 38 Creative Commons (CC) licensing, 46 displaying photos using , 292–294 858XchIDXFINAL.qxd... 203 HTTP methods, 203 lists of blogs and posts, 200–201 overview, 199 updating entries, 203 user IDs, 200 blogger.message.2.xml file, 203 blogging integration, 114 Blogging protocol, 111 Bloglines, 97 blogs, 105 –118 See also Blogger desktop blogging tools, 111–112 feeds, 94 Flock social web browser, 114 generating feedback flows, 113 integration scenarios for, 105 106 interfacing with Flickr, 44–45 linkbacks,... “LICENSE”) THE WORK IS PROTECTED BY COPYRIGHT AND/ OR OTHER APPLICABLE LAW ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS 1 Definitions . <ClickUrl>http://uk.wrs.yahoo.com/_ylt=➥ A0Je5VZ47HdGmOQAzhvdmMwF;_ylu=X3oDMTB2cXVjNTM5BGNvbG8DdwRsA1dTMQRwb3MDMQRzZWMDc3IEdn➥ RpZAM-/SIG=19qu9j9dq/EXP=11 823 508 40/ **http%3A//rdrw1.yahoo.com/click%3 Fu=http%3A//clickserve.cc-dt.com/link/click %25 3Flid %25 3D4 100 000 001 15 624 37 %26 y =04 765B7ED3D00A0BB4 %26 i=4 82% 26c=37687 %26 q= 02 % 255ESSHPM %25 5BL7ysphzm6 %26 e=utf-8 %26 r =0 %26 d=wow~WBSV-en-us %26 n=LP94K1LESHRKDFP3 %26 s=3 %26 t= %26 m=4677EC78 %26 x =05 7E49A7F20A 924 F7B2C30A7 101 C217A96</ClickUrl> <DisplayUrl>www.1 800 flowers.com/</DisplayUrl> <ModificationDate>1181631 600 </ModificationDate> <MimeType>text/html</MimeType> </Result> The. follows: http://geocoder.us/demo.cgi?address=1 401 % 20 N % 20 Shoreline % 20 Blvd., % 20 Mountain % 20 View,➥ % 20 California, % 20 9 404 3 Resources (RDFa): A Promising Complement to Microformats There’s a lot of hype around RDF and the semantic Web, but. <ClickUrl>http://uk.wrs.yahoo.com/_ylt=➥ A0Je5VZ47HdGmOQAzhvdmMwF;_ylu=X3oDMTB2cXVjNTM5BGNvbG8DdwRsA1dTMQRwb3MDMQRzZWMDc3IEdn➥ RpZAM-/SIG=19qu9j9dq/EXP=11 823 508 40/ **http%3A//rdrw1.yahoo.com/click%3 Fu=http%3A//clickserve.cc-dt.com/link/click %25 3Flid %25 3D4 100 000 001 15 624 37 %26 y =04 765B7ED3D00A0BB4 %26 i=4 82% 26c=37687 %26 q= 02 % 255ESSHPM %25 5BL7ysphzm6 %26 e=utf-8 %26 r =0 %26 d=wow~WBSV-en-us %26 n=LP94K1LESHRKDFP3 %26 s=3 %26 t= %26 m=4677EC78 %26 x =05 7E49A7F20A 924 F7B2C30A7 101 C217A96</ClickUrl> <DisplayUrl>www.1 800 flowers.com/</DisplayUrl> <ModificationDate>1181631 600 </ModificationDate> <MimeType>text/html</MimeType> </Result> The

Ngày đăng: 12/08/2014, 23:21

Từ khóa liên quan

Tài liệu cùng người dùng

Tài liệu liên quan