From dc09453a77f33c4dfdff306321ce93cf5fbd2d57 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 8 Feb 2010 11:06:03 -0800 Subject: First steps on converting FeedSub into the pub/sub basis for OStatus communications: * renamed FeedSub plugin to OStatus * now setting avatar on subscriptions * general fixes for subscription * integrated PuSH hub to handle only user timelines on canonical ID url; sends updates directly * set $config['feedsub']['nohub'] = true to test w/ foreign feeds that don't have hubs (won't actually receive updates though) * a few bits of code documentation * HMAC support for verified distributions (safest if sub setup is on HTTPS) And a couple core changes: * minimizing HTML output for exceptions in API requests to aid in debugging * fix for rel=self link in apitimelineuser when id given This does not not yet include any of the individual subscription management (Salmon notifications for sub/unsub, etc) nor a nice UI for user subscriptions. Needs some further cleanup to treat posts as status updates instead of link references. --- .../extlib/XML/Feed/samples/atom10-entryonly.xml | 28 +++ .../extlib/XML/Feed/samples/atom10-example1.xml | 20 ++ .../extlib/XML/Feed/samples/atom10-example2.xml | 45 ++++ .../OStatus/extlib/XML/Feed/samples/delicious.feed | 177 ++++++++++++++++ .../OStatus/extlib/XML/Feed/samples/flickr.feed | 184 +++++++++++++++++ .../extlib/XML/Feed/samples/grwifi-atom.xml | 7 + plugins/OStatus/extlib/XML/Feed/samples/hoder.xml | 102 ++++++++++ .../extlib/XML/Feed/samples/illformed_atom10.xml | 13 ++ .../extlib/XML/Feed/samples/rss091-complete.xml | 47 +++++ .../XML/Feed/samples/rss091-international.xml | 30 +++ .../extlib/XML/Feed/samples/rss091-simple.xml | 15 ++ .../extlib/XML/Feed/samples/rss092-sample.xml | 103 ++++++++++ .../extlib/XML/Feed/samples/rss10-example1.xml | 62 ++++++ .../extlib/XML/Feed/samples/rss10-example2.xml | 67 ++++++ .../OStatus/extlib/XML/Feed/samples/rss2sample.xml | 42 ++++ .../extlib/XML/Feed/samples/sixapart-jp.xml | 226 +++++++++++++++++++++ .../extlib/XML/Feed/samples/technorati.feed | 54 +++++ 17 files changed, 1222 insertions(+) create mode 100755 plugins/OStatus/extlib/XML/Feed/samples/atom10-entryonly.xml create mode 100755 plugins/OStatus/extlib/XML/Feed/samples/atom10-example1.xml create mode 100755 plugins/OStatus/extlib/XML/Feed/samples/atom10-example2.xml create mode 100755 plugins/OStatus/extlib/XML/Feed/samples/delicious.feed create mode 100755 plugins/OStatus/extlib/XML/Feed/samples/flickr.feed create mode 100755 plugins/OStatus/extlib/XML/Feed/samples/grwifi-atom.xml create mode 100755 plugins/OStatus/extlib/XML/Feed/samples/hoder.xml create mode 100755 plugins/OStatus/extlib/XML/Feed/samples/illformed_atom10.xml create mode 100755 plugins/OStatus/extlib/XML/Feed/samples/rss091-complete.xml create mode 100755 plugins/OStatus/extlib/XML/Feed/samples/rss091-international.xml create mode 100755 plugins/OStatus/extlib/XML/Feed/samples/rss091-simple.xml create mode 100755 plugins/OStatus/extlib/XML/Feed/samples/rss092-sample.xml create mode 100755 plugins/OStatus/extlib/XML/Feed/samples/rss10-example1.xml create mode 100755 plugins/OStatus/extlib/XML/Feed/samples/rss10-example2.xml create mode 100755 plugins/OStatus/extlib/XML/Feed/samples/rss2sample.xml create mode 100755 plugins/OStatus/extlib/XML/Feed/samples/sixapart-jp.xml create mode 100755 plugins/OStatus/extlib/XML/Feed/samples/technorati.feed (limited to 'plugins/OStatus/extlib/XML/Feed/samples') diff --git a/plugins/OStatus/extlib/XML/Feed/samples/atom10-entryonly.xml b/plugins/OStatus/extlib/XML/Feed/samples/atom10-entryonly.xml new file mode 100755 index 000000000..02e1c5800 --- /dev/null +++ b/plugins/OStatus/extlib/XML/Feed/samples/atom10-entryonly.xml @@ -0,0 +1,28 @@ + + + Atom draft-07 snapshot + + + tag:example.org,2003:3.2397 + 2005-07-10T12:29:29Z + 2003-12-13T08:29:29-04:00 + + Mark Pilgrim + http://example.org/ + f8dy@example.com + + + Sam Ruby + + + Joe Gregorio + + +
+

[Update: The Atom draft is finished.]

+
+
+
\ No newline at end of file diff --git a/plugins/OStatus/extlib/XML/Feed/samples/atom10-example1.xml b/plugins/OStatus/extlib/XML/Feed/samples/atom10-example1.xml new file mode 100755 index 000000000..d181d2b6f --- /dev/null +++ b/plugins/OStatus/extlib/XML/Feed/samples/atom10-example1.xml @@ -0,0 +1,20 @@ + + + + Example Feed + + 2003-12-13T18:30:02Z + + John Doe + + urn:uuid:60a76c80-d399-11d9-b93C-0003939e0af6 + + + Atom-Powered Robots Run Amok + + urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a + 2003-12-13T18:30:02Z + Some text. + + + \ No newline at end of file diff --git a/plugins/OStatus/extlib/XML/Feed/samples/atom10-example2.xml b/plugins/OStatus/extlib/XML/Feed/samples/atom10-example2.xml new file mode 100755 index 000000000..98abf9d54 --- /dev/null +++ b/plugins/OStatus/extlib/XML/Feed/samples/atom10-example2.xml @@ -0,0 +1,45 @@ + + + dive into mark + + A <em>lot</em> of effort + went into making this effortless + + 2005-07-31T12:29:29Z + tag:example.org,2003:3 + + + Copyright (c) 2003, Mark Pilgrim + + Example Toolkit + + + Atom draft-07 snapshot + + + tag:example.org,2003:3.2397 + 2005-07-31T12:29:29Z + 2003-12-13T08:29:29-04:00 + + Mark Pilgrim + http://example.org/ + f8dy@example.com + + + Sam Ruby + + + Joe Gregorio + + +
+

[Update: The Atom draft is finished.]

+
+
+
+
\ No newline at end of file diff --git a/plugins/OStatus/extlib/XML/Feed/samples/delicious.feed b/plugins/OStatus/extlib/XML/Feed/samples/delicious.feed new file mode 100755 index 000000000..32f9fa493 --- /dev/null +++ b/plugins/OStatus/extlib/XML/Feed/samples/delicious.feed @@ -0,0 +1,177 @@ + + + + +del.icio.us/tag/greenbelt +http://del.icio.us/tag/greenbelt +Text + + + + + + + + + + + + + + + + +Greenbelt - Homepage Section +http://www.greenbelt.org.uk/ +jonnybaker +2005-05-16T16:30:38Z +greenbelt + + + + + + + + +Greenbelt festival (uk) +http://www.greenbelt.org.uk/ +sssshhhh +2005-05-14T18:19:40Z +audiology festival gigs greenbelt + + + + + + + + + + + +Natuerlichwien.at - Rundumadum +http://www.natuerlichwien.at/rundumadum/dergruenguertel/ +egmilman47 +2005-05-06T21:33:41Z +Austria Vienna Wien greenbelt nature walking + + + + + + + + + + + + + +Tank - GBMediaWiki +http://www.flickerweb.co.uk/wiki/index.php/Tank#Seminars +jystewart +2005-03-21T22:44:11Z +greenbelt + + + + + + + + +Greenbelt homepage +http://www.greenbelt.ca/home.htm +Gooberoo +2005-03-01T22:43:17Z +greenbelt ontario + + + + + + + + + +Pip Wilson bhp ...... blog +http://pipwilsonbhp.blogspot.com/ +sssshhhh +2004-12-27T11:20:51Z +Greenbelt friend ideas links thinking weblog + + + + + + + + + + + + + +maggi dawn +http://maggidawn.typepad.com/maggidawn/ +sssshhhh +2004-12-27T11:20:11Z +Greenbelt ideas links thinking weblog + + + + + + + + + + + + +John Davies +http://www.johndavies.org/ +sssshhhh +2004-12-27T11:18:37Z +Greenbelt ideas links thinking weblog + + + + + + + + + + + + +jonnybaker +http://jonnybaker.blogs.com/ +sssshhhh +2004-12-27T11:18:17Z +Greenbelt event ideas links resources thinking weblog youth + + + + + + + + + + + + + + + diff --git a/plugins/OStatus/extlib/XML/Feed/samples/flickr.feed b/plugins/OStatus/extlib/XML/Feed/samples/flickr.feed new file mode 100755 index 000000000..57e83af57 --- /dev/null +++ b/plugins/OStatus/extlib/XML/Feed/samples/flickr.feed @@ -0,0 +1,184 @@ + + + + jamesstewart - Everyone's Tagged Photos + + + A feed of jamesstewart - Everyone's Tagged Photos + 2005-08-01T18:50:26Z + Flickr + + + Oma and James + + + tag:flickr.com,2004:/photo/30367516 + 2005-08-01T18:50:26Z + 2005-08-01T18:50:26Z + <p><a href="http://www.flickr.com/people/30484029@N00/">kstewart</a> posted a photo:</p> + +<p><a href="http://www.flickr.com/photos/30484029@N00/30367516/" title="Oma and James"><img src="http://photos23.flickr.com/30367516_1f685a16e8_m.jpg" width="240" height="180" alt="Oma and James" style="border: 1px solid #000000;" /></a></p> + +<p>I have a beautiful Oma and a gorgeous husband.</p> + + kstewart + http://www.flickr.com/people/30484029@N00/ + + jamesstewart oma stoelfamily + + + + + tag:flickr.com,2004:/photo/21376174 + 2005-06-25T02:00:35Z + 2005-06-25T02:00:35Z + <p><a href="http://www.flickr.com/people/buddscreek/">Lan Rover</a> posted a photo:</p> + +<p><a href="http://www.flickr.com/photos/buddscreek/21376174/" title=""><img src="http://photos17.flickr.com/21376174_4314fd8d5c_m.jpg" width="240" height="160" alt="" style="border: 1px solid #000000;" /></a></p> + +<p>AMA Motocross Championship 2005, Budds Creek, Maryland</p> + + Lan Rover + http://www.flickr.com/people/buddscreek/ + + amamotocrosschampionship buddscreek maryland 2005 fathersday motocrossnational rickycarmichael 259 jamesstewart 4 + + + + + tag:flickr.com,2004:/photo/21375650 + 2005-06-25T01:56:24Z + 2005-06-25T01:56:24Z + <p><a href="http://www.flickr.com/people/buddscreek/">Lan Rover</a> posted a photo:</p> + +<p><a href="http://www.flickr.com/photos/buddscreek/21375650/" title=""><img src="http://photos16.flickr.com/21375650_5c60e0dab1_m.jpg" width="240" height="160" alt="" style="border: 1px solid #000000;" /></a></p> + + + + Lan Rover + http://www.flickr.com/people/buddscreek/ + + amamotocrosschampionship buddscreek maryland 2005 fathersday motocrossnational 259 jamesstewart + + + + + tag:flickr.com,2004:/photo/21375345 + 2005-06-25T01:54:11Z + 2005-06-25T01:54:11Z + <p><a href="http://www.flickr.com/people/buddscreek/">Lan Rover</a> posted a photo:</p> + +<p><a href="http://www.flickr.com/photos/buddscreek/21375345/" title=""><img src="http://photos15.flickr.com/21375345_4205fdd22b_m.jpg" width="160" height="240" alt="" style="border: 1px solid #000000;" /></a></p> + + + + Lan Rover + http://www.flickr.com/people/buddscreek/ + + amamotocrosschampionship buddscreek maryland 2005 fathersday motocrossnational 259 jamesstewart + + + Lunch with Kari & James, café in the crypt of St Martin in the fields + + tag:flickr.com,2004:/photo/16516618 + 2005-05-30T21:56:39Z + 2005-05-30T21:56:39Z + <p><a href="http://www.flickr.com/people/fidothe/">fidothe</a> posted a photo:</p> + +<p><a href="http://www.flickr.com/photos/fidothe/16516618/" title="Lunch with Kari &amp; James, café in the crypt of St Martin in the fields"><img src="http://photos14.flickr.com/16516618_afaa4a395e_m.jpg" width="240" height="180" alt="Lunch with Kari &amp; James, café in the crypt of St Martin in the fields" style="border: 1px solid #000000;" /></a></p> + + + + fidothe + http://www.flickr.com/people/fidothe/ + + nokia7610 london stmartininthefields clarepatterson jamesstewart parvinstewart jimstewart susanstewart + + + Stewart keeping it low over the obstacle. + + tag:flickr.com,2004:/photo/10224728 + 2005-04-21T07:30:29Z + 2005-04-21T07:30:29Z + <p><a href="http://www.flickr.com/people/pqbon/">pqbon</a> posted a photo:</p> + +<p><a href="http://www.flickr.com/photos/pqbon/10224728/" title="Stewart keeping it low over the obstacle."><img src="http://photos7.flickr.com/10224728_b756341957_m.jpg" width="240" height="180" alt="Stewart keeping it low over the obstacle." style="border: 1px solid #000000;" /></a></p> + + + + pqbon + http://www.flickr.com/people/pqbon/ + + ama hangtown motocross jamesstewart bubba + + + king james stewart + + tag:flickr.com,2004:/photo/7152910 + 2005-03-22T21:53:37Z + 2005-03-22T21:53:37Z + <p><a href="http://www.flickr.com/people/jjlook/">jj look</a> posted a photo:</p> + +<p><a href="http://www.flickr.com/photos/jjlook/7152910/" title="king james stewart"><img src="http://photos7.flickr.com/7152910_a02ab5a750_m.jpg" width="180" height="240" alt="king james stewart" style="border: 1px solid #000000;" /></a></p> + +<p>11th</p> + + jj look + http://www.flickr.com/people/jjlook/ + + dilomar05 eastside austin texas 78702 kingjames stewart jamesstewart borrowed + + + It's a Grind, downtown Grand Rapids (James, Susan, Jim, Harv, Lawson) + + tag:flickr.com,2004:/photo/1586562 + 2004-11-20T09:34:28Z + 2004-11-20T09:34:28Z + <p><a href="http://www.flickr.com/people/fidothe/">fidothe</a> posted a photo:</p> + +<p><a href="http://www.flickr.com/photos/fidothe/1586562/" title="It's a Grind, downtown Grand Rapids (James, Susan, Jim, Harv, Lawson)"><img src="http://photos2.flickr.com/1586562_0bc5313a3e_m.jpg" width="240" height="180" alt="It's a Grind, downtown Grand Rapids (James, Susan, Jim, Harv, Lawson)" style="border: 1px solid #000000;" /></a></p> + + + + fidothe + http://www.flickr.com/people/fidothe/ + + holiday grandrapids jamesstewart + + + It's a Grind, downtown Grand Rapids (James, Susan, Jim, Harv, Lawson) + + tag:flickr.com,2004:/photo/1586539 + 2004-11-20T09:28:16Z + 2004-11-20T09:28:16Z + <p><a href="http://www.flickr.com/people/fidothe/">fidothe</a> posted a photo:</p> + +<p><a href="http://www.flickr.com/photos/fidothe/1586539/" title="It's a Grind, downtown Grand Rapids (James, Susan, Jim, Harv, Lawson)"><img src="http://photos2.flickr.com/1586539_c51e5f2e7a_m.jpg" width="240" height="180" alt="It's a Grind, downtown Grand Rapids (James, Susan, Jim, Harv, Lawson)" style="border: 1px solid #000000;" /></a></p> + + + + fidothe + http://www.flickr.com/people/fidothe/ + + holiday grandrapids jamesstewart + + + It's a Grind, James and Jim can't decide) + + tag:flickr.com,2004:/photo/1586514 + 2004-11-20T09:25:05Z + 2004-11-20T09:25:05Z + <p><a href="http://www.flickr.com/people/fidothe/">fidothe</a> posted a photo:</p> + +<p><a href="http://www.flickr.com/photos/fidothe/1586514/" title="It's a Grind, James and Jim can't decide)"><img src="http://photos2.flickr.com/1586514_733c2dfa3e_m.jpg" width="240" height="180" alt="It's a Grind, James and Jim can't decide)" style="border: 1px solid #000000;" /></a></p> + + + + fidothe + http://www.flickr.com/people/fidothe/ + + holiday grandrapids jamesstewart johnkentish + + + \ No newline at end of file diff --git a/plugins/OStatus/extlib/XML/Feed/samples/grwifi-atom.xml b/plugins/OStatus/extlib/XML/Feed/samples/grwifi-atom.xml new file mode 100755 index 000000000..c351d3c16 --- /dev/null +++ b/plugins/OStatus/extlib/XML/Feed/samples/grwifi-atom.xml @@ -0,0 +1,7 @@ + Updates to Grand Rapids WiFi hotspot details 2005-09-01T15:43:01-05:00 WiFi Hotspots in Grand Rapids, MI http://grwifi.net/atom/locations Creative Commons Attribution-NonCommercial-ShareAlike 2.0 http://creativecommons.org/licenses/by-nc-sa/2.0/ Hotspot Details Updated: Sweetwaters http://grwifi.net/location/sweetwaters 2005-09-01T15:43:01-05:00 The details of the WiFi hotspot at: Sweetwaters have been updated. Find out more at: +http://grwifi.net/location/sweetwaters James http://jystewart.net james@jystewart.net wifi hotspot Hotspot Details Updated: Common Ground Coffee Shop http://grwifi.net/location/common-ground 2005-09-01T15:42:39-05:00 The details of the WiFi hotspot at: Common Ground Coffee Shop have been updated. Find out more at: +http://grwifi.net/location/common-ground James http://jystewart.net james@jystewart.net wifi hotspot Hotspot Details Updated: Grand Rapids Public Library, Main Branch http://grwifi.net/location/grpl-main-branch 2005-09-01T15:42:20-05:00 The details of the WiFi hotspot at: Grand Rapids Public Library, Main Branch have been updated. Find out more at: +http://grwifi.net/location/grpl-main-branch James http://jystewart.net james@jystewart.net wifi hotspot Hotspot Details Updated: Four Friends Coffee House http://grwifi.net/location/four-friends 2005-09-01T15:41:35-05:00 The details of the WiFi hotspot at: Four Friends Coffee House have been updated. Find out more at: +http://grwifi.net/location/four-friends James http://jystewart.net james@jystewart.net wifi hotspot Hotspot Details Updated: Barnes and Noble, Rivertown Crossings http://grwifi.net/location/barnes-noble-rivertown 2005-09-01T15:40:41-05:00 The details of the WiFi hotspot at: Barnes and Noble, Rivertown Crossings have been updated. Find out more at: +http://grwifi.net/location/barnes-noble-rivertown James http://jystewart.net james@jystewart.net wifi hotspot Hotspot Details Updated: The Boss Sports Bar & Grille http://grwifi.net/location/boss-sports-bar 2005-09-01T15:40:19-05:00 The details of the WiFi hotspot at: The Boss Sports Bar & Grille have been updated. Find out more at: +http://grwifi.net/location/boss-sports-bar James http://jystewart.net james@jystewart.net wifi hotspot \ No newline at end of file diff --git a/plugins/OStatus/extlib/XML/Feed/samples/hoder.xml b/plugins/OStatus/extlib/XML/Feed/samples/hoder.xml new file mode 100755 index 000000000..099463570 --- /dev/null +++ b/plugins/OStatus/extlib/XML/Feed/samples/hoder.xml @@ -0,0 +1,102 @@ + + + + +Editor: Myself (Persian) +http://editormyself.info +This is a Persian (Farsi) weblog, written by Hossein Derakhshan (aka, Hoder), an Iranian Multimedia designer and a journalist who lives in Toronto since Dec 2000. He also keeps an English weblog with the same name. +en-us +hoder@hotmail.com +2005-10-12T19:45:32-05:00 + +hourly +1 +2000-01-01T12:00+00:00 + + + +لينکدونی‌ | جلسه‌ی امریکن انترپرایز برای تقسیم قومی ایران +http://www.aei.org/events/type.upcoming,eventID.1166,filter.all/event_detail.asp +چطور بعضی‌ها فکر می‌کنند دست راستی‌های آمریکا از خامنه‌ای ملی‌گراترند +14645@http://i.hoder.com/ +iran +2005-10-12T19:45:32-05:00 + + + +لينکدونی‌ | به صبحانه آگهی بدهید +http://www.adbrite.com/mb/commerce/purchase_form.php?opid=24346&afsid=1 +خیلی ارزان و راحت است +14644@http://i.hoder.com/ +media/journalism +2005-10-12T17:23:15-05:00 + + + +لينکدونی‌ | نیروی انتظامی چگونه تابوهای هم‌جنس‌گرایانه را می‌شکند؛ فرنگوپولیس +http://farangeopolis.blogspot.com/2005/10/blog-post_08.html +از پس و پیش و حاشیه‌ی این ماجرا می‌توان یک مستند بی‌نظیر ساخت +14643@http://i.hoder.com/ +soc_popculture +2005-10-12T17:06:40-05:00 + + + +لينکدونی‌ | بازتاب توقیف شد +http://www.baztab.com/news/30201.php +اگر گفتید یک وب‌سایت را چطور توقیف می‌کنند؟ لابد ماوس‌شان را قایم می‌کنند. +14642@http://i.hoder.com/ +media/journalism +2005-10-12T14:41:57-05:00 + + + +لينکدونی‌ | رشد وب در سال 2005 از همیشه بیشتر بوده است" بی.بی.سی +http://news.bbc.co.uk/2/hi/technology/4325918.stm + +14640@http://i.hoder.com/ +tech +2005-10-12T13:04:46-05:00 + + + + + +==قرعه کشی گرین کارد به زودی شروع می‌شود== +http://nice.newsxphotos.biz/05/09/2007_dv_lottery_registration_to_begin_oct_5_14589.php + +14613@http://vagrantly.com +ads03 +2005-09-27T04:49:22-05:00 + + + + + + + + +پروژه‌ی هاروارد، قدم دوم +http://editormyself.info/archives/2005/10/051012_014641.shtml +اگر یادتان باشد چند وقت پیش نوشتم که دانشگاه هاروارد پروژه‌ای دارد با نام آواهای جهانی که در آن به وبلاگ‌های غیر انگلیسی‌زبان می‌پردازد. خواشتم که اگر کسی علاقه دارد ایمیل بزند. تعداد زیادی جواب دادند و ابراز علاقه کردند. حالا وقت قدم دوم است.

+ +

قدم دوم این است که برای اینکه مسوولین پروژه بتوانند تصمیم بگیرند که با چه کسی کار کنند، می‌خواهند نمونه‌ی کارهای علاقمندان مشارکت در این پرزو‌ه را ببینند.

+ +

برای همین از همه‌ی علاقماندان، حتی کسانی که قبلا اعلام آمادگی نکرده بودند، می‌‌خواهم که یک موضوع رایج این روزهای وبلاگستان فارسی را انتخاب کنند و در هفتصد کلمه، به انگلیسی، بنویسند که وبلاگ‌دارهای درباره‌اش چه می‌گویند. لینک به پنج، شش وبلاگ و بازنویسی آنچه آنها از جنبه‌های گوناگون درباره‌ی آن موضوع نوشته‌اند با نقل قول مستقیم از آنها (البته ترجمه شده از فارسی) کافی است. دو سه جمله هم اول کار توضیح دهید که چرا این موضوع مهم است.

+ +

متن نمونه را به آدرس ایمیل من hoder@hoder.com و نیز برای افراد زیر تا روز دوشنبه بفرستید:
+ربکا : rmackinnon@cyber.law.harvard.edu
+هیثم: haitham.sabbah@gmail.com

]]>
+14641@http://editormyself.info +weblog +2005-10-12T14:04:23-05:00 +
+ + + +
+
\ No newline at end of file diff --git a/plugins/OStatus/extlib/XML/Feed/samples/illformed_atom10.xml b/plugins/OStatus/extlib/XML/Feed/samples/illformed_atom10.xml new file mode 100755 index 000000000..612186897 --- /dev/null +++ b/plugins/OStatus/extlib/XML/Feed/samples/illformed_atom10.xml @@ -0,0 +1,13 @@ + + + + + Example author + me@example.com + http://example.com/ + + + + + + +Copyright 1997-1999 UserLand Software, Inc. +Thu, 08 Jul 1999 07:00:00 GMT +Thu, 08 Jul 1999 16:20:26 GMT +http://my.userland.com/stories/storyReader$11 +News and commentary from the cross-platform scripting community. +http://www.scripting.com/ +Scripting News + +http://www.scripting.com/ +Scripting News +http://www.scripting.com/gifs/tinyScriptingNews.gif +40 +78 +What is this used for? + +dave@userland.com (Dave Winer) +dave@userland.com (Dave Winer) +en-us + +6 +7 +8 +9 +10 +11 + + +Sunday + +(PICS-1.1 "http://www.rsac.org/ratingsv01.html" l gen true comment "RSACi North America Server" for "http://www.rsac.org" on "1996.04.16T08:15-0500" r (n 0 s 0 v 0 l 0)) + +stuff +http://bar +This is an article about some stuff + + +Search Now! +Enter your search <terms> +find +http://my.site.com/search.cgi + + + \ No newline at end of file diff --git a/plugins/OStatus/extlib/XML/Feed/samples/rss091-international.xml b/plugins/OStatus/extlib/XML/Feed/samples/rss091-international.xml new file mode 100755 index 000000000..cfe91691f --- /dev/null +++ b/plugins/OStatus/extlib/XML/Feed/samples/rss091-international.xml @@ -0,0 +1,30 @@ + + + + +膮ŸÛë´é´Ì´×´è´ŒÁ¹´Õ +http://www.mozilla.org +膮ŸÛë´é´Ì´×´è´ŒÁ¹´Õ +ja + +NYÒ™Á¢¸»ÌêÛì15285.25´ƒ´‘Á£´Û´—´ÀÁ¹´ê´Ì´éÒ™Ûì¡êçÒÕ‰ÌêÁ£ +http://www.mozilla.org/status/ +This is an item description... + + +‚§±Çç¡ËßÛÂҏéøÓ¸Á£Ë²®Ÿè†Ûè危ÇÌ’¡Íæ—éøë‡Á£ +http://www.mozilla.org/status/ +This is an item description... + + +ËÜË”ïÌëÈšÁ¢È†Ë§æàÀ豎ˉۂÁ¢Ë‚åܼšÛ˜íËüËÁ£ +http://www.mozilla.org/status/ +This is an item description... + + +2000‚øíŠåÁ¢«‘¦éÛ빏ېçéÛ§ÛÂè†ÒæÓ¸Á£Ì¾«…æ—ÕÝéøƒ¸Á£ +http://www.mozilla.org/status/ +This is an item description... + + + \ No newline at end of file diff --git a/plugins/OStatus/extlib/XML/Feed/samples/rss091-simple.xml b/plugins/OStatus/extlib/XML/Feed/samples/rss091-simple.xml new file mode 100755 index 000000000..f0964a227 --- /dev/null +++ b/plugins/OStatus/extlib/XML/Feed/samples/rss091-simple.xml @@ -0,0 +1,15 @@ + + + + +en +News and commentary from the cross-platform scripting community. +http://www.scripting.com/ +Scripting News + +http://www.scripting.com/ +Scripting News +http://www.scripting.com/gifs/tinyScriptingNews.gif + + + \ No newline at end of file diff --git a/plugins/OStatus/extlib/XML/Feed/samples/rss092-sample.xml b/plugins/OStatus/extlib/XML/Feed/samples/rss092-sample.xml new file mode 100755 index 000000000..5d75c352b --- /dev/null +++ b/plugins/OStatus/extlib/XML/Feed/samples/rss092-sample.xml @@ -0,0 +1,103 @@ + + + + + Dave Winer: Grateful Dead + http://www.scripting.com/blog/categories/gratefulDead.html + A high-fidelity Grateful Dead song every day. This is where we're experimenting with enclosures on RSS news items that download when you're not using your computer. If it works (it will) it will be the end of the Click-And-Wait multimedia experience on the Internet. + Fri, 13 Apr 2001 19:23:02 GMT + http://backend.userland.com/rss092 + dave@userland.com (Dave Winer) + dave@userland.com (Dave Winer) + + + It's been a few days since I added a song to the Grateful Dead channel. Now that there are all these new Radio users, many of whom are tuned into this channel (it's #16 on the hotlist of upstreaming Radio users, there's no way of knowing how many non-upstreaming users are subscribing, have to do something about this..). Anyway, tonight's song is a live version of Weather Report Suite from Dick's Picks Volume 7. It's wistful music. Of course a beautiful song, oft-quoted here on Scripting News. <i>A little change, the wind and rain.</i> + + + + + Kevin Drennan started a <a href="http://deadend.editthispage.com/">Grateful Dead Weblog</a>. Hey it's cool, he even has a <a href="http://deadend.editthispage.com/directory/61">directory</a>. <i>A Frontier 7 feature.</i> + Scripting News + + + <a href="http://arts.ucsc.edu/GDead/AGDL/other1.html">The Other One</a>, live instrumental, One From The Vault. Very rhythmic very spacy, you can listen to it many times, and enjoy something new every time. + + + + This is a test of a change I just made. Still diggin.. + + + The HTML rendering almost <a href="http://validator.w3.org/check/referer">validates</a>. Close. Hey I wonder if anyone has ever published a style guide for ALT attributes on images? What are you supposed to say in the ALT attribute? I sure don't know. If you're blind send me an email if u cn rd ths. + + + <a href="http://www.cs.cmu.edu/~mleone/gdead/dead-lyrics/Franklin's_Tower.txt">Franklin's Tower</a>, a live version from One From The Vault. + + + + Moshe Weitzman says Shakedown Street is what I'm lookin for for tonight. I'm listening right now. It's one of my favorites. "Don't tell me this town ain't got no heart." Too bright. I like the jazziness of Weather Report Suite. Dreamy and soft. How about The Other One? "Spanish lady come to me.." + Scripting News + + + <a href="http://www.scripting.com/mp3s/youWinAgain.mp3">The news is out</a>, all over town..<p> +You've been seen, out runnin round. <p> +The lyrics are <a href="http://www.cs.cmu.edu/~mleone/gdead/dead-lyrics/You_Win_Again.txt">here</a>, short and sweet. <p> +<i>You win again!</i> + + + + + <a href="http://www.getlyrics.com/lyrics/grateful-dead/wake-of-the-flood/07.htm">Weather Report Suite</a>: "Winter rain, now tell me why, summers fade, and roses die? The answer came. The wind and rain. Golden hills, now veiled in grey, summer leaves have blown away. Now what remains? The wind and rain." + + + + <a href="http://arts.ucsc.edu/gdead/agdl/darkstar.html">Dark Star</a> crashes, pouring its light into ashes. + + + + DaveNet: <a href="http://davenet.userland.com/2001/01/21/theUsBlues">The U.S. Blues</a>. + + + Still listening to the US Blues. <i>"Wave that flag, wave it wide and high.."</i> Mistake made in the 60s. We gave our country to the assholes. Ah ah. Let's take it back. Hey I'm still a hippie. <i>"You could call this song The United States Blues."</i> + + + <a href="http://www.sixties.com/html/garcia_stack_0.html"><img src="http://www.scripting.com/images/captainTripsSmall.gif" height="51" width="42" border="0" hspace="10" vspace="10" align="right"></a>In celebration of today's inauguration, after hearing all those great patriotic songs, America the Beautiful, even The Star Spangled Banner made my eyes mist up. It made my choice of Grateful Dead song of the night realllly easy. Here are the <a href="http://searchlyrics2.homestead.com/gd_usblues.html">lyrics</a>. Click on the audio icon to the left to give it a listen. "Red and white, blue suede shoes, I'm Uncle Sam, how do you do?" It's a different kind of patriotic music, but man I love my country and I love Jerry and the band. <i>I truly do!</i> + + + + Grateful Dead: "Tennessee, Tennessee, ain't no place I'd rather be." + + + + Ed Cone: "Had a nice Deadhead experience with my wife, who never was one but gets the vibe and knows and likes a lot of the music. Somehow she made it to the age of 40 without ever hearing Wharf Rat. We drove to Jersey and back over Christmas with the live album commonly known as Skull and Roses in the CD player much of the way, and it was cool to see her discover one the band's finest moments. That song is unique and underappreciated. Fun to hear that disc again after a few years off -- you get Jerry as blues-guitar hero on Big Railroad Blues and a nice version of Bertha." + + + + <a href="http://arts.ucsc.edu/GDead/AGDL/fotd.html">Tonight's Song</a>: "If I get home before daylight I just might get some sleep tonight." + + + + <a href="http://arts.ucsc.edu/GDead/AGDL/uncle.html">Tonight's song</a>: "Come hear Uncle John's Band by the river side. Got some things to talk about here beside the rising tide." + + + + <a href="http://www.cs.cmu.edu/~mleone/gdead/dead-lyrics/Me_and_My_Uncle.txt">Me and My Uncle</a>: "I loved my uncle, God rest his soul, taught me good, Lord, taught me all I know. Taught me so well, I grabbed that gold and I left his dead ass there by the side of the road." + + + + + Truckin, like the doo-dah man, once told me gotta play your hand. Sometimes the cards ain't worth a dime, if you don't lay em down. + + + + Two-Way-Web: <a href="http://www.thetwowayweb.com/payloadsForRss">Payloads for RSS</a>. "When I started talking with Adam late last year, he wanted me to think about high quality video on the Internet, and I totally didn't want to hear about it." + + + A touch of gray, kinda suits you anyway.. + + + + <a href="http://www.sixties.com/html/garcia_stack_0.html"><img src="http://www.scripting.com/images/captainTripsSmall.gif" height="51" width="42" border="0" hspace="10" vspace="10" align="right"></a>In celebration of today's inauguration, after hearing all those great patriotic songs, America the Beautiful, even The Star Spangled Banner made my eyes mist up. It made my choice of Grateful Dead song of the night realllly easy. Here are the <a href="http://searchlyrics2.homestead.com/gd_usblues.html">lyrics</a>. Click on the audio icon to the left to give it a listen. "Red and white, blue suede shoes, I'm Uncle Sam, how do you do?" It's a different kind of patriotic music, but man I love my country and I love Jerry and the band. <i>I truly do!</i> + + + + \ No newline at end of file diff --git a/plugins/OStatus/extlib/XML/Feed/samples/rss10-example1.xml b/plugins/OStatus/extlib/XML/Feed/samples/rss10-example1.xml new file mode 100755 index 000000000..0edecf58e --- /dev/null +++ b/plugins/OStatus/extlib/XML/Feed/samples/rss10-example1.xml @@ -0,0 +1,62 @@ + + + + + + XML.com + http://xml.com/pub + + XML.com features a rich mix of information and services + for the XML community. + + + + + + + + + + + + + + + + + XML.com + http://www.xml.com + http://xml.com/universal/images/xml_tiny.gif + + + + Processing Inclusions with XSLT + http://xml.com/pub/2000/08/09/xslt/xslt.html + + Processing document inclusions with general XML tools can be + problematic. This article proposes a way of preserving inclusion + information through SAX-based processing. + + + + + Putting RDF to Work + http://xml.com/pub/2000/08/09/rdfdb/index.html + + Tool and API support for the Resource Description Framework + is slowly coming of age. Edd Dumbill takes a look at RDFDB, + one of the most exciting new RDF toolkits. + + + + + Search XML.com + Search XML.com's XML collection + s + http://search.xml.com + + + \ No newline at end of file diff --git a/plugins/OStatus/extlib/XML/Feed/samples/rss10-example2.xml b/plugins/OStatus/extlib/XML/Feed/samples/rss10-example2.xml new file mode 100755 index 000000000..26235f78f --- /dev/null +++ b/plugins/OStatus/extlib/XML/Feed/samples/rss10-example2.xml @@ -0,0 +1,67 @@ + + + + + + Meerkat + http://meerkat.oreillynet.com + Meerkat: An Open Wire Service + The O'Reilly Network + Rael Dornfest (mailto:rael@oreilly.com) + Copyright © 2000 O'Reilly & Associates, Inc. + 2000-01-01T12:00+00:00 + hourly + 2 + 2000-01-01T12:00+00:00 + + + + + + + + + + + + + + + Meerkat Powered! + http://meerkat.oreillynet.com/icons/meerkat-powered.jpg + http://meerkat.oreillynet.com + + + + XML: A Disruptive Technology + http://c.moreover.com/click/here.pl?r123 + + XML is placing increasingly heavy loads on the existing technical + infrastructure of the Internet. + + The O'Reilly Network + Simon St.Laurent (mailto:simonstl@simonstl.com) + Copyright © 2000 O'Reilly & Associates, Inc. + XML + XML.com + NASDAQ + XML + + + + Search Meerkat + Search Meerkat's RSS Database... + s + http://meerkat.oreillynet.com/ + search + regex + + + \ No newline at end of file diff --git a/plugins/OStatus/extlib/XML/Feed/samples/rss2sample.xml b/plugins/OStatus/extlib/XML/Feed/samples/rss2sample.xml new file mode 100755 index 000000000..53483cc51 --- /dev/null +++ b/plugins/OStatus/extlib/XML/Feed/samples/rss2sample.xml @@ -0,0 +1,42 @@ + + + + Liftoff News + http://liftoff.msfc.nasa.gov/ + Liftoff to Space Exploration. + en-us + Tue, 10 Jun 2003 04:00:00 GMT + Tue, 10 Jun 2003 09:41:01 GMT + http://blogs.law.harvard.edu/tech/rss + Weblog Editor 2.0 + editor@example.com + webmaster@example.com + + Star City + http://liftoff.msfc.nasa.gov/news/2003/news-starcity.asp + How do Americans get ready to work with Russians aboard the International Space Station? They take a crash course in culture, language and protocol at Russia's <a href="http://howe.iki.rssi.ru/GCTC/gctc_e.htm">Star City</a>. + Tue, 03 Jun 2003 09:39:21 GMT + http://liftoff.msfc.nasa.gov/2003/06/03.html#item573 + + + Sky watchers in Europe, Asia, and parts of Alaska and Canada will experience a <a href="http://science.nasa.gov/headlines/y2003/30may_solareclipse.htm">partial eclipse of the Sun</a> on Saturday, May 31st. + Fri, 30 May 2003 11:06:42 GMT + http://liftoff.msfc.nasa.gov/2003/05/30.html#item572 + + + The Engine That Does More + http://liftoff.msfc.nasa.gov/news/2003/news-VASIMR.asp + Before man travels to Mars, NASA hopes to design new engines that will let us fly through the Solar System more quickly. The proposed VASIMR engine would do that. + Tue, 27 May 2003 08:37:32 GMT + http://liftoff.msfc.nasa.gov/2003/05/27.html#item571 + Test content

]]>
+
+ + Astronauts' Dirty Laundry + http://liftoff.msfc.nasa.gov/news/2003/news-laundry.asp + Compared to earlier spacecraft, the International Space Station has many luxuries, but laundry facilities are not one of them. Instead, astronauts have other options. + Tue, 20 May 2003 08:56:02 GMT + http://liftoff.msfc.nasa.gov/2003/05/20.html#item570 + +
+
\ No newline at end of file diff --git a/plugins/OStatus/extlib/XML/Feed/samples/sixapart-jp.xml b/plugins/OStatus/extlib/XML/Feed/samples/sixapart-jp.xml new file mode 100755 index 000000000..f8a04bba5 --- /dev/null +++ b/plugins/OStatus/extlib/XML/Feed/samples/sixapart-jp.xml @@ -0,0 +1,226 @@ + + + +Six Apart - News +http://www.sixapart.jp/ + +ja +Copyright 2005 +Fri, 07 Oct 2005 19:09:34 +0900 +http://www.movabletype.org/?v=3.2-ja +http://blogs.law.harvard.edu/tech/rss + + +ファイブ・ディーが、Movable Typeでブログプロモーションをスタート +MIYAZAWAblog_banner.jpg
+ファイブ・ディーは、Movable Typeで構築したプロモーション ブログ『宮沢和史 中南米ツアーblog Latin America 2005』を開設しました。

+ +

9月21日に開設されたこのブログは、ブラジル、ホンジュラス、ニカラグア、メキシコ、キューバの5か国を巡る「Latin America 2005」ツアーに合わせ、そのツアーの模様を同行マネージャーがレポートしていきます。
+さらに今月2日からは宮沢和史自身が日々録音した声をPodcastingするという点でも、ブログを使ったユニークなプロモーションとなっています。

+ +

「宮沢和史 中南米ツアーblog Latin America 2005」

+ +

※シックス・アパートではこうしたブログを使ったプロモーションに最適な製品をご用意しております。
+

]]>
+http://www.sixapart.jp/news/2005/10/07-1909.html +http://www.sixapart.jp/news/2005/10/07-1909.html +news +Fri, 07 Oct 2005 19:09:34 +0900 +
+ +Movable Type 3.2日本語版の提供を開始 +Movable Type Logo

+

シックス・アパートは、Movable Type 3.2日本語版の提供を開始いたしました。
+ベータテストにご協力いただいた多くの皆様に、スタッフ一同、心から感謝いたします。

+

製品概要など、詳しくはプレスリリースをご参照下さい。

+

ご購入のご検討は、Movable Typeのご購入からどうぞ。

]]>
+http://www.sixapart.jp/news/2005/09/29-1530.html +http://www.sixapart.jp/news/2005/09/29-1530.html +news +Thu, 29 Sep 2005 15:30:00 +0900 +
+ +シックス・アパートが、スパム対策強化の「Movable Type 3.2 日本語版」を提供開始 +<プレスリリース資料>

+ +

シックス・アパートが、スパム対策強化の「Movable Type 3.2 日本語版」を提供開始 ~ スパムの自動判別機能や新ユーザー・インターフェースで、運用管理の機能を強化 ~

+

2005年9月29日
+シックス・アパート株式会社

+

ブログ・ソフトウェア大手のシックス・アパート株式会社(本社:東京都港区、代表取締役:関 信浩)は、「Movable Type(ムーバブル・タイプ) 3.2 日本語版」(URL:http://www.sixapart.jp/movabletype/)を9月29日より提供開始いたします。

]]>
+http://www.sixapart.jp/press_releases/2005/09/29-1529.html +http://www.sixapart.jp/press_releases/2005/09/29-1529.html +Press Releases +Thu, 29 Sep 2005 15:29:00 +0900 +
+ +スタッフを募集しています +シックス・アパートはMovable TypeやTypePadの開発エンジニアなど、スタッフを広く募集しています。具体的な募集職種は次の通りです。

+ + + +

拡大を続ける、日本のブログ市場を積極的にリードする人材を、シックス・アパートは募集しています。上記以外の職種につきましても、お気軽にお問い合わせください。詳しい募集要項や応募方法については、求人情報のページをご覧ください。
+

]]>
+http://www.sixapart.jp/news/2005/09/27-0906.html +http://www.sixapart.jp/news/2005/09/27-0906.html +news +Tue, 27 Sep 2005 09:06:10 +0900 +
+ +サイト接続不具合に関するお詫びと復旧のお知らせ +9月24日(土)の14:45ごろから、同日18:30ごろまで、シックス・アパート社のウェブサイトが不安定になっており、断続的に接続できない不具合が発生しておりました。このため、この期間中にウェブサイトの閲覧や製品のダウンロードができませんでした。

+ +

なお現在は不具合は解消しております。みなさまにご迷惑をおかけしたことをお詫びいたします。

]]>
+http://www.sixapart.jp/news/2005/09/26-1000.html +http://www.sixapart.jp/news/2005/09/26-1000.html +news +Mon, 26 Sep 2005 10:00:56 +0900 +
+ +企業ブログ向けパッケージ「TypePad Promotion」を新発売 +シックス・アパートは、ウェブログ・サービスTypePadの企業ブログ向けパッケージ「TypePad Promotion」(タイプパッド・プロモーションの発売を10月下旬から開始いたします。

+ +

詳しくは、プレスリリースをご参照下さい。

]]>
+http://www.sixapart.jp/news/2005/09/20-1500.html +http://www.sixapart.jp/news/2005/09/20-1500.html +news +Tue, 20 Sep 2005 15:00:01 +0900 +
+ +シックス・アパートが、法人向けブログパッケージ「TypePad Promotion」を発売 +<プレスリリース資料>
+印刷用(PDF版)

+ +


+シックス・アパートが、法人向けブログパッケージ「TypePad Promotion」を発売
+~PR/IRサイトやキャンペーンサイトなど企業のプロモーションニーズに特化~
+

+2005年9月20日
+シックス・アパート株式会社

+ +

ブログ・サービス大手のシックス・アパート株式会社(本社:東京都港区、代表取締役:関 信浩)は、法人向けプロモーションブログ・パッケージ「TypePad Promotion(タイプパッド・プロモーション)」(URL:http://www.sixapart.jp/typepad/typepad_promotion.html)を10月下旬より販売開始いたします。

]]>
+http://www.sixapart.jp/press_releases/2005/09/20-1500.html +http://www.sixapart.jp/press_releases/2005/09/20-1500.html +Press Releases +Tue, 20 Sep 2005 15:00:00 +0900 +
+ +Six [days] Apart Week +本日、9月16日はSix Apartの創業者ミナ・トロットの誕生日です。
+私たちの会社は、創業者のトロット夫妻(ベンとミナ)の誕生日が、6日離れていることからSix [days] Apart →Six Apartという風に名付けられています。本日から22日までの6日間を社名の由来となる Six [days] Apart Weekとして、私たちのプロダクトをご紹介させていただきます。

+ +

今日は、ブログ・サービスのTypePad(タイプパッド)をご紹介します。
+tp-logo.gif

+ +

TypePadは、米国PC MAGAZINE誌の2003年EDITOR'S CHOICE とBEST OF THE YEARに選ばれております。
+pcmag-ad.gif
+

]]>
+http://www.sixapart.jp/news/2005/09/16-1941.html +http://www.sixapart.jp/news/2005/09/16-1941.html +news +Fri, 16 Sep 2005 19:41:47 +0900 +
+ +ハイパーワークスが商用フォントを利用できるMovable Typeホスティングサービスを開始 +ソフト開発会社の有限会社ハイパーワークスは、商用フォントなど多彩なフォントをブログ上で利用できるブログ・サービス「Glyph-On!(グリフォン) Movable Type ホスティング サービス」の提供を開始しました。
+

]]>
+http://www.sixapart.jp/news/2005/09/14-1700.html +http://www.sixapart.jp/news/2005/09/14-1700.html +news +Wed, 14 Sep 2005 17:00:00 +0900 +
+ +Movable Type開発エンジニアの募集 + +勤務形態: フルタイム
+勤務地: 東京 (赤坂)
+職種: ソフトウェア・エンジニア
+職務内容: Movable Typeの開発業務全般
+募集人数: 若干名 +

]]>
+http://www.sixapart.jp/jobs/2005/09/13-0007.html +http://www.sixapart.jp/jobs/2005/09/13-0007.html +Jobs +Tue, 13 Sep 2005 00:07:00 +0900 +
+ +TypePad開発エンジニアの募集 + +勤務形態: フルタイム
+勤務地: 東京 (赤坂)
+職種: アプリケーション・エンジニア
+職務内容: TypePadのカスタマイズ、周辺開発
+募集人数: 若干名 +

]]>
+http://www.sixapart.jp/jobs/2005/09/13-0004.html +http://www.sixapart.jp/jobs/2005/09/13-0004.html +Jobs +Tue, 13 Sep 2005 00:04:00 +0900 +
+ +カスタマーサポート・ディレクターの募集 +勤務形態: フルタイム
+勤務地: 東京(赤坂)
+職種: カスタマーサポート・ディレクター
+職務内容: TypePadやMovable Typeのカスタマーサポート業務の統括
+募集人数: 若干名 +

+]]>
+http://www.sixapart.jp/jobs/2005/09/13-0003.html +http://www.sixapart.jp/jobs/2005/09/13-0003.html +Jobs +Tue, 13 Sep 2005 00:03:30 +0900 +
+ +アルバイト(マーケティング・広報アシスタント)の募集 +勤務形態: アルバイト
+勤務地: 東京(港区)
+職種:マーケティング・PRのアシスタント業務
+募集人数: 若干名
+時給:1000円~(但し、試用期間終了後に応相談)。交通費支給
+時間:平日10時30分~18時30分まで。週3日以上(応相談)
+

]]>
+http://www.sixapart.jp/jobs/2005/09/13-0002.html +http://www.sixapart.jp/jobs/2005/09/13-0002.html +Jobs +Tue, 13 Sep 2005 00:02:00 +0900 +
+ +アルバイト(開発アシスタント)の募集 +勤務形態: アルバイト
+勤務地: 東京(港区)
+職種: アプリケーション開発のアシスタント業務
+募集人数: 若干名
+時給:1000円~(但し、試用期間終了後に応相談)。交通費支給
+時間:平日10時30分~18時30分まで。週3日以上(応相談) +

]]>
+http://www.sixapart.jp/jobs/2005/09/13-0001.html +http://www.sixapart.jp/jobs/2005/09/13-0001.html +Jobs +Tue, 13 Sep 2005 00:01:00 +0900 +
+ +TypePad Japan がバージョンアップしました。 +「TypePad Japan(タイプパッドジャパン)」において、本日、「TypePad 1.6 日本語版」へのバージョンアップを行いました。最新版となる「TypePad 1.6 日本語版」では、ブログデザインの機能強化、ポッドキャスティング対応、モブログ対応に加え、今回新たに大幅な容量アップが行われております。皆様、新しくなったTypePad Japanにどうぞご期待ください。

+ +

なお、TypePadの携帯対応強化に関しましては、本日よりTypePad Japanのお客様を対象にオープン・ベータを開始しております。

+ +

2005年9月5日発表のTypePad日本語版 1.6プレスリリースはこちらをご覧下さい。

]]>
+http://www.sixapart.jp/news/2005/09/12-1953.html +http://www.sixapart.jp/news/2005/09/12-1953.html +news +Mon, 12 Sep 2005 19:53:07 +0900 +
+ + +
+
\ No newline at end of file diff --git a/plugins/OStatus/extlib/XML/Feed/samples/technorati.feed b/plugins/OStatus/extlib/XML/Feed/samples/technorati.feed new file mode 100755 index 000000000..6274a32cd --- /dev/null +++ b/plugins/OStatus/extlib/XML/Feed/samples/technorati.feed @@ -0,0 +1,54 @@ + + + + [Technorati] Tag results for greenbelt + http://www.technorati.com/tag/greenbelt + Posts tagged with "greenbelt" on Technorati. + Mon, 08 Aug 2005 15:15:08 GMT + greenbelt + 2 + 2 + + Technorati v1.0 + + http://static.technorati.com/pix/logos/logo_reverse_sm.gif + Technorati logo + http://www.technorati.com + + + 1 + 7 + 9 + + support@technorati.com (Technorati Support) + http://blogs.law.harvad.edu/tech/rss + 60 + + Greenbelt + http://maggidawn.typepad.com/maggidawn/2005/07/greenbelt.html + So if the plan goes according to plan (!)... I'll be speaking at Greenbelt at these times: Slot 1... + http://maggidawn.typepad.com/maggidawn/2005/07/greenbelt.html + Mon, 18 Jul 2005 02:11:42 GMT + James + 2005-07-11 02:08:12 + http://www.technorati.com/cosmos/search.html?url=http%3A%2F%2Fmaggidawn.typepad.com%2Fmaggidawn%2F2005%2F07%2Fgreenbelt.html + 190 + 237 + maggi dawn + + + + Walking along the Greenbelt + http://pictureshomeless.blogspot.com/2005/06/walking-along-greenbelt.html + [IMG] Photo of homeless man walking near the greenbelt in Boise, Idaho Tags: photo homeless greenbelt Boise Idaho picture + http://pictureshomeless.blogspot.com/2005/06/walking-along-greenbelt.html + Tue, 28 Jun 2005 01:41:24 GMT + 2005-06-26 17:24:03 + http://www.technorati.com/cosmos/search.html?url=http%3A%2F%2Fpictureshomeless.blogspot.com%2F2005%2F06%2Fwalking-along-greenbelt.html + 2 + 2 + + + + -- cgit v1.2.3-54-g00ecf