OSDN Git Service

TagsPlugin導入
authorCake <cake_67@users.sourceforge.jp>
Fri, 21 Jan 2011 13:30:56 +0000 (22:30 +0900)
committerCake <cake_67@users.sourceforge.jp>
Fri, 21 Jan 2011 13:30:56 +0000 (22:30 +0900)
commit721be4304375ac6cfd4e001da5d6de95a922adce
treedde8b37a3681e854b64e8989a62e8e3508a15da2
parent81af5ebbde6e0c0f8d42e1829e029603655ef7ce
TagsPlugin導入
35 files changed:
app/config/schema/schema.php
app/config/sql/install/upgrade/bto1_0/upgrade.sql
app/plugins/tags/config/migrations/001_initialize_tags_schema.php [new file with mode: 0644]
app/plugins/tags/config/migrations/002_create_times_tagged_field.php [new file with mode: 0644]
app/plugins/tags/config/migrations/map.php [new file with mode: 0644]
app/plugins/tags/config/schema/tags.php [new file with mode: 0644]
app/plugins/tags/controllers/tags_controller.php [new file with mode: 0644]
app/plugins/tags/license.txt [new file with mode: 0644]
app/plugins/tags/locale/deu/LC_MESSAGES/tags.po [new file with mode: 0644]
app/plugins/tags/locale/fre/LC_MESSAGES/tags.po [new file with mode: 0644]
app/plugins/tags/locale/por/LC_MESSAGES/tags.po [new file with mode: 0644]
app/plugins/tags/locale/rus/LC_MESSAGES/tags.po [new file with mode: 0644]
app/plugins/tags/locale/spa/LC_MESSAGES/tags.po [new file with mode: 0644]
app/plugins/tags/locale/tags.pot [new file with mode: 0644]
app/plugins/tags/models/behaviors/taggable.php [new file with mode: 0644]
app/plugins/tags/models/tag.php [new file with mode: 0644]
app/plugins/tags/models/tagged.php [new file with mode: 0644]
app/plugins/tags/readme.md [new file with mode: 0644]
app/plugins/tags/tags_app_controller.php [new file with mode: 0644]
app/plugins/tags/tags_app_model.php [new file with mode: 0644]
app/plugins/tags/tests/cases/behaviors/taggable.test.php [new file with mode: 0644]
app/plugins/tags/tests/cases/controllers/tags_controller.test.php [new file with mode: 0644]
app/plugins/tags/tests/cases/helpers/tag_cloud.test.php [new file with mode: 0644]
app/plugins/tags/tests/cases/models/tag.test.php [new file with mode: 0644]
app/plugins/tags/tests/cases/models/tagged.test.php [new file with mode: 0644]
app/plugins/tags/tests/fixtures/article_fixture.php [new file with mode: 0644]
app/plugins/tags/tests/fixtures/tag_fixture.php [new file with mode: 0644]
app/plugins/tags/tests/fixtures/tagged_fixture.php [new file with mode: 0644]
app/plugins/tags/views/helpers/tag_cloud.php [new file with mode: 0644]
app/plugins/tags/views/tags/admin_add.ctp [new file with mode: 0644]
app/plugins/tags/views/tags/admin_edit.ctp [new file with mode: 0644]
app/plugins/tags/views/tags/admin_index.ctp [new file with mode: 0644]
app/plugins/tags/views/tags/admin_view.ctp [new file with mode: 0644]
app/plugins/tags/views/tags/index.ctp [new file with mode: 0644]
app/plugins/tags/views/tags/view.ctp [new file with mode: 0644]