pikzie-commit Mailing List for Pikzie
Status: Beta
Brought to you by:
ktou
You can subscribe to this list here.
| 2008 |
Jan
(75) |
Feb
(82) |
Mar
(23) |
Apr
|
May
(1) |
Jun
(23) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(13) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2009 |
Jan
|
Feb
|
Mar
(11) |
Apr
|
May
(12) |
Jun
(1) |
Jul
(4) |
Aug
|
Sep
|
Oct
(2) |
Nov
(1) |
Dec
|
| 2010 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
(18) |
Jun
(1) |
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
(2) |
| 2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(49) |
| 2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(12) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: shopetan <nul...@cl...> - 2015-06-27 08:09:47
|
shopetan 2015-06-27 16:48:42 +0900 (Sat, 27 Jun 2015) New Revision: 300087a91c6552a5a9d59e39a80bbc545d843bcd https://github.com/clear-code/pikzie/commit/300087a91c6552a5a9d59e39a80bbc545d843bcd Merged 3bc3ca8: Merge pull request #12 from shopetan/fix-Readme Message: MODIFY: Reference README.ja README.ja内のリファレンスの位置が間違っているので修正しました. Modified files: README.ja Modified: README.ja (+5 -2) =================================================================== --- README.ja 2015-06-27 16:02:31 +0900 (c270661) +++ README.ja 2015-06-27 16:48:42 +0900 (adfd4fe) @@ -312,8 +312,6 @@ XML出力 ... </report> -リファレンス -============ オプション ========== @@ -399,6 +397,10 @@ XML出力 このオプションはコンソールUIを使用 する場合だけ有効です。(現在はコン ソールUIしかありません。) + +リファレンス +============ + 表明 ---- @@ -455,6 +457,7 @@ pikzie.priority(priority) 実行しない。 + 謝辞 ---- |
|
From: okkez <nul...@cl...> - 2015-06-27 08:09:47
|
okkez 2015-06-27 17:09:33 +0900 (Sat, 27 Jun 2015) New Revision: 3bc3ca8e1b81bba09590ded324a0b088c020bbae https://github.com/clear-code/pikzie/commit/3bc3ca8e1b81bba09590ded324a0b088c020bbae Message: Merge pull request #12 from shopetan/fix-Readme MODIFY: Reference README.ja |
|
From: Kouhei S. <nul...@cl...> - 2015-06-27 07:55:02
|
Kouhei Sutou 2015-06-27 16:52:21 +0900 (Sat, 27 Jun 2015) New Revision: 6b7f868a264aaaeb0a14aaea0cddfa7baee4f2f9 https://github.com/clear-code/pikzie/commit/6b7f868a264aaaeb0a14aaea0cddfa7baee4f2f9 Message: travis: enable Travis CI Added files: .travis.yml Added: .travis.yml (+11 -0) 100644 =================================================================== --- /dev/null +++ .travis.yml 2015-06-27 16:52:21 +0900 (ad3b93b) @@ -0,0 +1,11 @@ +# notifications: +# recipients: +# - tes...@go... +language: python +python: + - "2.6" + - "2.7" + - "3.2" + - "3.3" + - "3.4" +script: test/run-test.py |
|
From: Keita W. <nul...@cl...> - 2015-06-27 07:02:48
|
Keita Watanabe 2015-06-27 15:46:33 +0900 (Sat, 27 Jun 2015) New Revision: 6d22e6261d277131c250543bf3791f431ff0d527 https://github.com/clear-code/pikzie/commit/6d22e6261d277131c250543bf3791f431ff0d527 Merged efb3fca: Merge pull request #4 from KeWata/readme_order Message: README.ja中の文章の順番変更 README.ja中の末尾にあったテストモジュールの記述をチュートリアル中に移動.また,オプションの内容をレファレンスに移動. Modified files: README.ja Modified: README.ja (+105 -103) =================================================================== --- README.ja 2015-06-27 14:56:28 +0900 (1a0477c) +++ README.ja 2015-06-27 15:46:33 +0900 (c270661) @@ -86,6 +86,27 @@ git:: | +- ... + +雛型 +---- + +テストの雛型は以下のようになります。:: + + import pikzie + import テスト対象のモジュール + + class TestYourModule(pikzie.TestCase): + def setup(self): + # 初期化用コード + self.setup_called = True + + def teardown(self): + # 後片付け用コード + self.setup_called = False + + def test_condition(self): # "test_"から始める + self.assert_true(self.setup_called) + test/run-test.pyは以下の通りです。:: #!/usr/bin/env python @@ -116,90 +137,6 @@ test/run-test.pyは以下の通りです。:: あるいは:: % python test/run_test.py -オプション -========== - ---version バージョンを表示して終了します。 - --pPATTERN, --test-file-name-pattern=PATTERN テストファイル名 - にマッチするグロ - ブパターンを指定 - します。 - - デフォルトは - test/test_*.pyで - す。 - --nTEST_NAME, --name=TEST_NAME TEST_NAMEにマッチしたテストを実 - 行します。もし、TEST_NAMEが - "/"で囲まれていた場合は(例: - /test\_/)正規表現として扱いま - す。 - - このオプションは何度でも指定で - き、その場合は、どれかのパター - ンにマッチしたテストすべてが実 - 行されます。 - --tTEST_CASE_NAME, --test-case=TEST_CASE_NAME TEST_CASE_NAME - にマッチしたテ - ストケースを実 - 行します。もし、 - TEST_CASE_NAME - が"/"で囲まれて - いた場合は(例: - /TestMyLib/)正 - 規表現として扱 - います。 - - このオプション - は何度でも指定 - でき、その場合 - は、どれかのパ - ターンにマッチ - したテストケー - スすべてが実行 - されます。 - ---xml-report=FILE テスト結果をXML形式でFILEに出力し - ます。 - ---priority 優先度に応じて実行するテストを選択 - します。優先度が低いテストでも、前 - 回のテストでパスしていないテストは - 実行します。 - ---no-priority 優先度に関係なく全てのテストを実行 - します。(デフォルト) - --vLEVEL, --verbose=LEVEL 出力の詳細さを指定します。LEVELは - [s|silent|n|normal|v|verbose]のう - ちのどれかです。 - - このオプションはコンソールUIを使用 - する場合だけ有効です。(現在はコン - ソールUIしかありません。) - --cMODE, --color=MODE 出力を色付けするかどうかを指定しま - す。MODEには[yes|true|no|false|auto]の - どれかを指定します。yesまたはtrue - が指定された場合はエスケープシーケ - ンスで色付けして出力します。 - noまたはfalseが指定された場合は色付 - けしません。autoあるいは値が省略さ - れた時は、可能なら色付けをします。 - - このオプションはコンソールUIを使用 - する場合だけ有効です。(現在はコン - ソールUIしかありません。) - ---color-scheme=SCHEME 出力時にどの色を使うかを指定します。 - SCHEMEには[default]のどれかを指定 - します。 - - このオプションはコンソールUIを使用 - する場合だけ有効です。(現在はコン - ソールUIしかありません。) テスト結果 ========== @@ -378,6 +315,90 @@ XML出力 リファレンス ============ +オプション +========== + +--version バージョンを表示して終了します。 + +-pPATTERN, --test-file-name-pattern=PATTERN テストファイル名 + にマッチするグロ + ブパターンを指定 + します。 + + デフォルトは + test/test_*.pyで + す。 + +-nTEST_NAME, --name=TEST_NAME TEST_NAMEにマッチしたテストを実 + 行します。もし、TEST_NAMEが + "/"で囲まれていた場合は(例: + /test\_/)正規表現として扱いま + す。 + + このオプションは何度でも指定で + き、その場合は、どれかのパター + ンにマッチしたテストすべてが実 + 行されます。 + +-tTEST_CASE_NAME, --test-case=TEST_CASE_NAME TEST_CASE_NAME + にマッチしたテ + ストケースを実 + 行します。もし、 + TEST_CASE_NAME + が"/"で囲まれて + いた場合は(例: + /TestMyLib/)正 + 規表現として扱 + います。 + + このオプション + は何度でも指定 + でき、その場合 + は、どれかのパ + ターンにマッチ + したテストケー + スすべてが実行 + されます。 + +--xml-report=FILE テスト結果をXML形式でFILEに出力し + ます。 + +--priority 優先度に応じて実行するテストを選択 + します。優先度が低いテストでも、前 + 回のテストでパスしていないテストは + 実行します。 + +--no-priority 優先度に関係なく全てのテストを実行 + します。(デフォルト) + +-vLEVEL, --verbose=LEVEL 出力の詳細さを指定します。LEVELは + [s|silent|n|normal|v|verbose]のう + ちのどれかです。 + + このオプションはコンソールUIを使用 + する場合だけ有効です。(現在はコン + ソールUIしかありません。) + +-cMODE, --color=MODE 出力を色付けするかどうかを指定しま + す。MODEには[yes|true|no|false|auto]の + どれかを指定します。yesまたはtrue + が指定された場合はエスケープシーケ + ンスで色付けして出力します。 + noまたはfalseが指定された場合は色付 + けしません。autoあるいは値が省略さ + れた時は、可能なら色付けをします。 + + このオプションはコンソールUIを使用 + する場合だけ有効です。(現在はコン + ソールUIしかありません。) + +--color-scheme=SCHEME 出力時にどの色を使うかを指定します。 + SCHEMEには[default]のどれかを指定 + します。 + + このオプションはコンソールUIを使用 + する場合だけ有効です。(現在はコン + ソールUIしかありません。) 表明 ---- @@ -433,25 +454,6 @@ pikzie.priority(priority) never 実行しない。 -雛型 ----- - -テストの雛型は以下のようになります。:: - - import pikzie - import テスト対象のモジュール - - class TestYourModule(pikzie.TestCase): - def setup(self): - # 初期化用コード - self.setup_called = True - - def teardown(self): - # 後片付け用コード - self.setup_called = False - - def test_condition(self): # "test_"から始める - self.assert_true(self.setup_called) 謝辞 ---- |
|
From: Keita W. <nul...@cl...> - 2015-06-27 07:02:48
|
Keita Watanabe 2015-06-27 15:55:19 +0900 (Sat, 27 Jun 2015) New Revision: 2e46ad25f2df6cd9eab9789e360802d8f9cd4128 https://github.com/clear-code/pikzie/commit/2e46ad25f2df6cd9eab9789e360802d8f9cd4128 Merged efb3fca: Merge pull request #4 from KeWata/readme_order Message: Reorderning contents in README Reordering contents in README. The modifications are following: * move descriptions of Option into References * move descriptions of Template into Usage (If this part written in the * last part of the document, it's hard to understande it's * consists one tutorial.) Modified files: README Modified: README (+108 -106) =================================================================== --- README 2015-06-27 15:46:33 +0900 (262054d) +++ README 2015-06-27 15:55:19 +0900 (1a246e4) @@ -86,6 +86,24 @@ We assume that you have the following directory structure:: | +- ... +Template +-------- + +Here is a template of a test case:: + + import pikzie + import test_target_module + + class TestYourModule(pikzie.TestCase): + def setup(self): + self.setup_called = True + + def teardown(self): + self.setup_called = False + + def test_condition(self): # starts with "test_" + self.assert_true(self.setup_called) + test/run-test.py is the following:: #!/usr/bin/env python @@ -116,95 +134,6 @@ You can execute by command below:: or:: % python test/run_test.py -Options -------- - ---version shows its own version and exits. - --pPATTERN, --test-file-name-pattern=PATTERN collects test - files that - matches with the - specified glob - pattern. - - Default: test/test_*.py - --nTEST_NAME, --name=TEST_NAME runs tests that are matched - with TEST_NAME. If TEST_NAME - is surrounded by "/" - (e.g. /test\_/), TEST_NAME is - handled as regular - expression. - - This option can be specified - n times. In the case, Pikzie - runs tests that are matched - with any TEST_NAME. - --tTEST_CASE_NAME, --test-case=TEST_CASE_NAME runs test - cases that are - matched with - TEST_CASE_NAME. - If - TEST_CASE_NAME - is surrounded - by "/" - (e.g. /TestMyLib/), - TEST_CASE_NAME - is handled as - regular - expression. - - This option - can be - specified n - times. In the - case, Pikzie - runs test - cases that are - matched with - any - TEST_CASE_NAME. - ---xml-report=FILE outputs test result in XML format - to FILE. - ---priority selects tests to run according to - their priority. If a test is not - passed in the previous test, the - test is ran. - ---no-priority runs all tests regardless of their - priority. (default) - --vLEVEL, --verbose=LEVEL specifies verbose level. LEVEL is - one of [s|silent|n|normal|v|verbose]. - - This option is only for console - UI. (There is only console UI at - present.) - --cMODE, --color=MODE specifies whether colorize output - or not. MODE is one of - [yes|true|no|false|auto]. If 'yes' - or 'true' is specified, colorized - output by escape sequence is used. - If 'no' or 'false' is specified, - colorized output is never used. If 'auto' - or the option is omitted, - colorized output is used if available. - - This option is only for console - UI. (There is only console UI at - present.) - ---color-scheme=SCHEME specifies whether color scheme is - used for output. SCHEME is one of - [default]. - - This option is only for console - UI. (There is only console UI at - present.) Test result =========== @@ -381,6 +310,96 @@ structure:: References ========== +Options +------- + +--version shows its own version and exits. + +-pPATTERN, --test-file-name-pattern=PATTERN collects test + files that + matches with the + specified glob + pattern. + + Default: test/test_*.py + +-nTEST_NAME, --name=TEST_NAME runs tests that are matched + with TEST_NAME. If TEST_NAME + is surrounded by "/" + (e.g. /test\_/), TEST_NAME is + handled as regular + expression. + + This option can be specified + n times. In the case, Pikzie + runs tests that are matched + with any TEST_NAME. + +-tTEST_CASE_NAME, --test-case=TEST_CASE_NAME runs test + cases that are + matched with + TEST_CASE_NAME. + If + TEST_CASE_NAME + is surrounded + by "/" + (e.g. /TestMyLib/), + TEST_CASE_NAME + is handled as + regular + expression. + + This option + can be + specified n + times. In the + case, Pikzie + runs test + cases that are + matched with + any + TEST_CASE_NAME. + +--xml-report=FILE outputs test result in XML format + to FILE. + +--priority selects tests to run according to + their priority. If a test is not + passed in the previous test, the + test is ran. + +--no-priority runs all tests regardless of their + priority. (default) + +-vLEVEL, --verbose=LEVEL specifies verbose level. LEVEL is + one of [s|silent|n|normal|v|verbose]. + + This option is only for console + UI. (There is only console UI at + present.) + +-cMODE, --color=MODE specifies whether colorize output + or not. MODE is one of + [yes|true|no|false|auto]. If 'yes' + or 'true' is specified, colorized + output by escape sequence is used. + If 'no' or 'false' is specified, + colorized output is never used. If 'auto' + or the option is omitted, + colorized output is used if available. + + This option is only for console + UI. (There is only console UI at + present.) + +--color-scheme=SCHEME specifies whether color scheme is + used for output. SCHEME is one of + [default]. + + This option is only for console + UI. (There is only console UI at + present.) + Assertions ---------- @@ -437,23 +456,6 @@ pikzie.priority(priority) never never run the test. -Template --------- - -Here is a template of a test case:: - - import pikzie - import test_target_module - - class TestYourModule(pikzie.TestCase): - def setup(self): - self.setup_called = True - - def teardown(self): - self.setup_called = False - - def test_condition(self): # starts with "test_" - self.assert_true(self.setup_called) Thanks ------ |
|
From: okkez <nul...@cl...> - 2015-06-27 07:02:46
|
okkez 2015-06-27 16:02:31 +0900 (Sat, 27 Jun 2015) New Revision: efb3fcac5f07a17e32ba2aa7154853de28f83709 https://github.com/clear-code/pikzie/commit/efb3fcac5f07a17e32ba2aa7154853de28f83709 Message: Merge pull request #4 from KeWata/readme_order Reorder contents in README{.ja} Pull requested by @KeWata. Thanks!!! |
|
From: okkez <nul...@cl...> - 2015-06-27 05:59:37
|
okkez 2015-06-27 14:56:28 +0900 (Sat, 27 Jun 2015) New Revision: db1219a23673b0c0a70262e3051c3bd332c2be56 https://github.com/clear-code/pikzie/commit/db1219a23673b0c0a70262e3051c3bd332c2be56 Message: Add installation sequence for git Suggested by @KeWata. Thanks!!! Modified files: README Modified: README (+2 -0) =================================================================== --- README 2015-06-27 14:53:42 +0900 (29a59c3) +++ README 2015-06-27 14:56:28 +0900 (262054d) @@ -68,6 +68,8 @@ There is "clear-code/pikzie git:: % git clone https://github.com/clear-code/pikzie.git + % cd pikzie + % sudo python setup.py install Usage ===== |
|
From: Yosuke Y. <nul...@cl...> - 2015-06-27 05:53:56
|
Yosuke Yasuda 2015-06-27 14:43:33 +0900 (Sat, 27 Jun 2015) New Revision: 441e2f78306efd5c9b7485e2421f9010a63e2fa1 https://github.com/clear-code/pikzie/commit/441e2f78306efd5c9b7485e2421f9010a63e2fa1 Merged 6ad1196: Merge pull request #2 from double-y/feature/readme_modify Message: add a solution for permission error of test/run-test.py in README Modified files: README Modified: README (+10 -0) =================================================================== --- README 2015-06-27 14:40:28 +0900 (51aadb7) +++ README 2015-06-27 14:43:33 +0900 (29a59c3) @@ -104,6 +104,16 @@ are ran by invoking run-test.py like the following:: % test/run-test.py +If you get this error:: + permission denied: test/run_test.py + +You can execute by command below:: + % chmod u+x test/run_test.py + % test/run-test.py + +or:: + % python test/run_test.py + Options ------- |
|
From: Yosuke Y. <nul...@cl...> - 2015-06-27 05:53:56
|
Yosuke Yasuda 2015-06-27 14:40:28 +0900 (Sat, 27 Jun 2015) New Revision: 9693946c859481b5ca0ad4dc7bd03b0314531776 https://github.com/clear-code/pikzie/commit/9693946c859481b5ca0ad4dc7bd03b0314531776 Merged 6ad1196: Merge pull request #2 from double-y/feature/readme_modify Message: add a solution for permission error of test/run-test.py in README.ja Modified files: README.ja Modified: README.ja (+10 -0) =================================================================== --- README.ja 2011-12-18 16:35:41 +0900 (a81c84a) +++ README.ja 2015-06-27 14:40:28 +0900 (0e51bbb) @@ -104,6 +104,16 @@ test/run-test.pyは以下の通りです。:: % test/run-test.py +以下のエラーが出る場合:: + permission denied: test/run_test.py + +以下のコマンドで実行できます:: + % chmod u+x test/run_test.py + % test/run-test.py + +あるいは:: + % python test/run_test.py + オプション ========== |
|
From: okkez <nul...@cl...> - 2015-06-27 05:53:55
|
okkez 2015-06-27 14:53:42 +0900 (Sat, 27 Jun 2015) New Revision: 6ad11965fc97c8e41d731759e40c4945876ae33c https://github.com/clear-code/pikzie/commit/6ad11965fc97c8e41d731759e40c4945876ae33c Message: Merge pull request #2 from double-y/feature/readme_modify Feature/readme modify Pull requested by @double-y. Thanks!!! |
|
From: okkez <nul...@cl...> - 2015-06-27 05:52:20
|
okkez 2015-06-27 14:52:06 +0900 (Sat, 27 Jun 2015) New Revision: 6f44788ab70e8140f9a12a686e502035f13d1868 https://github.com/clear-code/pikzie/commit/6f44788ab70e8140f9a12a686e502035f13d1868 Message: Merge pull request #3 from KeWata/readme README.ja中のgitからのインストール方法についての追記 |
|
From: Keita W. <nul...@cl...> - 2015-06-27 05:52:20
|
Keita Watanabe 2015-06-27 14:44:34 +0900 (Sat, 27 Jun 2015) New Revision: 8c8428824c5f5612f08e0ec6ec21dd36ab875852 https://github.com/clear-code/pikzie/commit/8c8428824c5f5612f08e0ec6ec21dd36ab875852 Merged 6f44788: Merge pull request #3 from KeWata/readme Message: README.jaの内容変更 README.jaに記載のgitからのpikzieインストールの方法について追記.クローンした後のインストール方法が自明でなかったため. Modified files: README.ja Modified: README.ja (+2 -0) =================================================================== --- README.ja 2011-12-18 16:35:41 +0900 (a81c84a) +++ README.ja 2015-06-27 14:44:34 +0900 (2c98789) @@ -68,6 +68,8 @@ GitHubの "clear-code/pikzie git:: % git clone https://github.com/clear-code/pikzie.git + % cd pikzie + % sudo python setup.py install 使い方 ====== |
|
From: <nul...@cl...> - 2011-12-18 07:35:56
|
Kouhei Sutou 2011-12-18 07:35:41 +0000 (Sun, 18 Dec 2011)
New Revision: 14a55cfbe031671aabb726b6d9912bcfef5516fc
Log:
add 1.0.1 entry.
Modified files:
NEWS
NEWS.ja
Modified: NEWS (+5 -0)
===================================================================
--- NEWS 2011-12-18 07:33:04 +0000 (04c80e6)
+++ NEWS 2011-12-18 07:35:41 +0000 (7752fdc)
@@ -6,6 +6,11 @@
The history of Pikzie
+1.0.1: 2011-12-18
+=================
+
+Just package fix.
+
1.0.0: 2011-12-18
=================
Modified: NEWS.ja (+5 -0)
===================================================================
--- NEWS.ja 2011-12-18 07:33:04 +0000 (fd5a314)
+++ NEWS.ja 2011-12-18 07:35:41 +0000 (df56eb2)
@@ -6,6 +6,11 @@
Pikzieの歴史
+1.0.1: 2011-12-18
+=================
+
+パッケージ修正のみ。
+
1.0.0: 2011-12-18
=================
|
|
From: <nul...@cl...> - 2011-12-18 07:33:19
|
Kouhei Sutou 2011-12-18 07:33:04 +0000 (Sun, 18 Dec 2011)
New Revision: 4bc8103326f27dd7e16a9d8fe43378b199837165
Log:
fix typos.
Modified files:
NEWS
NEWS.ja
Modified: NEWS (+1 -1)
===================================================================
--- NEWS 2011-12-18 07:32:10 +0000 (fc37088)
+++ NEWS 2011-12-18 07:33:04 +0000 (04c80e6)
@@ -31,7 +31,7 @@ Fixes
[Fixed by Hideo Hattori]
* Fixed a problem that test data output is failed when
data driven test is failed.
- [pizke-users-ja:22] [Fixed by Tetsuya Morimoto]
+ [pikzie-users-ja:22] [Fixed by Tetsuya Morimoto]
Thanks
------
Modified: NEWS.ja (+1 -1)
===================================================================
--- NEWS.ja 2011-12-18 07:32:10 +0000 (a018a2f)
+++ NEWS.ja 2011-12-18 07:33:04 +0000 (fd5a314)
@@ -31,7 +31,7 @@ Pikzieの歴史
* 同じファイルを2回読み込む問題を修正。
[Hideo Hattoriさんが修正]
* データ駆動テスト失敗時にテストデータの出力を失敗する問題を修正。
- [pizke-users-ja:22] [Tetsuya Morimotoさんが修正]
+ [pikzie-users-ja:22] [Tetsuya Morimotoさんが修正]
感謝
----
|
|
From: <nul...@cl...> - 2011-12-18 07:32:28
|
Kouhei Sutou 2011-12-18 07:32:10 +0000 (Sun, 18 Dec 2011)
New Revision: 7f4b78c4ff61415a6f8aa0d2a40ccd972c421ba1
Log:
add "Programming Language :: Python :: 3" to classifiers.
Suggested by @t2y. Thanks!!!
Modified files:
setup.py
Modified: setup.py (+2 -1)
===================================================================
--- setup.py 2011-12-18 07:18:44 +0000 (f0778cc)
+++ setup.py 2011-12-18 07:32:10 +0000 (e73d01b)
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
-# Copyright (C) 2009 Kouhei Sutou <ko...@cl...>
+# Copyright (C) 2009-2011 Kouhei Sutou <ko...@cl...>
#
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
@@ -261,6 +261,7 @@ setup(name=package_name,
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Testing",
"Programming Language :: Python",
+ "Programming Language :: Python :: 3",
"Natural Language :: Japanese",
"Natural Language :: English",
],
|
|
From: <nul...@cl...> - 2011-12-18 07:19:04
|
Kouhei Sutou 2011-12-18 07:18:44 +0000 (Sun, 18 Dec 2011)
New Revision: 9803b26d349043a350b34527f6e98304fa4995a7
Log:
fix download URL.
Modified files:
setup.py
Modified: setup.py (+1 -1)
===================================================================
--- setup.py 2011-12-18 07:08:57 +0000 (529de77)
+++ setup.py 2011-12-18 07:18:44 +0000 (f0778cc)
@@ -244,7 +244,7 @@ class tag(Command):
def run(self):
_run("git", "tag", version, "-a", "-m", "released %s!!!" % version)
-download_url = "http://downloads.sourceforge.net/pikzie/pikzie-%s.tar.gz" % version
+download_url = "http://downloads.sourceforge.net/project/pikzie/pikzie/%s/pikzie-%s.tar.gz" % (version, version)
setup(name=package_name,
version=version,
description=description,
|
|
From: <nul...@cl...> - 2011-12-18 07:09:14
|
Kouhei Sutou 2011-12-18 07:08:57 +0000 (Sun, 18 Dec 2011)
New Revision: d8017aa7dfdd970b138ddd0e9220f29cf87c9af1
Log:
1.0.0 -> 1.0.1.
Modified files:
lib/pikzie/__init__.py
Modified: lib/pikzie/__init__.py (+1 -1)
===================================================================
--- lib/pikzie/__init__.py 2011-12-18 07:06:58 +0000 (b18b80f)
+++ lib/pikzie/__init__.py 2011-12-18 07:08:57 +0000 (1ec5d6c)
@@ -13,7 +13,7 @@
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-version = "1.0.0"
+version = "1.0.1"
try:
import __builtin__
|
|
From: <nul...@cl...> - 2011-12-18 07:07:16
|
Kouhei Sutou 2011-12-18 07:06:58 +0000 (Sun, 18 Dec 2011)
New Revision: 88a508b5b1e4b3d02c796f65c60a6c747fec928a
Log:
ignore auto generated files.
Modified files:
.gitignore
Modified: .gitignore (+3 -0)
===================================================================
--- .gitignore 2011-12-18 07:06:28 +0000 (2347768)
+++ .gitignore 2011-12-18 07:06:58 +0000 (b64cb4b)
@@ -7,3 +7,6 @@ __pycache__/
/po/*.po~
/po/*.pot
/data/locale/*/LC_MESSAGES/pikzie.mo
+/*.tar.gz
+/lib/*.egg-info/
+/dist/
|
|
From: <nul...@cl...> - 2011-12-18 07:06:44
|
Kouhei Sutou 2011-12-18 07:06:28 +0000 (Sun, 18 Dec 2011)
New Revision: 463f9e92fd34370f590f3da20a063279bb05c037
Log:
remove an unused variable.
Modified files:
setup.py
Modified: setup.py (+0 -1)
===================================================================
--- setup.py 2011-12-18 07:02:40 +0000 (ee35470)
+++ setup.py 2011-12-18 07:06:28 +0000 (529de77)
@@ -44,7 +44,6 @@ sf_project_id = package_name.lower()
sf_package_name = package_name.lower()
sf_user = "ktou"
sf_host = "%s...@we..." % sf_user
-sf_repos = "https://%s...@pi.../svnroot/pikzie" % sf_user
sf_htdocs = "/home/groups/p/pi/pikzie/htdocs"
long_description = re.split("\n.+\n=+", open("README").read())[5].strip()
|
|
From: <nul...@cl...> - 2011-12-18 07:02:57
|
Kouhei Sutou 2011-12-18 07:02:40 +0000 (Sun, 18 Dec 2011)
New Revision: f36fcfaca840e466a40a86dd9b80efe698bf3afa
Log:
ignore auto generated files.
Modified files:
.gitignore
Modified: .gitignore (+4 -0)
===================================================================
--- .gitignore 2011-12-18 07:01:55 +0000 (b8b4895)
+++ .gitignore 2011-12-18 07:02:40 +0000 (2347768)
@@ -3,3 +3,7 @@ __pycache__/
/test/tmp
/test/.test-result/
/misc
+/html/
+/po/*.po~
+/po/*.pot
+/data/locale/*/LC_MESSAGES/pikzie.mo
|
|
From: <nul...@cl...> - 2011-12-18 07:02:13
|
Kouhei Sutou 2011-12-18 07:01:55 +0000 (Sun, 18 Dec 2011)
New Revision: c4504eb52e1aacb64ad31337cf56c667c1dd3587
Log:
update po.
Modified files:
po/ja.po
Modified: po/ja.po (+122 -44)
===================================================================
--- po/ja.po 2011-12-18 06:55:21 +0000 (b5c9802)
+++ po/ja.po 2011-12-18 07:01:55 +0000 (e62242f)
@@ -6,10 +6,11 @@
msgid ""
msgstr ""
"Project-Id-Version: 0.9.5\n"
-"POT-Creation-Date: 2009-07-23 12:20+JST\n"
-"PO-Revision-Date: 2009-07-23 12:21+0900\n"
+"POT-Creation-Date: 2011-12-18 15:56+JST\n"
+"PO-Revision-Date: 2011-12-18 16:01+0900\n"
"Last-Translator: Kouhei Sutou <ko...@cl...>\n"
"Language-Team: Japanese\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -106,7 +107,7 @@ msgstr ""
"\n"
" self.assert_equal(5, 2 + 3) # => パス"
-#: lib/pikzie/assertions.py:135
+#: lib/pikzie/assertions.py:132
msgid ""
"Passes if not_expected != actual.\n"
"\n"
@@ -116,7 +117,7 @@ msgstr ""
"\n"
" self.assert_not_equal(-5, 2 + 3) # => パス"
-#: lib/pikzie/assertions.py:153
+#: lib/pikzie/assertions.py:150
msgid ""
"Passes if (expected - delta) <= actual <= (expected + delta).\n"
"\n"
@@ -126,7 +127,7 @@ msgstr ""
"\n"
" self.assert_in_delta(3, 3.01, 0.001) # => パス"
-#: lib/pikzie/assertions.py:172
+#: lib/pikzie/assertions.py:169
msgid ""
"Passes if re.match(pattern, target) doesn't return None.\n"
"\n"
@@ -138,7 +139,7 @@ msgstr ""
" self.assert_match(\"abc\", \"abcde\") # => パス\n"
" self.assert_match(\"abc\", \"deabc\") # => 失敗"
-#: lib/pikzie/assertions.py:192
+#: lib/pikzie/assertions.py:189
msgid ""
"Passes if re.match(pattern, target) returns None.\n"
"\n"
@@ -150,7 +151,7 @@ msgstr ""
" self.assert_not_match(\"abc\", \"deabc\") # => パス\n"
" self.assert_not_match(\"abc\", \"abcde\") # => 失敗"
-#: lib/pikzie/assertions.py:212
+#: lib/pikzie/assertions.py:209
msgid ""
"Passes if re.search(pattern, target) doesn't return None.\n"
"\n"
@@ -162,7 +163,7 @@ msgstr ""
" self.assert_search(\"abc\", \"deabc\") # => パス\n"
" self.assert_search(\"abc\", \"deABC\") # => 失敗"
-#: lib/pikzie/assertions.py:232
+#: lib/pikzie/assertions.py:229
msgid ""
"Passes if re.search(pattern, target) returns None.\n"
"\n"
@@ -174,7 +175,7 @@ msgstr ""
" self.assert_search(\"abc\", \"deABC\") # => パス\n"
" self.assert_search(\"abc\", \"deabc\") # => 失敗"
-#: lib/pikzie/assertions.py:252
+#: lib/pikzie/assertions.py:249
msgid ""
"Passes if hasattr(object, name) returns True.\n"
"\n"
@@ -186,7 +187,7 @@ msgstr ""
" self.assert_hasattr(\"string\", \"strip\") # => パス\n"
" self.assert_hasattr(\"string\", \"unknown\") # => 失敗"
-#: lib/pikzie/assertions.py:267
+#: lib/pikzie/assertions.py:264
msgid ""
"Passes if callable(object) returns True.\n"
"\n"
@@ -198,7 +199,7 @@ msgstr ""
" self.assert_callable(lambda: 1) # => パス\n"
" self.assert_callable(\"string\") # => 失敗"
-#: lib/pikzie/assertions.py:281
+#: lib/pikzie/assertions.py:278
msgid ""
"Passes if callable_object(*args, **kw_args) raises exception and\n"
"returns raised exception value.\n"
@@ -207,18 +208,63 @@ msgid ""
" lambda: unknown_variable) # => pass\n"
" # => returns NameError\n"
" # value\n"
-" self.assert_raise_call(NameError, lambda: 1) # => fail"
+" self.assert_raise_call(NameError, lambda: 1) # => fail\n"
+"\n"
+"Exception instance can be also passed if it's comparable.\n"
+"\n"
+" class ComparableError(Exception):\n"
+" def __init__(self, message):\n"
+" self.message = message\n"
+"\n"
+" def __repr__(self):\n"
+" return \"%s(%r,)\" % (type(self).__name__, self.message)\n"
+"\n"
+" def __eq__(self, other):\n"
+" return isinstance(other, self.__class__) "
+"and self.message == other.message\n"
+"\n"
+" def raise_error():\n"
+" raise ComparableError(\"value\")\n"
+" self.assert_raise_call(ComparableError(\"value\"),\n"
+" raise_error) # => pass\n"
+" # => returns\n"
+" # ComparableError\n"
+" # value\n"
+" self.assert_raise_call(ComparableError(\"key\"),\n"
+" raise_error) # => fail"
msgstr ""
-"callable_object(*args, **kw_args)が例外exceptionを発生させるとパスします。\n"
+"callable_object(*args, **kw_args)が例外を発生させたらパスします。そして、発生した例外を返します。\n"
"\n"
-" self.assert_call_raise(NameError, lambda: unknown_variable) # => パス\n"
-" self.assert_call_raise(NameError, lambda: 1) # => 失敗"
+" self.assert_raise_call(NameError,\n"
+" lambda: unknown_variable) # => パス\n"
+" # => NameErrorを返す\n"
+" self.assert_raise_call(NameError, lambda: 1) # => 失敗\n"
+"\n"
+"もし、例外インスタンスが比較可能であれば、例外インスタンスを渡すこともできます。\n"
+"\n"
+" class ComparableError(Exception):\n"
+" def __init__(self, message):\n"
+" self.message = message\n"
+"\n"
+" def __repr__(self):\n"
+" return \"%s(%r,)\" % (type(self).__name__, self.message)\n"
+"\n"
+" def __eq__(self, other):\n"
+" return isinstance(other, self.__class__) and self.message == other.message\n"
+"\n"
+" def raise_error():\n"
+" raise ComparableError(\"value\")\n"
+" self.assert_raise_call(ComparableError(\"value\"),\n"
+" raise_error) # => パス\n"
+" # => ComparableErrorを返す\n"
+" self.assert_raise_call(ComparableError(\"key\"),\n"
+" raise_error) # => 失敗"
-#: lib/pikzie/assertions.py:316
+#: lib/pikzie/assertions.py:350
msgid "Deprecated. Use assert_raise_call()."
msgstr "非推奨です。assert_raise_call()を使ってください。"
-#: lib/pikzie/assertions.py:322
+#: lib/pikzie/assertions.py:356
msgid ""
"Passes if callable_object(*args, **kw_args) raises nothing exception\n"
"and returns called result.\n"
@@ -232,11 +278,11 @@ msgstr ""
" self.assert_call_raise(NameError, lambda: unknown_variable) # => パス\n"
" self.assert_call_raise(NameError, lambda: 1) # => 失敗"
-#: lib/pikzie/assertions.py:347
+#: lib/pikzie/assertions.py:381
msgid "Deprecated. Use assert_nothing_raised_call()."
msgstr "非推奨です。assert_nothing_raised_call()を使ってください。"
-#: lib/pikzie/assertions.py:353
+#: lib/pikzie/assertions.py:387
msgid ""
"Passes if command is successfully ran and returns subprocess.Popen.\n"
"\n"
@@ -253,7 +299,7 @@ msgstr ""
" self.assert_run_command(\"false\") # => 失敗\n"
" self.assert_run_command(\"unknown-command\") # => 失敗"
-#: lib/pikzie/assertions.py:389
+#: lib/pikzie/assertions.py:423
msgid ""
"Passes if re.search(pattern, SYSLOG_CONTENT) doesn't return None\n"
"after callable_object(*args, **kw_args).\n"
@@ -267,19 +313,43 @@ msgstr ""
" self.assert_search_syslog_call(\"X\", syslog.syslog, \"XYZ\") # => パス\n"
" self.assert_search_syslog_call(\"X\", syslog.syslog, \"ABC\") # => 失敗"
-#: lib/pikzie/assertions.py:441
+#: lib/pikzie/assertions.py:481
msgid ""
-"Passes if file(name, *args) succeeds.\n"
+"Passes if path exists.\n"
+"\n"
+" self.assert_exists(\"/tmp/exist\") # => pass\n"
+" self.assert_exists(\"/tmp/nonexistence\") # => fail"
+msgstr ""
+"パスが存在したらパスします。\n"
+"\n"
+" self.assert_exists(\"/tmp/exist\") # => パス\n"
+" self.assert_exists(\"/tmp/nonexistence\") # => 失敗"
+
+#: lib/pikzie/assertions.py:493
+msgid ""
+"Passes if path doesn't exists.\n"
+"\n"
+" self.assert_not_exists(\"/tmp/nonexistence\") # => pass\n"
+" self.assert_not_exists(\"/tmp/exist\") # => fail"
+msgstr ""
+"パスが存在しなかったらパスします。\n"
+"\n"
+" self.assert_not_exists(\"/tmp/nonexistence\") # => パス\n"
+" self.assert_not_exists(\"/tmp/exist\") # => 失敗"
+
+#: lib/pikzie/assertions.py:505
+msgid ""
+"Passes if open(name, *args) succeeds.\n"
"\n"
" file = self.assert_open_file(\"/tmp/exist\", \"w\") # => pass\n"
" self.assert_open_file(\"/tmp/nonexistence\") # => fail"
msgstr ""
-"file(name, *args)が成功するとパスします。\n"
+"open(name, *args)が成功するとパスします。\n"
"\n"
" file = self.assert_open_file(\"/tmp/exist\", \"w\") # => パス\n"
" self.assert_open_file(\"/tmp/nonexistence\") # => 失敗"
-#: lib/pikzie/assertions.py:463
+#: lib/pikzie/assertions.py:527
msgid ""
"Passes if callable_object(*args, **kw_args) doesn't fail any\n"
"assertions in <timeout> seconds.\n"
@@ -305,7 +375,7 @@ msgstr ""
" # 4か5か6を返す\n"
" self.assert_try_call(1, 0.1, self.fail, \"Never succeed\") # => 失敗"
-#: lib/pikzie/assertions.py:502
+#: lib/pikzie/assertions.py:566
msgid ""
"Passes if /proc/kallsyms can be opened and name is in the list.\n"
"\n"
@@ -331,11 +401,11 @@ msgid ""
"subclassing, do not forget to call the base class constructor."
msgstr ""
-#: lib/pikzie/core.py:135
+#: lib/pikzie/core.py:137
msgid "Hook method for deconstructing the test fixture after testing it."
msgstr ""
-#: lib/pikzie/core.py:139
+#: lib/pikzie/core.py:141
msgid ""
"A class whose instances are single test cases.\n"
"\n"
@@ -355,7 +425,7 @@ msgid ""
"in order to be run."
msgstr ""
-#: lib/pikzie/core.py:188
+#: lib/pikzie/core.py:227
msgid ""
"Returns a one-line description of the test, or None if no\n"
"description has been provided.\n"
@@ -364,7 +434,7 @@ msgid ""
"the specified test method's docstring."
msgstr ""
-#: lib/pikzie/core.py:543
+#: lib/pikzie/core.py:636
msgid ""
"Context for running test.\n"
"\n"
@@ -377,72 +447,80 @@ msgid ""
"formatted traceback of the error that occurred."
msgstr ""
-#: lib/pikzie/core.py:606
+#: lib/pikzie/core.py:699
msgid "Called when the given test is about to be run"
msgstr ""
-#: lib/pikzie/core.py:612
+#: lib/pikzie/core.py:705
msgid "Called when the given test has been run"
msgstr ""
-#: lib/pikzie/core.py:618
+#: lib/pikzie/core.py:711
msgid "Called when the given test case is about to be run"
msgstr ""
-#: lib/pikzie/core.py:622
+#: lib/pikzie/core.py:715
msgid "Called when the given test case has been run"
msgstr ""
-#: lib/pikzie/core.py:626
+#: lib/pikzie/core.py:719
msgid "Called when the given test suite is about to be run"
msgstr ""
-#: lib/pikzie/core.py:630
+#: lib/pikzie/core.py:723
msgid "Called when the given test suite has been run"
msgstr ""
-#: lib/pikzie/core.py:634
+#: lib/pikzie/core.py:727
msgid "Called when an error has occurred."
msgstr ""
-#: lib/pikzie/core.py:640
+#: lib/pikzie/core.py:733
msgid "Called when a failure has occurred."
msgstr ""
-#: lib/pikzie/core.py:646
+#: lib/pikzie/core.py:739
msgid "Called when a notification has occurred."
msgstr ""
-#: lib/pikzie/core.py:652
+#: lib/pikzie/core.py:745
msgid "Called when a test has completed successfully"
msgstr ""
-#: lib/pikzie/core.py:659
+#: lib/pikzie/core.py:752
msgid "Called when a test is pended."
msgstr ""
-#: lib/pikzie/core.py:665
+#: lib/pikzie/core.py:758
msgid "Called when a test is omitted."
msgstr ""
-#: lib/pikzie/core.py:671
+#: lib/pikzie/core.py:764
msgid "Indicates that the tests should be interrupted"
msgstr ""
#: lib/pikzie/decorators.py:27
+msgid "Set metadata to a method."
+msgstr ""
+
+#: lib/pikzie/decorators.py:39
msgid "Set Bug ID to a method."
msgstr ""
-#: lib/pikzie/decorators.py:31
+#: lib/pikzie/decorators.py:43
msgid "Set priority of test."
msgstr ""
+#: lib/pikzie/decorators.py:47
+msgid "Set test data."
+msgstr ""
+
#: lib/pikzie/tester.py:25
msgid ""
"A command-line program that runs a set of tests; this is primarily\n"
"for making test modules conveniently executable."
msgstr ""
-#: lib/pikzie/ui/console.py:99
+#: lib/pikzie/ui/console.py:100
msgid "Run the given test case or test suite."
msgstr ""
|
|
From: <nul...@cl...> - 2011-12-18 06:55:38
|
Kouhei Sutou 2011-12-18 06:55:21 +0000 (Sun, 18 Dec 2011)
New Revision: 3a664d5ede7be475b43777a245ecd2fe9f9dda62
Log:
stable!
Modified files:
setup.py
Modified: setup.py (+1 -1)
===================================================================
--- setup.py 2011-12-18 06:53:31 +0000 (83a69c7)
+++ setup.py 2011-12-18 06:55:21 +0000 (ee35470)
@@ -259,7 +259,7 @@ setup(name=package_name,
packages=["pikzie", "pikzie.ui"],
classifiers=[
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
- "Development Status :: 4 - Beta",
+ "Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Testing",
"Programming Language :: Python",
"Natural Language :: Japanese",
|
|
From: <nul...@cl...> - 2011-12-18 06:53:49
|
Kouhei Sutou 2011-12-18 06:53:31 +0000 (Sun, 18 Dec 2011)
New Revision: fab5867c7aa53bbf1aa00fea0adf51a25f7d3b24
Log:
svn -> git.
Modified files:
setup.py
Modified: setup.py (+1 -7)
===================================================================
--- setup.py 2011-12-18 06:50:26 +0000 (2c56365)
+++ setup.py 2011-12-18 06:53:31 +0000 (83a69c7)
@@ -243,13 +243,7 @@ class tag(Command):
pass
def run(self):
- try:
- _run("svn", "ls", "%s/tags/%s" % (sf_repos, version))
- except:
- _run("svn", "cp", "-m", "released %s!!!" % version,
- "%s/trunk" % sf_repos, "%s/tags/%s" % (sf_repos, version))
- else:
- print("%s is already tagged" % version)
+ _run("git", "tag", version, "-a", "-m", "released %s!!!" % version)
download_url = "http://downloads.sourceforge.net/pikzie/pikzie-%s.tar.gz" % version
setup(name=package_name,
|
|
From: <nul...@cl...> - 2011-12-18 06:50:42
|
Kouhei Sutou 2011-12-18 06:50:26 +0000 (Sun, 18 Dec 2011)
New Revision: 7a84723e53bf05c739a4eff9d500b4d05f40dde4
Log:
add 1.0.0 entry.
Modified files:
NEWS
NEWS.ja
Modified: NEWS (+33 -0)
===================================================================
--- NEWS 2011-12-18 06:15:22 +0000 (badc83e)
+++ NEWS 2011-12-18 06:50:26 +0000 (fc37088)
@@ -6,6 +6,39 @@
The history of Pikzie
+1.0.0: 2011-12-18
+=================
+
+Our repository has been moved to "GitHub
+<https://github.com/clear-code/pikzie>"_ from sourceforge.net.
+
+Improvements
+------------
+
+ * Supported subprocess. [Improved by Tetsuya Morimoto]
+ * Supported Python 3.2.
+ * Dropped Python 2.5 or earlier support.
+ * Changed an abbreviation character for ``re.DOTALL`` to
+ ``s`` instead of ``d`` because ``re.S`` means ``re.DOTALL``.
+ * Supported regular expression flags in ``--name`` and
+ ``--test-case``. ``/.../FLAGS`` format is
+ used. ``/.../i`` means case insensitive match.
+
+Fixes
+-----
+
+ * Fixed a problem that the same test files are loaded twice.
+ [Fixed by Hideo Hattori]
+ * Fixed a problem that test data output is failed when
+ data driven test is failed.
+ [pizke-users-ja:22] [Fixed by Tetsuya Morimoto]
+
+Thanks
+------
+
+ * Hideo Hattori
+ * Tetsuya Morimoto
+
0.9.7: 2010-05-24
=================
Modified: NEWS.ja (+33 -0)
===================================================================
--- NEWS.ja 2011-12-18 06:15:22 +0000 (9cdb442)
+++ NEWS.ja 2011-12-18 06:50:26 +0000 (a018a2f)
@@ -6,6 +6,39 @@
Pikzieの歴史
+1.0.0: 2011-12-18
+=================
+
+リポジトリをsourceforge.netから "GitHub
+<https://github.com/clear-code/pikzie>"_ へ移行しました。
+
+改良
+----
+
+ * subprocess対応。 [Tetsuya Morimotoさんが改良]
+ * Python 3.2対応。
+ * Python 2.5以下のサポートを終了。
+ * 正規表現を表示するときに ``re.DOTALL`` を示すために
+ ``d`` ではなく ``s`` を使うように変更。これは ``re.S``
+ とあわせるためである。
+ * ``--name`` と ``--test-case`` で 正規表現フラグに対応。
+ ``/.../フラグ`` という書式で ``/.../i`` とすると大文字小
+ 文字を区別してマッチする。
+
+修正
+----
+
+ * 同じファイルを2回読み込む問題を修正。
+ [Hideo Hattoriさんが修正]
+ * データ駆動テスト失敗時にテストデータの出力を失敗する問題を修正。
+ [pizke-users-ja:22] [Tetsuya Morimotoさんが修正]
+
+感謝
+----
+
+ * Hideo Hattoriさん
+ * Tetsuya Morimotoさん
+
0.9.7: 2010-05-24
=================
|
|
From: <nul...@cl...> - 2011-12-18 06:15:39
|
Kouhei Sutou 2011-12-18 06:15:22 +0000 (Sun, 18 Dec 2011)
New Revision: de8f76bf8d059424cfb121fd7f2814c4051d38e4
Log:
Subversion on SF.net -> git on GitHub.
Modified files:
README
README.ja
Modified: README (+4 -2)
===================================================================
--- README 2011-12-18 06:11:12 +0000 (94e6f03)
+++ README 2011-12-18 06:15:22 +0000 (51aadb7)
@@ -62,10 +62,12 @@ Install from tar.gz::
Repository
==========
-Subversion::
+There is "clear-code/pikzie
+<https://github.com/clear-code/pikzie>"_ on GitHub.
- % svn co https://pikzie.svn.sourceforge.net/svnroot/pikzie/trunk pikzie
+git::
+ % git clone https://github.com/clear-code/pikzie.git
Usage
=====
Modified: README.ja (+5 -2)
===================================================================
--- README.ja 2011-12-18 06:11:12 +0000 (ab3bf3d)
+++ README.ja 2011-12-18 06:15:22 +0000 (a81c84a)
@@ -62,9 +62,12 @@ tar.gzからインストール::
リポジトリ
==========
-Subversion::
+GitHubの "clear-code/pikzie
+<https://github.com/clear-code/pikzie>"_ にあります。
- % svn co https://pikzie.svn.sourceforge.net/svnroot/pikzie/trunk pikzie
+git::
+
+ % git clone https://github.com/clear-code/pikzie.git
使い方
======
|