TableCellResult

Admin により 2011年 4月 14日, 03:02が変更された | 履歴
  • You do not have permissions to view this page - please try logging in.
目次
ヘッダーがありません
/**
 * Table Cell: Search result detail
 * Outputs search result related information
 */
// page, file, comment
var resultType = $type;
var class = $class;
var pageId = $pageId;
var fileId = $fileId; // optional
var commentId = $commentId;
var cellPage = $page ?? wiki.getpage(num.cast(pageId));
var cellFile = $file;
var cellComment = $comment;

// support loading files by id
if (resultType == "file" && cellFile is nil)
    let cellFile = wiki.getfile(num.cast(fileId));

let class ..= "result-detail result-type-" .. resultType;

switch (resultType) {
default:
case "page":
    Template("MindTouch/Reports/Controls/TableCellPage", {
        page: cellPage,
        class: class
    });

case "file":
    <td class=(class)>
        <div class="details">
        <a href=(cellFile.uri)>cellFile.name</a>;
        <span class="in">
            " " .. wiki.localize("MindTouch.Reports.data.title.in") .. " ";
            <a href=(cellPage.uri)>cellPage.path</a>;
        </span>
    </div>
    </td>

case "comment":
    <td class=(class)>
        <div class="details">
        <a href=(cellComment.uri) title=(cellComment.text)>"Comment #"..cellComment.number</a>;
        <span class="in">
            " " .. wiki.localize("MindTouch.Reports.data.title.in") .. " ";
            <a href=(cellPage.uri)>cellPage.path</a>;
        </span>
        </div>
    </td>
}

タグ (タグ編集)
  • No tags
ページ統計
244 view(s), 1 edit(s) and 1691 character(s)

コメント

あなたはコメントを投稿するには ログイン しなければなりません。

添付ファイル

添付