<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" 
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>南海藝廊 Nanhai Gallery-媒體報導／News</title>
<link>http://blog.roodo.com/nanhai/archives/cat_646987.html</link>
<description>



var isIE  = (navigator.appVersion.indexOf(&quot;MSIE&quot;) != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf(&quot;win&quot;) != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf(&quot;Opera&quot;) != -1) ? true : false;

function ControlVersion()
{
	var version;
	var axo;
	var e;

	// NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn&#039;t in the registry

	try {
		// version will be set for 7.X or greater players
		axo = new ActiveXObject(&quot;ShockwaveFlash.ShockwaveFlash.7&quot;);
		version = axo.GetVariable(&quot;$version&quot;);
	} catch (e) {
	}

	if (!version)
	{
		try {
			// version will be set for 6.X players only
			axo = new ActiveXObject(&quot;ShockwaveFlash.ShockwaveFlash.6&quot;);
			
			// installed player is some revision of 6.0
			// GetVariable(&quot;$version&quot;) crashes for versions 6.0.22 through 6.0.29,
			// so we have to be careful. 
			
			// default to the first public version
			version = &quot;WIN 6,0,21,0&quot;;

			// throws if AllowScripAccess does not exist (introduced in 6.0r47)		
			axo.AllowScriptAccess = &quot;always&quot;;

			// safe to call for 6.0r47 or greater
			version = axo.GetVariable(&quot;$version&quot;);

		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 4.X or 5.X player
			axo = new ActiveXObject(&quot;ShockwaveFlash.ShockwaveFlash.3&quot;);
			version = axo.GetVariable(&quot;$version&quot;);
		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 3.X player
			axo = new ActiveXObject(&quot;ShockwaveFlash.ShockwaveFlash.3&quot;);
			version = &quot;WIN 3,0,18,0&quot;;
		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 2.X player
			axo = new ActiveXObject(&quot;ShockwaveFlash.ShockwaveFlash&quot;);
			version = &quot;WIN 2,0,0,11&quot;;
		} catch (e) {
			version = -1;
		}
	}
	
	return version;
}

// JavaScript helper required to detect Flash Player PlugIn version information
function GetSwfVer(){
	// NS/Opera version &gt;= 3 check for Flash plugin in plugin array
	var flashVer = -1;
	
	if (navigator.plugins != null &amp;&amp; navigator.plugins.length &gt; 0) {
		if (navigator.plugins[&quot;Shockwave Flash 2.0&quot;] || navigator.plugins[&quot;Shockwave Flash&quot;]) {
			var swVer2 = navigator.plugins[&quot;Shockwave Flash 2.0&quot;] ? &quot; 2.0&quot; : &quot;&quot;;
			var flashDescription = navigator.plugins[&quot;Shockwave Flash&quot; + swVer2].description;
			var descArray = flashDescription.split(&quot; &quot;);
			var tempArrayMajor = descArray[2].split(&quot;.&quot;);			
			var versionMajor = tempArrayMajor[0];
			var versionMinor = tempArrayMajor[1];
			var versionRevision = descArray[3];
			if (versionRevision == &quot;&quot;) {
				versionRevision = descArray[4];
			}
			if (versionRevision[0] == &quot;d&quot;) {
				versionRevision = versionRevision.substring(1);
			} else if (versionRevision[0] == &quot;r&quot;) {
				versionRevision = versionRevision.substring(1);
				if (versionRevision.indexOf(&quot;d&quot;) &gt; 0) {
					versionRevision = versionRevision.substring(0, versionRevision.indexOf(&quot;d&quot;));
				}
			}
			var flashVer = versionMajor + &quot;.&quot; + versionMinor + &quot;.&quot; + versionRevision;
		}
	}
	// MSN/WebTV 2.6 supports Flash 4
	else if (navigator.userAgent.toLowerCase().indexOf(&quot;webtv/2.6&quot;) != -1) flashVer = 4;
	// WebTV 2.5 supports Flash 3
	else if (navigator.userAgent.toLowerCase().indexOf(&quot;webtv/2.5&quot;) != -1) flashVer = 3;
	// older WebTV supports Flash 2
	else if (navigator.userAgent.toLowerCase().indexOf(&quot;webtv&quot;) != -1) flashVer = 2;
	else if ( isIE &amp;&amp; isWin &amp;&amp; !isOpera ) {
		flashVer = ControlVersion();
	}	
	return flashVer;
}

// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
{
	versionStr = GetSwfVer();
	if (versionStr == -1 ) {
		return false;
	} else if (versionStr != 0) {
		if(isIE &amp;&amp; isWin &amp;&amp; !isOpera) {
			// Given &quot;WIN 2,0,0,11&quot;
			tempArray         = versionStr.split(&quot; &quot;); 	// [&quot;WIN&quot;, &quot;2,0,0,11&quot;]
			tempString        = tempArray[1];			// &quot;2,0,0,11&quot;
			versionArray      = tempString.split(&quot;,&quot;);	// [&#039;2&#039;, &#039;0&#039;, &#039;0&#039;, &#039;11&#039;]
		} else {
			versionArray      = versionStr.split(&quot;.&quot;);
		}
		var versionMajor      = versionArray[0];
		var versionMinor      = versionArray[1];
		var versionRevision   = versionArray[2];

        	// is the major.revision &gt;= requested major.revision AND the minor version &gt;= requested minor
		if (versionMajor &gt; parseFloat(reqMajorVer)) {
			return true;
		} else if (versionMajor == parseFloat(reqMajorVer)) {
			if (versionMinor &gt; parseFloat(reqMinorVer))
				return true;
			else if (versionMinor == parseFloat(reqMinorVer)) {
				if (versionRevision &gt;= parseFloat(reqRevision))
					return true;
			}
		}
		return false;
	}
}

function AC_AddExtension(src, ext)
{
  if (src.indexOf(&#039;?&#039;) != -1)
    return src.replace(/\?/, ext+&#039;?&#039;); 
  else
    return src + ext;
}

function AC_Generateobj(objAttrs, params, embedAttrs) 
{ 
  var str = &#039;&#039;;
  if (isIE &amp;&amp; isWin &amp;&amp; !isOpera)
  {
    str += &#039;&#039;;
    for (var i in params)
    {
      str += &#039; &#039;;
    }
    str += &#039;&#039;;
  }
  else
  {
    str += &#039; &#039;;
  }

  document.write(str);
}

function AC_FL_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, &quot;.swf&quot;, &quot;movie&quot;, &quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot;
     , &quot;application/x-shockwave-flash&quot;
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_SW_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, &quot;.dcr&quot;, &quot;src&quot;, &quot;clsid:166B1BCA-3F9C-11CF-8075-444553540000&quot;
     , null
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
  var ret = new Object();
  ret.embedAttrs = new Object();
  ret.params = new Object();
  ret.objAttrs = new Object();
  for (var i=0; i &lt; args.length; i=i+2){
    var currArg = args[i].toLowerCase();    

    switch (currArg){	
      case &quot;classid&quot;:
        break;
      case &quot;pluginspage&quot;:
        ret.embedAttrs[args[i]] = args[i+1];
        break;
      case &quot;src&quot;:
      case &quot;movie&quot;:	
        args[i+1] = AC_AddExtension(args[i+1], ext);
        ret.embedAttrs[&quot;src&quot;] = args[i+1];
        ret.params[srcParamName] = args[i+1];
        break;
      case &quot;onafterupdate&quot;:
      case &quot;onbeforeupdate&quot;:
      case &quot;onblur&quot;:
      case &quot;oncellchange&quot;:
      case &quot;onclick&quot;:
      case &quot;ondblClick&quot;:
      case &quot;ondrag&quot;:
      case &quot;ondragend&quot;:
      case &quot;ondragenter&quot;:
      case &quot;ondragleave&quot;:
      case &quot;ondragover&quot;:
      case &quot;ondrop&quot;:
      case &quot;onfinish&quot;:
      case &quot;onfocus&quot;:
      case &quot;onhelp&quot;:
      case &quot;onmousedown&quot;:
      case &quot;onmouseup&quot;:
      case &quot;onmouseover&quot;:
      case &quot;onmousemove&quot;:
      case &quot;onmouseout&quot;:
      case &quot;onkeypress&quot;:
      case &quot;onkeydown&quot;:
      case &quot;onkeyup&quot;:
      case &quot;onload&quot;:
      case &quot;onlosecapture&quot;:
      case &quot;onpropertychange&quot;:
      case &quot;onreadystatechange&quot;:
      case &quot;onrowsdelete&quot;:
      case &quot;onrowenter&quot;:
      case &quot;onrowexit&quot;:
      case &quot;onrowsinserted&quot;:
      case &quot;onstart&quot;:
      case &quot;onscroll&quot;:
      case &quot;onbeforeeditfocus&quot;:
      case &quot;onactivate&quot;:
      case &quot;onbeforedeactivate&quot;:
      case &quot;ondeactivate&quot;:
      case &quot;type&quot;:
      case &quot;codebase&quot;:
      case &quot;id&quot;:
        ret.objAttrs[args[i]] = args[i+1];
        break;
      case &quot;width&quot;:
      case &quot;height&quot;:
      case &quot;align&quot;:
      case &quot;vspace&quot;: 
      case &quot;hspace&quot;:
      case &quot;class&quot;:
      case &quot;title&quot;:
      case &quot;accesskey&quot;:
      case &quot;name&quot;:
      case &quot;tabindex&quot;:
        ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
        break;
      default:
        ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
    }
  }
  ret.objAttrs[&quot;classid&quot;] = classid;
  if (mimeType) ret.embedAttrs[&quot;type&quot;] = mimeType;
  return ret;
}
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&amp;&amp;i0&amp;&amp;parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&amp;&amp;d.all) x=d.all[n]; for (i=0;!x&amp;&amp;i</description>
<language>zh-tw</language>
<generator>Roodo Blog System</generator>
<copyright>All Rights Reserved</copyright>
<atom:link href="http://blog.roodo.com/nanhai/archives/cat_646987.xml" rel="self" type="application/rss+xml" />
<item>
	<title>年代新聞－藝響年代</title>
	<description><![CDATA[
			
		]]>
	</description>
	<content:encoded><![CDATA[
			<div><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" width="320" height="265"><param name="height" value="265" /><param name="width" value="320" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/xx9vG0mcx0k&amp;hl=zh_TW&amp;fs=1&amp;" /><embed type="application/x-shockwave-flash" height="265" width="320" allowfullscreen="true" allowscriptaccess="always" src="http://www.youtube.com/v/xx9vG0mcx0k&amp;hl=zh_TW&amp;fs=1&amp;"></embed></object></div>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/9517957.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/9517957.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Mon, 01 Jun 2009 12:59:47 +0800</pubDate>
</item>
<item>
	<title>卓越雜誌-No.292 2008年12月</title>
	<description><![CDATA[
			想像力串起世界&mdash;城市創意幕後推手跳脫常規激發多元能量文／安芷嫻、鄒依倫&nbsp;&nbsp;
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">想像力串起世界&mdash;城市創意幕後推手<br /><font size="0"><br /></font>跳脫常規激發多元能量</font><br /><font size="2"><br />文／安芷嫻、鄒依倫<br /><br />&nbsp;&nbsp;</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8347527.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8347527.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8347527.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Sat, 20 Dec 2008 11:11:11 +0800</pubDate>
</item>
<item>
	<title>聯合報 2008年11月</title>
	<description><![CDATA[
			牯嶺街市集　標創意　唱詩歌文／楊芷茜
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">牯嶺街市集　標創意　唱詩歌</font><br /><br />文／楊芷茜
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8423243.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8423243.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8423243.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Fri, 28 Nov 2008 20:50:30 +0800</pubDate>
</item>
<item>
	<title>聯合報 2008年11月</title>
	<description><![CDATA[
			詩歌 在牯嶺街上的解放陣線文／黃海鳴
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">詩歌 在牯嶺街上的解放陣線</font><br /><font size="2"><br /></font><font size="2">文／黃海鳴</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8423217.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8423217.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8423217.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Fri, 28 Nov 2008 20:46:55 +0800</pubDate>
</item>
<item>
	<title>聯合報週日版 2008年11月</title>
	<description><![CDATA[
			書香市集 牯嶺街「詩」了文 楊芷茜
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">書香市集 牯嶺街「詩」了<br /></font><br /><font size="2">文 楊芷茜</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8399499.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8399499.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8399499.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Thu, 27 Nov 2008 21:38:28 +0800</pubDate>
</item>
<item>
	<title>La Via 雜誌 2007年11月</title>
	<description><![CDATA[
			啟彬與凱雅流浪在台北的爵士好樂文／曾璐　攝影／陳忠正
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">啟彬與凱雅<br /><font size="1"><br /></font>流浪在台北的爵士好樂<br /><font size="3"><br /></font></font><font size="2">文／曾璐　攝影／陳忠正</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8375895.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8375895.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8375895.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Thu, 27 Nov 2008 11:59:23 +0800</pubDate>
</item>
<item>
	<title>TaipeiWalker2007年10月</title>
	<description><![CDATA[
			城市藝文漫步&mdash;牯嶺街文／TaipeiWalker編輯部
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">城市藝文漫步&mdash;牯嶺街</font><br /><br /><font size="2">文／TaipeiWalker編輯部</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8423263.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8423263.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8423263.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Thu, 27 Nov 2008 10:52:41 +0800</pubDate>
</item>
<item>
	<title>自由時報 2007年8月</title>
	<description><![CDATA[
			南海藝廊周邊&mdash;啖文教區內行好味文／楊千慧
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">南海藝廊周邊&mdash;啖文教區內行好味<br /></font><br /><font size="2">文／楊千慧</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8423293.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8423293.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8423293.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Thu, 27 Nov 2008 08:57:58 +0800</pubDate>
</item>
<item>
	<title>聯合報 2007年7月</title>
	<description><![CDATA[
			夢‧遊‧愛麗斯市集上百人型娃娃 跑趴文／陳志豪
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">夢‧遊‧愛麗斯市集<br /><font size="1"><br /></font>上百人型娃娃 跑趴<br /></font><br /><font size="2">文／陳志豪</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8423319.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8423319.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8423319.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Thu, 27 Nov 2008 07:04:05 +0800</pubDate>
</item>
<item>
	<title>自由時報 2007年7月</title>
	<description><![CDATA[
			臺北私房最愛音樂角落旺福推薦南海藝廊文／詹婷惠
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">臺北私房最愛音樂角落<br /><font size="1"><br /></font>旺福推薦南海藝廊</font><br /><br /><font size="2">文／詹婷惠</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8423309.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8423309.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8423309.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Thu, 27 Nov 2008 07:01:49 +0800</pubDate>
</item>
<item>
	<title>聯合報2006年11月</title>
	<description><![CDATA[
			最HOT發燒書創意市集書店同樂會文 兔牙小熊
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">最HOT發燒書<br /><font size="1"><br /></font>創意市集書店同樂會<br /></font><br /><font size="2">文 兔牙小熊</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8423335.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8423335.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8423335.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Tue, 25 Nov 2008 23:25:23 +0800</pubDate>
</item>
<item>
	<title>人本教育札記 2006年8月</title>
	<description><![CDATA[
			讓美學藝術與生活結合南海藝廊負責人黃海鳴的生活美學體驗文／廖珮劭
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">讓美學藝術與生活結合<br /><font size="2"><br /></font>南海藝廊負責人黃海鳴的生活美學體驗<br /></font><br /><font size="2">文／廖珮劭</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8449179.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8449179.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8449179.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Tue, 25 Nov 2008 23:23:23 +0800</pubDate>
</item>
<item>
	<title>聯合文學262期 2006年8月</title>
	<description><![CDATA[
			變形蟲與創意發動機文／林德俊
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">變形蟲與創意發動機</font><br /><br /><font size="2">文／林德俊</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8450587.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8450587.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8450587.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Tue, 25 Nov 2008 22:23:55 +0800</pubDate>
</item>
<item>
	<title>聯合報 2006年8月</title>
	<description><![CDATA[
			創意市集誠品被批變相設櫃文／吳雨潔、李思嫻
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">創意市集<br /><font size="2"><br /></font>誠品被批變相設櫃<br /></font><br /><font size="2">文／吳雨潔、李思嫻</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8450539.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8450539.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8450539.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Tue, 25 Nov 2008 20:24:14 +0800</pubDate>
</item>
<item>
	<title>破報 2006年8月</title>
	<description><![CDATA[
			新生代的實驗聲響團體i/0 SoundLab文／吳介瑋
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">新生代的實驗聲響團體<br /><font size="2"><br /></font>i/0 SoundLab<br /></font><br />文<font size="2">／</font>吳介瑋
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8449323.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8449323.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Tue, 25 Nov 2008 20:13:14 +0800</pubDate>
</item>
<item>
	<title>活動平台 Vol.11 2006年6月</title>
	<description><![CDATA[
			創意市集體驗，無價！文／游淑妃
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">創意市集體驗，無價！<br /></font><br /><font size="2">文／游淑妃</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8450649.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8450649.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8450649.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Tue, 25 Nov 2008 07:28:00 +0800</pubDate>
</item>
<item>
	<title>自由時報 2006年5月</title>
	<description><![CDATA[
			市集好好玩舊書街風華再現文／黃玉蓮
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">市集好好玩<br /><font size="2"><br /></font>舊書街風華再現</font><br /><br /><font size="2">文／黃玉蓮</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8450853.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8450853.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8450853.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Tue, 25 Nov 2008 06:48:29 +0800</pubDate>
</item>
<item>
	<title>自由時報 2006年5月</title>
	<description><![CDATA[
			牯嶺街書香市集歡樂創意飆週末文／楊若梅、黃玉蓮
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">牯嶺街書香市集<br /><font size="2"><br /></font>歡樂創意飆週末</font><br /><br /><font size="2">文／楊若梅、黃玉蓮</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8450823.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8450823.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8450823.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Tue, 25 Nov 2008 06:43:26 +0800</pubDate>
</item>
<item>
	<title>TaipeiWalker 特別號 2006年5月</title>
	<description><![CDATA[
			巷弄人文漫遊&mdash;牯嶺街文／TaipeiWalker編輯部
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">巷弄人文漫遊&mdash;牯嶺街<br /></font><br /><font size="2">文／TaipeiWalker編輯部</font>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8450757.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8450757.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Tue, 25 Nov 2008 06:33:17 +0800</pubDate>
</item>
<item>
	<title>聯合報 2006年5月</title>
	<description><![CDATA[
			逛牯嶺街看書玩意兒文／詹三源
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">逛牯嶺街<br /><font size="2"><br /></font>看書玩意兒<br /></font><br /><font size="2">文／詹三源</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8450961.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8450961.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8450961.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Tue, 25 Nov 2008 06:00:19 +0800</pubDate>
</item>
<item>
	<title>自由時報 2006年5月</title>
	<description><![CDATA[
			逛完市集找尋隱身巷弄好滋味文／黃玉蓮
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">逛完市集<br /><font size="3"><br /></font>找尋隱身巷弄好滋味</font><br /><br /><font size="2">文／黃玉蓮</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8450917.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8450917.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8450917.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Tue, 25 Nov 2008 05:56:55 +0800</pubDate>
</item>
<item>
	<title>自由時報 2006年5月</title>
	<description><![CDATA[
			巧思無限流洩特色攤位各秀奇招文／楊若梅
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">巧思無限流洩<br /><font size="2"><br /></font>特色攤位各秀奇招</font><br /><br /><font size="2">文／楊若梅</font>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8450895.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8450895.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Tue, 25 Nov 2008 05:50:41 +0800</pubDate>
</item>
<item>
	<title>聯合報2006年5月</title>
	<description><![CDATA[
			創意市集驚奇就是賣點文 詹三源
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">創意市集<br /><font size="2"><br /></font>驚奇就是賣點</font><br /><br /><font size="2">文 詹三源</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8513739.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8513739.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8513739.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Tue, 25 Nov 2008 02:07:20 +0800</pubDate>
</item>
<item>
	<title>台灣日報 2006年5月</title>
	<description><![CDATA[
			牯嶺街書香創意市集文／林冠吾
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">牯嶺街書香創意市集</font><br /><br /><font size="2">文／林冠吾</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8513697.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8513697.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8513697.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Tue, 25 Nov 2008 01:01:50 +0800</pubDate>
</item>
<item>
	<title>自由時報2006年4月</title>
	<description><![CDATA[
			創意市集布告欄密切注意哪裡好玩哪裡去牯嶺街書香創意市集．文／楊若梅
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">創意市集布告欄<br /><font size="2"><br /></font>密切注意哪裡好玩哪裡去</font><br /><br /><font size="2">牯嶺街書香創意市集．文／楊若梅</font>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8513773.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8513773.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Tue, 25 Nov 2008 01:01:22 +0800</pubDate>
</item>
<item>
	<title>破報2005年12月</title>
	<description><![CDATA[
			牯嶺街的就書香去了哪裡？文／周郁文
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><font size="6">牯嶺街的就書香去了哪裡？</font><br /><br /><font size="2">文／周郁文</font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8513867.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8513867.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8513867.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Mon, 24 Nov 2008 21:19:59 +0800</pubDate>
</item>
<item>
	<title>大學報 2005年12月</title>
	<description><![CDATA[
			創意市集藝術穿梭牯嶺街頭文／李姿函、謝夢釧
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">創意市集<br /><font size="2"><br /></font>藝術穿梭牯嶺街頭</font><br /><br /><font size="2">文／李姿函、謝夢釧</font>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8513801.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8513801.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Mon, 24 Nov 2008 04:15:21 +0800</pubDate>
</item>
<item>
	<title>聯合報2005年11月</title>
	<description><![CDATA[
			牯嶺街市集將開張重溫舊書香文／楊正敏
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">牯嶺街市集將開張<br /><font size="2"><br /></font>重溫舊書香</font><br /><br /><font size="2">文／楊正敏</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8513903.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8513903.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8513903.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Mon, 24 Nov 2008 01:24:22 +0800</pubDate>
</item>
<item>
	<title>民生報2005年11月</title>
	<description><![CDATA[
			牯嶺街書香市集六校當街演歷史文／劉郁青
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">牯嶺街書香市集<br /><font size="2"><br /></font>六校當街演歷史<br /></font><br /><font size="2">文／劉郁青</font>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8513919.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8513919.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Mon, 24 Nov 2008 01:10:14 +0800</pubDate>
</item>
<item>
	<title>中國時報 2005年11月</title>
	<description><![CDATA[
			週末登場牯嶺街書香市集添創意文／林家群
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">週末登場牯嶺街書香市集<br /><font size="2"><br /></font>添創意</font><br /><br /><font size="2">文／林家群</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8513947.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8513947.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8513947.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Mon, 24 Nov 2008 01:01:04 +0800</pubDate>
</item>
<item>
	<title>人間福報 2005年7月</title>
	<description><![CDATA[
			黃海鳴用樸素空間展現多元藝術文／朱慶芳
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">黃海鳴<br /><font size="2"><br /></font>用樸素空間展現多元藝術</font><br /><br /><font size="2">文／朱慶芳</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8513975.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8513975.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8513975.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Sun, 23 Nov 2008 21:33:21 +0800</pubDate>
</item>
<item>
	<title>中國時報2005年11月</title>
	<description><![CDATA[
			2005創意牯嶺街書香市集文／丁文玲
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">2005創意牯嶺街書香市集</font><br /><br /><font size="2">文／丁文玲</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8513963.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8513963.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8513963.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Sun, 23 Nov 2008 21:31:44 +0800</pubDate>
</item>
<item>
	<title>㊣藝術家雜誌-創意的夢更美</title>
	<description><![CDATA[
			 《7月專輯》創意的夢更美&mdash;&mdash;2006第四屆牯嶺街書香創意市集盛況撰文．攝影／李鳳鳴「轉載自藝術家雜誌374期2006年7月號」　初夏，炙熱的豔陽為5月20日、21日的第四屆牯嶺街書香創意市集持續加溫，攤位的工作人員與參觀人潮汗水涔涔，穿梭在這些極具巧思的創意市集中，奇妙感與新鮮感不間斷地湧現，像走入一座露天的可愛寶藏庫裡頭探險，吸引目光的盡是創意工作者捧在掌心的那些手工創意寶石。
		]]>
	</description>
	<content:encoded><![CDATA[
			<a href="http://www.flickr.com/photos/nanhai/176150929/" title="Photo Sharing"><img src="http://static.flickr.com/63/176150929_a91b4a664c_o.jpg" alt="14.臘月菜超受小朋友歡迎的招牌/吳欣穎攝影" width="201" height="300" align="left" /></a> <p><font size="2">《7月專輯》<br /><font size="4"><strong>創意的夢更美<br /></strong></font>&mdash;&mdash;2006第四屆牯嶺街書香創意市集盛況</font></p><p><font size="2">撰文．攝影／李鳳鳴<br />「轉載自<strong>藝術家雜誌374期2006年7月號</strong>」</font></p><p><font size="2">　初夏，炙熱的豔陽為5月20日、21日的第四屆牯嶺街書香創意市集持續加溫，攤位的工作人員與參觀人潮汗水涔涔，穿梭在這些極具巧思的創意市集中，奇妙感與新鮮感不間斷地湧現，像走入一座露天的可愛寶藏庫裡頭探險，吸引目光的盡是創意工作者捧在掌心的那些手工創意寶石。</font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/1819340.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/1819340.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/1819340.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Tue, 27 Jun 2006 23:05:29 +0800</pubDate>
</item>
<item>
	<title>♪民生報有這次市集的報導喔</title>
	<description><![CDATA[
			【南海之內皆兄弟】遇到好文，大家一起讀。（在引用時會註明出處，如有侵權請來信告知）&quot;前幾天有人說看到報紙上有報導，我們立刻搜尋，雖然沒有訪問我們(主要是寫牯嶺街小劇場的事，畢竟我們跟記者不熟)，篇幅也不大，但還是很高興有宣傳。希望能讓更多更多的人知道這個消息(最好全世界都知道)，這就要靠大家一起努力囉。P.S我們是北教大(不是北師)南海藝廊負責的是創意攤位，但報導內沒有寫清楚，在此註明。&quot;牯嶺街 英雄帖邀創作人 【記者紀慧玲／報導】 台北市城南充滿人文書香歷史餘味，牯嶺街舊書市一帶，尤其臥虎藏龍，迭有驚奇。今年，牯嶺街社區工作者結合牯嶺街小劇場、南海藝廊及舊書市，下月26、27日擴大舉行活動，召募手工藝坊、號召街頭藝人，「英雄帖」正四處寄送。 牯嶺街小劇場管理處表示，這項活動由里辦公室、南門口文化協會、台北市築原社區規畫師團隊等單位主辦，牯小劇場負責街頭演出部分，北師南海藝廊負責手工藝坊部分。如同過去三年，屆時牯嶺街、西寧南路約二百公尺段封街，讓參與者盡情逗玩於這處人文空間，懷想舊文化，體驗新氣氛，往昔人潮曾達三萬多。 「英雄帖」廣邀各路創作人參加，不限形式，可於定點或流動於書市中演出。相關訊息及城南人文歷史資料可洽小劇場（電話：02-23919393，email: guling.glt@msa.hinet.ner葉小姐），24 日起受理報名。 【2005/10/30 民生報】報導來源http://www.udn.com/2005/10/30/NEWS/READING/REA8/2980098.shtml
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><font size="2"><font color="#cccccc"><strong>【南海之內皆兄弟】</strong>遇到好文，大家一起讀。（在引用時會註明出處，如有侵權請來信告知）</font></font></p><p><font color="#009999" size="2">&quot;前幾天有人說看到報紙上有報導，我們立刻搜尋，雖然沒有訪問我們(主要是寫牯嶺街小劇場的事，畢竟我們跟記者不熟)，篇幅也不大，但還是很高興有宣傳。希望能讓更多更多的人知道這個消息(最好全世界都知道)，這就要靠大家一起努力囉。</font></p><p><font color="#009999" size="2">P.S我們是北教大(不是北師)南海藝廊負責的是創意攤位，但報導內沒有寫清楚，在此註明。&quot;</font></p><blockquote><p><font size="2"><strong><font color="#003333" size="3">牯嶺街 英雄帖邀創作人</font></strong> </font></p><p><font size="2"><font color="#339966"><font class="text9" color="#336666">【記者紀慧玲／報導】</font> </font></font></p><p><font class="text11" color="#333333"><font size="2">台北市城南充滿人文書香歷史餘味，牯嶺街舊書市一帶，尤其臥虎藏龍，迭有驚奇。今年，牯嶺街社區工作者結合牯嶺街小劇場、<font color="#003366">南海藝廊</font>及舊書市，下月26、27日擴大舉行活動，召募手工藝坊、號召街頭藝人，「英雄帖」正四處寄送。 </font></font></p><p><font size="2">牯嶺街小劇場管理處表示，這項活動由里辦公室、南門口文化協會、台北市築原社區規畫師團隊等單位主辦，牯小劇場負責街頭演出部分，北師<font color="#003366">南海藝廊</font>負責手工藝坊部分。如同過去三年，屆時牯嶺街、西寧南路約二百公尺段封街，讓參與者盡情逗玩於這處人文空間，懷想舊文化，體驗新氣氛，往昔人潮曾達三萬多。 </font></p><p><font size="2">「英雄帖」廣邀各路創作人參加，不限形式，可於定點或流動於書市中演出。相關訊息及城南人文歷史資料可洽小劇場（電話：02-23919393，email: guling.glt@msa.hinet.ner葉小姐），24 日起受理報名。 <br /><br />【2005/10/30 民生報】</font></p><p><font size="1">報導來源</font><a href="http://www.udn.com/2005/10/30/NEWS/READING/REA8/2980098.shtml"><font size="1">http://www.udn.com/2005/10/30/NEWS/READING/REA8/2980098.shtml</font></a></p></blockquote>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/685006.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/685006.html</guid>
	<category>媒體報導／News</category>
	<pubDate>Sun, 06 Nov 2005 02:34:01 +0800</pubDate>
</item>
</channel>
</rss>