svnno****@sourc*****
svnno****@sourc*****
2008年 9月 28日 (日) 16:19:39 JST
Revision: 1966 http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi?root=jiemamy&view=rev&rev=1966 Author: ewigkeit1204 Date: 2008-09-28 16:19:39 +0900 (Sun, 28 Sep 2008) Log Message: ----------- [COM-7] モックの作成開始。 Added Paths: ----------- artemis/trunk/org.jiemamy.composer/src/mock/ artemis/trunk/org.jiemamy.composer/src/mock/html/ artemis/trunk/org.jiemamy.composer/src/mock/html/style.css artemis/trunk/org.jiemamy.composer/src/mock/html/table.html -------------- next part -------------- Added: artemis/trunk/org.jiemamy.composer/src/mock/html/style.css =================================================================== --- artemis/trunk/org.jiemamy.composer/src/mock/html/style.css (rev 0) +++ artemis/trunk/org.jiemamy.composer/src/mock/html/style.css 2008-09-28 07:19:39 UTC (rev 1966) @@ -0,0 +1,55 @@ +/* table */ + +#table_detail { + border: thin solid gray; + border-spacing: 0; + width: 100%; +} + +#table_detail caption { + font-size: x-large; + font-weight: bold; + text-align: left; +} + +#table_detail th { + background-color: #ccccff; + border: thin inset gray; + font-size: small; + white-space: nowrap; +} + +#table_detail td { + border: thin inset gray; + font-size: small; +} + +.column_no { + text-align: right; + white-space: nowrap; +} + +.column_logical { + text-align: left; + white-space: nowrap; +} + +.column_physical { + text-align: left; + white-space: nowrap; +} + +.column_type { + text-align: left; + white-space: nowrap; +} + +.column_length { + text-align: right; + white-space: nowrap; +} + +.column_desc { + text-align: left; + white-space: normal; +} Property changes on: artemis/trunk/org.jiemamy.composer/src/mock/html/style.css ___________________________________________________________________ Name: svn:mime-type + text/plain Added: artemis/trunk/org.jiemamy.composer/src/mock/html/table.html =================================================================== --- artemis/trunk/org.jiemamy.composer/src/mock/html/table.html (rev 0) +++ artemis/trunk/org.jiemamy.composer/src/mock/html/table.html 2008-09-28 07:19:39 UTC (rev 1966) @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.dtd" + xml:lang="ja"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +<title>テーブル: サンプル(TBL_SAMPLE)</title> +<link rel="stylesheet" href="./style.css" type="text/css" /> +</head> +<body> +<h2>テーブル サンプル(TBL_SAMPLE)</h2> +<hr /> +<div> +テーブルの説明 +</div> +<hr /> +<table id="table_detail"> +<caption>テーブル詳細</caption> +<thead> + <tr> + <th>項番</th> + <th>項目名(論理名)</th> + <th>カラム名(物理名)</th> + <th>型</th> + <th>桁</th> + <th>説明</th> + </tr> +</thead> +<tbody> + <tr> + <td class="column_no">0</td> + <td class="column_logical">チームID</td> + <td class="column_physical">ID</td> + <td class="column_type">INTEGER</td> + <td class="column_length">4</td> + <td class="column_desc"> + <div>チームIDを示す数値です。</div> + </td> + </tr> +</tbody> +</table> +</body> +</html> Property changes on: artemis/trunk/org.jiemamy.composer/src/mock/html/table.html ___________________________________________________________________ Name: svn:mime-type + text/plain