Welcome to TiddlyWiki created by Jeremy Ruston, Copyright © 2007 UnaMesa Association
*[[CSS顏色描述相互對應關係]]
*[[CSS同一行描述二種顏色]]
*[[如何隱藏整篇文章]]
*[[隱藏文章內容(註解)]]
*[[如何解讀「PageTemplate」架構]]
*[[網頁配色參考-Color色碼表]]
*[[如何解讀「viewTemplate」架構]]
*[[使用「水平線」]]
*[[如何使用「下拉式選單」]]
*[[使用「外來程式語法」]]
<html>
<!-- BEGIN CBOX - www.cbox.ws -->
<div align="center" id="cboxdiv">
<iframe frameborder="0" width="170" height="305" src="http://www5.cbox.ws/box/?boxid=76135&boxtag=rqsgww&sec=main" marginheight="2" marginwidth="2" scrolling="auto" allowtransparency="yes" name="cboxmain" style="border:#DBE2ED 1px solid;" id="cboxmain"></iframe><br/>
<iframe frameborder="0" width="160" height="75" src="http://www5.cbox.ws/box/?boxid=76135&boxtag=rqsgww&sec=form" marginheight="2" marginwidth="2" scrolling="no" allowtransparency="yes" name="cboxform" style="border:#DBE2ED 1px solid;border-top:0px" id="cboxform"></iframe>
</div>
<!-- END CBOX -->
</html>
@@一次描述二個顏色(前景、背景),寫在一起時前後以「;」隔開@@
{{{<style>
h1 {color: red;background-color: #00ff00}
</style>}}}
【<<closeAll>>】
{{{div{color: red} ←→ <div>Happy</div> }}}
{{{.r{color: blue} ←→<div class="r">RRRRR</div>}}} (其中 “r” 為自訂)
{{{#x{color:green} ←→<div id="x">OOOOO</div>}}} (其中 “x” 為自訂)
*(class 可以一次呼叫多組描述,但不支援程式運作)
*(id 只能呼叫一組描述,但支援程式運作)
*(class、id 會覆蓋掉 div 的描述)}}}
【<<closeAll>>】
/***
|''Name:''|CryptoFunctionsPlugin|
|''Description:''|Support for cryptographic functions|
***/
//{{{
if(!version.extensions.CryptoFunctionsPlugin) {
version.extensions.CryptoFunctionsPlugin = {installed:true};
//--
//-- Crypto functions and associated conversion routines
//--
// Crypto "namespace"
function Crypto() {}
// Convert a string to an array of big-endian 32-bit words
Crypto.strToBe32s = function(str)
{
var be = Array();
var len = Math.floor(str.length/4);
var i, j;
for(i=0, j=0; i<len; i++, j+=4) {
be[i] = ((str.charCodeAt(j)&0xff) << 24)|((str.charCodeAt(j+1)&0xff) << 16)|((str.charCodeAt(j+2)&0xff) << 8)|(str.charCodeAt(j+3)&0xff);
}
while (j<str.length) {
be[j>>2] |= (str.charCodeAt(j)&0xff)<<(24-(j*8)%32);
j++;
}
return be;
};
// Convert an array of big-endian 32-bit words to a string
Crypto.be32sToStr = function(be)
{
var str = "";
for(var i=0;i<be.length*32;i+=8)
str += String.fromCharCode((be[i>>5]>>>(24-i%32)) & 0xff);
return str;
};
// Convert an array of big-endian 32-bit words to a hex string
Crypto.be32sToHex = function(be)
{
var hex = "0123456789ABCDEF";
var str = "";
for(var i=0;i<be.length*4;i++)
str += hex.charAt((be[i>>2]>>((3-i%4)*8+4))&0xF) + hex.charAt((be[i>>2]>>((3-i%4)*8))&0xF);
return str;
};
// Return, in hex, the SHA-1 hash of a string
Crypto.hexSha1Str = function(str)
{
return Crypto.be32sToHex(Crypto.sha1Str(str));
};
// Return the SHA-1 hash of a string
Crypto.sha1Str = function(str)
{
return Crypto.sha1(Crypto.strToBe32s(str),str.length);
};
// Calculate the SHA-1 hash of an array of blen bytes of big-endian 32-bit words
Crypto.sha1 = function(x,blen)
{
// Add 32-bit integers, wrapping at 32 bits
add32 = function(a,b)
{
var lsw = (a&0xFFFF)+(b&0xFFFF);
var msw = (a>>16)+(b>>16)+(lsw>>16);
return (msw<<16)|(lsw&0xFFFF);
};
// Add five 32-bit integers, wrapping at 32 bits
add32x5 = function(a,b,c,d,e)
{
var lsw = (a&0xFFFF)+(b&0xFFFF)+(c&0xFFFF)+(d&0xFFFF)+(e&0xFFFF);
var msw = (a>>16)+(b>>16)+(c>>16)+(d>>16)+(e>>16)+(lsw>>16);
return (msw<<16)|(lsw&0xFFFF);
};
// Bitwise rotate left a 32-bit integer by 1 bit
rol32 = function(n)
{
return (n>>>31)|(n<<1);
};
var len = blen*8;
// Append padding so length in bits is 448 mod 512
x[len>>5] |= 0x80 << (24-len%32);
// Append length
x[((len+64>>9)<<4)+15] = len;
var w = Array(80);
var k1 = 0x5A827999;
var k2 = 0x6ED9EBA1;
var k3 = 0x8F1BBCDC;
var k4 = 0xCA62C1D6;
var h0 = 0x67452301;
var h1 = 0xEFCDAB89;
var h2 = 0x98BADCFE;
var h3 = 0x10325476;
var h4 = 0xC3D2E1F0;
for(var i=0;i<x.length;i+=16) {
var j,t;
var a = h0;
var b = h1;
var c = h2;
var d = h3;
var e = h4;
for(j = 0;j<16;j++) {
w[j] = x[i+j];
t = add32x5(e,(a>>>27)|(a<<5),d^(b&(c^d)),w[j],k1);
e=d; d=c; c=(b>>>2)|(b<<30); b=a; a = t;
}
for(j=16;j<20;j++) {
w[j] = rol32(w[j-3]^w[j-8]^w[j-14]^w[j-16]);
t = add32x5(e,(a>>>27)|(a<<5),d^(b&(c^d)),w[j],k1);
e=d; d=c; c=(b>>>2)|(b<<30); b=a; a = t;
}
for(j=20;j<40;j++) {
w[j] = rol32(w[j-3]^w[j-8]^w[j-14]^w[j-16]);
t = add32x5(e,(a>>>27)|(a<<5),b^c^d,w[j],k2);
e=d; d=c; c=(b>>>2)|(b<<30); b=a; a = t;
}
for(j=40;j<60;j++) {
w[j] = rol32(w[j-3]^w[j-8]^w[j-14]^w[j-16]);
t = add32x5(e,(a>>>27)|(a<<5),(b&c)|(d&(b|c)),w[j],k3);
e=d; d=c; c=(b>>>2)|(b<<30); b=a; a = t;
}
for(j=60;j<80;j++) {
w[j] = rol32(w[j-3]^w[j-8]^w[j-14]^w[j-16]);
t = add32x5(e,(a>>>27)|(a<<5),b^c^d,w[j],k4);
e=d; d=c; c=(b>>>2)|(b<<30); b=a; a = t;
}
h0 = add32(h0,a);
h1 = add32(h1,b);
h2 = add32(h2,c);
h3 = add32(h3,d);
h4 = add32(h4,e);
}
return Array(h0,h1,h2,h3,h4);
};
}
//}}}
/***
|''Name:''|DeprecatedFunctionsPlugin|
|''Description:''|Support for deprecated functions removed from core|
***/
//{{{
if(!version.extensions.DeprecatedFunctionsPlugin) {
version.extensions.DeprecatedFunctionsPlugin = {installed:true};
//--
//-- Deprecated code
//--
// @Deprecated: Use createElementAndWikify and this.termRegExp instead
config.formatterHelpers.charFormatHelper = function(w)
{
w.subWikify(createTiddlyElement(w.output,this.element),this.terminator);
};
// @Deprecated: Use enclosedTextHelper and this.lookaheadRegExp instead
config.formatterHelpers.monospacedByLineHelper = function(w)
{
var lookaheadRegExp = new RegExp(this.lookahead,"mg");
lookaheadRegExp.lastIndex = w.matchStart;
var lookaheadMatch = lookaheadRegExp.exec(w.source);
if(lookaheadMatch && lookaheadMatch.index == w.matchStart) {
var text = lookaheadMatch[1];
if(config.browser.isIE)
text = text.replace(/\n/g,"\r");
createTiddlyElement(w.output,"pre",null,null,text);
w.nextMatch = lookaheadRegExp.lastIndex;
}
};
// @Deprecated: Use <br> or <br /> instead of <<br>>
config.macros.br = {};
config.macros.br.handler = function(place)
{
createTiddlyElement(place,"br");
};
// Find an entry in an array. Returns the array index or null
// @Deprecated: Use indexOf instead
Array.prototype.find = function(item)
{
var i = this.indexOf(item);
return i == -1 ? null : i;
};
// Load a tiddler from an HTML DIV. The caller should make sure to later call Tiddler.changed()
// @Deprecated: Use store.getLoader().internalizeTiddler instead
Tiddler.prototype.loadFromDiv = function(divRef,title)
{
return store.getLoader().internalizeTiddler(store,this,title,divRef);
};
// Format the text for storage in an HTML DIV
// @Deprecated Use store.getSaver().externalizeTiddler instead.
Tiddler.prototype.saveToDiv = function()
{
return store.getSaver().externalizeTiddler(store,this);
};
// @Deprecated: Use store.allTiddlersAsHtml() instead
function allTiddlersAsHtml()
{
return store.allTiddlersAsHtml();
}
// @Deprecated: Use refreshPageTemplate instead
function applyPageTemplate(title)
{
refreshPageTemplate(title);
}
// @Deprecated: Use story.displayTiddlers instead
function displayTiddlers(srcElement,titles,template,unused1,unused2,animate,unused3)
{
story.displayTiddlers(srcElement,titles,template,animate);
}
// @Deprecated: Use story.displayTiddler instead
function displayTiddler(srcElement,title,template,unused1,unused2,animate,unused3)
{
story.displayTiddler(srcElement,title,template,animate);
}
// @Deprecated: Use functions on right hand side directly instead
var createTiddlerPopup = Popup.create;
var scrollToTiddlerPopup = Popup.show;
var hideTiddlerPopup = Popup.remove;
// @Deprecated: Use right hand side directly instead
var regexpBackSlashEn = new RegExp("\\\\n","mg");
var regexpBackSlash = new RegExp("\\\\","mg");
var regexpBackSlashEss = new RegExp("\\\\s","mg");
var regexpNewLine = new RegExp("\n","mg");
var regexpCarriageReturn = new RegExp("\r","mg");
}
//}}}
<html><div><form method="get" action="http://www.google.com.tw/custom" target="google_window">
<table bgcolor="#e6e6fa"><tbody><tr><td align="left" height="32" nowrap valign="top"><a href="http://www.google.com/"><img src="http://www.google.com/logos/Logo_25wht.gif" alt="Google" align="middle" border="0"></a><label for="sbi" style="display: none;">輸入您的搜尋字詞</label><input name="q" size="6" maxlength="255" value="" id="sbi" type="text"><label for="sbb" style="display: none;">提交搜尋表單</label><input name="sa" value="搜尋" id="sbb" type="submit"><input name="client" value="pub-0393937955614556" type="hidden"><input name="forid" value="1" type="hidden"><input name="ie" value="UTF-8" type="hidden"><input name="oe" value="UTF-8" type="hidden"><input name="cof" value="GALT:#008000;GL:1;DIV:#336699;VLC:663399;AH:center;BGC:FFFFFF;LBGC:336699;ALC:0000FF;LC:0000FF;T:000000;GFNT:0000FF;GIMP:0000FF;LH:32;LW:66;L:http://tv.tbala.net/ph/logo_2.jpg;S:http://tbalaschool.googlepages.com/tbalaschool;LP:1;FORID:1" type="hidden"><input name="hl" value="zh-TW" type="hidden"></td></tr></tbody></table>
</form></div></html>
/***
|''Name:''|LegacyStrikeThroughPlugin|
|''Description:''|Support for legacy (pre 2.1) strike through formatting|
|''Version:''|1.0.2|
|''Date:''|Jul 21, 2006|
|''Source:''|http://www.tiddlywiki.com/#LegacyStrikeThroughPlugin|
|''Author:''|MartinBudden (mjbudden (at) gmail (dot) com)|
|''License:''|[[BSD open source license]]|
|''CoreVersion:''|2.1.0|
***/
//{{{
// Ensure that the LegacyStrikeThrough Plugin is only installed once.
if(!version.extensions.LegacyStrikeThroughPlugin) {
version.extensions.LegacyStrikeThroughPlugin = {installed:true};
config.formatters.push(
{
name: "legacyStrikeByChar",
match: "==",
termRegExp: /(==)/mg,
element: "strike",
handler: config.formatterHelpers.createElementAndWikify
});
} //# end of "install only once"
//}}}
<<tabs 標籤頁
新手上路 "新手上路" [[【新手上路】]]
編輯應用 "編輯應用" [[【編輯應用】]]
架構應用 "架構應用" [[【架構應用】]]
關於這個網站 "關於這個網站" [[【關於這個網站】]]
相關網站 "相關網站" [[網站連結]]
最新文章 "最新文章" [[最新文章列表]]
心情記事 "心情記事" [[心情記事]]
TiddlyWiki的作品 "TiddlyWiki的作品" [[TiddlyWiki的作品]]
>>
【<<closeAll>>】【[[TWtBala軟體下載|http://tbala.net/tBala3-0801.html]]】【[[問題解答|http://disscus.tbala.net/disscus1/viewforum.php?f=24]]】【[[討論區如何註冊|http://sallychang0625.googlepages.com/sallychang.html]]】
<html>
<div><embed quality="high" align="middle" flashvars="cy=b1&il=1&channel=2089670227100361053&site=widget-5d.slide.com" type="application/x-shockwave-flash" src="http://widget-5d.slide.com/widgets/slideticker.swf" style="width: 170px; height: 150px;" salign="l" wmode="transparent" scale="noscale" name="flashticker"></embed><div style="width: 200px; text-align: left;"><a href="http://www.slide.com/pivot?cy=b1&ad=0&id=2089670227100361053&map=1" target="_blank">
</a> </div></div>
</html>
<!--{{{-->
<!--template by potto http://tbala.net/ -->
<div id="cb">
<div class='header' macro='gradient vert [[ColorPalette::PrimaryLight]] [[ColorPalette::PrimaryMid]]'>
<div class='headerForeground'>
<span class='siteTitle' refresh='content' tiddler='SiteTitle'></span>
<span class='siteSubtitle' refresh='content' tiddler='SiteSubtitle'></span>
</div>
</div>
<div id='mainMenu' refresh='content' tiddler='MainMenu'></div>
<div id="content">
<div id='sidebar'>
<!--<div id="menusetup" refresh='content' tiddler='menusetup' ></div>-->
<div id="goggle" refresh='content' tiddler='GOOGLE' ></div>
<div id="MyPhoto" refresh='content' tiddler='MyPhoto' ></div>
<div id="CBOX" refresh='content' tiddler='CBOX' ></div>
<div id="counter" refresh='content' tiddler='counter' ></div>
<!-- <div id="sidebarOptions" refresh='content' tiddler='SideBarOptions' ></div>-->
<!-- <div id="tbalalogo" refresh='content' tiddler='tbalalogo' ></div>-->
<!--<div id='sidebarTabs' refresh='content' force='true' tiddler='SideBarTabs'></div>-->
</div>
<div id='displayArea'><!--在StyleSheet內設定顯示文章的「寬度」(預設為610px)-->
<div id='messageArea'></div>
<div id='tiddlerDisplay'></div>
</div>
<em class="clear"> </em>
</div>
</div>
<div id="footer"><!--在StyleSheet設定整個版面的寬度(預設800)、左右留白距離(預設10)-->
<div id="licenses" refresh='content' tiddler='licenses' ></div><!--呼叫版權宣告-->
</div>
<!--}}}-->
<<search>><<closeAll>><<permaview>><<newTiddler>><<newJournal " YYYY年0MM月0DD日" "日誌">><<saveChanges>><<slider chkSliderOptionsPanel OptionsPanel "偏好設定 »" "變更 TiddlyWiki 選項">>
<<tabs txtMainTab "最近更新" "依更新日期排序" TabTimeline "全部" "所有文章" TabAll "分類" "所有標籤" TabTags "更多" "其他" TabMore>>
<html>
<style type="text/css">
<!--
.style1 {
color: #FF0000;
font-weight: bold;
font-size: large;
}
.style2 {
color:black;
font-size:100%;}
-->
</style>
2008年最”<span class="style1">夯</span>”的嗆紅小辣椒<p><p>
</html>
技術支援:[[土芭樂數位新思路|http://tbala.net/tBala3-0801.html]]
/***
|''Name:''|SparklinePlugin|
|''Description:''|Sparklines macro|
***/
//{{{
if(!version.extensions.SparklinePlugin) {
version.extensions.SparklinePlugin = {installed:true};
//--
//-- Sparklines
//--
config.macros.sparkline = {};
config.macros.sparkline.handler = function(place,macroName,params)
{
var data = [];
var min = 0;
var max = 0;
var v;
for(var t=0; t<params.length; t++) {
v = parseInt(params[t]);
if(v < min)
min = v;
if(v > max)
max = v;
data.push(v);
}
if(data.length < 1)
return;
var box = createTiddlyElement(place,"span",null,"sparkline",String.fromCharCode(160));
box.title = data.join(",");
var w = box.offsetWidth;
var h = box.offsetHeight;
box.style.paddingRight = (data.length * 2 - w) + "px";
box.style.position = "relative";
for(var d=0; d<data.length; d++) {
var tick = document.createElement("img");
tick.border = 0;
tick.className = "sparktick";
tick.style.position = "absolute";
tick.src = "data:image/gif,GIF89a%01%00%01%00%91%FF%00%FF%FF%FF%00%00%00%C0%C0%C0%00%00%00!%F9%04%01%00%00%02%00%2C%00%00%00%00%01%00%01%00%40%02%02T%01%00%3B";
tick.style.left = d*2 + "px";
tick.style.width = "2px";
v = Math.floor(((data[d] - min)/(max-min)) * h);
tick.style.top = (h-v) + "px";
tick.style.height = v + "px";
box.appendChild(tick);
}
};
}
//}}}
/*{{{*/
/*
* Powered by tbala: http://tbala.net/
* 2007.12.15
*/
#template a{ color:#fff;}
/* Layout */
body{
margin: 0 auto;
padding: 0 auto;
text-align:center;
}
#cb, #footer{
width:815px;
padding:10px;
}
#cb{
margin: 0 auto;
text-align:left;
margin-top:10px;
}
.headerForeground {
position:static;
padding: 1em 0em 0em 1em;
width:800px;
height:130px;
margin: 0 auto;
background-image:url('header.jpg');
}
#mainMenu {
position: static;
width: auto;
text-align:left;
padding: 0em 1em 0em 1em;
}
#content {
width:100%;
}
#sidebar {
margin:2px 0 2px 0;
position: static;
width: 180px;
font-size: 11px;
float:right;
}
.externalLink {text-decoration:none}
#displayArea {
margin:0 0 0 0px;
padding:0;
padding:0;
width: 600px;
}
.viewer {
word-break:break-all;
width: 500px;
padding:0.2em;
font-size:1em;
}
.viewer li{list-style-type:square;}
.viewer pre {font-size:1em;}
.tiddler {
border-top: 1px solid #ccc;
border-left: 1px solid #ccc;
border-bottom: 3px solid #ccc;
border-right: 3px solid #ccc;
margin: 0.5em;
background:#fff;
padding: 0.5em;
-moz-border-radius: 1em;
overflow: auto;
}
.clear {
clear:both;
display:block;
height:1px;
margin:0;
padding:0;
font-size:1px;
line-height:1px;
}
#footer{
margin: 0 auto;
clear:both;
text-align: center;
line-height:180%;
margin-bottom:1px;
color:#fff;
background-image:url('tbala_footer.jpg');
}
#tbalalogo{
margin-top:5px;
width:150px;
height:175px;
}
#授權模式,#counter{
margin: 0 auto;
width:130px;
padding :2px 2px 2px 2px;
text-align:center;
}
/* 設定版面顏色 */
/* 最外層底色 */
body{
background:#6495ed;
color:Black;
}
#cb{
background:#e6e6fa;
color:Black;
}
#mainMenu {
background-color:#b0c4de;
color:#cccccc;
}
.title {
color:#a68c53;
font-size: 1.5em;
padding-left: 0em;
}
h1 a,h2 a,h3 a,h4 a,h5 a{
sans-serif;font-style:italic;
color:#a68c53;
background-color:transparent;
}
/* wiki (!) */
h1{
width:80%;
color:#a68c53;
border-left: 10px solid Blue;
border-bottom:1px solid #cccccc;
padding-left: 5px;
background-color:transparent;
}
/* wiki(!!) */
h2{
width:70%;
color:#a68c53;
border-left: 6px solid Blue;
border-bottom:1px solid #cccccc;
padding-left: 5px;
background-color:transparent;
}
/* wiki (!!!, !!!!, !!!!!) */
h3,h4,h5{
width:60%;
color:#a68c53;
background-color:transparent;
}
.toolbar .button {
color: #ccc;
}
.center{
text-align:center;
}
#sidebarOptions .search a{
display:inline;
font-size:11px;
background-color:#0000CC;
border-top:1px solid #ccccff;
border-left:1px solid #ccccff;
border-bottom:1px solid #000000;
border-right:1px solid #000000;
padding: 2px 5px 2x 5px;
}
#sidebarOptions .search a:hover{
display:inline;
font-size:11px;
background-color:#0000CC;
border-top:1px solid #000000;
border-left:1px solid #000000;
border-bottom:1px solid #ccccff;
border-right:1px solid #ccccff;
padding: 2px 5px 2x 5px;
}
.search .button{
position:relative;
left:140px;
top:-6px;
color:#ffffff;
}
.search input{
position:relative;
left:-30px;
width:130px;
}
/*}}}*/
| ''Tiddly Wiki'' | ''Blog'' |h
| @@color(red):資料存放在自己手上@@ | @@color(red):資料存放在對方伺服器@@ |
| 資料可任意轉移存放處 | 資料無法任意轉移 |
| 資料可以保存、備份 | 需付費會員才享有資料保存、備份 |
| 框架結構模組化設計,修改彈性高 | 框架結構模組化設計,修改彈性較低 |
| 可外掛~Plug-In擴充導入功能 | 無提供~Plug-In擴充導入功能 |
| 擴充功能有專屬套件管理介面 | 無套件管理介面供使用 |
| @@color(red):可於文章內執行巨集指令@@ | @@color(red):無提供巨集功能@@ |
| 可呼叫外部執行程式 | 可呼叫外部執行程式 |
| 有各類版型可以套用 | 有各類版型可以套用 |
| @@color(red):利用導入功能,文章分享方便@@ | @@color(red):只能用傳統複製貼上@@ |
| @@color(red):資料結構單純只有一頁@@ | @@color(red):結構複雜、多頁@@ |
| @@color(red):除html、CSS可用Wiki語法,發展淺力雄厚@@ | @@color(red):僅能使用 html、CSS@@ |
| 網路教學應用資源少 | 網路教學應用資源多 |
| 除了BLOG也能做其他運用 | 僅以BLOG為發展基礎 |
| 修改風險低,可隨時還原 | 修改風險高、資料易遺失 |
| @@color(red):可發展為個人專屬產品、個人利益高@@ | @@color(red):雖可發展,但卻屬別人產品、個人利益低@@ |
| 預設功能較少,功能需編寫語法 | 有多種預設模組可以直接套用 |
| 初期使用門檻高(需懂基本語法) | 初期使用易於學習操作 |
| 要另尋存放空間、無相關附加功能 | 申請即有空間及多重附加功能 |
| 編修更新後需再上傳 | 可線上即時編修、更新 |
| @@color(red):可離線編輯、不受網路環境限制@@ | @@color(red):僅可線上編輯,無法離線使用@@ |
【<<closeAll>>】
*買了新的GPS,做了一個相關的網站,在此分享~
@@[[TOMTOM新手上路|http://twalong.googlepages.com/tomtom.html]]@@
<!--{{{-->
<!--{{{隱藏「右上角編輯選項」}}}開始-->
<!--<div class='toolbar' macro='toolbar closeTiddler closeOthers +editTiddler > fields syncing permalink references jump'></div>--><!--{{{隱藏「右上角編輯選項」結束}}}-->
<div class='title' macro='view title'></div>
<!--{{{隱藏「發文日期」開始}}}-->
<!--<div class='subtitle'><span macro='view modifier link'></span>, <span macro='view modified date'></span> (<span macro='message views.wikified.createdPrompt'></span> <span macro='view created date'></span>)</div>--><!--{{{隱藏「發文日期」結束}}}-->
<div class='tagging' macro='tagging'></div>
<!--{{{隱藏「標籤」開始}}}-->
<!--<div class='tagged' macro='tags'></div>--><!--{{{隱藏「標籤」結束}}}-->
<div class='viewer' macro='view text wikified'></div>
<div class='tagClear'></div>
<!--}}}-->
<html><p style="align: center"><img border="0" src="http://cb.amazingcounters.com/counter.php?i=2148792&c=6446689" alt="frontpage widget"/></a><br/>收集の腳丫子</a></html>
----
©2007-2008 [[A-Long|http://along-tw.blogspot.com]] All Rights Reserved.<br>
<html><div> 本站台內容授權模式<br>
<a style="border: 0pt none ; background-color: transparent; margin-left: 1em; margin-right: 1em;" href="http://creativecommons.org/licenses/by-nc-sa/2.5/tw/" imageanchor="1"><img src="http://www.tbala.net/joomla/CC/icon_by-nc-sa2.png" style="border: 0pt none ;"></a></div>
</html>
/***
|''Name:''|zh-HantTranslationPlugin|
|''Description:''|Translation of TiddlyWiki into Traditional Chinese|
|''Source:''|http://tiddlywiki-zh.googlecode.com/svn/trunk/|
|''Subversion:''|http://svn.tiddlywiki.org/Trunk/association/locales/core/zh-Hant/locale.zh-Hant.js|
|''Author:''|BramChen (bram.chen (at) gmail (dot) com)|
|''Version:''|2.2.6|
|''Date:''|Dec 01, 2007|
|''Comments:''|Please make comments at http://groups-beta.google.com/group/TiddlyWiki-zh/|
|''License:''|[[Creative Commons Attribution-ShareAlike 2.5 License|http://creativecommons.org/licenses/by-sa/2.5/]]|
|''~CoreVersion:''|2.2.0|
***/
//{{{
// --
// -- Translateable strings
// --
// Strings in "double quotes" should be translated; strings in 'single quotes' should be left alone
config.locale = 'zh-Hant'; // W3C language tag
if (config.options.txtUserName == 'YourName' || !config.options.txtUserName) // do not translate this line, but do translate the next line
merge(config.options,{txtUserName: "YourName"});
merge(config.tasks,{
save: {text: "儲存", tooltip: "儲存變更至此 TiddlyWiki", action: saveChanges},
sync: {text: "同步", tooltip: "將你的資料內容與外部伺服器與檔案同步", content: '<<sync>>'},
importTask: {text: "導入", tooltip: "自其他檔案或伺服器導入文章或套件", content: '<<importTiddlers>>'},
tweak: {text: "選項", tooltip: "改變此 TiddlyWiki 的顯示與行為的設定", content: '<<options>>'},
plugins: {text: "套件管理", tooltip: "管理已安裝的套件", content: '<<plugins>>'}
});
merge(config.optionsDesc,{
txtUserName: "編輯文章所使用之作者署名",
chkRegExpSearch: "啟用正規式搜尋",
chkCaseSensitiveSearch: "搜尋時,區分大小寫",
chkAnimate: "使用動畫顯示",
chkSaveBackups: "儲存變更前,保留備份檔案",
chkAutoSave: "自動儲存變更",
chkGenerateAnRssFeed: "儲存變更時,也儲存 RSS feed",
chkSaveEmptyTemplate: "儲存變更時,也儲存空白範本",
chkOpenInNewWindow: "於新視窗開啟連結",
chkToggleLinks: "點擊已開啟文章將其關閉",
chkHttpReadOnly: "非本機瀏覽文件時,隱藏編輯功能",
chkForceMinorUpdate: "修改文章時,不變更作者名稱與日期時間",
chkConfirmDelete: "刪除文章前須確認",
chkInsertTabs: "使用 tab 鍵插入定位字元,而非跳至下一個欄位",
txtBackupFolder: "存放備份檔案的資料夾",
txtMaxEditRows: "編輯模式中顯示列數",
txtFileSystemCharSet: "指定儲存文件所在之檔案系統之字集 (僅適用於 Firefox/Mozilla only)"});
// Messages
merge(config.messages,{
customConfigError: "套件載入發生錯誤,詳細請參考 PluginManager",
pluginError: "發生錯誤: %0",
pluginDisabled: "未執行,因標籤設為 'systemConfigDisable'",
pluginForced: "已執行,因標籤設為 'systemConfigForce'",
pluginVersionError: "未執行,套件需較新版本的 TiddlyWiki",
nothingSelected: "尚未作任何選擇,至少需選擇一項",
savedSnapshotError: "此 TiddlyWiki 未正確存檔,詳見 http://www.tiddlywiki.com/#DownloadSoftware",
subtitleUnknown: "(未知)",
undefinedTiddlerToolTip: "'%0' 尚無內容",
shadowedTiddlerToolTip: "'%0' 尚無內容, 但已定義隱藏的預設值",
tiddlerLinkTooltip: "%0 - %1, %2",
externalLinkTooltip: "外部連結至 %0",
noTags: "未設定標籤的文章",
notFileUrlError: "須先將此 TiddlyWiki 存至檔案,才可儲存變更",
cantSaveError: "無法儲存變更。可能的原因有:\n- 你的瀏覽器不支援此儲存功能(Firefox, Internet Explorer, Safari and Opera 經適當設定後可儲存變更)\n- 也可能是你的 TiddlyWiki 檔名包含不合法的字元所致。\n- 或是 TiddlyWiki 文件被改名或搬移。",
invalidFileError: " '%0' 非有效之 TiddlyWiki 文件",
backupSaved: "已儲存備份",
backupFailed: "無法儲存備份",
rssSaved: "RSS feed 已儲存",
rssFailed: "無法儲存 RSS feed ",
emptySaved: "已儲存範本",
emptyFailed: "無法儲存範本",
mainSaved: "主要的TiddlyWiki已儲存",
mainFailed: "無法儲存主要 TiddlyWiki,所作的改變未儲存",
macroError: "巨集 <<\%0>> 執行錯誤",
macroErrorDetails: "執行巨集 <<\%0>> 時,發生錯誤 :\n%1",
missingMacro: "無此巨集",
overwriteWarning: "'%0' 已存在,[確定]覆寫之",
unsavedChangesWarning: "注意! 尚未儲存變更\n\n[確定]存檔,或[取消]放棄存檔?",
confirmExit: "--------------------------------\n\nTiddlyWiki 以更改內容尚未儲存,繼續的話將遺失這些更動\n\n--------------------------------",
saveInstructions: "SaveChanges",
unsupportedTWFormat: "未支援此 TiddlyWiki 格式:'%0'",
tiddlerSaveError: "儲存文章 '%0' 時,發生錯誤。",
tiddlerLoadError: "載入文章 '%0' 時,發生錯誤。",
wrongSaveFormat: "無法使用格式 '%0' 儲存,請使用標准格式存放",
invalidFieldName: "無效的欄位名稱:%0",
fieldCannotBeChanged: "無法變更欄位:'%0'",
loadingMissingTiddler: "正從伺服器 '%1' 的:\n\n工作區 '%3' 中的 '%2' 擷取文章 '%0'"});
merge(config.messages.messageClose,{
text: "關閉",
tooltip: "關閉此訊息"});
config.messages.backstage = {
open: {text: "控制台", tooltip: "開啟控制台執行編寫工作"},
close: {text: "關閉", tooltip: "關閉控制台"},
prompt: "控制台:",
decal: {
edit: {text: "編輯", tooltip: "編輯 '%0'"}
}
};
config.messages.listView = {
tiddlerTooltip: "檢視全文",
previewUnavailable: "(無法預覽)"
};
config.messages.dates.months = ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"];
config.messages.dates.days = ["星期日", "星期一","星期二", "星期三", "星期四", "星期五", "星期六"];
// config.messages.dates.shortMonths = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
config.messages.dates.shortMonths = ["一", "二", "三", "四", "五", "六", "七", "八", "九", "十", "十一", "十二"];
// config.messages.dates.shortDays = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"];
config.messages.dates.shortDays = ["日", "一","二", "三", "四", "五", "六"];
// suffixes for dates, eg "1st","2nd","3rd"..."30th","31st"
config.messages.dates.daySuffixes = ["st","nd","rd","th","th","th","th","th","th","th",
"th","th","th","th","th","th","th","th","th","th",
"st","nd","rd","th","th","th","th","th","th","th",
"st"];
config.messages.dates.am = "上午";
config.messages.dates.pm = "下午";
merge(config.messages.tiddlerPopup,{
});
merge(config.views.wikified.tag,{
labelNoTags: "未設標籤",
labelTags: "標籤: ",
openTag: "開啟標籤 '%0'",
tooltip: "顯示標籤為 '%0' 的文章",
openAllText: "開啟以下所有文章",
openAllTooltip: "開啟以下所有文章",
popupNone: "僅此文標籤為 '%0'"});
merge(config.views.wikified,{
defaultText: "",
defaultModifier: "(未完成)",
shadowModifier: "(預設)",
dateFormat: "YYYY年0MM月0DD日",
createdPrompt: "建立於"});
merge(config.views.editor,{
tagPrompt: "設定標籤之間以空白區隔,[[標籤含空白時請使用雙中括弧]],或點選現有之標籤加入",
defaultText: ""});
merge(config.views.editor.tagChooser,{
text: "標籤",
tooltip: "點選現有之標籤加至本文章",
popupNone: "未設定標籤",
tagTooltip: "加入標籤 '%0'"});
merge(config.messages,{
sizeTemplates:
[
{unit: 1024*1024*1024, template: "%0\u00a0GB"},
{unit: 1024*1024, template: "%0\u00a0MB"},
{unit: 1024, template: "%0\u00a0KB"},
{unit: 1, template: "%0\u00a0B"}
]});
merge(config.macros.search,{
label: " 尋找",
prompt: "搜尋本 Wiki",
accessKey: "F",
successMsg: " %0 篇符合條件: %1",
failureMsg: " 無符合條件: %0"});
merge(config.macros.tagging,{
label: "引用標籤:",
labelNotTag: "無引用標籤",
tooltip: "列出標籤為 '%0' 的文章"});
merge(config.macros.timeline,{
dateFormat: "YYYY年0MM月0DD日"});
merge(config.macros.allTags,{
tooltip: "顯示文章- 標籤為'%0'",
noTags: "沒有標籤"});
config.macros.list.all.prompt = "依字母排序";
config.macros.list.missing.prompt = "被引用且內容空白的文章";
config.macros.list.orphans.prompt = "未被引用的文章";
config.macros.list.shadowed.prompt = "這些隱藏的文章已預設內容";
config.macros.list.touched.prompt = "自下載或新增後被修改過的文章";
merge(config.macros.closeAll,{
label: "全部關閉",
prompt: "關閉所有開啟中的 tiddler (編輯中除外)"});
merge(config.macros.permaview,{
label: "引用連結",
prompt: "可存取現有開啟之文章的連結位址"});
merge(config.macros.saveChanges,{
label: "儲存變更",
prompt: "儲存所有文章,產生新的版本",
accessKey: "S"});
merge(config.macros.newTiddler,{
label: "新增文章",
prompt: "新增 tiddler",
title: "新增文章",
accessKey: "N"});
merge(config.macros.newJournal,{
label: "新增日誌",
prompt: "新增 jounal",
accessKey: "J"});
merge(config.macros.options,{
wizardTitle: "增訂的進階選項",
step1Title: "增訂的選項儲存於瀏覽器的 cookies",
step1Html: "<input type='hidden' name='markList'></input><br><input type='checkbox' checked='false' name='chkUnknown'>顯示未知選項</input>",
unknownDescription: "//(未知)//",
listViewTemplate: {
columns: [
{name: 'Option', field: 'option', title: "選項", type: 'String'},
{name: 'Description', field: 'description', title: "說明", type: 'WikiText'},
{name: 'Name', field: 'name', title: "名稱", type: 'String'}
],
rowClasses: [
{className: 'lowlight', field: 'lowlight'}
]}
});
merge(config.macros.plugins,{
wizardTitle: "擴充套件管理",
step1Title: "- 已載入之套件",
step1Html: "<input type='hidden' name='markList'></input>", // DO NOT TRANSLATE
skippedText: "(此套件因剛加入,故尚未執行)",
noPluginText: "未安裝套件",
confirmDeleteText: "確認是否刪除此文章:\n\n%0",
removeLabel: "移除 systemConfig 標籤",
removePrompt: "移除 systemConfig 標籤",
deleteLabel: "刪除",
deletePrompt: "永遠刪除所選",
listViewTemplate : {
columns: [
{name: 'Selected', field: 'Selected', rowName: 'title', type: 'Selector'},
{name: 'Tiddler', field: 'tiddler', title: "套件", type: 'Tiddler'},
{name: 'Size', field: 'size', tiddlerLink: 'size', title: "大小", type: 'Size'},
{name: 'Forced', field: 'forced', title: "強制執行", tag: 'systemConfigForce', type: 'TagCheckbox'},
{name: 'Disabled', field: 'disabled', title: "停用", tag: 'systemConfigDisable', type: 'TagCheckbox'},
{name: 'Executed', field: 'executed', title: "已載入", type: "Boolean", trueText: "是", falseText: "否"},
{name: 'Startup Time', field: 'startupTime', title: "載入時間", type: 'String'},
{name: 'Error', field: 'error', title: "載入狀態", type: 'Boolean', trueText: "錯誤", falseText: "正常"},
{name: 'Log', field: 'log', title: "紀錄", type: 'StringList'}
],
rowClasses: [
{className: 'error', field: 'error'},
{className: 'warning', field: 'warning'}
]}
});
merge(config.macros.toolbar,{
moreLabel: "其他",
morePrompt: "顯示更多工具命令"});
merge(config.macros.refreshDisplay,{
label: "刷新",
prompt: "刷新此 TiddlyWiki 顯示"
});
merge(config.macros.importTiddlers,{
readOnlyWarning: "TiddlyWiki 於唯讀模式下,不支援導入文章。請由本機(file://)開啟 TiddlyWiki 文件",
wizardTitle: "自其他檔案或伺服器導入文章",
step1Title: "步驟一:指定伺服器或來源文件",
step1Html: "指定伺服器類型:<select name='selTypes'><option value=''>選取...</option></select><br>請輸入網址或路徑:<input type='text' size=50 name='txtPath'><br>...或選擇來源文件:<input type='file' size=50 name='txtBrowse'><br><hr>...或選擇指定的饋入來源:<select name='selFeeds'><option value=''>選取...</option></select>",
openLabel: "開啟",
openPrompt: "開啟檔案或",
openError: "讀取來源文件時發生錯誤",
statusOpenHost: "正與伺服器建立連線",
statusGetWorkspaceList: "正在取得可用之文章清單",
step2Title: "步驟二:選擇工作區",
step2Html: "輸入工作區名稱:<input type='text' size=50 name='txtWorkspace'><br>...或選擇工作區:<select name='selWorkspace'><option value=''>選取...</option></select>",
cancelLabel: "取消",
cancelPrompt: "取消本次導入動作",
statusOpenWorkspace: "正在開啟工作區",
statusGetTiddlerList: "正在取得可用之文章清單",
step3Title: "步驟三:選擇欲導入之文章",
step3Html: "<input type='hidden' name='markList'></input><br><input type='checkbox' checked='true' name='chkSync'>保持這些文章與伺服器的連結,便於同步後續的變更。</input><br><input type='checkbox' name='chkSave'>儲存此伺服器的詳細資訊於標籤為 'systemServer' 的文章名為:</input> <input type='text' size=25 name='txtSaveTiddler'>",
importLabel: "導入",
importPrompt: "導入所選文章",
confirmOverwriteText: "確定要覆寫這些文章:\n\n%0",
step4Title: "步驟四:正在導入%0 篇文章",
step4Html: "<input type='hidden' name='markReport'></input>", // DO NOT TRANSLATE
doneLabel: "完成",
donePrompt: "關閉",
statusDoingImport: "正在導入文章 ...",
statusDoneImport: "所選文章已導入",
systemServerNamePattern: "%2 位於 %1",
systemServerNamePatternNoWorkspace: "%1",
confirmOverwriteSaveTiddler: "此 tiddler '%0' 已經存在。點擊「確定」以伺服器上料覆寫之,或「取消」不變更後離開",
serverSaveTemplate: "|''Type:''|%0|\n|''網址:''|%1|\n|''工作區:''|%2|\n\n此文為自動產生紀錄伺服器之相關資訊。",
serverSaveModifier: "(系統)",
listViewTemplate: {
columns: [
{name: 'Selected', field: 'Selected', rowName: 'title', type: 'Selector'},
{name: 'Tiddler', field: 'tiddler', title: "文章", type: 'Tiddler'},
{name: 'Size', field: 'size', tiddlerLink: 'size', title: "大小", type: 'Size'},
{name: 'Tags', field: 'tags', title: "標籤", type: 'Tags'}
],
rowClasses: [
]}
});
merge(config.macros.sync,{
listViewTemplate: {
columns: [
{name: 'Selected', field: 'selected', rowName: 'title', type: 'Selector'},
{name: 'Tiddler', field: 'tiddler', title: "文章", type: 'Tiddler'},
{name: 'Server Type', field: 'serverType', title: "伺服器類型", type: 'String'},
{name: 'Server Host', field: 'serverHost', title: "伺服器主機", type: 'String'},
{name: 'Server Workspace', field: 'serverWorkspace', title: "伺服器工作區", type: 'String'},
{name: 'Status', field: 'status', title: "同步情形", type: 'String'},
{name: 'Server URL', field: 'serverUrl', title: "伺服器網址", text: "View", type: 'Link'}
],
rowClasses: [
],
buttons: [
{caption: "同步更新這些文章", name: 'sync'}
]},
wizardTitle: "將你的資料內容與外部伺服器與檔案同步",
step1Title: "選擇欲同步的文章",
step1Html: '<input type="hidden" name="markList"></input>', // DO NOT TRANSLATE
syncLabel: "同步",
syncPrompt: "同步更新這些文章",
hasChanged: "已更動",
hasNotChanged: "未更動",
syncStatusList: {
none: {text: "...", color: 'transparent'},
changedServer: {text: "伺服器資料已更動", color: '#80ff80'},
changedLocally: {text: "本機資料已更動", color: '#80ff80'},
changedBoth: {text: "已同時更新本機與伺服器上的資料", color: '#ff8080'},
notFound: {text: "伺服器無此資料", color: '#ffff80'},
putToServer: {text: "已儲存更新資料至伺服器", color: '#ff80ff'},
gotFromServer: {text: "已從伺服器擷取更新資料", color: '#80ffff'}
}
});
merge(config.macros.annotations,{
});
merge(config.commands.closeTiddler,{
text: "關閉",
tooltip: "關閉本文"});
merge(config.commands.closeOthers,{
text: "關閉其他",
tooltip: "關閉其他文章"});
merge(config.commands.editTiddler,{
text: "編輯",
tooltip: "編輯本文",
readOnlyText: "檢視",
readOnlyTooltip: "檢視本文之原始內容"});
merge(config.commands.saveTiddler,{
text: "完成",
tooltip: "確定修改"});
merge(config.commands.cancelTiddler,{
text: "取消",
tooltip: "取消修改",
warning: "確定取消對 '%0' 的修改嗎?",
readOnlyText: "完成",
readOnlyTooltip: "返回正常顯示模式"});
merge(config.commands.deleteTiddler,{
text: "刪除",
tooltip: "刪除文章",
warning: "確定刪除 '%0'?"});
merge(config.commands.permalink,{
text: "引用連結",
tooltip: "本文引用連結"});
merge(config.commands.references,{
text: "引用",
tooltip: "引用本文的文章",
popupNone: "本文未被引用"});
merge(config.commands.jump,{
text: "捲頁",
tooltip: "捲頁至其他已開啟的文章"});
merge(config.commands.syncing,{
text: "同步",
tooltip: "本文章與伺服器或其他外部檔案的同步資訊",
currentlySyncing: "<div>同步類型:<span class='popupHighlight'>'%0'</span></"+"div><div>與伺服器:<span class='popupHighlight'>%1 同步</span></"+"div><div>工作區:<span class='popupHighlight'>%2</span></"+"div>", // Note escaping of closing <div> tag
notCurrentlySyncing: "無進行中的同步動作",
captionUnSync: "停止同步此文章",
chooseServer: "與其他伺服器同步此文章:",
currServerMarker: "\u25cf ",
notCurrServerMarker: " "});
merge(config.commands.fields,{
text: "欄位",
tooltip: "顯示此文章的擴充資訊",
emptyText: "此文章沒有擴充欄位",
listViewTemplate: {
columns: [
{name: 'Field', field: 'field', title: "擴充欄位", type: 'String'},
{name: 'Value', field: 'value', title: "內容", type: 'String'}
],
rowClasses: [
],
buttons: [
]}});
merge(config.shadowTiddlers,{
DefaultTiddlers: "GettingStarted",
GettingStarted: "使用此 TiddlyWiki 的空白範本之前,請先修改以下預設文章:\n* SiteTitle 及 SiteSubtitle:網站的標題和副標題,顯示於頁面上方<br />(在儲存變更後,將顯示於瀏覽器視窗的標題列)。\n* MainMenu:主選單(通常在頁面左側)。\n* DefaultTiddlers:內含一些文章的標題,可於載入TiddlyWiki 後的預設開啟。\n請輸入您的大名,作為所建立/ 編輯的文章署名:<<option txtUserName>>",
MainMenu: "[[使用說明|GettingStarted]]\n\n\n^^~TiddlyWiki 版本:<<version>>\n© 2007 [[UnaMesa|http://www.unamesa.org/]]^^",
OptionsPanel: "這些設定將暫存於瀏覽器\n請簽名<<option txtUserName>>\n (範例:WikiWord)\n\n <<option chkSaveBackups>> 儲存備份\n <<option chkAutoSave>> 自動儲存\n <<option chkRegExpSearch>> 正規式搜尋\n <<option chkCaseSensitiveSearch>> 區分大小寫搜尋\n <<option chkAnimate>> 使用動畫顯示\n----\n [[進階選項|AdvancedOptions]]",
SiteTitle: "我的 TiddlyWiki",
SiteSubtitle: "一個可重複使用的個人網頁式筆記本",
SiteUrl: 'http://www.tiddlywiki.com/',
SideBarOptions: '<<search>><<closeAll>><<permaview>><<newTiddler>><<newJournal " YYYY年0MM月0DD日" "日誌">><<saveChanges>><<slider chkSliderOptionsPanel OptionsPanel "偏好設定 »" "變更 TiddlyWiki 選項">>',
SideBarTabs: '<<tabs txtMainTab "最近更新" "依更新日期排序" TabTimeline "全部" "所有文章" TabAll "分類" "所有標籤" TabTags "更多" "其他" TabMore>>',
StyleSheet: '[[StyleSheetLocale]]',
TabMore: '<<tabs txtMoreTab "未完成" "內容空白的文章" TabMoreMissing "未引用" "未被引用的文章" TabMoreOrphans "預設文章" "已預設內容的隱藏文章" TabMoreShadowed>>'});
merge(config.annotations,{
AdvancedOptions: "此預設文章可以存取一些進階選項。",
ColorPalette: "此預設文章裡的設定值,將決定 ~TiddlyWiki 使用者介面的配色。",
DefaultTiddlers: "當 ~TiddlyWiki 在瀏覽器中開啟時,此預設文章裡列出的文章,將被自動顯示。",
EditTemplate: "此預設文章裡的 HTML template 將決定文章進入編輯模式時的顯示版面。",
GettingStarted: "此預設文章提供基本的使用說明。",
ImportTiddlers: "此預設文章提供存取導入中的文章。",
MainMenu: "此預設文章的內容,為於螢幕左側主選單的內容",
MarkupPreHead: "此文章的內容將加至 TiddlyWiki 文件的 <head> 段落的起始",
MarkupPostHead: "此文章的內容將加至 TiddlyWiki 文件的 <head> 段落的最後",
MarkupPreBody: "此文章的內容將加至 TiddlyWiki 文件的 <body> 段落的起始",
MarkupPostBody: "此文章的內容將加至 TiddlyWiki 文件的 <body> 段落的最後,於 script 區塊之前",
OptionsPanel: "此預設文章的內容,為於螢幕右側副選單中的選項面板裡的內容",
PageTemplate: "此預設文章裡的 HTML template 決定的 ~TiddlyWiki 主要的版面配置",
PluginManager: "此預設文章提供存取套件管理員",
SideBarOptions: "此預設文章的內容,為於螢幕右側副選單中選項面板裡的內容",
SideBarTabs: "此預設文章的內容,為於螢幕右側副選單中的頁籤面板裡的內容",
SiteSubtitle: "此預設文章的內容為頁面的副標題",
SiteTitle: "此預設文章的內容為頁面的主標題",
SiteUrl: "此預設文章的內容須設定為文件發佈時的完整網址",
StyleSheetColors: "此預設文章內含的 CSS 規則,為相關的頁面元素的配色。''勿修改此文'',請於 StyleSheet 中作增修。",
StyleSheet: "此預設文章內容可包含 CSS 規則",
StyleSheetLayout: "此預設文章內含的 CSS 規則,為相關的頁面元素的版面配置。''勿修改此文'',請於 StyleSheet 中作增修。",
StyleSheetLocale: "此預設文章內含的 CSS 規則,可依翻譯語系做適當調整",
StyleSheetPrint: "此預設文章內含的 CSS 規則,用於列印時的樣式",
TabAll: "此預設文章的內容,為於螢幕右側副選單中的「全部」頁籤的內容",
TabMore: "此預設文章的內容,為於螢幕右側副選單中的「更多」頁籤的內容",
TabMoreMissing: "此預設文章的內容,為於螢幕右側副選單中的「未完成」頁籤的內容",
TabMoreOrphans: "此預設文章的內容,為於螢幕右側副選單中的「未引用」頁籤的內容",
TabMoreShadowed: "此預設文章的內容,為於螢幕右側副選單中的「預設文章」頁籤的內容",
TabTags: "此預設文章的內容,為於螢幕右側副選單中的「分類」頁籤的內容",
TabTimeline: "此預設文章的內容,為於螢幕右側副選單中的「最近更新」頁籤的內容",
ViewTemplate: "此預設文章裡的 HTML template 決定文章顯示的樣子"
});
//}}}
[[選單內容設定]]
<<newTiddler>>
<html>
<embed src="http://blog.roodo.com/oei/8bffa66c.swf" width="150" height="200" wmode="transparent"></embed>
</html>
天啊!
這是什麼鬼咚咚!
信件收了幾封 HI5 的友誼邀約
本不想理它的,看到有一個「有力人士」的邀約
想說應該是什麼「好康」的吧!
結果在我亂搞之下
HI5 竟然很自動的透過MAIL聯絡人名冊全部給我發一封信件
傻眼!!這下不是「擾民」了嗎?!!
對於打擾的朋友,真的對不起喔!
阿阿阿..在鬼叫之後,也搞不清楚狀況
直接打入冷宮不再碰了!
PS/其實部落格功能、影片分享功能、交友功能好像還不錯!
但,還是不要玩這好啦!
【<<closeAll>>】
期待已久的年假
大過年的,覺得沒有放到什麼假哩!
一來這一次的年假短
二來還真有許多事情要去做呢!
除夕、初一 要回媽媽家團圓、拜拜、祭祖
初二~要帶老婆回娘家
初三~老婆娘家辦家庭聚會
初四~終於有自己的一天可以和老婆好好的去逛逛街(老天賞臉的沒下雨)
初五~下午工作要進場
這這麼的六天年假沒啦!
【<<closeAll>>】
今天是情人節
今年沒有好好的幫老婆慶祝慶祝哩!呵呵~(罪過啊!)
上禮拜老婆之前的生日禮物「手錶」不慎遺失
找了個時間帶老婆去買「新錶」
原本老婆怕手錶又不小心掉了不想買鍊子手環
但覺得塑膠手環太小孩子沒感覺
老婆都快成熟女了當然要帶有點女人味的啦!
所以自動的直接幫她強迫自願選擇了一款我喜歡的
嘿嘿!
然後也很自動的把這當作是「情人節」禮物囉!哈!
【<<closeAll>>】
每年元宵節,新莊都會舉辦許多慶祝活動
‧市長、官員 特別的做造型後,一起遊「新莊老街拜年」
‧各地里民舉辦「摸彩、唱歌」活動
‧「新莊碧江公園」舉辦「轟砲台活動」
[img[00277|http://twalong.googlepages.com/DSC00277.JPG]]
關於這個轟砲台,據市長的說法是「全省有名」的
具我的知道,好像全省各地都有舉辦這樣的活動哩!哈哈!
那種置身於砲竹中震撼,一定要親身去體驗
今年大家都很猛,去年還很多是帶安全帽全副武裝的哩!
很多老手超厲害,獎品可是多到可怕
都是要開車來才載的完的呢!
[img[00277|http://twalong.googlepages.com/DSC00272.JPG]]
「轟砲台規則」
先購買主辦單位提供的「砲火」(玩起來很像「水鴛鴦」)
點燃砲火後,往高空的「紅色砲台」(四面都有開孔)投擲
投進去而且有引爆的就算成功,即可獲得禮物喔!
【<<closeAll>>】
*[[何謂 TiddlyWiki?]]
*[[Tiddly & BLOG 差異表]]
*[[如何安裝]]
*[[相關網站]]
*[[版面架構設定說明]]
*[[隱藏 Tiddly 發文日期顯示]]
*[[如何解讀「PageTemplate」架構]]
*[[如何解讀「viewTemplate」架構]]
*[[如何使用「下拉式選單」]]
*[[使用「外來程式語法」]]
*[[插入圖片]]
*[[文字超連結]]
*[[文字格式]]
*[[標籤樣式設定]]
*[[CSS顏色描述相互對應關係]]
*[[CSS同一行描述二種顏色]]
*[[如何隱藏整篇文章]]
*[[隱藏文章內容(註解)]]
*[[網頁配色參考-Color色碼表]]
*[[使用「水平線」]]
不論你是特地前來,還是不小心進來,甚至是莫名其妙進來的,首先都歡迎您來到這個地方!
這裡是一個由{{{「TWtBala」}}}所架構的網頁
網頁上放著學習過程中的心得跟大夥分享喔!
@@color(red):''技術支援'' [[土芭樂數位新思路]]@@
TiddlyWiki 是一個由「 javascript + CSS 樣式 + HTML 語法」所組成的 html 檔。它可以讓你在本機編輯使用 wiki 語法編輯網頁內容,除了不像一般的 wiki 程式可以在網路上供多人共同編輯之外,其它的功能一概不缺。更重要的是,他只需要一個小小的 html 檔案就可以使用瀏覽器執行,完全不需要網路主機、PHP 或 ASP 以及資料庫等的支援。你所寫的文章,也是存在這個 html 檔裡,也就是全部就只有一個檔。
【<<closeAll>>】
!@@範例:可愛的年糕小子@@
<html><embed src="http://abefuyumi.com/blogparts/ikimonotaro.swf" height="240" width="160"></embed>
</html>
!程式碼
{{{<html><embed src="http://abefuyumi.com/blogparts/ikimonotaro.swf" height="240" width="160"></embed>
</html>}}}
----
說明:
很多外掛的程式幾乎都可以使用
*要注意的是,有些「只支援IE」瀏覽器,在火狐下無法正常顯示
(使用@@ [[TWtBala雙核心版本|http://tbala.net/tBala3-0801.html]] @@即可隨時切換)
*另外語法複製、貼上後,記得要在前後加上@@{{{「<html> </html>」}}}@@宣告使用HTML語言即可!
【<<closeAll>>】
很簡單的只要使用「四個 ” - ” 號」就OK啦!
不過這水平線是「虛線」而不是「實線」哩!
{{{
----
}}}
----
【<<closeAll>>】
[img[土芭樂-數位新思路|http://twalong.googlepages.com/PHOTO.jpg][http://tbala.net/tBala3-0801.html]]
@@{{{!!<<slider chkSlider 20080130 2008.01.30 '最新文章'>>}}}@@
上列要修改的地方為~
「''20080130''」....為 @@background-color:#0000FF;color:white;「文章標題」@@
「''2008.01.30''」..為 @@background-color:#0000FF;color:white;「選單要顯示的文字」@@
「''最新文章''」.....為 @@background-color:#0000FF;color:white;「滑鼠停留時顯示的文字」@@
!!<<slider chkSlider 20080130 2008.01.30 '最新文章'>>
----
說明:
1.新增一篇文章,文章標題為「20080130」
2.在文章內容輸入:
{{{*[[網頁配色參考-Color色碼表]]}}}
{{{*[[如何解讀「viewTemplate」架構]]}}}
3.新增一篇文章,文章標題為「下拉式功能表」
4.在文章內容輸入:
@@{{{!!<<slider chkSlider 20080130 2008.01.30 '最新文章'>>}}}@@
【<<closeAll>>】
*''[[宇宙無敵超強雙核心多功能-加強版|http://tbala.net/download/tBalaKMFirefox2.zip]]''
*[[原廠主程式下載|http://www.tiddlywiki.com]]
*[[中文化下載|http://groups.google.com/group/TiddlyWiki-zh/web/tiddlywiki]]
!!主程式下載方式
1.點取連結,開啟新網頁
2.點選左側{{{「DownloadSoftware」}}}
3.在右側文章中{{{「 this link to empty.html」}}}上面按@@滑鼠右鍵@@「連結另存新檔」,存放在「我的文件夾」
!!中文化下載方式
1.點取連結,開啟新網頁
2.在右側連結中{{{「 empty.zh-Hant.html」}}}上面按@@滑鼠右鍵@@「連結另存新檔」,存放在「我的文件夾」
!!如何中文化
1.啟動「火狐」瀏覽器
2.功能表「檔案 / 開啟檔案」到「我的文件夾」點選「empty.html」後「開啟」
3.點選網頁右上方「控制台」
4.點選上方「導入」
5.點選「瀏覽」開啟「我的文件夾」點選剛剛下載的「中文化檔案 - empty.zh-Hant.html」後「開啟」
6.最下方的「empty.zh-Hant」項目前面打勾後選擇「導入」
7.最上方@@「儲存」@@後「F5」重整
【<<closeAll>>】
描述架構上方第一個區塊@@「header」@@
內含二個元件@@「siteTitle、siteSubtitle」@@
<!--{{{-->
<div class='header'>
<div class='titleLine'>
<div class='siteTitle' refresh='content' tiddler='SiteTitle'></div>
<div class='siteSubtitle' refresh='content' tiddler='SiteSubtitle'></div>
</div>
<!--}}}-->
<div class='headerLine'></div>
</div>
以下描述有三個區塊,分別位於左側、右上、右下方
@@「mainMenu」左側@@
@@「sidebarOptions」右上@@
@@「sidebarTabs」右下@@
<!--{{{-->
<div id='mainMenu' refresh='content' tiddler='MainMenu'></div>
<div id='sidebar'>
<div id='sidebarOptions' refresh='content' tiddler='SideBarOptions'></div>
<div id='sidebarTabs' refresh='content' force='true' tiddler='SideBarTabs'></div>
</div>
<!--}}}-->
<div id='displayArea'>@@在StyleSheet設定顯示文章的「寬度」(預設為610px)@@
<div id='messageArea'></div>
<div id='tiddlerDisplay'></div>@@設定顯示文章位於版面內@@
<div id="footer">@@在StyleSheet設定整個版面的寬度(預設800)、左右留白距離(預設10)@@
</div>
【<<closeAll>>】
<!--{{{-->
<!--{{{隱藏「右上角編輯選項」}}}開始-->
<div class='toolbar' macro='toolbar closeTiddler closeOthers +editTiddler > fields syncing permalink references jump'></div><!--{{{隱藏「右上角編輯選項」結束}}}-->
<div class='title' macro='view title'></div>
<!--{{{隱藏「發文日期」開始}}}-->
<!--<div class='subtitle'><span macro='view modifier link'></span>, <span macro='view modified date'></span> (<span macro='message views.wikified.createdPrompt'></span> <span macro='view created date'></span>)</div>--><!--{{{隱藏「發文日期」結束}}}-->
<div class='tagging' macro='tagging'></div>
<!--{{{隱藏「標籤」開始}}}-->
<div class='tagged' macro='tags'></div><!--{{{隱藏「標籤」結束}}}-->
<div class='viewer' macro='view text wikified'></div>
<div class='tagClear'></div>
<!--}}}-->
【<<closeAll>>】
在文章標籤設定@@color(red):「excludeLists」@@
@@將發表的文章整篇隱藏起來@@
【<<closeAll>>】
*{{{[ img [ 滑鼠停留時顯示的文 | 圖片路徑或圖片網址 ][ 超連結 ]}}}
*{{{[ img [ Haagen Dazs | http://bp3.blogger.com/photo.jpg ][ http://along_tw.blogspot.com ]]}}}
[img[Haagen Dazs|http://bp3.blogger.com/_gqWoJ6LSWO0/R0Wcbyc9kGI/AAAAAAAAAWs/H1yLQtt_9eE/s320/ap_20071118063045924.jpg][http://along-tw.blogspot.com/2007/11/haagen-dazs.html]]
【<<closeAll>>】
{{{
''粗體字''
}}}
''粗體字''
{{{
==加上刪除線==
}}}
==刪除線==
{{{
__底線文字__
}}}
__底線文字__
{{{
//斜體字//
}}}
//斜體字//
{{{
^^上標字效果^^
}}}
^^上標字^^
{{{
~~下標字效果~~
}}}
~~下標字~~
{{{
@@color(顏色代碼):文字@@
}}}
@@color(red):紅色字體@@
{{{
@@bgcolor(顏色代碼):文字@@
}}}
@@bgcolor(green):綠色底色@@
{{{
@@background-color:#0000FF;color:white;藍底白字@@.
}}}
@@background-color:#0000FF;color:white;藍底白字@@.
{{{
!!標題(依版本不同呈現不同效果)
}}}
!!標題
{{{
@@標題@@
}}}
@@重點標註@@
【<<closeAll>>】
*{{{[[ 描述文字 | 連結路徑 ]]}}}
*{{{[[阿龍的怪怪窩|http://along-tw.blogspot.com]]}}}
[[阿龍的怪怪窩|http://along-tw.blogspot.com]]
【<<closeAll>>】
@@最新文章列表@@
@@color(blue):請點選文章日期@@
!!<<slider chkSlider TiddlyWiki的作品 TiddlyWiki的作品 2008.03 '最新文章'>>
!!<<slider chkSlider 20080213 2008.02.13 '最新文章'>>
!!<<slider chkSlider 20080130 2008.01.30 '最新文章'>>
!!<<slider chkSlider 20080123 2008.01.23 '最新文章'>>
!!<<slider chkSlider 20080116 2008.01.16 '最新文章'>>
{{{<<tabs txtMainTab "最近更新" "依更新日期排序" TabTimeline "全部" "所有文章" TabAll "分類" "所有標籤" TabTags "更多" "其他" TabMore>>}}}
*@@txtMainTab@@為自訂名稱
*後面為「三個一組」,第二組重複
----
*第一個:"標籤名稱" {{{(最近更新)(全部)(分類)(更多)}}}
*第二個:"滑鼠註解"{{{(依更新日期排序)(所以文章)(所有標籤)(其他)}}}
*第三個:呼叫tiddler{{{(TabTimeline)(TabAll)(TabTags)(TabMore)}}}
【<<closeAll>>】
!!常用設定
{{{* PageTemplate}}} @@頁面主架構定義描述@@
{{{* MainMenu}}} @@架構左方區塊@@
{{{* SideBarOptions}}} @@架構右上方區塊@@
{{{* SideBarTabs}}} @@架構右下方區塊@@
{{{* SiteTitle}}} @@上方主標題設定@@
{{{* SiteSubtitle}}} @@上方副標題設定@@
{{{* StyleSheet}}} @@頁面風格顏色描述@@
!!全部設定
{{{* AdvancedOptions}}} @@增訂的進階選項@@
{{{* ColorPalette}}} @@顏色調色板@@
{{{* DefaultTiddlers}}} @@預設顯示的文章@@
{{{* EditTemplate}}} @@樣版編輯@@
{{{* GettingStarted}}} @@初始設定@@
{{{* ImportTiddlers}}} @@導入檔案、文章@@
{{{* MainMenu}}} @@預設左側主選單@@
{{{* MarkupPostBody}}} @@文章顯示於<body> 段落的最後,於 script 區塊之前@@
{{{* MarkupPostHead}}} @@文章顯示於<head> 段落的最後@@
{{{* MarkupPreBody}}} @@文章顯示於<body> 段落的起始@@
{{{* MarkupPreHead}}} @@文章顯示於<head> 段落的起始@@
{{{* OptionsPanel}}} @@偏好版面設定@@
{{{* PageTemplate}}} @@主要版面配置@@
{{{* PluginManager}}} @@擴充套件管理@@
{{{* SideBarOptions}}} @@右上方版面內容@@
{{{* SideBarTabs}}} @@右下方標籤面版設定@@
{{{* SiteSubtitle}}} @@頁面副標題設定@@
{{{* SiteTitle}}} @@頁面主標題設定@@
{{{* SiteUrl}}} @@文件發佈時的完整網址@@
{{{* StyleSheet}}} @@頁面風格顏色描述@@
{{{* StyleSheetColors}}} @@頁面配色元素-勿修改@@
{{{* StyleSheetLayout}}} @@頁面版面元素-勿修改@@
{{{* StyleSheetLocale}}} @@頁面文字設定,可依語系調整@@
{{{* StyleSheetPrint}}} @@頁面列印時設定@@
{{{* TabAll}}} @@右側副選單中的「全部」頁籤的內容@@
{{{* TabMore}}} @@右側副選單中的「更多」頁籤的內容@@
{{{* TabMoreMissing}}} @@右側副選單中的「未完成」頁籤的內容@@
{{{* TabMoreOrphans}}} @@右側副選單中的「未引用」頁籤的內容@@
{{{* TabMoreShadowed}}} @@右側副選單中的「預設文章」頁籤的內容@@
{{{* TabTags}}} @@右側副選單中的「分類」頁籤的內容@@
{{{* TabTimeline}}} @@右側副選單中的「最近更新」頁籤的內容@@
{{{* ViewTemplate}}} @@HTML template 決定文章顯示的樣子@@
<<closeAll>>
*[[土芭樂數位新思路|http://tbala.net/tBala3-0801.html]]
*[[土芭樂知識瀏覽器論壇|http://disscus.tbala.net/disscus1/viewforum.php?f=24]]
*[[華語支援論壇|http://groups.google.com/group/TiddlyWiki-zh/web/tiddlywiki]]
*[[使用教學中文版|http://web.nlhs.tyc.edu.tw/~lss/wiki/TiddlyWikiTutorialTW.html]]
*[[老貓出版社|http://b-oo-k.net/blog/blog.php/2007/177]]
*[[w3schools 線上學習教室|http://www.w3schools.com/]]
*[[技術學習|http://tiddlyspot.com/]]
*[[其他參考|http://www.tiddlywiki.org/wiki/Main_Page]]
*[[版型下載|http://tiddlythemes.com/#Home]]
【<<closeAll>>】
@@資料來源:@@[[ http://www.colordic.org/ | http://www.colordic.org]]
<html>
<div id="colortable">
<table>
<tbody><tr>
<td style="background-color: rgb(0, 0, 0);">
<a href="http://www.colordic.org/colorsample/1000.html" title="black #000000" style="color: rgb(255, 255, 255);">black<br>#000000</a>
</td>
<td style="background-color: rgb(240, 248, 255);">
<a href="http://www.colordic.org/colorsample/1028.html" title="aliceblue #f0f8ff">aliceblue<br>#f0f8ff</a>
</td>
<td style="background-color: rgb(0, 139, 139);">
<a href="http://www.colordic.org/colorsample/1057.html" title="darkcyan #008b8b" style="color: rgb(255, 255, 255);">darkcyan<br>#008b8b</a>
</td>
<td style="background-color: rgb(255, 255, 224);">
<a href="http://www.colordic.org/colorsample/1084.html" title="lightyellow #ffffe0">lightyellow<br>#ffffe0</a>
</td>
<td style="background-color: rgb(255, 127, 80);">
<a href="http://www.colordic.org/colorsample/1112.html" title="coral #ff7f50">coral<br>#ff7f50</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(105, 105, 105);">
<a href="http://www.colordic.org/colorsample/1001.html" title="dimgray #696969" style="color: rgb(255, 255, 255);">dimgray<br>#696969</a>
</td>
<td style="background-color: rgb(230, 230, 250);">
<a href="http://www.colordic.org/colorsample/1029.html" title="lavender #e6e6fa">lavender<br>#e6e6fa</a>
</td>
<td style="background-color: rgb(0, 128, 128);">
<a href="http://www.colordic.org/colorsample/1058.html" title="teal #008080" style="color: rgb(255, 255, 255);">teal<br>#008080</a>
</td>
<td style="background-color: rgb(250, 250, 210);">
<a href="http://www.colordic.org/colorsample/1085.html" title="lightgoldenrodyellow #fafad2">lightgoldenrodyellow<br>#fafad2</a>
</td>
<td style="background-color: rgb(255, 99, 71);">
<a href="http://www.colordic.org/colorsample/1113.html" title="tomato #ff6347">tomato<br>#ff6347</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(128, 128, 128);">
<a href="http://www.colordic.org/colorsample/1002.html" title="gray #808080" style="color: rgb(255, 255, 255);">gray<br>#808080</a>
</td>
<td style="background-color: rgb(176, 196, 222);">
<a href="http://www.colordic.org/colorsample/1033.html" title="lightsteelblue #b0c4de">lightsteelblue<br>#b0c4de</a>
</td>
<td style="background-color: rgb(47, 79, 79);">
<a href="http://www.colordic.org/colorsample/1032.html" title="darkslategray #2f4f4f" style="color: rgb(255, 255, 255);">darkslategray<br>#2f4f4f</a>
</td>
<td style="background-color: rgb(255, 250, 205);">
<a href="http://www.colordic.org/colorsample/1086.html" title="lemonchiffon #fffacd">lemonchiffon<br>#fffacd</a>
</td>
<td style="background-color: rgb(255, 69, 0);">
<a href="http://www.colordic.org/colorsample/1114.html" title="orangered #ff4500">orangered<br>#ff4500</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(169, 169, 169);">
<a href="http://www.colordic.org/colorsample/1003.html" title="darkgray #a9a9a9" style="color: rgb(255, 255, 255);">darkgray<br>#a9a9a9</a>
</td>
<td style="background-color: rgb(119, 136, 153);">
<a href="http://www.colordic.org/colorsample/1030.html" title="lightslategray #778899" style="color: rgb(255, 255, 255);">lightslategray<br>#778899</a>
</td>
<td style="background-color: rgb(0, 100, 0);">
<a href="http://www.colordic.org/colorsample/1060.html" title="darkgreen #006400" style="color: rgb(255, 255, 255);">darkgreen<br>#006400</a>
</td>
<td style="background-color: rgb(245, 222, 179);">
<a href="http://www.colordic.org/colorsample/1087.html" title="wheat #f5deb3">wheat<br>#f5deb3</a>
</td>
<td style="background-color: rgb(255, 0, 0);">
<a href="http://www.colordic.org/colorsample/1115.html" title="red #ff0000">red<br>#ff0000</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(192, 192, 192);">
<a href="http://www.colordic.org/colorsample/1004.html" title="silver #c0c0c0" style="color: rgb(255, 255, 255);">silver<br>#c0c0c0</a>
</td>
<td style="background-color: rgb(112, 128, 144);">
<a href="http://www.colordic.org/colorsample/1031.html" title="slategray #708090" style="color: rgb(255, 255, 255);">slategray<br>#708090</a>
</td>
<td style="background-color: rgb(0, 128, 0);">
<a href="http://www.colordic.org/colorsample/1061.html" title="green #008000" style="color: rgb(255, 255, 255);">green<br>#008000</a>
</td>
<td style="background-color: rgb(222, 184, 135);">
<a href="http://www.colordic.org/colorsample/1088.html" title="burlywood #deb887">burlywood<br>#deb887</a>
</td>
<td style="background-color: rgb(220, 20, 60);">
<a href="http://www.colordic.org/colorsample/1116.html" title="crimson #dc143c">crimson<br>#dc143c</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(211, 211, 211);">
<a href="http://www.colordic.org/colorsample/1005.html" title="lightgrey #d3d3d3">lightgrey<br>#d3d3d3</a>
</td>
<td style="background-color: rgb(70, 130, 180);">
<a href="http://www.colordic.org/colorsample/1034.html" title="steelblue #4682b4" style="color: rgb(255, 255, 255);">steelblue<br>#4682b4</a>
</td>
<td style="background-color: rgb(34, 139, 34);">
<a href="http://www.colordic.org/colorsample/1062.html" title="forestgreen #228b22" style="color: rgb(255, 255, 255);">forestgreen<br>#228b22</a>
</td>
<td style="background-color: rgb(210, 180, 140);">
<a href="http://www.colordic.org/colorsample/1089.html" title="tan #d2b48c">tan<br>#d2b48c</a>
</td>
<td style="background-color: rgb(199, 21, 133);">
<a href="http://www.colordic.org/colorsample/1117.html" title="mediumvioletred #c71585" style="color: rgb(255, 255, 255);">mediumvioletred<br>#c71585</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(220, 220, 220);">
<a href="http://www.colordic.org/colorsample/1006.html" title="gainsboro #dcdcdc">gainsboro<br>#dcdcdc</a>
</td>
<td style="background-color: rgb(65, 105, 225);">
<a href="http://www.colordic.org/colorsample/1035.html" title="royalblue #4169e1">royalblue<br>#4169e1</a>
</td>
<td style="background-color: rgb(46, 139, 87);">
<a href="http://www.colordic.org/colorsample/1059.html" title="seagreen #2e8b57" style="color: rgb(255, 255, 255);">seagreen<br>#2e8b57</a>
</td>
<td style="background-color: rgb(240, 230, 140);">
<a href="http://www.colordic.org/colorsample/1090.html" title="khaki #f0e68c">khaki<br>#f0e68c</a>
</td>
<td style="background-color: rgb(255, 20, 147);">
<a href="http://www.colordic.org/colorsample/1118.html" title="deeppink #ff1493">deeppink<br>#ff1493</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(245, 245, 245);">
<a href="http://www.colordic.org/colorsample/1010.html" title="whitesmoke #f5f5f5">whitesmoke<br>#f5f5f5</a>
</td>
<td style="background-color: rgb(25, 25, 112);">
<a href="http://www.colordic.org/colorsample/1036.html" title="midnightblue #191970" style="color: rgb(255, 255, 255);">midnightblue<br>#191970</a>
</td>
<td style="background-color: rgb(60, 179, 113);">
<a href="http://www.colordic.org/colorsample/1063.html" title="mediumseagreen #3cb371" style="color: rgb(255, 255, 255);">mediumseagreen<br>#3cb371</a>
</td>
<td style="background-color: rgb(255, 255, 0);">
<a href="http://www.colordic.org/colorsample/1091.html" title="yellow #ffff00">yellow<br>#ffff00</a>
</td>
<td style="background-color: rgb(255, 105, 180);">
<a href="http://www.colordic.org/colorsample/1119.html" title="hotpink #ff69b4">hotpink<br>#ff69b4</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(255, 255, 255);">
<a href="http://www.colordic.org/colorsample/1007.html" title="white #ffffff">white<br>#ffffff</a>
</td>
<td style="background-color: rgb(0, 0, 128);">
<a href="http://www.colordic.org/colorsample/1037.html" title="navy #000080" style="color: rgb(255, 255, 255);">navy<br>#000080</a>
</td>
<td style="background-color: rgb(102, 205, 170);">
<a href="http://www.colordic.org/colorsample/1065.html" title="mediumaquamarine #66cdaa" style="color: rgb(255, 255, 255);">mediumaquamarine<br>#66cdaa</a>
</td>
<td style="background-color: rgb(255, 215, 0);">
<a href="http://www.colordic.org/colorsample/1092.html" title="gold #ffd700">gold<br>#ffd700</a>
</td>
<td style="background-color: rgb(219, 112, 147);">
<a href="http://www.colordic.org/colorsample/1120.html" title="palevioletred #db7093">palevioletred<br>#db7093</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(255, 250, 250);">
<a href="http://www.colordic.org/colorsample/1008.html" title="snow #fffafa">snow<br>#fffafa</a>
</td>
<td style="background-color: rgb(0, 0, 139);">
<a href="http://www.colordic.org/colorsample/1038.html" title="darkblue #00008b" style="color: rgb(255, 255, 255);">darkblue<br>#00008b</a>
</td>
<td style="background-color: rgb(143, 188, 143);">
<a href="http://www.colordic.org/colorsample/1064.html" title="darkseagreen #8fbc8f" style="color: rgb(255, 255, 255);">darkseagreen<br>#8fbc8f</a>
</td>
<td style="background-color: rgb(255, 165, 0);">
<a href="http://www.colordic.org/colorsample/1093.html" title="orange #ffa500">orange<br>#ffa500</a>
</td>
<td style="background-color: rgb(255, 192, 203);">
<a href="http://www.colordic.org/colorsample/1121.html" title="pink #ffc0cb">pink<br>#ffc0cb</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(248, 248, 255);">
<a href="http://www.colordic.org/colorsample/1009.html" title="ghostwhite #f8f8ff">ghostwhite<br>#f8f8ff</a>
</td>
<td style="background-color: rgb(0, 0, 205);">
<a href="http://www.colordic.org/colorsample/1039.html" title="mediumblue #0000cd" style="color: rgb(255, 255, 255);">mediumblue<br>#0000cd</a>
</td>
<td style="background-color: rgb(127, 255, 212);">
<a href="http://www.colordic.org/colorsample/1066.html" title="aquamarine #7fffd4">aquamarine<br>#7fffd4</a>
</td>
<td style="background-color: rgb(244, 164, 96);">
<a href="http://www.colordic.org/colorsample/1094.html" title="sandybrown #f4a460">sandybrown<br>#f4a460</a>
</td>
<td style="background-color: rgb(255, 182, 193);">
<a href="http://www.colordic.org/colorsample/1122.html" title="lightpink #ffb6c1">lightpink<br>#ffb6c1</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(255, 250, 240);">
<a href="http://www.colordic.org/colorsample/1011.html" title="floralwhite #fffaf0">floralwhite<br>#fffaf0</a>
</td>
<td style="background-color: rgb(0, 0, 255);">
<a href="http://www.colordic.org/colorsample/1040.html" title="blue #0000ff">blue<br>#0000ff</a>
</td>
<td style="background-color: rgb(152, 251, 152);">
<a href="http://www.colordic.org/colorsample/1067.html" title="palegreen #98fb98">palegreen<br>#98fb98</a>
</td>
<td style="background-color: rgb(255, 140, 0);">
<a href="http://www.colordic.org/colorsample/1095.html" title="darkorange #ff8c00">darkorange<br>#ff8c00</a>
</td>
<td style="background-color: rgb(216, 191, 216);">
<a href="http://www.colordic.org/colorsample/1123.html" title="thistle #d8bfd8">thistle<br>#d8bfd8</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(250, 240, 230);">
<a href="http://www.colordic.org/colorsample/1012.html" title="linen #faf0e6">linen<br>#faf0e6</a>
</td>
<td style="background-color: rgb(30, 144, 255);">
<a href="http://www.colordic.org/colorsample/1041.html" title="dodgerblue #1e90ff">dodgerblue<br>#1e90ff</a>
</td>
<td style="background-color: rgb(144, 238, 144);">
<a href="http://www.colordic.org/colorsample/1068.html" title="lightgreen #90ee90">lightgreen<br>#90ee90</a>
</td>
<td style="background-color: rgb(218, 165, 32);">
<a href="http://www.colordic.org/colorsample/1096.html" title="goldenrod #daa520">goldenrod<br>#daa520</a>
</td>
<td style="background-color: rgb(255, 0, 255);">
<a href="http://www.colordic.org/colorsample/1124.html" title="magenta #ff00ff">magenta<br>#ff00ff</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(250, 235, 215);">
<a href="http://www.colordic.org/colorsample/1013.html" title="antiquewhite #faebd7">antiquewhite<br>#faebd7</a>
</td>
<td style="background-color: rgb(100, 149, 237);">
<a href="http://www.colordic.org/colorsample/1042.html" title="cornflowerblue #6495ed">cornflowerblue<br>#6495ed</a>
</td>
<td style="background-color: rgb(0, 255, 127);">
<a href="http://www.colordic.org/colorsample/1069.html" title="springgreen #00ff7f">springgreen<br>#00ff7f</a>
</td>
<td style="background-color: rgb(205, 133, 63);">
<a href="http://www.colordic.org/colorsample/1097.html" title="peru #cd853f" style="color: rgb(255, 255, 255);">peru<br>#cd853f</a>
</td>
<td style="background-color: rgb(255, 0, 255);">
<a href="http://www.colordic.org/colorsample/1125.html" title="fuchsia #ff00ff">fuchsia<br>#ff00ff</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(255, 239, 213);">
<a href="http://www.colordic.org/colorsample/1014.html" title="papayawhip #ffefd5">papayawhip<br>#ffefd5</a>
</td>
<td style="background-color: rgb(0, 191, 255);">
<a href="http://www.colordic.org/colorsample/1043.html" title="deepskyblue #00bfff">deepskyblue<br>#00bfff</a>
</td>
<td style="background-color: rgb(0, 250, 154);">
<a href="http://www.colordic.org/colorsample/1070.html" title="mediumspringgreen #00fa9a">mediumspringgreen<br>#00fa9a</a>
</td>
<td style="background-color: rgb(184, 134, 11);">
<a href="http://www.colordic.org/colorsample/1098.html" title="darkgoldenrod #b8860b" style="color: rgb(255, 255, 255);">darkgoldenrod<br>#b8860b</a>
</td>
<td style="background-color: rgb(238, 130, 238);">
<a href="http://www.colordic.org/colorsample/1126.html" title="violet #ee82ee">violet<br>#ee82ee</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(255, 235, 205);">
<a href="http://www.colordic.org/colorsample/1015.html" title="blanchedalmond #ffebcd">blanchedalmond<br>#ffebcd</a>
</td>
<td style="background-color: rgb(135, 206, 250);">
<a href="http://www.colordic.org/colorsample/1044.html" title="lightskyblue #87cefa">lightskyblue<br>#87cefa</a>
</td>
<td style="background-color: rgb(124, 252, 0);">
<a href="http://www.colordic.org/colorsample/1071.html" title="lawngreen #7cfc00">lawngreen<br>#7cfc00</a>
</td>
<td style="background-color: rgb(210, 105, 30);">
<a href="http://www.colordic.org/colorsample/1099.html" title="chocolate #d2691e">chocolate<br>#d2691e</a>
</td>
<td style="background-color: rgb(221, 160, 221);">
<a href="http://www.colordic.org/colorsample/1127.html" title="plum #dda0dd">plum<br>#dda0dd</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(255, 228, 196);">
<a href="http://www.colordic.org/colorsample/1016.html" title="bisque #ffe4c4">bisque<br>#ffe4c4</a>
</td>
<td style="background-color: rgb(135, 206, 235);">
<a href="http://www.colordic.org/colorsample/1045.html" title="skyblue #87ceeb">skyblue<br>#87ceeb</a>
</td>
<td style="background-color: rgb(127, 255, 0);">
<a href="http://www.colordic.org/colorsample/1072.html" title="chartreuse #7fff00">chartreuse<br>#7fff00</a>
</td>
<td style="background-color: rgb(160, 82, 45);">
<a href="http://www.colordic.org/colorsample/1100.html" title="sienna #a0522d" style="color: rgb(255, 255, 255);">sienna<br>#a0522d</a>
</td>
<td style="background-color: rgb(218, 112, 214);">
<a href="http://www.colordic.org/colorsample/1128.html" title="orchid #da70d6">orchid<br>#da70d6</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(255, 228, 181);">
<a href="http://www.colordic.org/colorsample/1017.html" title="moccasin #ffe4b5">moccasin<br>#ffe4b5</a>
</td>
<td style="background-color: rgb(173, 216, 230);">
<a href="http://www.colordic.org/colorsample/1046.html" title="lightblue #add8e6">lightblue<br>#add8e6</a>
</td>
<td style="background-color: rgb(173, 255, 47);">
<a href="http://www.colordic.org/colorsample/1073.html" title="greenyellow #adff2f">greenyellow<br>#adff2f</a>
</td>
<td style="background-color: rgb(139, 69, 19);">
<a href="http://www.colordic.org/colorsample/1101.html" title="saddlebrown #8b4513" style="color: rgb(255, 255, 255);">saddlebrown<br>#8b4513</a>
</td>
<td style="background-color: rgb(186, 85, 211);">
<a href="http://www.colordic.org/colorsample/1129.html" title="mediumorchid #ba55d3">mediumorchid<br>#ba55d3</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(255, 222, 173);">
<a href="http://www.colordic.org/colorsample/1018.html" title="navajowhite #ffdead">navajowhite<br>#ffdead</a>
</td>
<td style="background-color: rgb(176, 224, 230);">
<a href="http://www.colordic.org/colorsample/1047.html" title="powderblue #b0e0e6">powderblue<br>#b0e0e6</a>
</td>
<td style="background-color: rgb(0, 255, 0);">
<a href="http://www.colordic.org/colorsample/1074.html" title="lime #00ff00">lime<br>#00ff00</a>
</td>
<td style="background-color: rgb(128, 0, 0);">
<a href="http://www.colordic.org/colorsample/1102.html" title="maroon #800000" style="color: rgb(255, 255, 255);">maroon<br>#800000</a>
</td>
<td style="background-color: rgb(153, 50, 204);">
<a href="http://www.colordic.org/colorsample/1130.html" title="darkorchid #9932cc" style="color: rgb(255, 255, 255);">darkorchid<br>#9932cc</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(255, 218, 185);">
<a href="http://www.colordic.org/colorsample/1019.html" title="peachpuff #ffdab9">peachpuff<br>#ffdab9</a>
</td>
<td style="background-color: rgb(175, 238, 238);">
<a href="http://www.colordic.org/colorsample/1048.html" title="paleturquoise #afeeee">paleturquoise<br>#afeeee</a>
</td>
<td style="background-color: rgb(50, 205, 50);">
<a href="http://www.colordic.org/colorsample/1075.html" title="limegreen #32cd32" style="color: rgb(255, 255, 255);">limegreen<br>#32cd32</a>
</td>
<td style="background-color: rgb(139, 0, 0);">
<a href="http://www.colordic.org/colorsample/1103.html" title="darkred #8b0000" style="color: rgb(255, 255, 255);">darkred<br>#8b0000</a>
</td>
<td style="background-color: rgb(148, 0, 211);">
<a href="http://www.colordic.org/colorsample/1131.html" title="darkviolet #9400d3">darkviolet<br>#9400d3</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(255, 228, 225);">
<a href="http://www.colordic.org/colorsample/1020.html" title="mistyrose #ffe4e1">mistyrose<br>#ffe4e1</a>
</td>
<td style="background-color: rgb(224, 255, 255);">
<a href="http://www.colordic.org/colorsample/1049.html" title="lightcyan #e0ffff">lightcyan<br>#e0ffff</a>
</td>
<td style="background-color: rgb(154, 205, 50);">
<a href="http://www.colordic.org/colorsample/1076.html" title="yellowgreen #9acd32" style="color: rgb(255, 255, 255);">yellowgreen<br>#9acd32</a>
</td>
<td style="background-color: rgb(165, 42, 42);">
<a href="http://www.colordic.org/colorsample/1104.html" title="brown #a52a2a" style="color: rgb(255, 255, 255);">brown<br>#a52a2a</a>
</td>
<td style="background-color: rgb(139, 0, 139);">
<a href="http://www.colordic.org/colorsample/1132.html" title="darkmagenta #8b008b" style="color: rgb(255, 255, 255);">darkmagenta<br>#8b008b</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(255, 240, 245);">
<a href="http://www.colordic.org/colorsample/1021.html" title="lavenderblush #fff0f5">lavenderblush<br>#fff0f5</a>
</td>
<td style="background-color: rgb(0, 255, 255);">
<a href="http://www.colordic.org/colorsample/1050.html" title="cyan #00ffff">cyan<br>#00ffff</a>
</td>
<td style="background-color: rgb(85, 107, 47);">
<a href="http://www.colordic.org/colorsample/1079.html" title="darkolivegreen #556b2f" style="color: rgb(255, 255, 255);">darkolivegreen<br>#556b2f</a>
</td>
<td style="background-color: rgb(178, 34, 34);">
<a href="http://www.colordic.org/colorsample/1105.html" title="firebrick #b22222" style="color: rgb(255, 255, 255);">firebrick<br>#b22222</a>
</td>
<td style="background-color: rgb(128, 0, 128);">
<a href="http://www.colordic.org/colorsample/1133.html" title="purple #800080" style="color: rgb(255, 255, 255);">purple<br>#800080</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(255, 245, 238);">
<a href="http://www.colordic.org/colorsample/1022.html" title="seashell #fff5ee">seashell<br>#fff5ee</a>
</td>
<td style="background-color: rgb(0, 255, 255);">
<a href="http://www.colordic.org/colorsample/1051.html" title="aqua #00ffff">aqua<br>#00ffff</a>
</td>
<td style="background-color: rgb(107, 142, 35);">
<a href="http://www.colordic.org/colorsample/1077.html" title="olivedrab #6b8e23" style="color: rgb(255, 255, 255);">olivedrab<br>#6b8e23</a>
</td>
<td style="background-color: rgb(205, 92, 92);">
<a href="http://www.colordic.org/colorsample/1106.html" title="indianred #cd5c5c" style="color: rgb(255, 255, 255);">indianred<br>#cd5c5c</a>
</td>
<td style="background-color: rgb(75, 0, 130);">
<a href="http://www.colordic.org/colorsample/1134.html" title="indigo #4b0082" style="color: rgb(255, 255, 255);">indigo<br>#4b0082</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(253, 245, 230);">
<a href="http://www.colordic.org/colorsample/1023.html" title="oldlace #fdf5e6">oldlace<br>#fdf5e6</a>
</td>
<td style="background-color: rgb(64, 224, 208);">
<a href="http://www.colordic.org/colorsample/1052.html" title="turquoise #40e0d0">turquoise<br>#40e0d0</a>
</td>
<td style="background-color: rgb(128, 128, 0);">
<a href="http://www.colordic.org/colorsample/1078.html" title="olive #808000" style="color: rgb(255, 255, 255);">olive<br>#808000</a>
</td>
<td style="background-color: rgb(188, 143, 143);">
<a href="http://www.colordic.org/colorsample/1107.html" title="rosybrown #bc8f8f" style="color: rgb(255, 255, 255);">rosybrown<br>#bc8f8f</a>
</td>
<td style="background-color: rgb(72, 61, 139);">
<a href="http://www.colordic.org/colorsample/1135.html" title="darkslateblue #483d8b" style="color: rgb(255, 255, 255);">darkslateblue<br>#483d8b</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(255, 255, 240);">
<a href="http://www.colordic.org/colorsample/1024.html" title="ivory #fffff0">ivory<br>#fffff0</a>
</td>
<td style="background-color: rgb(72, 209, 204);">
<a href="http://www.colordic.org/colorsample/1053.html" title="mediumturquoise #48d1cc">mediumturquoise<br>#48d1cc</a>
</td>
<td style="background-color: rgb(189, 183, 107);">
<a href="http://www.colordic.org/colorsample/1080.html" title="darkkhaki #bdb76b" style="color: rgb(255, 255, 255);">darkkhaki<br>#bdb76b</a>
</td>
<td style="background-color: rgb(233, 150, 122);">
<a href="http://www.colordic.org/colorsample/1108.html" title="darksalmon #e9967a">darksalmon<br>#e9967a</a>
</td>
<td style="background-color: rgb(138, 43, 226);">
<a href="http://www.colordic.org/colorsample/1136.html" title="blueviolet #8a2be2">blueviolet<br>#8a2be2</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(240, 255, 240);">
<a href="http://www.colordic.org/colorsample/1025.html" title="honeydew #f0fff0">honeydew<br>#f0fff0</a>
</td>
<td style="background-color: rgb(0, 206, 209);">
<a href="http://www.colordic.org/colorsample/1054.html" title="darkturquoise #00ced1">darkturquoise<br>#00ced1</a>
</td>
<td style="background-color: rgb(238, 232, 170);">
<a href="http://www.colordic.org/colorsample/1081.html" title="palegoldenrod #eee8aa">palegoldenrod<br>#eee8aa</a>
</td>
<td style="background-color: rgb(240, 128, 128);">
<a href="http://www.colordic.org/colorsample/1109.html" title="lightcoral #f08080">lightcoral<br>#f08080</a>
</td>
<td style="background-color: rgb(147, 112, 219);">
<a href="http://www.colordic.org/colorsample/1137.html" title="mediumpurple #9370db">mediumpurple<br>#9370db</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(245, 255, 250);">
<a href="http://www.colordic.org/colorsample/1026.html" title="mintcream #f5fffa">mintcream<br>#f5fffa</a>
</td>
<td style="background-color: rgb(32, 178, 170);">
<a href="http://www.colordic.org/colorsample/1055.html" title="lightseagreen #20b2aa" style="color: rgb(255, 255, 255);">lightseagreen<br>#20b2aa</a>
</td>
<td style="background-color: rgb(255, 248, 220);">
<a href="http://www.colordic.org/colorsample/1082.html" title="cornsilk #fff8dc">cornsilk<br>#fff8dc</a>
</td>
<td style="background-color: rgb(250, 128, 114);">
<a href="http://www.colordic.org/colorsample/1110.html" title="salmon #fa8072">salmon<br>#fa8072</a>
</td>
<td style="background-color: rgb(106, 90, 205);">
<a href="http://www.colordic.org/colorsample/1138.html" title="slateblue #6a5acd" style="color: rgb(255, 255, 255);">slateblue<br>#6a5acd</a>
</td>
</tr>
<tr>
<td style="background-color: rgb(240, 255, 255);">
<a href="http://www.colordic.org/colorsample/1027.html" title="azure #f0ffff">azure<br>#f0ffff</a>
</td>
<td style="background-color: rgb(95, 158, 160);">
<a href="http://www.colordic.org/colorsample/1056.html" title="cadetblue #5f9ea0" style="color: rgb(255, 255, 255);">cadetblue<br>#5f9ea0</a>
</td>
<td style="background-color: rgb(245, 245, 220);">
<a href="http://www.colordic.org/colorsample/1083.html" title="beige #f5f5dc">beige<br>#f5f5dc</a>
</td>
<td style="background-color: rgb(255, 160, 122);">
<a href="http://www.colordic.org/colorsample/1111.html" title="lightsalmon #ffa07a">lightsalmon<br>#ffa07a</a>
</td>
<td style="background-color: rgb(123, 104, 238);">
<a href="http://www.colordic.org/colorsample/1139.html" title="mediumslateblue #7b68ee">mediumslateblue<br>#7b68ee</a>
</html>
【<<closeAll>>】
[[【新手上路】]]
[[【編輯應用】]]
[[【架構應用】]]
[[【關於這個網站】]]
[[最新文章列表]]
[[心情記事]]
@@最新文章列表@@
@@color(blue):請點選文章日期@@
!<<tag 心情記事>>
!!<<slider chkSlider TiddlyWiki的作品 TiddlyWiki的作品2008.03 '最新文章'>>
!!<<slider chkSlider 20080213 2008.02.13 '最新文章'>>
!!<<slider chkSlider 20080130 2008.01.30 '最新文章'>>
!!<<slider chkSlider 20080123 2008.01.23 '最新文章'>>
!!<<slider chkSlider 20080116 2008.01.16 '最新文章'>>
----
不論你是特地前來,還是不小心進來,甚至是莫名其妙進來的,首先都歡迎您來到這個地方!
這裡是一個由{{{「TWtBala」}}}所架構的網頁
網頁上放著學習過程中的心得跟大夥分享喔!
[img[土芭樂-數位新思路|http://twalong.googlepages.com/PHOTO.jpg][http://tbala.net/tBala3-0801.html]]
【<<closeAll>>】
*修改程序文章檔名:ViewTemplate
*@@註銷下列描述@@
{{{<!--<div class='subtitle'><span macro='view modifier link'></span>, <span macro='view modified date'></span> (<span macro='message views.wikified.createdPrompt'></span>
<span macro='view created date'></span>)</div>-->}}}
【<<closeAll>>】
{{{/% 想隱藏的內容 %/}}}
@@如果想暫時隱藏某段文字時可以使用喔!@@
【<<closeAll>>】