Bugzilla – Attachment 152956 Details for
Bug 30708
Creation of a new 'Preservation' module
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 30708: DBIC schema changes
Bug-30708-DBIC-schema-changes.patch (text/plain), 17.77 KB, created by
Jonathan Druart
on 2023-07-03 13:29:55 UTC
(
hide
)
Description:
Bug 30708: DBIC schema changes
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2023-07-03 13:29:55 UTC
Size:
17.77 KB
patch
obsolete
>From d7ce9db2dfe9e800d44a4337ba80eb0150cdc2fe Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Mon, 17 Apr 2023 20:48:16 +0200 >Subject: [PATCH] Bug 30708: DBIC schema changes > >Sponsored-by: BULAC - http://www.bulac.fr/ >Signed-off-by: BULAC - http://www.bulac.fr/ >--- > Koha/Schema/Result/Item.pm | 19 +- > Koha/Schema/Result/PreservationProcessing.pm | 116 +++++++++++ > .../Result/PreservationProcessingAttribute.pm | 137 ++++++++++++ > .../PreservationProcessingAttributesItem.pm | 113 ++++++++++ > Koha/Schema/Result/PreservationTrain.pm | 195 ++++++++++++++++++ > Koha/Schema/Result/PreservationTrainsItem.pm | 195 ++++++++++++++++++ > 6 files changed, 773 insertions(+), 2 deletions(-) > create mode 100644 Koha/Schema/Result/PreservationProcessing.pm > create mode 100644 Koha/Schema/Result/PreservationProcessingAttribute.pm > create mode 100644 Koha/Schema/Result/PreservationProcessingAttributesItem.pm > create mode 100644 Koha/Schema/Result/PreservationTrain.pm > create mode 100644 Koha/Schema/Result/PreservationTrainsItem.pm > >diff --git a/Koha/Schema/Result/Item.pm b/Koha/Schema/Result/Item.pm >index 980ea046c4a..3add5607269 100644 >--- a/Koha/Schema/Result/Item.pm >+++ b/Koha/Schema/Result/Item.pm >@@ -852,6 +852,21 @@ __PACKAGE__->has_many( > { cascade_copy => 0, cascade_delete => 0 }, > ); > >+=head2 preservation_trains_items >+ >+Type: has_many >+ >+Related object: L<Koha::Schema::Result::PreservationTrainsItem> >+ >+=cut >+ >+__PACKAGE__->has_many( >+ "preservation_trains_items", >+ "Koha::Schema::Result::PreservationTrainsItem", >+ { "foreign.item_id" => "self.itemnumber" }, >+ { cascade_copy => 0, cascade_delete => 0 }, >+); >+ > =head2 recalls > > Type: has_many >@@ -943,8 +958,8 @@ __PACKAGE__->has_many( > ); > > >-# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-05-12 18:18:47 >-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:HMU2tnuIRypuatz/J5683A >+# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-06-06 12:02:07 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:v4sXRFhDNSt9qK9QK7wFSw > > __PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" ); > >diff --git a/Koha/Schema/Result/PreservationProcessing.pm b/Koha/Schema/Result/PreservationProcessing.pm >new file mode 100644 >index 00000000000..77002f7e76e >--- /dev/null >+++ b/Koha/Schema/Result/PreservationProcessing.pm >@@ -0,0 +1,116 @@ >+use utf8; >+package Koha::Schema::Result::PreservationProcessing; >+ >+# Created by DBIx::Class::Schema::Loader >+# DO NOT MODIFY THE FIRST PART OF THIS FILE >+ >+=head1 NAME >+ >+Koha::Schema::Result::PreservationProcessing >+ >+=cut >+ >+use strict; >+use warnings; >+ >+use base 'DBIx::Class::Core'; >+ >+=head1 TABLE: C<preservation_processings> >+ >+=cut >+ >+__PACKAGE__->table("preservation_processings"); >+ >+=head1 ACCESSORS >+ >+=head2 processing_id >+ >+ data_type: 'integer' >+ is_auto_increment: 1 >+ is_nullable: 0 >+ >+primary key >+ >+=head2 name >+ >+ data_type: 'varchar' >+ is_nullable: 0 >+ size: 80 >+ >+name of the processing >+ >+=cut >+ >+__PACKAGE__->add_columns( >+ "processing_id", >+ { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, >+ "name", >+ { data_type => "varchar", is_nullable => 0, size => 80 }, >+); >+ >+=head1 PRIMARY KEY >+ >+=over 4 >+ >+=item * L</processing_id> >+ >+=back >+ >+=cut >+ >+__PACKAGE__->set_primary_key("processing_id"); >+ >+=head1 RELATIONS >+ >+=head2 preservation_processing_attributes >+ >+Type: has_many >+ >+Related object: L<Koha::Schema::Result::PreservationProcessingAttribute> >+ >+=cut >+ >+__PACKAGE__->has_many( >+ "preservation_processing_attributes", >+ "Koha::Schema::Result::PreservationProcessingAttribute", >+ { "foreign.processing_id" => "self.processing_id" }, >+ { cascade_copy => 0, cascade_delete => 0 }, >+); >+ >+=head2 preservation_trains >+ >+Type: has_many >+ >+Related object: L<Koha::Schema::Result::PreservationTrain> >+ >+=cut >+ >+__PACKAGE__->has_many( >+ "preservation_trains", >+ "Koha::Schema::Result::PreservationTrain", >+ { "foreign.default_processing_id" => "self.processing_id" }, >+ { cascade_copy => 0, cascade_delete => 0 }, >+); >+ >+=head2 preservation_trains_items >+ >+Type: has_many >+ >+Related object: L<Koha::Schema::Result::PreservationTrainsItem> >+ >+=cut >+ >+__PACKAGE__->has_many( >+ "preservation_trains_items", >+ "Koha::Schema::Result::PreservationTrainsItem", >+ { "foreign.processing_id" => "self.processing_id" }, >+ { cascade_copy => 0, cascade_delete => 0 }, >+); >+ >+ >+# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-17 18:47:47 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:m7bHppTX3UpQY9CfmRPqQA >+ >+ >+# You can replace this text with custom code or comments, and it will be preserved on regeneration >+1; >diff --git a/Koha/Schema/Result/PreservationProcessingAttribute.pm b/Koha/Schema/Result/PreservationProcessingAttribute.pm >new file mode 100644 >index 00000000000..bd704a0e8d3 >--- /dev/null >+++ b/Koha/Schema/Result/PreservationProcessingAttribute.pm >@@ -0,0 +1,137 @@ >+use utf8; >+package Koha::Schema::Result::PreservationProcessingAttribute; >+ >+# Created by DBIx::Class::Schema::Loader >+# DO NOT MODIFY THE FIRST PART OF THIS FILE >+ >+=head1 NAME >+ >+Koha::Schema::Result::PreservationProcessingAttribute >+ >+=cut >+ >+use strict; >+use warnings; >+ >+use base 'DBIx::Class::Core'; >+ >+=head1 TABLE: C<preservation_processing_attributes> >+ >+=cut >+ >+__PACKAGE__->table("preservation_processing_attributes"); >+ >+=head1 ACCESSORS >+ >+=head2 processing_attribute_id >+ >+ data_type: 'integer' >+ is_auto_increment: 1 >+ is_nullable: 0 >+ >+primary key >+ >+=head2 processing_id >+ >+ data_type: 'integer' >+ is_foreign_key: 1 >+ is_nullable: 0 >+ >+link to the processing >+ >+=head2 name >+ >+ data_type: 'varchar' >+ is_nullable: 0 >+ size: 80 >+ >+name of the processing attribute >+ >+=head2 type >+ >+ data_type: 'enum' >+ extra: {list => ["authorised_value","free_text","db_column"]} >+ is_nullable: 0 >+ >+Type of the processing attribute >+ >+=head2 option_source >+ >+ data_type: 'varchar' >+ is_nullable: 1 >+ size: 80 >+ >+source of the possible options for this attribute >+ >+=cut >+ >+__PACKAGE__->add_columns( >+ "processing_attribute_id", >+ { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, >+ "processing_id", >+ { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, >+ "name", >+ { data_type => "varchar", is_nullable => 0, size => 80 }, >+ "type", >+ { >+ data_type => "enum", >+ extra => { list => ["authorised_value", "free_text", "db_column"] }, >+ is_nullable => 0, >+ }, >+ "option_source", >+ { data_type => "varchar", is_nullable => 1, size => 80 }, >+); >+ >+=head1 PRIMARY KEY >+ >+=over 4 >+ >+=item * L</processing_attribute_id> >+ >+=back >+ >+=cut >+ >+__PACKAGE__->set_primary_key("processing_attribute_id"); >+ >+=head1 RELATIONS >+ >+=head2 preservation_processing_attributes_items >+ >+Type: has_many >+ >+Related object: L<Koha::Schema::Result::PreservationProcessingAttributesItem> >+ >+=cut >+ >+__PACKAGE__->has_many( >+ "preservation_processing_attributes_items", >+ "Koha::Schema::Result::PreservationProcessingAttributesItem", >+ { >+ "foreign.processing_attribute_id" => "self.processing_attribute_id", >+ }, >+ { cascade_copy => 0, cascade_delete => 0 }, >+); >+ >+=head2 processing >+ >+Type: belongs_to >+ >+Related object: L<Koha::Schema::Result::PreservationProcessing> >+ >+=cut >+ >+__PACKAGE__->belongs_to( >+ "processing", >+ "Koha::Schema::Result::PreservationProcessing", >+ { processing_id => "processing_id" }, >+ { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, >+); >+ >+ >+# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-17 18:47:47 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:i0vFmFYaqiZFyXGxDp+6oQ >+ >+ >+# You can replace this text with custom code or comments, and it will be preserved on regeneration >+1; >diff --git a/Koha/Schema/Result/PreservationProcessingAttributesItem.pm b/Koha/Schema/Result/PreservationProcessingAttributesItem.pm >new file mode 100644 >index 00000000000..0ff4dae60c1 >--- /dev/null >+++ b/Koha/Schema/Result/PreservationProcessingAttributesItem.pm >@@ -0,0 +1,113 @@ >+use utf8; >+package Koha::Schema::Result::PreservationProcessingAttributesItem; >+ >+# Created by DBIx::Class::Schema::Loader >+# DO NOT MODIFY THE FIRST PART OF THIS FILE >+ >+=head1 NAME >+ >+Koha::Schema::Result::PreservationProcessingAttributesItem >+ >+=cut >+ >+use strict; >+use warnings; >+ >+use base 'DBIx::Class::Core'; >+ >+=head1 TABLE: C<preservation_processing_attributes_items> >+ >+=cut >+ >+__PACKAGE__->table("preservation_processing_attributes_items"); >+ >+=head1 ACCESSORS >+ >+=head2 processing_attribute_id >+ >+ data_type: 'integer' >+ is_foreign_key: 1 >+ is_nullable: 0 >+ >+link with preservation_processing_attributes >+ >+=head2 train_item_id >+ >+ data_type: 'integer' >+ is_foreign_key: 1 >+ is_nullable: 0 >+ >+link with preservation_trains_items >+ >+=head2 value >+ >+ data_type: 'varchar' >+ is_nullable: 1 >+ size: 255 >+ >+value for this attribute >+ >+=cut >+ >+__PACKAGE__->add_columns( >+ "processing_attribute_id", >+ { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, >+ "train_item_id", >+ { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, >+ "value", >+ { data_type => "varchar", is_nullable => 1, size => 255 }, >+); >+ >+=head1 PRIMARY KEY >+ >+=over 4 >+ >+=item * L</processing_attribute_id> >+ >+=item * L</train_item_id> >+ >+=back >+ >+=cut >+ >+__PACKAGE__->set_primary_key("processing_attribute_id", "train_item_id"); >+ >+=head1 RELATIONS >+ >+=head2 processing_attribute >+ >+Type: belongs_to >+ >+Related object: L<Koha::Schema::Result::PreservationProcessingAttribute> >+ >+=cut >+ >+__PACKAGE__->belongs_to( >+ "processing_attribute", >+ "Koha::Schema::Result::PreservationProcessingAttribute", >+ { processing_attribute_id => "processing_attribute_id" }, >+ { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, >+); >+ >+=head2 train_item >+ >+Type: belongs_to >+ >+Related object: L<Koha::Schema::Result::PreservationTrainsItem> >+ >+=cut >+ >+__PACKAGE__->belongs_to( >+ "train_item", >+ "Koha::Schema::Result::PreservationTrainsItem", >+ { train_item_id => "train_item_id" }, >+ { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, >+); >+ >+ >+# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-17 18:47:47 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CiFAelBwfhQzRX1cL0ssqA >+ >+ >+# You can replace this text with custom code or comments, and it will be preserved on regeneration >+1; >diff --git a/Koha/Schema/Result/PreservationTrain.pm b/Koha/Schema/Result/PreservationTrain.pm >new file mode 100644 >index 00000000000..9b51ee9f771 >--- /dev/null >+++ b/Koha/Schema/Result/PreservationTrain.pm >@@ -0,0 +1,195 @@ >+use utf8; >+package Koha::Schema::Result::PreservationTrain; >+ >+# Created by DBIx::Class::Schema::Loader >+# DO NOT MODIFY THE FIRST PART OF THIS FILE >+ >+=head1 NAME >+ >+Koha::Schema::Result::PreservationTrain >+ >+=cut >+ >+use strict; >+use warnings; >+ >+use base 'DBIx::Class::Core'; >+ >+=head1 TABLE: C<preservation_trains> >+ >+=cut >+ >+__PACKAGE__->table("preservation_trains"); >+ >+=head1 ACCESSORS >+ >+=head2 train_id >+ >+ data_type: 'integer' >+ is_auto_increment: 1 >+ is_nullable: 0 >+ >+primary key >+ >+=head2 name >+ >+ data_type: 'varchar' >+ is_nullable: 0 >+ size: 80 >+ >+name of the train >+ >+=head2 description >+ >+ data_type: 'varchar' >+ is_nullable: 1 >+ size: 255 >+ >+description of the train >+ >+=head2 default_processing_id >+ >+ data_type: 'integer' >+ is_foreign_key: 1 >+ is_nullable: 1 >+ >+default processing, link to preservation_processings.processing_id >+ >+=head2 not_for_loan >+ >+ data_type: 'varchar' >+ default_value: 0 >+ is_nullable: 0 >+ size: 80 >+ >+NOT_LOAN authorised value to apply toitem added to this train >+ >+=head2 created_on >+ >+ data_type: 'timestamp' >+ datetime_undef_if_invalid: 1 >+ default_value: current_timestamp >+ is_nullable: 0 >+ >+creation date >+ >+=head2 closed_on >+ >+ data_type: 'datetime' >+ datetime_undef_if_invalid: 1 >+ is_nullable: 1 >+ >+closing date >+ >+=head2 sent_on >+ >+ data_type: 'datetime' >+ datetime_undef_if_invalid: 1 >+ is_nullable: 1 >+ >+sending date >+ >+=head2 received_on >+ >+ data_type: 'datetime' >+ datetime_undef_if_invalid: 1 >+ is_nullable: 1 >+ >+receiving date >+ >+=cut >+ >+__PACKAGE__->add_columns( >+ "train_id", >+ { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, >+ "name", >+ { data_type => "varchar", is_nullable => 0, size => 80 }, >+ "description", >+ { data_type => "varchar", is_nullable => 1, size => 255 }, >+ "default_processing_id", >+ { data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, >+ "not_for_loan", >+ { data_type => "varchar", default_value => 0, is_nullable => 0, size => 80 }, >+ "created_on", >+ { >+ data_type => "timestamp", >+ datetime_undef_if_invalid => 1, >+ default_value => \"current_timestamp", >+ is_nullable => 0, >+ }, >+ "closed_on", >+ { >+ data_type => "datetime", >+ datetime_undef_if_invalid => 1, >+ is_nullable => 1, >+ }, >+ "sent_on", >+ { >+ data_type => "datetime", >+ datetime_undef_if_invalid => 1, >+ is_nullable => 1, >+ }, >+ "received_on", >+ { >+ data_type => "datetime", >+ datetime_undef_if_invalid => 1, >+ is_nullable => 1, >+ }, >+); >+ >+=head1 PRIMARY KEY >+ >+=over 4 >+ >+=item * L</train_id> >+ >+=back >+ >+=cut >+ >+__PACKAGE__->set_primary_key("train_id"); >+ >+=head1 RELATIONS >+ >+=head2 default_processing >+ >+Type: belongs_to >+ >+Related object: L<Koha::Schema::Result::PreservationProcessing> >+ >+=cut >+ >+__PACKAGE__->belongs_to( >+ "default_processing", >+ "Koha::Schema::Result::PreservationProcessing", >+ { processing_id => "default_processing_id" }, >+ { >+ is_deferrable => 1, >+ join_type => "LEFT", >+ on_delete => "SET NULL", >+ on_update => "CASCADE", >+ }, >+); >+ >+=head2 preservation_trains_items >+ >+Type: has_many >+ >+Related object: L<Koha::Schema::Result::PreservationTrainsItem> >+ >+=cut >+ >+__PACKAGE__->has_many( >+ "preservation_trains_items", >+ "Koha::Schema::Result::PreservationTrainsItem", >+ { "foreign.train_id" => "self.train_id" }, >+ { cascade_copy => 0, cascade_delete => 0 }, >+); >+ >+ >+# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-17 18:47:47 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ojxQ0wFj2datCPVjeuTBWw >+ >+ >+# You can replace this text with custom code or comments, and it will be preserved on regeneration >+1; >diff --git a/Koha/Schema/Result/PreservationTrainsItem.pm b/Koha/Schema/Result/PreservationTrainsItem.pm >new file mode 100644 >index 00000000000..78d197ec27d >--- /dev/null >+++ b/Koha/Schema/Result/PreservationTrainsItem.pm >@@ -0,0 +1,195 @@ >+use utf8; >+package Koha::Schema::Result::PreservationTrainsItem; >+ >+# Created by DBIx::Class::Schema::Loader >+# DO NOT MODIFY THE FIRST PART OF THIS FILE >+ >+=head1 NAME >+ >+Koha::Schema::Result::PreservationTrainsItem >+ >+=cut >+ >+use strict; >+use warnings; >+ >+use base 'DBIx::Class::Core'; >+ >+=head1 TABLE: C<preservation_trains_items> >+ >+=cut >+ >+__PACKAGE__->table("preservation_trains_items"); >+ >+=head1 ACCESSORS >+ >+=head2 train_item_id >+ >+ data_type: 'integer' >+ is_auto_increment: 1 >+ is_nullable: 0 >+ >+primary key >+ >+=head2 train_id >+ >+ data_type: 'integer' >+ is_foreign_key: 1 >+ is_nullable: 0 >+ >+link with preservation_train >+ >+=head2 item_id >+ >+ data_type: 'integer' >+ is_foreign_key: 1 >+ is_nullable: 0 >+ >+link with items >+ >+=head2 processing_id >+ >+ data_type: 'integer' >+ is_foreign_key: 1 >+ is_nullable: 1 >+ >+specific processing for this item >+ >+=head2 user_train_item_id >+ >+ data_type: 'integer' >+ is_nullable: 0 >+ >+train item id for this train, starts from 1 >+ >+=head2 added_on >+ >+ data_type: 'datetime' >+ datetime_undef_if_invalid: 1 >+ is_nullable: 1 >+ >+added date >+ >+=cut >+ >+__PACKAGE__->add_columns( >+ "train_item_id", >+ { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, >+ "train_id", >+ { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, >+ "item_id", >+ { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, >+ "processing_id", >+ { data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, >+ "user_train_item_id", >+ { data_type => "integer", is_nullable => 0 }, >+ "added_on", >+ { >+ data_type => "datetime", >+ datetime_undef_if_invalid => 1, >+ is_nullable => 1, >+ }, >+); >+ >+=head1 PRIMARY KEY >+ >+=over 4 >+ >+=item * L</train_item_id> >+ >+=back >+ >+=cut >+ >+__PACKAGE__->set_primary_key("train_item_id"); >+ >+=head1 UNIQUE CONSTRAINTS >+ >+=head2 C<train_id> >+ >+=over 4 >+ >+=item * L</train_id> >+ >+=item * L</item_id> >+ >+=back >+ >+=cut >+ >+__PACKAGE__->add_unique_constraint("train_id", ["train_id", "item_id"]); >+ >+=head1 RELATIONS >+ >+=head2 item >+ >+Type: belongs_to >+ >+Related object: L<Koha::Schema::Result::Item> >+ >+=cut >+ >+__PACKAGE__->belongs_to( >+ "item", >+ "Koha::Schema::Result::Item", >+ { itemnumber => "item_id" }, >+ { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, >+); >+ >+=head2 preservation_processing_attributes_items >+ >+Type: has_many >+ >+Related object: L<Koha::Schema::Result::PreservationProcessingAttributesItem> >+ >+=cut >+ >+__PACKAGE__->has_many( >+ "preservation_processing_attributes_items", >+ "Koha::Schema::Result::PreservationProcessingAttributesItem", >+ { "foreign.train_item_id" => "self.train_item_id" }, >+ { cascade_copy => 0, cascade_delete => 0 }, >+); >+ >+=head2 processing >+ >+Type: belongs_to >+ >+Related object: L<Koha::Schema::Result::PreservationProcessing> >+ >+=cut >+ >+__PACKAGE__->belongs_to( >+ "processing", >+ "Koha::Schema::Result::PreservationProcessing", >+ { processing_id => "processing_id" }, >+ { >+ is_deferrable => 1, >+ join_type => "LEFT", >+ on_delete => "SET NULL", >+ on_update => "CASCADE", >+ }, >+); >+ >+=head2 train >+ >+Type: belongs_to >+ >+Related object: L<Koha::Schema::Result::PreservationTrain> >+ >+=cut >+ >+__PACKAGE__->belongs_to( >+ "train", >+ "Koha::Schema::Result::PreservationTrain", >+ { train_id => "train_id" }, >+ { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, >+); >+ >+ >+# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-17 18:47:47 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lpvjaV+qXrIDVlimBaycgA >+ >+ >+# You can replace this text with custom code or comments, and it will be preserved on regeneration >+1; >-- >2.25.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 30708
:
134715
|
134716
|
134732
|
134733
|
134734
|
134736
|
134737
|
134738
|
134782
|
134783
|
134784
|
134785
|
152939
|
152940
|
152941
|
152942
|
152943
|
152944
|
152945
|
152946
|
152947
|
152948
|
152949
|
152950
|
152951
|
152952
|
152953
|
152954
|
152955
|
152956
|
152957
|
152958
|
152959
|
152960
|
152961
|
152962
|
152963
|
152964
|
152965
|
152966
|
152967
|
152968
|
152969
|
152970
|
153102
|
153576
|
154167
|
154168
|
154169
|
154170
|
154171
|
154172
|
154173
|
154174
|
154175
|
154176
|
154177
|
154178
|
154179
|
154180
|
154181
|
154182
|
154183
|
154184
|
154185
|
154186
|
154187
|
154188
|
154189
|
154190
|
154191
|
154192
|
154193
|
154194
|
154195
|
154196
|
154197
|
154198
|
154199
|
154200
|
154201
|
154202
|
154203
|
156592
|
156596
|
156597
|
156636
|
156637
|
156638
|
156639
|
156640
|
156641
|
156642
|
156643
|
156644
|
156645
|
156646
|
156647
|
156648
|
156649
|
156650
|
156651
|
156652
|
156653
|
156654
|
156655
|
156656
|
156657
|
156658
|
156659
|
156660
|
156661
|
156662
|
156663
|
156664
|
156665
|
156666
|
156667
|
156668
|
156669
|
156670
|
156671
|
156672
|
156673
|
156674
|
156675
|
157502
|
157503
|
157506
|
157508
|
157512
|
157514
|
157557