enju_manifestation_viewer 0.1.0.pre4 → 0.1.0.pre5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/enju_manifestation_viewer/version.rb +1 -1
- data/spec/dummy/db/schema.rb +0 -2
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/test.log +564 -0
- data/spec/helpers/manifestation_viewer_helper_spec.rb +3 -3
- metadata +6 -5
- data/db/migrate/20090704145024_enju_scribd_fu_migration.rb +0 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a5a33ba870454e1d13ca66be5bd57b15920694af
|
4
|
+
data.tar.gz: 515384e0f253c06866b8682bc376e01e4b1bfa05
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 48c28aa4cc87fa08b560e6b4f69958d321fa1582fb0a3dcc882dd850caa5f9beddc5e5eb2343146aaa8063fe90cdad41ffcaf5ce2ec086844cae2bcdcdd991d8
|
7
|
+
data.tar.gz: 805eacdee931f4822697a9646702081602701e2925d4f00c9aa780ae028b83749e06a45d328f4e75e9ff541af806867327ddb11d1cf438f883cde3a2149f349b
|
data/spec/dummy/db/schema.rb
CHANGED
@@ -54,8 +54,6 @@ ActiveRecord::Schema.define(:version => 20110916091020) do
|
|
54
54
|
t.integer "required_score", :default => 0, :null => false
|
55
55
|
t.integer "frequency_id", :default => 1, :null => false
|
56
56
|
t.boolean "subscription_master", :default => false, :null => false
|
57
|
-
t.integer "ipaper_id"
|
58
|
-
t.string "ipaper_access_key"
|
59
57
|
t.integer "volume_number"
|
60
58
|
t.integer "issue_number"
|
61
59
|
t.integer "serial_number"
|
data/spec/dummy/db/test.sqlite3
CHANGED
Binary file
|
@@ -0,0 +1,564 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3
|
+
[1m[35m (1.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
4
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
5
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
6
|
+
Migrating to CreateManifestations (5)
|
7
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
8
|
+
[1m[35m (0.6ms)[0m CREATE TABLE "manifestations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "original_title" text NOT NULL, "title_alternative" text, "title_transcription" text, "classification_number" varchar(255), "manifestation_identifier" varchar(255), "date_of_publication" datetime, "copyright_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "deleted_at" datetime, "access_address" varchar(255), "language_id" integer DEFAULT 1 NOT NULL, "carrier_type_id" integer DEFAULT 1 NOT NULL, "extent_id" integer DEFAULT 1 NOT NULL, "start_page" integer, "end_page" integer, "height" integer, "width" integer, "depth" integer, "isbn" varchar(255), "isbn10" varchar(255), "wrong_isbn" varchar(255), "nbn" varchar(255), "lccn" varchar(255), "oclc_number" varchar(255), "issn" varchar(255), "price" integer, "fulltext" text, "volume_number_list" varchar(255), "issue_number_list" varchar(255), "serial_number_list" varchar(255), "edition" integer, "note" text, "repository_content" boolean DEFAULT 'f' NOT NULL, "lock_version" integer DEFAULT 0 NOT NULL, "required_role_id" integer DEFAULT 1 NOT NULL, "state" varchar(255), "required_score" integer DEFAULT 0 NOT NULL, "frequency_id" integer DEFAULT 1 NOT NULL, "subscription_master" boolean DEFAULT 'f' NOT NULL)
|
9
|
+
[1m[36m (0.2ms)[0m [1mCREATE INDEX "index_manifestations_on_carrier_type_id" ON "manifestations" ("carrier_type_id")[0m
|
10
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_manifestations_on_required_role_id" ON "manifestations" ("required_role_id")
|
11
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_manifestations_on_isbn" ON "manifestations" ("isbn")[0m
|
12
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_manifestations_on_nbn" ON "manifestations" ("nbn")
|
13
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_manifestations_on_lccn" ON "manifestations" ("lccn")[0m
|
14
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_manifestations_on_oclc_number" ON "manifestations" ("oclc_number")
|
15
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_manifestations_on_issn" ON "manifestations" ("issn")[0m
|
16
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_manifestations_on_access_address" ON "manifestations" ("access_address")
|
17
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_manifestations_on_frequency_id" ON "manifestations" ("frequency_id")[0m
|
18
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_manifestations_on_manifestation_identifier" ON "manifestations" ("manifestation_identifier")
|
19
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_manifestations_on_updated_at" ON "manifestations" ("updated_at")[0m
|
20
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('5')
|
21
|
+
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
|
22
|
+
Migrating to RenameManifestationNumberListToNumberString (20110916053430)
|
23
|
+
[1m[35m (0.0ms)[0m begin transaction
|
24
|
+
[1m[36m (0.9ms)[0m [1mCREATE TEMPORARY TABLE "altered_manifestations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "original_title" text NOT NULL, "title_alternative" text, "title_transcription" text, "classification_number" varchar(255), "manifestation_identifier" varchar(255), "date_of_publication" datetime, "copyright_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "deleted_at" datetime, "access_address" varchar(255), "language_id" integer DEFAULT 1 NOT NULL, "carrier_type_id" integer DEFAULT 1 NOT NULL, "extent_id" integer DEFAULT 1 NOT NULL, "start_page" integer, "end_page" integer, "height" integer, "width" integer, "depth" integer, "isbn" varchar(255), "isbn10" varchar(255), "wrong_isbn" varchar(255), "nbn" varchar(255), "lccn" varchar(255), "oclc_number" varchar(255), "issn" varchar(255), "price" integer, "fulltext" text, "volume_number_string" varchar(255), "issue_number_list" varchar(255), "serial_number_list" varchar(255), "edition" integer, "note" text, "repository_content" boolean DEFAULT 'f' NOT NULL, "lock_version" integer DEFAULT 0 NOT NULL, "required_role_id" integer DEFAULT 1 NOT NULL, "state" varchar(255), "required_score" integer DEFAULT 0 NOT NULL, "frequency_id" integer DEFAULT 1 NOT NULL, "subscription_master" boolean DEFAULT 'f' NOT NULL) [0m
|
25
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "temp_index_altered_manifestations_on_updated_at" ON "altered_manifestations" ("updated_at")
|
26
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "temp_index_altered_manifestations_on_manifestation_identifier" ON "altered_manifestations" ("manifestation_identifier")[0m
|
27
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "temp_index_altered_manifestations_on_frequency_id" ON "altered_manifestations" ("frequency_id")
|
28
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "temp_index_altered_manifestations_on_access_address" ON "altered_manifestations" ("access_address")[0m
|
29
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "temp_index_altered_manifestations_on_issn" ON "altered_manifestations" ("issn")
|
30
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "temp_index_altered_manifestations_on_oclc_number" ON "altered_manifestations" ("oclc_number")[0m
|
31
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "temp_index_altered_manifestations_on_lccn" ON "altered_manifestations" ("lccn")
|
32
|
+
[1m[36m (0.2ms)[0m [1mCREATE INDEX "temp_index_altered_manifestations_on_nbn" ON "altered_manifestations" ("nbn")[0m
|
33
|
+
[1m[35m (0.2ms)[0m CREATE INDEX "temp_index_altered_manifestations_on_isbn" ON "altered_manifestations" ("isbn")
|
34
|
+
[1m[36m (0.2ms)[0m [1mCREATE INDEX "temp_index_altered_manifestations_on_required_role_id" ON "altered_manifestations" ("required_role_id")[0m
|
35
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "temp_index_altered_manifestations_on_carrier_type_id" ON "altered_manifestations" ("carrier_type_id")
|
36
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "manifestations"[0m
|
37
|
+
[1m[35m (0.8ms)[0m DROP TABLE "manifestations"
|
38
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "manifestations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "original_title" text NOT NULL, "title_alternative" text, "title_transcription" text, "classification_number" varchar(255), "manifestation_identifier" varchar(255), "date_of_publication" datetime, "copyright_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "deleted_at" datetime, "access_address" varchar(255), "language_id" integer DEFAULT 1 NOT NULL, "carrier_type_id" integer DEFAULT 1 NOT NULL, "extent_id" integer DEFAULT 1 NOT NULL, "start_page" integer, "end_page" integer, "height" integer, "width" integer, "depth" integer, "isbn" varchar(255), "isbn10" varchar(255), "wrong_isbn" varchar(255), "nbn" varchar(255), "lccn" varchar(255), "oclc_number" varchar(255), "issn" varchar(255), "price" integer, "fulltext" text, "volume_number_string" varchar(255), "issue_number_list" varchar(255), "serial_number_list" varchar(255), "edition" integer, "note" text, "repository_content" boolean DEFAULT 'f' NOT NULL, "lock_version" integer DEFAULT 0 NOT NULL, "required_role_id" integer DEFAULT 1 NOT NULL, "state" varchar(255), "required_score" integer DEFAULT 0 NOT NULL, "frequency_id" integer DEFAULT 1 NOT NULL, "subscription_master" boolean DEFAULT 'f' NOT NULL) [0m
|
39
|
+
[1m[35m (0.2ms)[0m CREATE INDEX "index_manifestations_on_carrier_type_id" ON "manifestations" ("carrier_type_id")
|
40
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_manifestations_on_required_role_id" ON "manifestations" ("required_role_id")[0m
|
41
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_manifestations_on_isbn" ON "manifestations" ("isbn")
|
42
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_manifestations_on_nbn" ON "manifestations" ("nbn")[0m
|
43
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_manifestations_on_lccn" ON "manifestations" ("lccn")
|
44
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_manifestations_on_oclc_number" ON "manifestations" ("oclc_number")[0m
|
45
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_manifestations_on_issn" ON "manifestations" ("issn")
|
46
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_manifestations_on_access_address" ON "manifestations" ("access_address")[0m
|
47
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_manifestations_on_frequency_id" ON "manifestations" ("frequency_id")
|
48
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_manifestations_on_manifestation_identifier" ON "manifestations" ("manifestation_identifier")[0m
|
49
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_manifestations_on_updated_at" ON "manifestations" ("updated_at")
|
50
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "altered_manifestations"[0m
|
51
|
+
[1m[35m (0.6ms)[0m DROP TABLE "altered_manifestations"
|
52
|
+
[1m[36m (0.2ms)[0m [1mCREATE TEMPORARY TABLE "altered_manifestations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "original_title" text NOT NULL, "title_alternative" text, "title_transcription" text, "classification_number" varchar(255), "manifestation_identifier" varchar(255), "date_of_publication" datetime, "copyright_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "deleted_at" datetime, "access_address" varchar(255), "language_id" integer DEFAULT 1 NOT NULL, "carrier_type_id" integer DEFAULT 1 NOT NULL, "extent_id" integer DEFAULT 1 NOT NULL, "start_page" integer, "end_page" integer, "height" integer, "width" integer, "depth" integer, "isbn" varchar(255), "isbn10" varchar(255), "wrong_isbn" varchar(255), "nbn" varchar(255), "lccn" varchar(255), "oclc_number" varchar(255), "issn" varchar(255), "price" integer, "fulltext" text, "volume_number_string" varchar(255), "issue_number_string" varchar(255), "serial_number_list" varchar(255), "edition" integer, "note" text, "repository_content" boolean DEFAULT 'f' NOT NULL, "lock_version" integer DEFAULT 0 NOT NULL, "required_role_id" integer DEFAULT 1 NOT NULL, "state" varchar(255), "required_score" integer DEFAULT 0 NOT NULL, "frequency_id" integer DEFAULT 1 NOT NULL, "subscription_master" boolean DEFAULT 'f' NOT NULL) [0m
|
53
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "temp_index_altered_manifestations_on_updated_at" ON "altered_manifestations" ("updated_at")
|
54
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "temp_index_altered_manifestations_on_manifestation_identifier" ON "altered_manifestations" ("manifestation_identifier")[0m
|
55
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "temp_index_altered_manifestations_on_frequency_id" ON "altered_manifestations" ("frequency_id")
|
56
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "temp_index_altered_manifestations_on_access_address" ON "altered_manifestations" ("access_address")[0m
|
57
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "temp_index_altered_manifestations_on_issn" ON "altered_manifestations" ("issn")
|
58
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "temp_index_altered_manifestations_on_oclc_number" ON "altered_manifestations" ("oclc_number")[0m
|
59
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "temp_index_altered_manifestations_on_lccn" ON "altered_manifestations" ("lccn")
|
60
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "temp_index_altered_manifestations_on_nbn" ON "altered_manifestations" ("nbn")[0m
|
61
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "temp_index_altered_manifestations_on_isbn" ON "altered_manifestations" ("isbn")
|
62
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "temp_index_altered_manifestations_on_required_role_id" ON "altered_manifestations" ("required_role_id")[0m
|
63
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "temp_index_altered_manifestations_on_carrier_type_id" ON "altered_manifestations" ("carrier_type_id")
|
64
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "manifestations"[0m
|
65
|
+
[1m[35m (0.5ms)[0m DROP TABLE "manifestations"
|
66
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "manifestations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "original_title" text NOT NULL, "title_alternative" text, "title_transcription" text, "classification_number" varchar(255), "manifestation_identifier" varchar(255), "date_of_publication" datetime, "copyright_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "deleted_at" datetime, "access_address" varchar(255), "language_id" integer DEFAULT 1 NOT NULL, "carrier_type_id" integer DEFAULT 1 NOT NULL, "extent_id" integer DEFAULT 1 NOT NULL, "start_page" integer, "end_page" integer, "height" integer, "width" integer, "depth" integer, "isbn" varchar(255), "isbn10" varchar(255), "wrong_isbn" varchar(255), "nbn" varchar(255), "lccn" varchar(255), "oclc_number" varchar(255), "issn" varchar(255), "price" integer, "fulltext" text, "volume_number_string" varchar(255), "issue_number_string" varchar(255), "serial_number_list" varchar(255), "edition" integer, "note" text, "repository_content" boolean DEFAULT 'f' NOT NULL, "lock_version" integer DEFAULT 0 NOT NULL, "required_role_id" integer DEFAULT 1 NOT NULL, "state" varchar(255), "required_score" integer DEFAULT 0 NOT NULL, "frequency_id" integer DEFAULT 1 NOT NULL, "subscription_master" boolean DEFAULT 'f' NOT NULL) [0m
|
67
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_manifestations_on_carrier_type_id" ON "manifestations" ("carrier_type_id")
|
68
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_manifestations_on_required_role_id" ON "manifestations" ("required_role_id")[0m
|
69
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_manifestations_on_isbn" ON "manifestations" ("isbn")
|
70
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_manifestations_on_nbn" ON "manifestations" ("nbn")[0m
|
71
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_manifestations_on_lccn" ON "manifestations" ("lccn")
|
72
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_manifestations_on_oclc_number" ON "manifestations" ("oclc_number")[0m
|
73
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_manifestations_on_issn" ON "manifestations" ("issn")
|
74
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_manifestations_on_access_address" ON "manifestations" ("access_address")[0m
|
75
|
+
[1m[35m (0.2ms)[0m CREATE INDEX "index_manifestations_on_frequency_id" ON "manifestations" ("frequency_id")
|
76
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_manifestations_on_manifestation_identifier" ON "manifestations" ("manifestation_identifier")[0m
|
77
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_manifestations_on_updated_at" ON "manifestations" ("updated_at")
|
78
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "altered_manifestations"[0m
|
79
|
+
[1m[35m (0.3ms)[0m DROP TABLE "altered_manifestations"
|
80
|
+
[1m[36m (0.2ms)[0m [1mCREATE TEMPORARY TABLE "altered_manifestations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "original_title" text NOT NULL, "title_alternative" text, "title_transcription" text, "classification_number" varchar(255), "manifestation_identifier" varchar(255), "date_of_publication" datetime, "copyright_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "deleted_at" datetime, "access_address" varchar(255), "language_id" integer DEFAULT 1 NOT NULL, "carrier_type_id" integer DEFAULT 1 NOT NULL, "extent_id" integer DEFAULT 1 NOT NULL, "start_page" integer, "end_page" integer, "height" integer, "width" integer, "depth" integer, "isbn" varchar(255), "isbn10" varchar(255), "wrong_isbn" varchar(255), "nbn" varchar(255), "lccn" varchar(255), "oclc_number" varchar(255), "issn" varchar(255), "price" integer, "fulltext" text, "volume_number_string" varchar(255), "issue_number_string" varchar(255), "serial_number_string" varchar(255), "edition" integer, "note" text, "repository_content" boolean DEFAULT 'f' NOT NULL, "lock_version" integer DEFAULT 0 NOT NULL, "required_role_id" integer DEFAULT 1 NOT NULL, "state" varchar(255), "required_score" integer DEFAULT 0 NOT NULL, "frequency_id" integer DEFAULT 1 NOT NULL, "subscription_master" boolean DEFAULT 'f' NOT NULL) [0m
|
81
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "temp_index_altered_manifestations_on_updated_at" ON "altered_manifestations" ("updated_at")
|
82
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "temp_index_altered_manifestations_on_manifestation_identifier" ON "altered_manifestations" ("manifestation_identifier")[0m
|
83
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "temp_index_altered_manifestations_on_frequency_id" ON "altered_manifestations" ("frequency_id")
|
84
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "temp_index_altered_manifestations_on_access_address" ON "altered_manifestations" ("access_address")[0m
|
85
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "temp_index_altered_manifestations_on_issn" ON "altered_manifestations" ("issn")
|
86
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "temp_index_altered_manifestations_on_oclc_number" ON "altered_manifestations" ("oclc_number")[0m
|
87
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "temp_index_altered_manifestations_on_lccn" ON "altered_manifestations" ("lccn")
|
88
|
+
[1m[36m (0.2ms)[0m [1mCREATE INDEX "temp_index_altered_manifestations_on_nbn" ON "altered_manifestations" ("nbn")[0m
|
89
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "temp_index_altered_manifestations_on_isbn" ON "altered_manifestations" ("isbn")
|
90
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "temp_index_altered_manifestations_on_required_role_id" ON "altered_manifestations" ("required_role_id")[0m
|
91
|
+
[1m[35m (0.2ms)[0m CREATE INDEX "temp_index_altered_manifestations_on_carrier_type_id" ON "altered_manifestations" ("carrier_type_id")
|
92
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "manifestations"[0m
|
93
|
+
[1m[35m (0.3ms)[0m DROP TABLE "manifestations"
|
94
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "manifestations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "original_title" text NOT NULL, "title_alternative" text, "title_transcription" text, "classification_number" varchar(255), "manifestation_identifier" varchar(255), "date_of_publication" datetime, "copyright_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "deleted_at" datetime, "access_address" varchar(255), "language_id" integer DEFAULT 1 NOT NULL, "carrier_type_id" integer DEFAULT 1 NOT NULL, "extent_id" integer DEFAULT 1 NOT NULL, "start_page" integer, "end_page" integer, "height" integer, "width" integer, "depth" integer, "isbn" varchar(255), "isbn10" varchar(255), "wrong_isbn" varchar(255), "nbn" varchar(255), "lccn" varchar(255), "oclc_number" varchar(255), "issn" varchar(255), "price" integer, "fulltext" text, "volume_number_string" varchar(255), "issue_number_string" varchar(255), "serial_number_string" varchar(255), "edition" integer, "note" text, "repository_content" boolean DEFAULT 'f' NOT NULL, "lock_version" integer DEFAULT 0 NOT NULL, "required_role_id" integer DEFAULT 1 NOT NULL, "state" varchar(255), "required_score" integer DEFAULT 0 NOT NULL, "frequency_id" integer DEFAULT 1 NOT NULL, "subscription_master" boolean DEFAULT 'f' NOT NULL) [0m
|
95
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_manifestations_on_carrier_type_id" ON "manifestations" ("carrier_type_id")
|
96
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_manifestations_on_required_role_id" ON "manifestations" ("required_role_id")[0m
|
97
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_manifestations_on_isbn" ON "manifestations" ("isbn")
|
98
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_manifestations_on_nbn" ON "manifestations" ("nbn")[0m
|
99
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_manifestations_on_lccn" ON "manifestations" ("lccn")
|
100
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_manifestations_on_oclc_number" ON "manifestations" ("oclc_number")[0m
|
101
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_manifestations_on_issn" ON "manifestations" ("issn")
|
102
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_manifestations_on_access_address" ON "manifestations" ("access_address")[0m
|
103
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_manifestations_on_frequency_id" ON "manifestations" ("frequency_id")
|
104
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_manifestations_on_manifestation_identifier" ON "manifestations" ("manifestation_identifier")[0m
|
105
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_manifestations_on_updated_at" ON "manifestations" ("updated_at")
|
106
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "altered_manifestations"[0m
|
107
|
+
[1m[35m (0.3ms)[0m DROP TABLE "altered_manifestations"
|
108
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110916053430')[0m
|
109
|
+
[1m[35m (1.7ms)[0m commit transaction
|
110
|
+
Migrating to AddVolumeNumberToManifestation (20110916091020)
|
111
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
112
|
+
[1m[35m (0.6ms)[0m ALTER TABLE "manifestations" ADD "volume_number" integer
|
113
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "manifestations" ADD "issue_number" integer[0m
|
114
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "manifestations" ADD "serial_number" integer
|
115
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110916091020')[0m
|
116
|
+
[1m[35m (1.0ms)[0m commit transaction
|
117
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
118
|
+
Connecting to database specified by database.yml
|
119
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
120
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "manifestations"
|
121
|
+
[1m[36mFixture Insert (0.2ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "start_page", "end_page", "repository_content") VALUES (1, 1, '4798002062', '2007-11-19 07:59:00.293393', 'ãããããææ°Webãµã¼ãã¹æè¡', NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, '2007-11-19 07:59:00.293393', 1, 100, 't')[0m
|
122
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "repository_content") VALUES (1, 1, '4915724824', '2007-11-19 07:59:01.991512', 'æ
å ±éä¿¡ãã³ãããã¯2005', NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, '2007-11-19 07:59:01.991512', 'f')
|
123
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '4897063590', '2007-11-19 07:59:02.618359', 'これからの生命科学研究者のためのバイオ特許入門講座', NULL, NULL, NULL, NULL, 'http://www.slis.keio.ac.jp/', 3, NULL, NULL, '2007-11-19 07:59:02.618359')[0m
|
124
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0471412791', '2007-11-19 07:59:03.275738', 'THE BIOTECH INVESTOR''S BIBLE', NULL, NULL, NULL, NULL, NULL, 4, NULL, NULL, '2007-11-19 07:59:03.275738')
|
125
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '', '2007-11-19 07:59:04.333183', '顧客満足型マーケティングの構図', NULL, NULL, NULL, NULL, NULL, 5, NULL, NULL, '2007-11-19 07:59:04.333183')[0m
|
126
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '', '2007-11-19 07:59:05.255684', '仕組み革新の時代', NULL, NULL, NULL, NULL, NULL, 6, NULL, NULL, '2007-11-19 07:59:05.255684')
|
127
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0470844701', '2007-11-19 07:59:06.892741', 'dictionary of e-business', NULL, NULL, NULL, NULL, NULL, 7, NULL, NULL, '2007-11-19 07:59:06.892741')[0m
|
128
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '4798101028', '2007-11-19 07:59:07.463333', 'Webãµã¼ãã¹å®å
¨è§£èª¬', NULL, NULL, NULL, NULL, NULL, 8, NULL, NULL, '2007-11-19 07:59:07.463333')
|
129
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '4641143331', '2007-11-19 07:59:08.166195', '逐条解説不正競争防止法', NULL, NULL, NULL, NULL, NULL, 9, NULL, NULL, '2007-11-19 07:59:08.166195')[0m
|
130
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '9784774127804', '2007-11-19 07:59:09.799724', 'Apache Lucene入門 : Java・オープンソース・全文検索システムの構築', NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, '2007-11-19 07:59:09.799724')
|
131
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id") VALUES (1, '4822281167', '2007-11-19 07:59:20.799724', 'Webãµã¼ãã¹å®å
¨æ§ç¯ã¬ã¤ã', NULL, NULL, NULL, NULL, NULL, 11, NULL, NULL, '2007-11-19 07:59:20.799724', 2)[0m
|
132
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id") VALUES (1, NULL, '2007-11-19 07:59:21.799724', 'YouTube - Open Source ILS Song', NULL, NULL, NULL, NULL, 'http://jp.youtube.com/watch?v=BSHBzd9ftDE', 22, NULL, NULL, '2008-04-16 15:34:01.000000', 1)
|
133
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id") VALUES (1, NULL, '2008-04-16 15:34:01.000000', '世界の美しい図書館集めてみた【第一弾】', NULL, NULL, NULL, NULL, 'http://www.nicovideo.jp/watch/sm3015373', 23, NULL, NULL, '2007-11-19 07:58:58.799724', 4)[0m
|
134
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 65, '2010-03-01 07:14:18.000000', 'CGI基礎講座 : Perl・プログラミング・日本語処理', NULL, NULL, NULL, NULL, NULL, 101, NULL, NULL, '2010-02-21 15:47:09.000000')
|
135
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 66, '2010-03-01 07:14:18.000000', 'CGIレスキュー実践Perlプログラミング : Web裏技', NULL, NULL, NULL, NULL, NULL, 102, NULL, NULL, '2010-02-21 14:57:08.000000')[0m
|
136
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 67, '2010-03-01 07:14:18.000000', 'Perlクックブック. v.2', NULL, NULL, NULL, NULL, NULL, 103, NULL, NULL, '2010-02-21 10:51:48.000000')
|
137
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 68, '2010-03-01 07:14:18.000000', 'Perlクックブック. v.1', NULL, NULL, NULL, NULL, NULL, 104, NULL, NULL, '2010-02-21 10:51:33.000000')[0m
|
138
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 69, '2010-03-01 07:14:18.000000', '初めてのPerl. 続', NULL, NULL, NULL, NULL, NULL, 105, NULL, NULL, '2010-02-21 10:48:14.000000')
|
139
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 70, '2010-03-01 07:14:18.000000', 'Perl & XML', NULL, NULL, NULL, NULL, NULL, 106, NULL, NULL, '2010-02-21 10:45:48.000000')[0m
|
140
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 71, '2010-03-01 07:14:18.000000', 'はじめてのPerlモジュール : 厳選実用モジュール集', NULL, NULL, NULL, NULL, NULL, 107, NULL, NULL, '2010-02-21 09:59:01.000000')
|
141
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000108', '2010-03-01 07:14:18.000000', 'Perl 5パワフルテクニック大全集', NULL, NULL, NULL, NULL, NULL, 108, NULL, NULL, '2010-02-21 08:13:17.000000')[0m
|
142
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000109', '2010-03-01 07:14:18.000000', 'CGI/Perlパワープログラミング', NULL, NULL, NULL, NULL, NULL, 109, NULL, NULL, '2010-02-20 17:26:08.000000')
|
143
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 72, '2010-03-01 07:14:18.000000', 'Ruby/GTKプログラミング入門 : Rubyで作って遊ぶGUIプログラミング', NULL, NULL, NULL, NULL, NULL, 110, NULL, NULL, '2010-02-19 13:09:56.000000')[0m
|
144
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 73, '2010-03-01 07:14:18.000000', 'すぐわかるPerl', NULL, NULL, NULL, NULL, NULL, 111, NULL, NULL, '2010-02-19 13:07:28.000000')
|
145
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 74, '2010-03-01 07:14:18.000000', 'CGIのための実践入門Perl : 対話的・動きのあるWebページを作ろう', NULL, NULL, NULL, NULL, NULL, 112, NULL, NULL, '2010-02-19 13:06:51.000000')[0m
|
146
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 75, '2010-03-01 07:14:18.000000', 'プログラミングは難しくない! : ウェブではじめるJavaScript/Perl/Java', NULL, NULL, NULL, NULL, NULL, 113, NULL, NULL, '2010-02-19 11:02:27.000000')
|
147
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784756137470, '2010-03-01 07:14:18.000000', 'Rubyを256倍使うための本. 魔道編', NULL, NULL, NULL, '2001-03-20', NULL, 114, NULL, NULL, '2010-02-19 05:46:08.000000')[0m
|
148
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 77, '2010-03-01 07:14:18.000000', '入門Perl', NULL, NULL, NULL, NULL, NULL, 115, NULL, NULL, '2010-02-19 05:40:17.000000')
|
149
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784756100917, '2010-03-01 07:14:18.000000', 'sed & awkプログラミング : UNIX power tools', NULL, NULL, NULL, '1991-12-24', NULL, 116, NULL, NULL, '2010-02-19 05:39:01.000000')[0m
|
150
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 79, '2010-03-01 07:14:18.000000', 'Perlの達人', NULL, NULL, NULL, NULL, NULL, 117, NULL, NULL, '2010-02-18 10:23:27.000000')
|
151
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000118', '2010-03-01 07:14:18.000000', 'ナチ強制・絶滅収容所 : 18施設内の生と死', NULL, NULL, NULL, NULL, NULL, 118, NULL, NULL, '2010-02-17 01:12:08.000000')[0m
|
152
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000119', '2010-03-01 07:14:18.000000', 'Perl基礎講座', NULL, NULL, NULL, NULL, NULL, 119, NULL, NULL, '2010-02-16 04:30:37.000000')
|
153
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784274063855, '2010-03-01 07:14:18.000000', 'Rubyプログラミング入門', NULL, NULL, NULL, '2000-10-01', NULL, 120, NULL, NULL, '2010-02-16 04:29:59.000000')[0m
|
154
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 81, '2010-03-01 07:14:18.000000', 'Django×Python', NULL, NULL, NULL, NULL, NULL, 121, NULL, NULL, '2010-01-30 06:22:35.000000')
|
155
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 82, '2010-03-01 07:14:18.000000', 'みんなのPython', NULL, NULL, NULL, NULL, NULL, 122, NULL, NULL, '2010-01-30 06:17:32.000000')[0m
|
156
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 83, '2010-03-01 07:14:18.000000', 'Rubyでgroonga使って全文検索 - ラングバ', NULL, NULL, NULL, NULL, NULL, 123, NULL, NULL, '2009-10-25 13:20:34.000000')
|
157
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 84, '2010-03-01 07:14:18.000000', 'まちづくり三鷹図書館(Ruby図書館情報システム デモサイト)', NULL, NULL, NULL, NULL, NULL, 124, NULL, NULL, '2009-10-20 13:46:44.000000')[0m
|
158
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 85, '2010-03-01 07:14:18.000000', 'Ruby on Rails入門 : 優しいRailsの育て方', NULL, NULL, NULL, NULL, NULL, 125, NULL, NULL, '2009-10-16 05:16:48.000000')
|
159
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 86, '2010-03-01 07:14:18.000000', 'Ruby Cookbook', NULL, NULL, NULL, NULL, NULL, 126, NULL, NULL, '2009-06-29 12:44:11.000000')[0m
|
160
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 87, '2010-03-01 07:14:18.000000', 'CGI programming on the World Wide Web', NULL, NULL, NULL, NULL, NULL, 127, NULL, NULL, '2009-06-19 13:45:14.000000')
|
161
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000128', '2010-03-01 07:14:18.000000', 'Genomic Perl', NULL, NULL, NULL, NULL, NULL, 128, NULL, NULL, '2009-06-19 13:27:46.000000')[0m
|
162
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000129', '2010-03-01 07:14:18.000000', 'Indians of the Pacific Northwest', NULL, NULL, NULL, NULL, NULL, 129, NULL, NULL, '2009-06-19 12:16:23.000000')
|
163
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 88, '2010-03-01 07:14:18.000000', 'Massachusetts acid rain monitoring project / Massachusetts acid rain monitoring project A.R.M', NULL, NULL, NULL, NULL, NULL, 130, NULL, NULL, '2009-06-19 12:03:29.000000')[0m
|
164
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 89, '2010-03-01 07:14:18.000000', 'International Symposium Genes and Chromosomes Structure and Function', NULL, NULL, NULL, NULL, NULL, 131, NULL, NULL, '2009-06-19 12:02:48.000000')
|
165
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 90, '2010-03-01 07:14:18.000000', 'Perl black book, 2nd edition', NULL, NULL, NULL, NULL, NULL, 132, NULL, NULL, '2009-06-19 11:42:02.000000')[0m
|
166
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 91, '2010-03-01 07:14:18.000000', 'Python scripting for computational science', NULL, NULL, NULL, NULL, NULL, 133, NULL, NULL, '2009-06-19 11:18:01.000000')
|
167
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 92, '2010-03-01 07:14:18.000000', 'Tests on a gold ore from the Ruby Basin, Black Hills', NULL, NULL, NULL, NULL, NULL, 134, NULL, NULL, '2009-06-19 11:06:07.000000')[0m
|
168
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 93, '2010-03-01 07:14:18.000000', 'Official guide to programming with CGI.pm / Programming with CGI.pm / Official guide to programming with CGI.pm', NULL, NULL, NULL, NULL, NULL, 135, NULL, NULL, '2009-06-19 10:54:21.000000')
|
169
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 94, '2010-03-01 07:14:18.000000', 'Three little words [sound recording] / Nevertheless (I''m in love with you) / I love you so much / All alone Monday / Where did you get that girl? / Thinking of you / I wanna be loved by you / Who''s sorry now? / My sunny Tennessee / So long Oolong / Three little words', NULL, NULL, NULL, NULL, NULL, 136, NULL, NULL, '2009-06-19 10:46:46.000000')[0m
|
170
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 95, '2010-03-01 07:14:18.000000', 'Femtosecond time-resolved spectroscopy of organic molecular crystals / Time-resolved spectroscopy of organic molecular crystals, Femtosecond', NULL, NULL, NULL, NULL, NULL, 137, NULL, NULL, '2009-06-19 10:18:59.000000')
|
171
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000138', '2010-03-01 07:14:18.000000', 'CGI programming with Perl', NULL, NULL, NULL, NULL, NULL, 138, NULL, NULL, '2009-06-19 09:19:08.000000')[0m
|
172
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000139', '2010-03-01 07:14:18.000000', 'Python and XML / Python & XML / XML processing with Python', NULL, NULL, NULL, NULL, NULL, 139, NULL, NULL, '2009-06-19 09:19:02.000000')
|
173
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 96, '2010-03-01 07:14:18.000000', 'Perl cookbook / Solutions and examples for Perl programmers', NULL, NULL, NULL, NULL, NULL, 140, NULL, NULL, '2009-06-19 09:19:01.000000')[0m
|
174
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 97, '2010-03-01 07:14:18.000000', 'Mastering Perl/Tk / Perl/Tk', NULL, NULL, NULL, NULL, NULL, 141, NULL, NULL, '2009-06-19 09:19:00.000000')
|
175
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 98, '2010-03-01 07:14:18.000000', 'Mastering algorithms with Perl / Practical programming through computer science', NULL, NULL, NULL, NULL, NULL, 142, NULL, NULL, '2009-06-19 09:18:58.000000')[0m
|
176
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 99, '2010-03-01 07:14:18.000000', 'Programming Perl', NULL, NULL, NULL, NULL, NULL, 143, NULL, NULL, '2009-06-19 09:18:45.000000')
|
177
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 100, '2010-03-01 07:14:18.000000', 'Fort Worth & Tarrant County / Fort Worth and Tarrant County', NULL, NULL, NULL, NULL, NULL, 144, NULL, NULL, '2009-06-19 07:49:42.000000')[0m
|
178
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 101, '2010-03-01 07:14:18.000000', 'Monty Python''s Spamalot [sound recording] / Spamalot / Spamalot / Monty Python and the Holy Grail (Motion picture)', NULL, NULL, NULL, NULL, NULL, 145, NULL, NULL, '2009-06-19 06:44:35.000000')
|
179
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 102, '2010-03-01 07:14:18.000000', 'AWK programming language', NULL, NULL, NULL, NULL, NULL, 146, NULL, NULL, '2009-06-19 06:28:27.000000')[0m
|
180
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 103, '2010-03-01 07:14:18.000000', 'Toting the lead row', NULL, NULL, NULL, NULL, NULL, 147, NULL, NULL, '2009-06-19 02:16:22.000000')
|
181
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000148', '2010-03-01 07:14:18.000000', 'Afro-American blues and game songs', NULL, NULL, NULL, NULL, NULL, 148, NULL, NULL, '2009-06-19 02:09:17.000000')[0m
|
182
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000149', '2010-03-01 07:14:18.000000', 'Perl/Tk pocket reference', NULL, NULL, NULL, NULL, NULL, 149, NULL, NULL, '2009-06-19 01:10:56.000000')
|
183
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 104, '2010-03-01 07:14:18.000000', 'politics of improving urban air quality', NULL, NULL, NULL, NULL, NULL, 150, NULL, NULL, '2009-06-19 00:42:38.000000')[0m
|
184
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 105, '2010-03-01 07:14:18.000000', 'Perl developer''s dictionary', NULL, NULL, NULL, NULL, NULL, 151, NULL, NULL, '2009-06-19 00:13:13.000000')
|
185
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 106, '2010-03-01 07:14:18.000000', 'Andrテδゥ Poitiers', NULL, NULL, NULL, NULL, NULL, 152, NULL, NULL, '2009-06-18 23:58:14.000000')[0m
|
186
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 107, '2010-03-01 07:14:18.000000', 'PERL and CGI for the World Wide Web [electronic resource] / Visual QuickStart guide', NULL, NULL, NULL, NULL, NULL, 153, NULL, NULL, '2009-06-18 23:43:08.000000')
|
187
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 108, '2010-03-01 07:14:18.000000', 'Python tutorial', NULL, NULL, NULL, NULL, NULL, 154, NULL, NULL, '2009-06-18 23:17:40.000000')[0m
|
188
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 109, '2010-03-01 07:14:18.000000', 'Line shapes of paramagnetic resonances in ruby', NULL, NULL, NULL, NULL, NULL, 155, NULL, NULL, '2009-06-18 22:44:00.000000')
|
189
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 110, '2010-03-01 07:14:18.000000', 'Perl programmer''s reference', NULL, NULL, NULL, NULL, NULL, 156, NULL, NULL, '2009-06-18 22:19:34.000000')[0m
|
190
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 111, '2010-03-01 07:14:18.000000', 'Technological capabilities in developing countries', NULL, NULL, NULL, NULL, NULL, 157, NULL, NULL, '2009-06-18 21:58:42.000000')
|
191
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000158', '2010-03-01 07:14:18.000000', 'phenomena of vagueness', NULL, NULL, NULL, NULL, NULL, 158, NULL, NULL, '2009-06-18 21:44:38.000000')[0m
|
192
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000159', '2010-03-01 07:14:18.000000', 'theory of consumer''s demand', NULL, NULL, NULL, NULL, NULL, 159, NULL, NULL, '2009-06-18 21:10:02.000000')
|
193
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 112, '2010-03-01 07:14:18.000000', 'theory of consumer''s demand', NULL, NULL, NULL, NULL, NULL, 160, NULL, NULL, '2009-06-18 21:10:01.000000')[0m
|
194
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 113, '2010-03-01 07:14:18.000000', 'Monty Python, Shakespeare, and English Renaissance drama', NULL, NULL, NULL, NULL, NULL, 161, NULL, NULL, '2009-06-18 20:37:58.000000')
|
195
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 114, '2010-03-01 07:14:18.000000', 'Analyzing computer system performance with PERL::PDQ', NULL, NULL, NULL, NULL, NULL, 162, NULL, NULL, '2009-06-18 20:29:54.000000')[0m
|
196
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 115, '2010-03-01 07:14:18.000000', 'equilibrium of the reaction between the manganate, permanganate, and hydroxide of potassium, and manganese dioxide', NULL, NULL, NULL, NULL, NULL, 163, NULL, NULL, '2009-06-18 20:16:44.000000')
|
197
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 116, '2010-03-01 07:14:18.000000', 'Stimulated optical emission in ruby', NULL, NULL, NULL, NULL, NULL, 164, NULL, NULL, '2009-06-18 20:05:25.000000')[0m
|
198
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 117, '2010-03-01 07:14:18.000000', 'Strategic planning and risk analysis', NULL, NULL, NULL, NULL, NULL, 165, NULL, NULL, '2009-06-18 17:41:41.000000')
|
199
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 118, '2010-03-01 07:14:18.000000', 'Performance assertion checking', NULL, NULL, NULL, NULL, NULL, 166, NULL, NULL, '2009-06-18 17:34:03.000000')[0m
|
200
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 119, '2010-03-01 07:14:18.000000', 'Spin-lattice relaxation time of ruby', NULL, NULL, NULL, NULL, NULL, 167, NULL, NULL, '2009-06-18 16:26:38.000000')
|
201
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000168', '2010-03-01 07:14:18.000000', 'Mourning Ruby', NULL, NULL, NULL, NULL, NULL, 168, NULL, NULL, '2009-06-18 16:25:25.000000')[0m
|
202
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000169', '2010-03-01 07:14:18.000000', 'statistical analysis of banking performance in the Eastern Caribbean Currency Union in the 1990s', NULL, NULL, NULL, NULL, NULL, 169, NULL, NULL, '2009-06-18 15:53:44.000000')
|
203
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 120, '2010-03-01 07:14:18.000000', 'Professional Perl programming / Perl programming', NULL, NULL, NULL, NULL, NULL, 170, NULL, NULL, '2009-06-18 15:52:50.000000')[0m
|
204
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 121, '2010-03-01 07:14:18.000000', 'Perl in a nutshell', NULL, NULL, NULL, NULL, NULL, 171, NULL, NULL, '2009-06-18 15:40:53.000000')
|
205
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 122, '2010-03-01 07:14:18.000000', 'Programming Web services with Perl', NULL, NULL, NULL, NULL, NULL, 172, NULL, NULL, '2009-06-18 15:34:21.000000')[0m
|
206
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 123, '2010-03-01 07:14:18.000000', 'Proceedings of the Trieste Workshop on the search for New Elementary Particles / International journal of modern physics / Search for new elementary particles', NULL, NULL, NULL, NULL, NULL, 173, NULL, NULL, '2009-06-18 15:08:06.000000')
|
207
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 124, '2010-03-01 07:14:18.000000', 'Europeras 3 & 4 / Europera', NULL, NULL, NULL, NULL, NULL, 174, NULL, NULL, '2009-06-18 15:05:43.000000')[0m
|
208
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 125, '2010-03-01 07:14:18.000000', 'Retreats from realism in recent English drama', NULL, NULL, NULL, NULL, NULL, 175, NULL, NULL, '2009-06-18 15:03:06.000000')
|
209
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 126, '2010-03-01 07:14:18.000000', 'Python programming patterns', NULL, NULL, NULL, NULL, NULL, 176, NULL, NULL, '2009-06-18 14:52:11.000000')[0m
|
210
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 127, '2010-03-01 07:14:18.000000', 'Beginning Perl for bioinformatics', NULL, NULL, NULL, NULL, NULL, 177, NULL, NULL, '2009-06-18 13:45:13.000000')
|
211
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000178', '2010-03-01 07:14:18.000000', 'Learning Perl', NULL, NULL, NULL, NULL, NULL, 178, NULL, NULL, '2009-06-18 13:45:11.000000')[0m
|
212
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000179', '2010-03-01 07:14:18.000000', 'Effective awk programming', NULL, NULL, NULL, NULL, NULL, 179, NULL, NULL, '2009-06-18 13:45:09.000000')
|
213
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000180', '2010-03-01 07:14:18.000000', 'Python standard library / Annotated reference for Python 2.0', NULL, NULL, NULL, NULL, NULL, 180, NULL, NULL, '2009-06-18 13:45:04.000000')[0m
|
214
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000181', '2010-03-01 07:14:18.000000', 'Programming Python', NULL, NULL, NULL, NULL, NULL, 181, NULL, NULL, '2009-06-18 13:45:04.000000')
|
215
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000182', '2010-03-01 07:14:18.000000', 'Perl CD bookshelf', NULL, NULL, NULL, NULL, NULL, 182, NULL, NULL, '2009-06-18 13:44:56.000000')[0m
|
216
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000183', '2010-03-01 07:14:18.000000', 'Programming Perl', NULL, NULL, NULL, NULL, NULL, 183, NULL, NULL, '2009-06-18 13:44:55.000000')
|
217
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000184', '2010-03-01 07:14:18.000000', 'Sed & awk pocket reference / Sed and awk pocket reference', NULL, NULL, NULL, NULL, NULL, 184, NULL, NULL, '2009-06-18 13:44:54.000000')[0m
|
218
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000185', '2010-03-01 07:14:18.000000', 'Perl power!', NULL, NULL, NULL, NULL, NULL, 185, NULL, NULL, '2009-06-18 13:41:37.000000')
|
219
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000186', '2010-03-01 07:14:18.000000', 'ATOKダイレクト API for Perl / Ruby?|?さらに使いこなす?|?ATOK.com', NULL, NULL, NULL, NULL, NULL, 186, NULL, NULL, '2008-12-19 17:52:47.000000')[0m
|
220
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000187', '2010-03-01 07:14:18.000000', 'Welcome ― Ruby Enterprise Edition', NULL, NULL, NULL, NULL, NULL, 187, NULL, NULL, '2008-10-19 15:58:50.000000')
|
221
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000188', '2010-03-01 07:14:18.000000', 'Pythonクックブック', NULL, NULL, NULL, NULL, NULL, 188, NULL, NULL, '2008-08-22 00:27:29.000000')[0m
|
222
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000189', '2010-03-01 07:14:18.000000', 'みんなのPython インデントの世界へようこそ! object oriented-lightweight language Python', NULL, NULL, NULL, NULL, NULL, 189, NULL, NULL, '2008-08-22 00:20:59.000000')
|
223
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000190', '2010-03-01 07:14:18.000000', 'Django | The Web framework for perfectionists with deadlines', NULL, NULL, NULL, NULL, NULL, 190, NULL, NULL, '2008-05-20 13:06:31.000000')[0m
|
224
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000191', '2010-03-01 07:14:18.000000', 'fac-back-opac - Google Code', NULL, NULL, NULL, NULL, NULL, 191, NULL, NULL, '2008-05-19 22:36:11.000000')
|
225
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784873113241, '2010-03-01 07:14:18.000000', 'Rubyクックブック', NULL, NULL, NULL, '2007-04-27', NULL, 192, NULL, NULL, '2008-03-05 01:37:55.000000')[0m
|
226
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "isbn10", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784797340044, 4797340045, '2010-03-01 07:14:18.000000', 'Rubyレシピブック', NULL, NULL, NULL, '2007-02-01', NULL, 193, NULL, NULL, '2008-03-05 01:30:39.000000')
|
227
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000194', '2010-03-01 07:14:18.000000', '初めてのPerl 第3版', NULL, NULL, NULL, NULL, NULL, 194, NULL, NULL, '2007-11-19 17:56:37.000000')[0m
|
228
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000195', '2010-03-01 07:14:18.000000', '続・初めてのPerl 改訂版', NULL, NULL, NULL, NULL, NULL, 195, NULL, NULL, '2007-11-19 17:55:42.000000')
|
229
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784797336610, '2010-03-01 07:14:18.000000', 'たのしいRuby 第2版 Rubyではじめる気軽なプログラミング', NULL, NULL, NULL, '2006-08-05', NULL, 196, NULL, NULL, '2007-11-19 17:55:41.000000')[0m
|
230
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, NULL, '2010-03-15 07:14:18.000000', 'Ruby', NULL, NULL, NULL, NULL, NULL, 197, NULL, NULL, '2007-11-19 17:55:41.000000')
|
231
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, NULL, '2010-03-15 07:14:18.000000', '紅玉の本', NULL, NULL, NULL, NULL, NULL, 198, NULL, NULL, '2007-11-19 17:55:41.000000')[0m
|
232
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "frequency_id", "issn") VALUES (1, 1, 9876543210201, '2010-03-01 07:14:18.000000', 'テスト雑誌2005年1月号', NULL, NULL, NULL, NULL, NULL, 201, NULL, NULL, '2007-11-19 17:55:41.000000', 3, '09130000')
|
233
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "frequency_id", "issn", "serial_number", "volume_number", "issue_number") VALUES (1, 1, 9876543210202, '2010-03-01 07:14:18.000000', 'テスト雑誌2月号', NULL, NULL, NULL, NULL, NULL, 202, NULL, NULL, '2007-11-19 17:55:41.000000', 3, 12345678, 2, 1, 2)[0m
|
234
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "frequency_id") VALUES (1, 1, 9876543210203, '2010-03-01 07:14:18.000000', 'テスト単行本記事2005', NULL, NULL, NULL, NULL, NULL, 203, NULL, NULL, '2010-03-03 17:00:00.000000', 1)
|
235
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 5555567890001, '2010-03-03 11:00:00.000000', 'テスト雑誌1月号の記事1', NULL, NULL, NULL, NULL, NULL, 204, NULL, NULL, '2010-03-03 20:00:00.000000')[0m
|
236
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 5555567890002, '2010-03-03 11:00:00.000000', 'テスト雑誌1月号の記事2', NULL, NULL, NULL, NULL, NULL, 205, NULL, NULL, '2010-03-03 20:00:00.000000')
|
237
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 5555567890003, '2010-03-03 11:00:00.000000', 'テスト雑誌2月号の記事1', NULL, NULL, NULL, NULL, NULL, 206, NULL, NULL, '2010-03-03 20:00:00.000000')[0m
|
238
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9876543210207, '2010-03-03 11:00:00.000000', '試験単行本', NULL, NULL, NULL, NULL, NULL, 207, NULL, NULL, '2010-03-03 20:00:00.000000')
|
239
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, NULL, '2010-03-16 02:00:00.000000', 'ある出版物', NULL, NULL, NULL, NULL, NULL, 208, NULL, NULL, '2010-03-16 11:00:00.000000')[0m
|
240
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認Admin専用1', NULL, NULL, NULL, NULL, NULL, 209, NULL, NULL, '2010-03-19 13:00:00.000000', 4)
|
241
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認Admin専用2', NULL, NULL, NULL, NULL, NULL, 210, NULL, NULL, '2010-03-19 13:00:00.000000', 4, 't')[0m
|
242
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認Librarian以上用1', NULL, NULL, NULL, NULL, NULL, 211, NULL, NULL, '2010-03-19 13:00:00.000000', 3, 't')
|
243
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認Librarian以上用2', NULL, NULL, NULL, NULL, NULL, 212, NULL, NULL, '2010-03-19 13:00:00.000000', 3, 't')[0m
|
244
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認User以上用1', NULL, NULL, NULL, NULL, NULL, 213, NULL, NULL, '2010-03-19 13:00:00.000000', 2, 't')
|
245
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認User以上用2', NULL, NULL, NULL, NULL, NULL, 214, NULL, NULL, '2010-03-19 13:00:00.000000', 2, 'f')[0m
|
246
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認', NULL, NULL, NULL, NULL, NULL, 215, NULL, NULL, '2010-03-19 13:00:00.000000', 1, 't')
|
247
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認', NULL, NULL, NULL, NULL, NULL, 216, NULL, NULL, '2010-03-19 13:00:00.000000', 1, 'f')[0m
|
248
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', 'Flickr', NULL, NULL, NULL, NULL, 'http://www.flickr.com/photos/japan_library_association/sets/72157626376861041/', 217, NULL, NULL, '2010-03-19 13:00:00.000000', 1, 'f')
|
249
|
+
[1m[36m (1.6ms)[0m [1mcommit transaction[0m
|
250
|
+
[1m[35m (0.0ms)[0m begin transaction
|
251
|
+
[1m[36mManifestation Load (0.3ms)[0m [1mSELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1[0m [["id", 1]]
|
252
|
+
Rendered /Users/kosuke/enju_manifestation_viewer/app/views/manifestations/_google_book_search.html.erb (2.2ms)
|
253
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
254
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
255
|
+
[1m[35mManifestation Load (0.1ms)[0m SELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1 [["id", 22]]
|
256
|
+
Rendered /Users/kosuke/enju_manifestation_viewer/app/views/manifestations/_youtube.html.erb (5.0ms)
|
257
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
258
|
+
[1m[35m (0.0ms)[0m begin transaction
|
259
|
+
[1m[36mManifestation Load (0.1ms)[0m [1mSELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1[0m [["id", 23]]
|
260
|
+
Rendered /Users/kosuke/enju_manifestation_viewer/app/views/manifestations/_nicovideo.html.erb (0.7ms)
|
261
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
262
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
263
|
+
[1m[35mManifestation Load (0.1ms)[0m SELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1 [["id", 217]]
|
264
|
+
Rendered /Users/kosuke/enju_manifestation_viewer/app/views/manifestations/_flickr.html.erb (0.8ms)
|
265
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
266
|
+
[1m[35m (0.0ms)[0m begin transaction
|
267
|
+
[1m[36mManifestation Load (0.1ms)[0m [1mSELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1[0m [["id", 1]]
|
268
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
269
|
+
Connecting to database specified by database.yml
|
270
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
271
|
+
[1m[35mFixture Delete (0.6ms)[0m DELETE FROM "manifestations"
|
272
|
+
[1m[36mFixture Insert (0.2ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "start_page", "end_page", "repository_content") VALUES (1, 1, '4798002062', '2007-11-19 07:59:00.293393', 'ãããããææ°Webãµã¼ãã¹æè¡', NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, '2007-11-19 07:59:00.293393', 1, 100, 't')[0m
|
273
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "repository_content") VALUES (1, 1, '4915724824', '2007-11-19 07:59:01.991512', 'æ
å ±éä¿¡ãã³ãããã¯2005', NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, '2007-11-19 07:59:01.991512', 'f')
|
274
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '4897063590', '2007-11-19 07:59:02.618359', 'これからの生命科学研究者のためのバイオ特許入門講座', NULL, NULL, NULL, NULL, 'http://www.slis.keio.ac.jp/', 3, NULL, NULL, '2007-11-19 07:59:02.618359')[0m
|
275
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0471412791', '2007-11-19 07:59:03.275738', 'THE BIOTECH INVESTOR''S BIBLE', NULL, NULL, NULL, NULL, NULL, 4, NULL, NULL, '2007-11-19 07:59:03.275738')
|
276
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '', '2007-11-19 07:59:04.333183', '顧客満足型マーケティングの構図', NULL, NULL, NULL, NULL, NULL, 5, NULL, NULL, '2007-11-19 07:59:04.333183')[0m
|
277
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '', '2007-11-19 07:59:05.255684', '仕組み革新の時代', NULL, NULL, NULL, NULL, NULL, 6, NULL, NULL, '2007-11-19 07:59:05.255684')
|
278
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0470844701', '2007-11-19 07:59:06.892741', 'dictionary of e-business', NULL, NULL, NULL, NULL, NULL, 7, NULL, NULL, '2007-11-19 07:59:06.892741')[0m
|
279
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '4798101028', '2007-11-19 07:59:07.463333', 'Webãµã¼ãã¹å®å
¨è§£èª¬', NULL, NULL, NULL, NULL, NULL, 8, NULL, NULL, '2007-11-19 07:59:07.463333')
|
280
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '4641143331', '2007-11-19 07:59:08.166195', '逐条解説不正競争防止法', NULL, NULL, NULL, NULL, NULL, 9, NULL, NULL, '2007-11-19 07:59:08.166195')[0m
|
281
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '9784774127804', '2007-11-19 07:59:09.799724', 'Apache Lucene入門 : Java・オープンソース・全文検索システムの構築', NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, '2007-11-19 07:59:09.799724')
|
282
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id") VALUES (1, '4822281167', '2007-11-19 07:59:20.799724', 'Webãµã¼ãã¹å®å
¨æ§ç¯ã¬ã¤ã', NULL, NULL, NULL, NULL, NULL, 11, NULL, NULL, '2007-11-19 07:59:20.799724', 2)[0m
|
283
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id") VALUES (1, NULL, '2007-11-19 07:59:21.799724', 'YouTube - Open Source ILS Song', NULL, NULL, NULL, NULL, 'http://jp.youtube.com/watch?v=BSHBzd9ftDE', 22, NULL, NULL, '2008-04-16 15:34:01.000000', 1)
|
284
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id") VALUES (1, NULL, '2008-04-16 15:34:01.000000', '世界の美しい図書館集めてみた【第一弾】', NULL, NULL, NULL, NULL, 'http://www.nicovideo.jp/watch/sm3015373', 23, NULL, NULL, '2007-11-19 07:58:58.799724', 4)[0m
|
285
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 65, '2010-03-01 07:14:18.000000', 'CGI基礎講座 : Perl・プログラミング・日本語処理', NULL, NULL, NULL, NULL, NULL, 101, NULL, NULL, '2010-02-21 15:47:09.000000')
|
286
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 66, '2010-03-01 07:14:18.000000', 'CGIレスキュー実践Perlプログラミング : Web裏技', NULL, NULL, NULL, NULL, NULL, 102, NULL, NULL, '2010-02-21 14:57:08.000000')[0m
|
287
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 67, '2010-03-01 07:14:18.000000', 'Perlクックブック. v.2', NULL, NULL, NULL, NULL, NULL, 103, NULL, NULL, '2010-02-21 10:51:48.000000')
|
288
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 68, '2010-03-01 07:14:18.000000', 'Perlクックブック. v.1', NULL, NULL, NULL, NULL, NULL, 104, NULL, NULL, '2010-02-21 10:51:33.000000')[0m
|
289
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 69, '2010-03-01 07:14:18.000000', '初めてのPerl. 続', NULL, NULL, NULL, NULL, NULL, 105, NULL, NULL, '2010-02-21 10:48:14.000000')
|
290
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 70, '2010-03-01 07:14:18.000000', 'Perl & XML', NULL, NULL, NULL, NULL, NULL, 106, NULL, NULL, '2010-02-21 10:45:48.000000')[0m
|
291
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 71, '2010-03-01 07:14:18.000000', 'はじめてのPerlモジュール : 厳選実用モジュール集', NULL, NULL, NULL, NULL, NULL, 107, NULL, NULL, '2010-02-21 09:59:01.000000')
|
292
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000108', '2010-03-01 07:14:18.000000', 'Perl 5パワフルテクニック大全集', NULL, NULL, NULL, NULL, NULL, 108, NULL, NULL, '2010-02-21 08:13:17.000000')[0m
|
293
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000109', '2010-03-01 07:14:18.000000', 'CGI/Perlパワープログラミング', NULL, NULL, NULL, NULL, NULL, 109, NULL, NULL, '2010-02-20 17:26:08.000000')
|
294
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 72, '2010-03-01 07:14:18.000000', 'Ruby/GTKプログラミング入門 : Rubyで作って遊ぶGUIプログラミング', NULL, NULL, NULL, NULL, NULL, 110, NULL, NULL, '2010-02-19 13:09:56.000000')[0m
|
295
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 73, '2010-03-01 07:14:18.000000', 'すぐわかるPerl', NULL, NULL, NULL, NULL, NULL, 111, NULL, NULL, '2010-02-19 13:07:28.000000')
|
296
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 74, '2010-03-01 07:14:18.000000', 'CGIのための実践入門Perl : 対話的・動きのあるWebページを作ろう', NULL, NULL, NULL, NULL, NULL, 112, NULL, NULL, '2010-02-19 13:06:51.000000')[0m
|
297
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 75, '2010-03-01 07:14:18.000000', 'プログラミングは難しくない! : ウェブではじめるJavaScript/Perl/Java', NULL, NULL, NULL, NULL, NULL, 113, NULL, NULL, '2010-02-19 11:02:27.000000')
|
298
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784756137470, '2010-03-01 07:14:18.000000', 'Rubyを256倍使うための本. 魔道編', NULL, NULL, NULL, '2001-03-20', NULL, 114, NULL, NULL, '2010-02-19 05:46:08.000000')[0m
|
299
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 77, '2010-03-01 07:14:18.000000', '入門Perl', NULL, NULL, NULL, NULL, NULL, 115, NULL, NULL, '2010-02-19 05:40:17.000000')
|
300
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784756100917, '2010-03-01 07:14:18.000000', 'sed & awkプログラミング : UNIX power tools', NULL, NULL, NULL, '1991-12-24', NULL, 116, NULL, NULL, '2010-02-19 05:39:01.000000')[0m
|
301
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 79, '2010-03-01 07:14:18.000000', 'Perlの達人', NULL, NULL, NULL, NULL, NULL, 117, NULL, NULL, '2010-02-18 10:23:27.000000')
|
302
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000118', '2010-03-01 07:14:18.000000', 'ナチ強制・絶滅収容所 : 18施設内の生と死', NULL, NULL, NULL, NULL, NULL, 118, NULL, NULL, '2010-02-17 01:12:08.000000')[0m
|
303
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000119', '2010-03-01 07:14:18.000000', 'Perl基礎講座', NULL, NULL, NULL, NULL, NULL, 119, NULL, NULL, '2010-02-16 04:30:37.000000')
|
304
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784274063855, '2010-03-01 07:14:18.000000', 'Rubyプログラミング入門', NULL, NULL, NULL, '2000-10-01', NULL, 120, NULL, NULL, '2010-02-16 04:29:59.000000')[0m
|
305
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 81, '2010-03-01 07:14:18.000000', 'Django×Python', NULL, NULL, NULL, NULL, NULL, 121, NULL, NULL, '2010-01-30 06:22:35.000000')
|
306
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 82, '2010-03-01 07:14:18.000000', 'みんなのPython', NULL, NULL, NULL, NULL, NULL, 122, NULL, NULL, '2010-01-30 06:17:32.000000')[0m
|
307
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 83, '2010-03-01 07:14:18.000000', 'Rubyでgroonga使って全文検索 - ラングバ', NULL, NULL, NULL, NULL, NULL, 123, NULL, NULL, '2009-10-25 13:20:34.000000')
|
308
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 84, '2010-03-01 07:14:18.000000', 'まちづくり三鷹図書館(Ruby図書館情報システム デモサイト)', NULL, NULL, NULL, NULL, NULL, 124, NULL, NULL, '2009-10-20 13:46:44.000000')[0m
|
309
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 85, '2010-03-01 07:14:18.000000', 'Ruby on Rails入門 : 優しいRailsの育て方', NULL, NULL, NULL, NULL, NULL, 125, NULL, NULL, '2009-10-16 05:16:48.000000')
|
310
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 86, '2010-03-01 07:14:18.000000', 'Ruby Cookbook', NULL, NULL, NULL, NULL, NULL, 126, NULL, NULL, '2009-06-29 12:44:11.000000')[0m
|
311
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 87, '2010-03-01 07:14:18.000000', 'CGI programming on the World Wide Web', NULL, NULL, NULL, NULL, NULL, 127, NULL, NULL, '2009-06-19 13:45:14.000000')
|
312
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000128', '2010-03-01 07:14:18.000000', 'Genomic Perl', NULL, NULL, NULL, NULL, NULL, 128, NULL, NULL, '2009-06-19 13:27:46.000000')[0m
|
313
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000129', '2010-03-01 07:14:18.000000', 'Indians of the Pacific Northwest', NULL, NULL, NULL, NULL, NULL, 129, NULL, NULL, '2009-06-19 12:16:23.000000')
|
314
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 88, '2010-03-01 07:14:18.000000', 'Massachusetts acid rain monitoring project / Massachusetts acid rain monitoring project A.R.M', NULL, NULL, NULL, NULL, NULL, 130, NULL, NULL, '2009-06-19 12:03:29.000000')[0m
|
315
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 89, '2010-03-01 07:14:18.000000', 'International Symposium Genes and Chromosomes Structure and Function', NULL, NULL, NULL, NULL, NULL, 131, NULL, NULL, '2009-06-19 12:02:48.000000')
|
316
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 90, '2010-03-01 07:14:18.000000', 'Perl black book, 2nd edition', NULL, NULL, NULL, NULL, NULL, 132, NULL, NULL, '2009-06-19 11:42:02.000000')[0m
|
317
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 91, '2010-03-01 07:14:18.000000', 'Python scripting for computational science', NULL, NULL, NULL, NULL, NULL, 133, NULL, NULL, '2009-06-19 11:18:01.000000')
|
318
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 92, '2010-03-01 07:14:18.000000', 'Tests on a gold ore from the Ruby Basin, Black Hills', NULL, NULL, NULL, NULL, NULL, 134, NULL, NULL, '2009-06-19 11:06:07.000000')[0m
|
319
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 93, '2010-03-01 07:14:18.000000', 'Official guide to programming with CGI.pm / Programming with CGI.pm / Official guide to programming with CGI.pm', NULL, NULL, NULL, NULL, NULL, 135, NULL, NULL, '2009-06-19 10:54:21.000000')
|
320
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 94, '2010-03-01 07:14:18.000000', 'Three little words [sound recording] / Nevertheless (I''m in love with you) / I love you so much / All alone Monday / Where did you get that girl? / Thinking of you / I wanna be loved by you / Who''s sorry now? / My sunny Tennessee / So long Oolong / Three little words', NULL, NULL, NULL, NULL, NULL, 136, NULL, NULL, '2009-06-19 10:46:46.000000')[0m
|
321
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 95, '2010-03-01 07:14:18.000000', 'Femtosecond time-resolved spectroscopy of organic molecular crystals / Time-resolved spectroscopy of organic molecular crystals, Femtosecond', NULL, NULL, NULL, NULL, NULL, 137, NULL, NULL, '2009-06-19 10:18:59.000000')
|
322
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000138', '2010-03-01 07:14:18.000000', 'CGI programming with Perl', NULL, NULL, NULL, NULL, NULL, 138, NULL, NULL, '2009-06-19 09:19:08.000000')[0m
|
323
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000139', '2010-03-01 07:14:18.000000', 'Python and XML / Python & XML / XML processing with Python', NULL, NULL, NULL, NULL, NULL, 139, NULL, NULL, '2009-06-19 09:19:02.000000')
|
324
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 96, '2010-03-01 07:14:18.000000', 'Perl cookbook / Solutions and examples for Perl programmers', NULL, NULL, NULL, NULL, NULL, 140, NULL, NULL, '2009-06-19 09:19:01.000000')[0m
|
325
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 97, '2010-03-01 07:14:18.000000', 'Mastering Perl/Tk / Perl/Tk', NULL, NULL, NULL, NULL, NULL, 141, NULL, NULL, '2009-06-19 09:19:00.000000')
|
326
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 98, '2010-03-01 07:14:18.000000', 'Mastering algorithms with Perl / Practical programming through computer science', NULL, NULL, NULL, NULL, NULL, 142, NULL, NULL, '2009-06-19 09:18:58.000000')[0m
|
327
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 99, '2010-03-01 07:14:18.000000', 'Programming Perl', NULL, NULL, NULL, NULL, NULL, 143, NULL, NULL, '2009-06-19 09:18:45.000000')
|
328
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 100, '2010-03-01 07:14:18.000000', 'Fort Worth & Tarrant County / Fort Worth and Tarrant County', NULL, NULL, NULL, NULL, NULL, 144, NULL, NULL, '2009-06-19 07:49:42.000000')[0m
|
329
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 101, '2010-03-01 07:14:18.000000', 'Monty Python''s Spamalot [sound recording] / Spamalot / Spamalot / Monty Python and the Holy Grail (Motion picture)', NULL, NULL, NULL, NULL, NULL, 145, NULL, NULL, '2009-06-19 06:44:35.000000')
|
330
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 102, '2010-03-01 07:14:18.000000', 'AWK programming language', NULL, NULL, NULL, NULL, NULL, 146, NULL, NULL, '2009-06-19 06:28:27.000000')[0m
|
331
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 103, '2010-03-01 07:14:18.000000', 'Toting the lead row', NULL, NULL, NULL, NULL, NULL, 147, NULL, NULL, '2009-06-19 02:16:22.000000')
|
332
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000148', '2010-03-01 07:14:18.000000', 'Afro-American blues and game songs', NULL, NULL, NULL, NULL, NULL, 148, NULL, NULL, '2009-06-19 02:09:17.000000')[0m
|
333
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000149', '2010-03-01 07:14:18.000000', 'Perl/Tk pocket reference', NULL, NULL, NULL, NULL, NULL, 149, NULL, NULL, '2009-06-19 01:10:56.000000')
|
334
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 104, '2010-03-01 07:14:18.000000', 'politics of improving urban air quality', NULL, NULL, NULL, NULL, NULL, 150, NULL, NULL, '2009-06-19 00:42:38.000000')[0m
|
335
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 105, '2010-03-01 07:14:18.000000', 'Perl developer''s dictionary', NULL, NULL, NULL, NULL, NULL, 151, NULL, NULL, '2009-06-19 00:13:13.000000')
|
336
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 106, '2010-03-01 07:14:18.000000', 'Andrテδゥ Poitiers', NULL, NULL, NULL, NULL, NULL, 152, NULL, NULL, '2009-06-18 23:58:14.000000')[0m
|
337
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 107, '2010-03-01 07:14:18.000000', 'PERL and CGI for the World Wide Web [electronic resource] / Visual QuickStart guide', NULL, NULL, NULL, NULL, NULL, 153, NULL, NULL, '2009-06-18 23:43:08.000000')
|
338
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 108, '2010-03-01 07:14:18.000000', 'Python tutorial', NULL, NULL, NULL, NULL, NULL, 154, NULL, NULL, '2009-06-18 23:17:40.000000')[0m
|
339
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 109, '2010-03-01 07:14:18.000000', 'Line shapes of paramagnetic resonances in ruby', NULL, NULL, NULL, NULL, NULL, 155, NULL, NULL, '2009-06-18 22:44:00.000000')
|
340
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 110, '2010-03-01 07:14:18.000000', 'Perl programmer''s reference', NULL, NULL, NULL, NULL, NULL, 156, NULL, NULL, '2009-06-18 22:19:34.000000')[0m
|
341
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 111, '2010-03-01 07:14:18.000000', 'Technological capabilities in developing countries', NULL, NULL, NULL, NULL, NULL, 157, NULL, NULL, '2009-06-18 21:58:42.000000')
|
342
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000158', '2010-03-01 07:14:18.000000', 'phenomena of vagueness', NULL, NULL, NULL, NULL, NULL, 158, NULL, NULL, '2009-06-18 21:44:38.000000')[0m
|
343
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000159', '2010-03-01 07:14:18.000000', 'theory of consumer''s demand', NULL, NULL, NULL, NULL, NULL, 159, NULL, NULL, '2009-06-18 21:10:02.000000')
|
344
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 112, '2010-03-01 07:14:18.000000', 'theory of consumer''s demand', NULL, NULL, NULL, NULL, NULL, 160, NULL, NULL, '2009-06-18 21:10:01.000000')[0m
|
345
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 113, '2010-03-01 07:14:18.000000', 'Monty Python, Shakespeare, and English Renaissance drama', NULL, NULL, NULL, NULL, NULL, 161, NULL, NULL, '2009-06-18 20:37:58.000000')
|
346
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 114, '2010-03-01 07:14:18.000000', 'Analyzing computer system performance with PERL::PDQ', NULL, NULL, NULL, NULL, NULL, 162, NULL, NULL, '2009-06-18 20:29:54.000000')[0m
|
347
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 115, '2010-03-01 07:14:18.000000', 'equilibrium of the reaction between the manganate, permanganate, and hydroxide of potassium, and manganese dioxide', NULL, NULL, NULL, NULL, NULL, 163, NULL, NULL, '2009-06-18 20:16:44.000000')
|
348
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 116, '2010-03-01 07:14:18.000000', 'Stimulated optical emission in ruby', NULL, NULL, NULL, NULL, NULL, 164, NULL, NULL, '2009-06-18 20:05:25.000000')[0m
|
349
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 117, '2010-03-01 07:14:18.000000', 'Strategic planning and risk analysis', NULL, NULL, NULL, NULL, NULL, 165, NULL, NULL, '2009-06-18 17:41:41.000000')
|
350
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 118, '2010-03-01 07:14:18.000000', 'Performance assertion checking', NULL, NULL, NULL, NULL, NULL, 166, NULL, NULL, '2009-06-18 17:34:03.000000')[0m
|
351
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 119, '2010-03-01 07:14:18.000000', 'Spin-lattice relaxation time of ruby', NULL, NULL, NULL, NULL, NULL, 167, NULL, NULL, '2009-06-18 16:26:38.000000')
|
352
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000168', '2010-03-01 07:14:18.000000', 'Mourning Ruby', NULL, NULL, NULL, NULL, NULL, 168, NULL, NULL, '2009-06-18 16:25:25.000000')[0m
|
353
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000169', '2010-03-01 07:14:18.000000', 'statistical analysis of banking performance in the Eastern Caribbean Currency Union in the 1990s', NULL, NULL, NULL, NULL, NULL, 169, NULL, NULL, '2009-06-18 15:53:44.000000')
|
354
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 120, '2010-03-01 07:14:18.000000', 'Professional Perl programming / Perl programming', NULL, NULL, NULL, NULL, NULL, 170, NULL, NULL, '2009-06-18 15:52:50.000000')[0m
|
355
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 121, '2010-03-01 07:14:18.000000', 'Perl in a nutshell', NULL, NULL, NULL, NULL, NULL, 171, NULL, NULL, '2009-06-18 15:40:53.000000')
|
356
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 122, '2010-03-01 07:14:18.000000', 'Programming Web services with Perl', NULL, NULL, NULL, NULL, NULL, 172, NULL, NULL, '2009-06-18 15:34:21.000000')[0m
|
357
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 123, '2010-03-01 07:14:18.000000', 'Proceedings of the Trieste Workshop on the search for New Elementary Particles / International journal of modern physics / Search for new elementary particles', NULL, NULL, NULL, NULL, NULL, 173, NULL, NULL, '2009-06-18 15:08:06.000000')
|
358
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 124, '2010-03-01 07:14:18.000000', 'Europeras 3 & 4 / Europera', NULL, NULL, NULL, NULL, NULL, 174, NULL, NULL, '2009-06-18 15:05:43.000000')[0m
|
359
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 125, '2010-03-01 07:14:18.000000', 'Retreats from realism in recent English drama', NULL, NULL, NULL, NULL, NULL, 175, NULL, NULL, '2009-06-18 15:03:06.000000')
|
360
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 126, '2010-03-01 07:14:18.000000', 'Python programming patterns', NULL, NULL, NULL, NULL, NULL, 176, NULL, NULL, '2009-06-18 14:52:11.000000')[0m
|
361
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 127, '2010-03-01 07:14:18.000000', 'Beginning Perl for bioinformatics', NULL, NULL, NULL, NULL, NULL, 177, NULL, NULL, '2009-06-18 13:45:13.000000')
|
362
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000178', '2010-03-01 07:14:18.000000', 'Learning Perl', NULL, NULL, NULL, NULL, NULL, 178, NULL, NULL, '2009-06-18 13:45:11.000000')[0m
|
363
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000179', '2010-03-01 07:14:18.000000', 'Effective awk programming', NULL, NULL, NULL, NULL, NULL, 179, NULL, NULL, '2009-06-18 13:45:09.000000')
|
364
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000180', '2010-03-01 07:14:18.000000', 'Python standard library / Annotated reference for Python 2.0', NULL, NULL, NULL, NULL, NULL, 180, NULL, NULL, '2009-06-18 13:45:04.000000')[0m
|
365
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000181', '2010-03-01 07:14:18.000000', 'Programming Python', NULL, NULL, NULL, NULL, NULL, 181, NULL, NULL, '2009-06-18 13:45:04.000000')
|
366
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000182', '2010-03-01 07:14:18.000000', 'Perl CD bookshelf', NULL, NULL, NULL, NULL, NULL, 182, NULL, NULL, '2009-06-18 13:44:56.000000')[0m
|
367
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000183', '2010-03-01 07:14:18.000000', 'Programming Perl', NULL, NULL, NULL, NULL, NULL, 183, NULL, NULL, '2009-06-18 13:44:55.000000')
|
368
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000184', '2010-03-01 07:14:18.000000', 'Sed & awk pocket reference / Sed and awk pocket reference', NULL, NULL, NULL, NULL, NULL, 184, NULL, NULL, '2009-06-18 13:44:54.000000')[0m
|
369
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000185', '2010-03-01 07:14:18.000000', 'Perl power!', NULL, NULL, NULL, NULL, NULL, 185, NULL, NULL, '2009-06-18 13:41:37.000000')
|
370
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000186', '2010-03-01 07:14:18.000000', 'ATOKダイレクト API for Perl / Ruby?|?さらに使いこなす?|?ATOK.com', NULL, NULL, NULL, NULL, NULL, 186, NULL, NULL, '2008-12-19 17:52:47.000000')[0m
|
371
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000187', '2010-03-01 07:14:18.000000', 'Welcome ― Ruby Enterprise Edition', NULL, NULL, NULL, NULL, NULL, 187, NULL, NULL, '2008-10-19 15:58:50.000000')
|
372
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000188', '2010-03-01 07:14:18.000000', 'Pythonクックブック', NULL, NULL, NULL, NULL, NULL, 188, NULL, NULL, '2008-08-22 00:27:29.000000')[0m
|
373
|
+
[1m[35mFixture Insert (0.2ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000189', '2010-03-01 07:14:18.000000', 'みんなのPython インデントの世界へようこそ! object oriented-lightweight language Python', NULL, NULL, NULL, NULL, NULL, 189, NULL, NULL, '2008-08-22 00:20:59.000000')
|
374
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000190', '2010-03-01 07:14:18.000000', 'Django | The Web framework for perfectionists with deadlines', NULL, NULL, NULL, NULL, NULL, 190, NULL, NULL, '2008-05-20 13:06:31.000000')[0m
|
375
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000191', '2010-03-01 07:14:18.000000', 'fac-back-opac - Google Code', NULL, NULL, NULL, NULL, NULL, 191, NULL, NULL, '2008-05-19 22:36:11.000000')
|
376
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784873113241, '2010-03-01 07:14:18.000000', 'Rubyクックブック', NULL, NULL, NULL, '2007-04-27', NULL, 192, NULL, NULL, '2008-03-05 01:37:55.000000')[0m
|
377
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "isbn10", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784797340044, 4797340045, '2010-03-01 07:14:18.000000', 'Rubyレシピブック', NULL, NULL, NULL, '2007-02-01', NULL, 193, NULL, NULL, '2008-03-05 01:30:39.000000')
|
378
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000194', '2010-03-01 07:14:18.000000', '初めてのPerl 第3版', NULL, NULL, NULL, NULL, NULL, 194, NULL, NULL, '2007-11-19 17:56:37.000000')[0m
|
379
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000195', '2010-03-01 07:14:18.000000', '続・初めてのPerl 改訂版', NULL, NULL, NULL, NULL, NULL, 195, NULL, NULL, '2007-11-19 17:55:42.000000')
|
380
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784797336610, '2010-03-01 07:14:18.000000', 'たのしいRuby 第2版 Rubyではじめる気軽なプログラミング', NULL, NULL, NULL, '2006-08-05', NULL, 196, NULL, NULL, '2007-11-19 17:55:41.000000')[0m
|
381
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, NULL, '2010-03-15 07:14:18.000000', 'Ruby', NULL, NULL, NULL, NULL, NULL, 197, NULL, NULL, '2007-11-19 17:55:41.000000')
|
382
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, NULL, '2010-03-15 07:14:18.000000', '紅玉の本', NULL, NULL, NULL, NULL, NULL, 198, NULL, NULL, '2007-11-19 17:55:41.000000')[0m
|
383
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "frequency_id", "issn") VALUES (1, 1, 9876543210201, '2010-03-01 07:14:18.000000', 'テスト雑誌2005年1月号', NULL, NULL, NULL, NULL, NULL, 201, NULL, NULL, '2007-11-19 17:55:41.000000', 3, '09130000')
|
384
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "frequency_id", "issn", "serial_number", "volume_number", "issue_number") VALUES (1, 1, 9876543210202, '2010-03-01 07:14:18.000000', 'テスト雑誌2月号', NULL, NULL, NULL, NULL, NULL, 202, NULL, NULL, '2007-11-19 17:55:41.000000', 3, 12345678, 2, 1, 2)[0m
|
385
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "frequency_id") VALUES (1, 1, 9876543210203, '2010-03-01 07:14:18.000000', 'テスト単行本記事2005', NULL, NULL, NULL, NULL, NULL, 203, NULL, NULL, '2010-03-03 17:00:00.000000', 1)
|
386
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 5555567890001, '2010-03-03 11:00:00.000000', 'テスト雑誌1月号の記事1', NULL, NULL, NULL, NULL, NULL, 204, NULL, NULL, '2010-03-03 20:00:00.000000')[0m
|
387
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 5555567890002, '2010-03-03 11:00:00.000000', 'テスト雑誌1月号の記事2', NULL, NULL, NULL, NULL, NULL, 205, NULL, NULL, '2010-03-03 20:00:00.000000')
|
388
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 5555567890003, '2010-03-03 11:00:00.000000', 'テスト雑誌2月号の記事1', NULL, NULL, NULL, NULL, NULL, 206, NULL, NULL, '2010-03-03 20:00:00.000000')[0m
|
389
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9876543210207, '2010-03-03 11:00:00.000000', '試験単行本', NULL, NULL, NULL, NULL, NULL, 207, NULL, NULL, '2010-03-03 20:00:00.000000')
|
390
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, NULL, '2010-03-16 02:00:00.000000', 'ある出版物', NULL, NULL, NULL, NULL, NULL, 208, NULL, NULL, '2010-03-16 11:00:00.000000')[0m
|
391
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認Admin専用1', NULL, NULL, NULL, NULL, NULL, 209, NULL, NULL, '2010-03-19 13:00:00.000000', 4)
|
392
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認Admin専用2', NULL, NULL, NULL, NULL, NULL, 210, NULL, NULL, '2010-03-19 13:00:00.000000', 4, 't')[0m
|
393
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認Librarian以上用1', NULL, NULL, NULL, NULL, NULL, 211, NULL, NULL, '2010-03-19 13:00:00.000000', 3, 't')
|
394
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認Librarian以上用2', NULL, NULL, NULL, NULL, NULL, 212, NULL, NULL, '2010-03-19 13:00:00.000000', 3, 't')[0m
|
395
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認User以上用1', NULL, NULL, NULL, NULL, NULL, 213, NULL, NULL, '2010-03-19 13:00:00.000000', 2, 't')
|
396
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認User以上用2', NULL, NULL, NULL, NULL, NULL, 214, NULL, NULL, '2010-03-19 13:00:00.000000', 2, 'f')[0m
|
397
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認', NULL, NULL, NULL, NULL, NULL, 215, NULL, NULL, '2010-03-19 13:00:00.000000', 1, 't')
|
398
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認', NULL, NULL, NULL, NULL, NULL, 216, NULL, NULL, '2010-03-19 13:00:00.000000', 1, 'f')[0m
|
399
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', 'Flickr', NULL, NULL, NULL, NULL, 'http://www.flickr.com/photos/japan_library_association/sets/72157626376861041/', 217, NULL, NULL, '2010-03-19 13:00:00.000000', 1, 'f')
|
400
|
+
[1m[36m (3.1ms)[0m [1mcommit transaction[0m
|
401
|
+
[1m[35m (0.0ms)[0m begin transaction
|
402
|
+
[1m[36mManifestation Load (0.4ms)[0m [1mSELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1[0m [["id", 1]]
|
403
|
+
Rendered /Users/kosuke/enju_manifestation_viewer/app/views/manifestations/_google_book_search.html.erb (1.8ms)
|
404
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
405
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
406
|
+
[1m[35mManifestation Load (0.1ms)[0m SELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1 [["id", 22]]
|
407
|
+
Rendered /Users/kosuke/enju_manifestation_viewer/app/views/manifestations/_youtube.html.erb (4.4ms)
|
408
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
409
|
+
[1m[35m (0.0ms)[0m begin transaction
|
410
|
+
[1m[36mManifestation Load (0.1ms)[0m [1mSELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1[0m [["id", 23]]
|
411
|
+
Rendered /Users/kosuke/enju_manifestation_viewer/app/views/manifestations/_nicovideo.html.erb (0.7ms)
|
412
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
413
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
414
|
+
[1m[35mManifestation Load (0.1ms)[0m SELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1 [["id", 217]]
|
415
|
+
Rendered /Users/kosuke/enju_manifestation_viewer/app/views/manifestations/_flickr.html.erb (1.7ms)
|
416
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
417
|
+
Connecting to database specified by database.yml
|
418
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
419
|
+
[1m[35mFixture Delete (5.9ms)[0m DELETE FROM "manifestations"
|
420
|
+
[1m[36mFixture Insert (0.6ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "start_page", "end_page", "repository_content") VALUES (1, 1, '4798002062', '2007-11-19 07:59:00.293393', 'ãããããææ°Webãµã¼ãã¹æè¡', NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, '2007-11-19 07:59:00.293393', 1, 100, 't')[0m
|
421
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "repository_content") VALUES (1, 1, '4915724824', '2007-11-19 07:59:01.991512', 'æ
å ±éä¿¡ãã³ãããã¯2005', NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, '2007-11-19 07:59:01.991512', 'f')
|
422
|
+
[1m[36mFixture Insert (0.2ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '4897063590', '2007-11-19 07:59:02.618359', 'これからの生命科学研究者のためのバイオ特許入門講座', NULL, NULL, NULL, NULL, 'http://www.slis.keio.ac.jp/', 3, NULL, NULL, '2007-11-19 07:59:02.618359')[0m
|
423
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0471412791', '2007-11-19 07:59:03.275738', 'THE BIOTECH INVESTOR''S BIBLE', NULL, NULL, NULL, NULL, NULL, 4, NULL, NULL, '2007-11-19 07:59:03.275738')
|
424
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '', '2007-11-19 07:59:04.333183', '顧客満足型マーケティングの構図', NULL, NULL, NULL, NULL, NULL, 5, NULL, NULL, '2007-11-19 07:59:04.333183')[0m
|
425
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '', '2007-11-19 07:59:05.255684', '仕組み革新の時代', NULL, NULL, NULL, NULL, NULL, 6, NULL, NULL, '2007-11-19 07:59:05.255684')
|
426
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0470844701', '2007-11-19 07:59:06.892741', 'dictionary of e-business', NULL, NULL, NULL, NULL, NULL, 7, NULL, NULL, '2007-11-19 07:59:06.892741')[0m
|
427
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '4798101028', '2007-11-19 07:59:07.463333', 'Webãµã¼ãã¹å®å
¨è§£èª¬', NULL, NULL, NULL, NULL, NULL, 8, NULL, NULL, '2007-11-19 07:59:07.463333')
|
428
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '4641143331', '2007-11-19 07:59:08.166195', '逐条解説不正競争防止法', NULL, NULL, NULL, NULL, NULL, 9, NULL, NULL, '2007-11-19 07:59:08.166195')[0m
|
429
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '9784774127804', '2007-11-19 07:59:09.799724', 'Apache Lucene入門 : Java・オープンソース・全文検索システムの構築', NULL, NULL, NULL, NULL, NULL, 10, NULL, NULL, '2007-11-19 07:59:09.799724')
|
430
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id") VALUES (1, '4822281167', '2007-11-19 07:59:20.799724', 'Webãµã¼ãã¹å®å
¨æ§ç¯ã¬ã¤ã', NULL, NULL, NULL, NULL, NULL, 11, NULL, NULL, '2007-11-19 07:59:20.799724', 2)[0m
|
431
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id") VALUES (1, NULL, '2007-11-19 07:59:21.799724', 'YouTube - Open Source ILS Song', NULL, NULL, NULL, NULL, 'http://jp.youtube.com/watch?v=BSHBzd9ftDE', 22, NULL, NULL, '2008-04-16 15:34:01.000000', 1)
|
432
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id") VALUES (1, NULL, '2008-04-16 15:34:01.000000', '世界の美しい図書館集めてみた【第一弾】', NULL, NULL, NULL, NULL, 'http://www.nicovideo.jp/watch/sm3015373', 23, NULL, NULL, '2007-11-19 07:58:58.799724', 4)[0m
|
433
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 65, '2010-03-01 07:14:18.000000', 'CGI基礎講座 : Perl・プログラミング・日本語処理', NULL, NULL, NULL, NULL, NULL, 101, NULL, NULL, '2010-02-21 15:47:09.000000')
|
434
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 66, '2010-03-01 07:14:18.000000', 'CGIレスキュー実践Perlプログラミング : Web裏技', NULL, NULL, NULL, NULL, NULL, 102, NULL, NULL, '2010-02-21 14:57:08.000000')[0m
|
435
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 67, '2010-03-01 07:14:18.000000', 'Perlクックブック. v.2', NULL, NULL, NULL, NULL, NULL, 103, NULL, NULL, '2010-02-21 10:51:48.000000')
|
436
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 68, '2010-03-01 07:14:18.000000', 'Perlクックブック. v.1', NULL, NULL, NULL, NULL, NULL, 104, NULL, NULL, '2010-02-21 10:51:33.000000')[0m
|
437
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 69, '2010-03-01 07:14:18.000000', '初めてのPerl. 続', NULL, NULL, NULL, NULL, NULL, 105, NULL, NULL, '2010-02-21 10:48:14.000000')
|
438
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 70, '2010-03-01 07:14:18.000000', 'Perl & XML', NULL, NULL, NULL, NULL, NULL, 106, NULL, NULL, '2010-02-21 10:45:48.000000')[0m
|
439
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 71, '2010-03-01 07:14:18.000000', 'はじめてのPerlモジュール : 厳選実用モジュール集', NULL, NULL, NULL, NULL, NULL, 107, NULL, NULL, '2010-02-21 09:59:01.000000')
|
440
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000108', '2010-03-01 07:14:18.000000', 'Perl 5パワフルテクニック大全集', NULL, NULL, NULL, NULL, NULL, 108, NULL, NULL, '2010-02-21 08:13:17.000000')[0m
|
441
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000109', '2010-03-01 07:14:18.000000', 'CGI/Perlパワープログラミング', NULL, NULL, NULL, NULL, NULL, 109, NULL, NULL, '2010-02-20 17:26:08.000000')
|
442
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 72, '2010-03-01 07:14:18.000000', 'Ruby/GTKプログラミング入門 : Rubyで作って遊ぶGUIプログラミング', NULL, NULL, NULL, NULL, NULL, 110, NULL, NULL, '2010-02-19 13:09:56.000000')[0m
|
443
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 73, '2010-03-01 07:14:18.000000', 'すぐわかるPerl', NULL, NULL, NULL, NULL, NULL, 111, NULL, NULL, '2010-02-19 13:07:28.000000')
|
444
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 74, '2010-03-01 07:14:18.000000', 'CGIのための実践入門Perl : 対話的・動きのあるWebページを作ろう', NULL, NULL, NULL, NULL, NULL, 112, NULL, NULL, '2010-02-19 13:06:51.000000')[0m
|
445
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 75, '2010-03-01 07:14:18.000000', 'プログラミングは難しくない! : ウェブではじめるJavaScript/Perl/Java', NULL, NULL, NULL, NULL, NULL, 113, NULL, NULL, '2010-02-19 11:02:27.000000')
|
446
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784756137470, '2010-03-01 07:14:18.000000', 'Rubyを256倍使うための本. 魔道編', NULL, NULL, NULL, '2001-03-20', NULL, 114, NULL, NULL, '2010-02-19 05:46:08.000000')[0m
|
447
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 77, '2010-03-01 07:14:18.000000', '入門Perl', NULL, NULL, NULL, NULL, NULL, 115, NULL, NULL, '2010-02-19 05:40:17.000000')
|
448
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784756100917, '2010-03-01 07:14:18.000000', 'sed & awkプログラミング : UNIX power tools', NULL, NULL, NULL, '1991-12-24', NULL, 116, NULL, NULL, '2010-02-19 05:39:01.000000')[0m
|
449
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 79, '2010-03-01 07:14:18.000000', 'Perlの達人', NULL, NULL, NULL, NULL, NULL, 117, NULL, NULL, '2010-02-18 10:23:27.000000')
|
450
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000118', '2010-03-01 07:14:18.000000', 'ナチ強制・絶滅収容所 : 18施設内の生と死', NULL, NULL, NULL, NULL, NULL, 118, NULL, NULL, '2010-02-17 01:12:08.000000')[0m
|
451
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000119', '2010-03-01 07:14:18.000000', 'Perl基礎講座', NULL, NULL, NULL, NULL, NULL, 119, NULL, NULL, '2010-02-16 04:30:37.000000')
|
452
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784274063855, '2010-03-01 07:14:18.000000', 'Rubyプログラミング入門', NULL, NULL, NULL, '2000-10-01', NULL, 120, NULL, NULL, '2010-02-16 04:29:59.000000')[0m
|
453
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 81, '2010-03-01 07:14:18.000000', 'Django×Python', NULL, NULL, NULL, NULL, NULL, 121, NULL, NULL, '2010-01-30 06:22:35.000000')
|
454
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 82, '2010-03-01 07:14:18.000000', 'みんなのPython', NULL, NULL, NULL, NULL, NULL, 122, NULL, NULL, '2010-01-30 06:17:32.000000')[0m
|
455
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 83, '2010-03-01 07:14:18.000000', 'Rubyでgroonga使って全文検索 - ラングバ', NULL, NULL, NULL, NULL, NULL, 123, NULL, NULL, '2009-10-25 13:20:34.000000')
|
456
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 84, '2010-03-01 07:14:18.000000', 'まちづくり三鷹図書館(Ruby図書館情報システム デモサイト)', NULL, NULL, NULL, NULL, NULL, 124, NULL, NULL, '2009-10-20 13:46:44.000000')[0m
|
457
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 85, '2010-03-01 07:14:18.000000', 'Ruby on Rails入門 : 優しいRailsの育て方', NULL, NULL, NULL, NULL, NULL, 125, NULL, NULL, '2009-10-16 05:16:48.000000')
|
458
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 86, '2010-03-01 07:14:18.000000', 'Ruby Cookbook', NULL, NULL, NULL, NULL, NULL, 126, NULL, NULL, '2009-06-29 12:44:11.000000')[0m
|
459
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 87, '2010-03-01 07:14:18.000000', 'CGI programming on the World Wide Web', NULL, NULL, NULL, NULL, NULL, 127, NULL, NULL, '2009-06-19 13:45:14.000000')
|
460
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000128', '2010-03-01 07:14:18.000000', 'Genomic Perl', NULL, NULL, NULL, NULL, NULL, 128, NULL, NULL, '2009-06-19 13:27:46.000000')[0m
|
461
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000129', '2010-03-01 07:14:18.000000', 'Indians of the Pacific Northwest', NULL, NULL, NULL, NULL, NULL, 129, NULL, NULL, '2009-06-19 12:16:23.000000')
|
462
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 88, '2010-03-01 07:14:18.000000', 'Massachusetts acid rain monitoring project / Massachusetts acid rain monitoring project A.R.M', NULL, NULL, NULL, NULL, NULL, 130, NULL, NULL, '2009-06-19 12:03:29.000000')[0m
|
463
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 89, '2010-03-01 07:14:18.000000', 'International Symposium Genes and Chromosomes Structure and Function', NULL, NULL, NULL, NULL, NULL, 131, NULL, NULL, '2009-06-19 12:02:48.000000')
|
464
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 90, '2010-03-01 07:14:18.000000', 'Perl black book, 2nd edition', NULL, NULL, NULL, NULL, NULL, 132, NULL, NULL, '2009-06-19 11:42:02.000000')[0m
|
465
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 91, '2010-03-01 07:14:18.000000', 'Python scripting for computational science', NULL, NULL, NULL, NULL, NULL, 133, NULL, NULL, '2009-06-19 11:18:01.000000')
|
466
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 92, '2010-03-01 07:14:18.000000', 'Tests on a gold ore from the Ruby Basin, Black Hills', NULL, NULL, NULL, NULL, NULL, 134, NULL, NULL, '2009-06-19 11:06:07.000000')[0m
|
467
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 93, '2010-03-01 07:14:18.000000', 'Official guide to programming with CGI.pm / Programming with CGI.pm / Official guide to programming with CGI.pm', NULL, NULL, NULL, NULL, NULL, 135, NULL, NULL, '2009-06-19 10:54:21.000000')
|
468
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 94, '2010-03-01 07:14:18.000000', 'Three little words [sound recording] / Nevertheless (I''m in love with you) / I love you so much / All alone Monday / Where did you get that girl? / Thinking of you / I wanna be loved by you / Who''s sorry now? / My sunny Tennessee / So long Oolong / Three little words', NULL, NULL, NULL, NULL, NULL, 136, NULL, NULL, '2009-06-19 10:46:46.000000')[0m
|
469
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 95, '2010-03-01 07:14:18.000000', 'Femtosecond time-resolved spectroscopy of organic molecular crystals / Time-resolved spectroscopy of organic molecular crystals, Femtosecond', NULL, NULL, NULL, NULL, NULL, 137, NULL, NULL, '2009-06-19 10:18:59.000000')
|
470
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000138', '2010-03-01 07:14:18.000000', 'CGI programming with Perl', NULL, NULL, NULL, NULL, NULL, 138, NULL, NULL, '2009-06-19 09:19:08.000000')[0m
|
471
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000139', '2010-03-01 07:14:18.000000', 'Python and XML / Python & XML / XML processing with Python', NULL, NULL, NULL, NULL, NULL, 139, NULL, NULL, '2009-06-19 09:19:02.000000')
|
472
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 96, '2010-03-01 07:14:18.000000', 'Perl cookbook / Solutions and examples for Perl programmers', NULL, NULL, NULL, NULL, NULL, 140, NULL, NULL, '2009-06-19 09:19:01.000000')[0m
|
473
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 97, '2010-03-01 07:14:18.000000', 'Mastering Perl/Tk / Perl/Tk', NULL, NULL, NULL, NULL, NULL, 141, NULL, NULL, '2009-06-19 09:19:00.000000')
|
474
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 98, '2010-03-01 07:14:18.000000', 'Mastering algorithms with Perl / Practical programming through computer science', NULL, NULL, NULL, NULL, NULL, 142, NULL, NULL, '2009-06-19 09:18:58.000000')[0m
|
475
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 99, '2010-03-01 07:14:18.000000', 'Programming Perl', NULL, NULL, NULL, NULL, NULL, 143, NULL, NULL, '2009-06-19 09:18:45.000000')
|
476
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 100, '2010-03-01 07:14:18.000000', 'Fort Worth & Tarrant County / Fort Worth and Tarrant County', NULL, NULL, NULL, NULL, NULL, 144, NULL, NULL, '2009-06-19 07:49:42.000000')[0m
|
477
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 101, '2010-03-01 07:14:18.000000', 'Monty Python''s Spamalot [sound recording] / Spamalot / Spamalot / Monty Python and the Holy Grail (Motion picture)', NULL, NULL, NULL, NULL, NULL, 145, NULL, NULL, '2009-06-19 06:44:35.000000')
|
478
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 102, '2010-03-01 07:14:18.000000', 'AWK programming language', NULL, NULL, NULL, NULL, NULL, 146, NULL, NULL, '2009-06-19 06:28:27.000000')[0m
|
479
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 103, '2010-03-01 07:14:18.000000', 'Toting the lead row', NULL, NULL, NULL, NULL, NULL, 147, NULL, NULL, '2009-06-19 02:16:22.000000')
|
480
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000148', '2010-03-01 07:14:18.000000', 'Afro-American blues and game songs', NULL, NULL, NULL, NULL, NULL, 148, NULL, NULL, '2009-06-19 02:09:17.000000')[0m
|
481
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000149', '2010-03-01 07:14:18.000000', 'Perl/Tk pocket reference', NULL, NULL, NULL, NULL, NULL, 149, NULL, NULL, '2009-06-19 01:10:56.000000')
|
482
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 104, '2010-03-01 07:14:18.000000', 'politics of improving urban air quality', NULL, NULL, NULL, NULL, NULL, 150, NULL, NULL, '2009-06-19 00:42:38.000000')[0m
|
483
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 105, '2010-03-01 07:14:18.000000', 'Perl developer''s dictionary', NULL, NULL, NULL, NULL, NULL, 151, NULL, NULL, '2009-06-19 00:13:13.000000')
|
484
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 106, '2010-03-01 07:14:18.000000', 'Andrテδゥ Poitiers', NULL, NULL, NULL, NULL, NULL, 152, NULL, NULL, '2009-06-18 23:58:14.000000')[0m
|
485
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 107, '2010-03-01 07:14:18.000000', 'PERL and CGI for the World Wide Web [electronic resource] / Visual QuickStart guide', NULL, NULL, NULL, NULL, NULL, 153, NULL, NULL, '2009-06-18 23:43:08.000000')
|
486
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 108, '2010-03-01 07:14:18.000000', 'Python tutorial', NULL, NULL, NULL, NULL, NULL, 154, NULL, NULL, '2009-06-18 23:17:40.000000')[0m
|
487
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 109, '2010-03-01 07:14:18.000000', 'Line shapes of paramagnetic resonances in ruby', NULL, NULL, NULL, NULL, NULL, 155, NULL, NULL, '2009-06-18 22:44:00.000000')
|
488
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 110, '2010-03-01 07:14:18.000000', 'Perl programmer''s reference', NULL, NULL, NULL, NULL, NULL, 156, NULL, NULL, '2009-06-18 22:19:34.000000')[0m
|
489
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 111, '2010-03-01 07:14:18.000000', 'Technological capabilities in developing countries', NULL, NULL, NULL, NULL, NULL, 157, NULL, NULL, '2009-06-18 21:58:42.000000')
|
490
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000158', '2010-03-01 07:14:18.000000', 'phenomena of vagueness', NULL, NULL, NULL, NULL, NULL, 158, NULL, NULL, '2009-06-18 21:44:38.000000')[0m
|
491
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000159', '2010-03-01 07:14:18.000000', 'theory of consumer''s demand', NULL, NULL, NULL, NULL, NULL, 159, NULL, NULL, '2009-06-18 21:10:02.000000')
|
492
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 112, '2010-03-01 07:14:18.000000', 'theory of consumer''s demand', NULL, NULL, NULL, NULL, NULL, 160, NULL, NULL, '2009-06-18 21:10:01.000000')[0m
|
493
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 113, '2010-03-01 07:14:18.000000', 'Monty Python, Shakespeare, and English Renaissance drama', NULL, NULL, NULL, NULL, NULL, 161, NULL, NULL, '2009-06-18 20:37:58.000000')
|
494
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 114, '2010-03-01 07:14:18.000000', 'Analyzing computer system performance with PERL::PDQ', NULL, NULL, NULL, NULL, NULL, 162, NULL, NULL, '2009-06-18 20:29:54.000000')[0m
|
495
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 115, '2010-03-01 07:14:18.000000', 'equilibrium of the reaction between the manganate, permanganate, and hydroxide of potassium, and manganese dioxide', NULL, NULL, NULL, NULL, NULL, 163, NULL, NULL, '2009-06-18 20:16:44.000000')
|
496
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 116, '2010-03-01 07:14:18.000000', 'Stimulated optical emission in ruby', NULL, NULL, NULL, NULL, NULL, 164, NULL, NULL, '2009-06-18 20:05:25.000000')[0m
|
497
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 117, '2010-03-01 07:14:18.000000', 'Strategic planning and risk analysis', NULL, NULL, NULL, NULL, NULL, 165, NULL, NULL, '2009-06-18 17:41:41.000000')
|
498
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 118, '2010-03-01 07:14:18.000000', 'Performance assertion checking', NULL, NULL, NULL, NULL, NULL, 166, NULL, NULL, '2009-06-18 17:34:03.000000')[0m
|
499
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 119, '2010-03-01 07:14:18.000000', 'Spin-lattice relaxation time of ruby', NULL, NULL, NULL, NULL, NULL, 167, NULL, NULL, '2009-06-18 16:26:38.000000')
|
500
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000168', '2010-03-01 07:14:18.000000', 'Mourning Ruby', NULL, NULL, NULL, NULL, NULL, 168, NULL, NULL, '2009-06-18 16:25:25.000000')[0m
|
501
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000169', '2010-03-01 07:14:18.000000', 'statistical analysis of banking performance in the Eastern Caribbean Currency Union in the 1990s', NULL, NULL, NULL, NULL, NULL, 169, NULL, NULL, '2009-06-18 15:53:44.000000')
|
502
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 120, '2010-03-01 07:14:18.000000', 'Professional Perl programming / Perl programming', NULL, NULL, NULL, NULL, NULL, 170, NULL, NULL, '2009-06-18 15:52:50.000000')[0m
|
503
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 121, '2010-03-01 07:14:18.000000', 'Perl in a nutshell', NULL, NULL, NULL, NULL, NULL, 171, NULL, NULL, '2009-06-18 15:40:53.000000')
|
504
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 122, '2010-03-01 07:14:18.000000', 'Programming Web services with Perl', NULL, NULL, NULL, NULL, NULL, 172, NULL, NULL, '2009-06-18 15:34:21.000000')[0m
|
505
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 123, '2010-03-01 07:14:18.000000', 'Proceedings of the Trieste Workshop on the search for New Elementary Particles / International journal of modern physics / Search for new elementary particles', NULL, NULL, NULL, NULL, NULL, 173, NULL, NULL, '2009-06-18 15:08:06.000000')
|
506
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 124, '2010-03-01 07:14:18.000000', 'Europeras 3 & 4 / Europera', NULL, NULL, NULL, NULL, NULL, 174, NULL, NULL, '2009-06-18 15:05:43.000000')[0m
|
507
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 125, '2010-03-01 07:14:18.000000', 'Retreats from realism in recent English drama', NULL, NULL, NULL, NULL, NULL, 175, NULL, NULL, '2009-06-18 15:03:06.000000')
|
508
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 126, '2010-03-01 07:14:18.000000', 'Python programming patterns', NULL, NULL, NULL, NULL, NULL, 176, NULL, NULL, '2009-06-18 14:52:11.000000')[0m
|
509
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 127, '2010-03-01 07:14:18.000000', 'Beginning Perl for bioinformatics', NULL, NULL, NULL, NULL, NULL, 177, NULL, NULL, '2009-06-18 13:45:13.000000')
|
510
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000178', '2010-03-01 07:14:18.000000', 'Learning Perl', NULL, NULL, NULL, NULL, NULL, 178, NULL, NULL, '2009-06-18 13:45:11.000000')[0m
|
511
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000179', '2010-03-01 07:14:18.000000', 'Effective awk programming', NULL, NULL, NULL, NULL, NULL, 179, NULL, NULL, '2009-06-18 13:45:09.000000')
|
512
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000180', '2010-03-01 07:14:18.000000', 'Python standard library / Annotated reference for Python 2.0', NULL, NULL, NULL, NULL, NULL, 180, NULL, NULL, '2009-06-18 13:45:04.000000')[0m
|
513
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000181', '2010-03-01 07:14:18.000000', 'Programming Python', NULL, NULL, NULL, NULL, NULL, 181, NULL, NULL, '2009-06-18 13:45:04.000000')
|
514
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000182', '2010-03-01 07:14:18.000000', 'Perl CD bookshelf', NULL, NULL, NULL, NULL, NULL, 182, NULL, NULL, '2009-06-18 13:44:56.000000')[0m
|
515
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000183', '2010-03-01 07:14:18.000000', 'Programming Perl', NULL, NULL, NULL, NULL, NULL, 183, NULL, NULL, '2009-06-18 13:44:55.000000')
|
516
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000184', '2010-03-01 07:14:18.000000', 'Sed & awk pocket reference / Sed and awk pocket reference', NULL, NULL, NULL, NULL, NULL, 184, NULL, NULL, '2009-06-18 13:44:54.000000')[0m
|
517
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000185', '2010-03-01 07:14:18.000000', 'Perl power!', NULL, NULL, NULL, NULL, NULL, 185, NULL, NULL, '2009-06-18 13:41:37.000000')
|
518
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000186', '2010-03-01 07:14:18.000000', 'ATOKダイレクト API for Perl / Ruby?|?さらに使いこなす?|?ATOK.com', NULL, NULL, NULL, NULL, NULL, 186, NULL, NULL, '2008-12-19 17:52:47.000000')[0m
|
519
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000187', '2010-03-01 07:14:18.000000', 'Welcome ― Ruby Enterprise Edition', NULL, NULL, NULL, NULL, NULL, 187, NULL, NULL, '2008-10-19 15:58:50.000000')
|
520
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000188', '2010-03-01 07:14:18.000000', 'Pythonクックブック', NULL, NULL, NULL, NULL, NULL, 188, NULL, NULL, '2008-08-22 00:27:29.000000')[0m
|
521
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000189', '2010-03-01 07:14:18.000000', 'みんなのPython インデントの世界へようこそ! object oriented-lightweight language Python', NULL, NULL, NULL, NULL, NULL, 189, NULL, NULL, '2008-08-22 00:20:59.000000')
|
522
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000190', '2010-03-01 07:14:18.000000', 'Django | The Web framework for perfectionists with deadlines', NULL, NULL, NULL, NULL, NULL, 190, NULL, NULL, '2008-05-20 13:06:31.000000')[0m
|
523
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000191', '2010-03-01 07:14:18.000000', 'fac-back-opac - Google Code', NULL, NULL, NULL, NULL, NULL, 191, NULL, NULL, '2008-05-19 22:36:11.000000')
|
524
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784873113241, '2010-03-01 07:14:18.000000', 'Rubyクックブック', NULL, NULL, NULL, '2007-04-27', NULL, 192, NULL, NULL, '2008-03-05 01:37:55.000000')[0m
|
525
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "isbn10", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784797340044, 4797340045, '2010-03-01 07:14:18.000000', 'Rubyレシピブック', NULL, NULL, NULL, '2007-02-01', NULL, 193, NULL, NULL, '2008-03-05 01:30:39.000000')
|
526
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000194', '2010-03-01 07:14:18.000000', '初めてのPerl 第3版', NULL, NULL, NULL, NULL, NULL, 194, NULL, NULL, '2007-11-19 17:56:37.000000')[0m
|
527
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, '0000000195', '2010-03-01 07:14:18.000000', '続・初めてのPerl 改訂版', NULL, NULL, NULL, NULL, NULL, 195, NULL, NULL, '2007-11-19 17:55:42.000000')
|
528
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9784797336610, '2010-03-01 07:14:18.000000', 'たのしいRuby 第2版 Rubyではじめる気軽なプログラミング', NULL, NULL, NULL, '2006-08-05', NULL, 196, NULL, NULL, '2007-11-19 17:55:41.000000')[0m
|
529
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, NULL, '2010-03-15 07:14:18.000000', 'Ruby', NULL, NULL, NULL, NULL, NULL, 197, NULL, NULL, '2007-11-19 17:55:41.000000')
|
530
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, NULL, '2010-03-15 07:14:18.000000', '紅玉の本', NULL, NULL, NULL, NULL, NULL, 198, NULL, NULL, '2007-11-19 17:55:41.000000')[0m
|
531
|
+
[1m[35mFixture Insert (0.2ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "frequency_id", "issn") VALUES (1, 1, 9876543210201, '2010-03-01 07:14:18.000000', 'テスト雑誌2005年1月号', NULL, NULL, NULL, NULL, NULL, 201, NULL, NULL, '2007-11-19 17:55:41.000000', 3, '09130000')
|
532
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "frequency_id", "issn", "serial_number", "volume_number", "issue_number") VALUES (1, 1, 9876543210202, '2010-03-01 07:14:18.000000', 'テスト雑誌2月号', NULL, NULL, NULL, NULL, NULL, 202, NULL, NULL, '2007-11-19 17:55:41.000000', 3, 12345678, 2, 1, 2)[0m
|
533
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "frequency_id") VALUES (1, 1, 9876543210203, '2010-03-01 07:14:18.000000', 'テスト単行本記事2005', NULL, NULL, NULL, NULL, NULL, 203, NULL, NULL, '2010-03-03 17:00:00.000000', 1)
|
534
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 5555567890001, '2010-03-03 11:00:00.000000', 'テスト雑誌1月号の記事1', NULL, NULL, NULL, NULL, NULL, 204, NULL, NULL, '2010-03-03 20:00:00.000000')[0m
|
535
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 5555567890002, '2010-03-03 11:00:00.000000', 'テスト雑誌1月号の記事2', NULL, NULL, NULL, NULL, NULL, 205, NULL, NULL, '2010-03-03 20:00:00.000000')
|
536
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 5555567890003, '2010-03-03 11:00:00.000000', 'テスト雑誌2月号の記事1', NULL, NULL, NULL, NULL, NULL, 206, NULL, NULL, '2010-03-03 20:00:00.000000')[0m
|
537
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, 9876543210207, '2010-03-03 11:00:00.000000', '試験単行本', NULL, NULL, NULL, NULL, NULL, 207, NULL, NULL, '2010-03-03 20:00:00.000000')
|
538
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at") VALUES (1, 1, NULL, '2010-03-16 02:00:00.000000', 'ある出版物', NULL, NULL, NULL, NULL, NULL, 208, NULL, NULL, '2010-03-16 11:00:00.000000')[0m
|
539
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認Admin専用1', NULL, NULL, NULL, NULL, NULL, 209, NULL, NULL, '2010-03-19 13:00:00.000000', 4)
|
540
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認Admin専用2', NULL, NULL, NULL, NULL, NULL, 210, NULL, NULL, '2010-03-19 13:00:00.000000', 4, 't')[0m
|
541
|
+
[1m[35mFixture Insert (0.2ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認Librarian以上用1', NULL, NULL, NULL, NULL, NULL, 211, NULL, NULL, '2010-03-19 13:00:00.000000', 3, 't')
|
542
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認Librarian以上用2', NULL, NULL, NULL, NULL, NULL, 212, NULL, NULL, '2010-03-19 13:00:00.000000', 3, 't')[0m
|
543
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認User以上用1', NULL, NULL, NULL, NULL, NULL, 213, NULL, NULL, '2010-03-19 13:00:00.000000', 2, 't')
|
544
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認User以上用2', NULL, NULL, NULL, NULL, NULL, 214, NULL, NULL, '2010-03-19 13:00:00.000000', 2, 'f')[0m
|
545
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認', NULL, NULL, NULL, NULL, NULL, 215, NULL, NULL, '2010-03-19 13:00:00.000000', 1, 't')
|
546
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', '権限確認', NULL, NULL, NULL, NULL, NULL, 216, NULL, NULL, '2010-03-19 13:00:00.000000', 1, 'f')[0m
|
547
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "manifestations" ("carrier_type_id", "language_id", "isbn", "updated_at", "original_title", "price", "manifestation_identifier", "depth", "date_of_publication", "access_address", "id", "height", "width", "created_at", "required_role_id", "repository_content") VALUES (1, 1, NULL, '2010-03-19 04:00:00.000000', 'Flickr', NULL, NULL, NULL, NULL, 'http://www.flickr.com/photos/japan_library_association/sets/72157626376861041/', 217, NULL, NULL, '2010-03-19 13:00:00.000000', 1, 'f')
|
548
|
+
[1m[36m (7.3ms)[0m [1mcommit transaction[0m
|
549
|
+
[1m[35m (0.1ms)[0m begin transaction
|
550
|
+
[1m[36mManifestation Load (0.4ms)[0m [1mSELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1[0m [["id", 1]]
|
551
|
+
Rendered /Users/kosuke/enju_manifestation_viewer/app/views/manifestations/_google_book_search.html.erb (2.1ms)
|
552
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
553
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
554
|
+
[1m[35mManifestation Load (0.1ms)[0m SELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1 [["id", 22]]
|
555
|
+
Rendered /Users/kosuke/enju_manifestation_viewer/app/views/manifestations/_youtube.html.erb (8.0ms)
|
556
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
557
|
+
[1m[35m (0.0ms)[0m begin transaction
|
558
|
+
[1m[36mManifestation Load (0.1ms)[0m [1mSELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1[0m [["id", 23]]
|
559
|
+
Rendered /Users/kosuke/enju_manifestation_viewer/app/views/manifestations/_nicovideo.html.erb (0.8ms)
|
560
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
561
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
562
|
+
[1m[35mManifestation Load (0.1ms)[0m SELECT "manifestations".* FROM "manifestations" WHERE "manifestations"."id" = ? LIMIT 1 [["id", 217]]
|
563
|
+
Rendered /Users/kosuke/enju_manifestation_viewer/app/views/manifestations/_flickr.html.erb (1.2ms)
|
564
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
@@ -29,7 +29,7 @@ describe EnjuManifestationViewer::ManifestationViewerHelper do
|
|
29
29
|
helper.embed_content(manifestations(:manifestation_00217)).should =~ /<object width="400" height="300"><param name="flashvars"/
|
30
30
|
end
|
31
31
|
|
32
|
-
it "should render scribd template" do
|
33
|
-
|
34
|
-
end
|
32
|
+
#it "should render scribd template" do
|
33
|
+
# helper.embed_content(manifestations(:manifestation_00001)).should =~ /<td colspan="2" style="width: 700px">/
|
34
|
+
#end
|
35
35
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: enju_manifestation_viewer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.0.
|
4
|
+
version: 0.1.0.pre5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kosuke Tanabe
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-04-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - ~>
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.1.0.
|
33
|
+
version: 0.1.0.pre28
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - ~>
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.1.0.
|
40
|
+
version: 0.1.0.pre28
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: sqlite3
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -93,7 +93,6 @@ files:
|
|
93
93
|
- app/views/manifestations/_scribd.html.erb
|
94
94
|
- app/views/manifestations/_youtube.html.erb
|
95
95
|
- config/routes.rb
|
96
|
-
- db/migrate/20090704145024_enju_scribd_fu_migration.rb
|
97
96
|
- lib/enju_manifestation_viewer/engine.rb
|
98
97
|
- lib/enju_manifestation_viewer/manifestation_viewer_helper.rb
|
99
98
|
- lib/enju_manifestation_viewer/version.rb
|
@@ -131,6 +130,7 @@ files:
|
|
131
130
|
- spec/dummy/db/migrate/20110916091020_add_volume_number_to_manifestation.rb
|
132
131
|
- spec/dummy/db/schema.rb
|
133
132
|
- spec/dummy/db/test.sqlite3
|
133
|
+
- spec/dummy/log/test.log
|
134
134
|
- spec/dummy/public/404.html
|
135
135
|
- spec/dummy/public/422.html
|
136
136
|
- spec/dummy/public/500.html
|
@@ -193,6 +193,7 @@ test_files:
|
|
193
193
|
- spec/dummy/db/migrate/20110916091020_add_volume_number_to_manifestation.rb
|
194
194
|
- spec/dummy/db/schema.rb
|
195
195
|
- spec/dummy/db/test.sqlite3
|
196
|
+
- spec/dummy/log/test.log
|
196
197
|
- spec/dummy/public/404.html
|
197
198
|
- spec/dummy/public/422.html
|
198
199
|
- spec/dummy/public/500.html
|
@@ -1,11 +0,0 @@
|
|
1
|
-
class EnjuScribdFuMigration < ActiveRecord::Migration
|
2
|
-
def self.up
|
3
|
-
add_column :manifestations, :ipaper_id, :integer
|
4
|
-
add_column :manifestations, :ipaper_access_key, :string
|
5
|
-
end
|
6
|
-
|
7
|
-
def self.down
|
8
|
-
remove_column :manifestations, :ipaper_id
|
9
|
-
remove_column :manifestations, :ipaper_access_key
|
10
|
-
end
|
11
|
-
end
|