mpxj 10.9.1 → 10.11.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of mpxj might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 602ab7f64ea71bf9f25b82501cfa75f2db569212759708b1b5abd8c9125b14ad
4
- data.tar.gz: e8aeecf19e1d5157cda495ba67f69195c7b86b335089acf49a2b7682c1c7cbeb
3
+ metadata.gz: 7542243f058016de372a9c3f39e5da3457dea9006a7147287e530a355a685ec9
4
+ data.tar.gz: 8e677d11024b0562372a5901c9f6011d335cc9715459f4fb4eb51531122cfa05
5
5
  SHA512:
6
- metadata.gz: da376ed7f0b59b54159d20afdfdd50134e2bd70dda47cf3eab6493f34d8aff0f7f8c751a46db073c711b6fe8d8d35cd91bf2213422f78e3969094449750ebf2e
7
- data.tar.gz: f1f9d11f5d680c856870a1f1d586806ec5b76dfbfe3d95bdcb91d731d46459ed780443e1e2f0ab7044a53594b0897f1751607e7288caf095b389228fd310e1bb
6
+ metadata.gz: 3bf59d398f0a844333c1e95cdc24b732977f3922982429c44e208dfb1bf775ae7360ba18e4ae9b4a1a4a73879655c90e715ffa149010eca3ecd7724905ef735f
7
+ data.tar.gz: 705d47318a0ab583da478af2aeb8f404af1072cde05ec68f158ee39d6bdde824eff132c8498209e70c6639eeb4e175afc7ee71b30bb2ffa4700cdb8a798eff9a
Binary file
data/lib/mpxj/mpxj.jar CHANGED
Binary file
@@ -85,7 +85,7 @@ module MPXJ
85
85
  #
86
86
  # @return Assignment value
87
87
  def assignment
88
- attribute_values['assignment']
88
+ get_boolean_value(attribute_values['assignment'])
89
89
  end
90
90
 
91
91
  # Retrieve the Assignment Delay value
@@ -1079,7 +1079,7 @@ module MPXJ
1079
1079
  #
1080
1080
  # @return Enterprise Base Calendar value
1081
1081
  def enterprise_base_calendar
1082
- attribute_values['enterprise_base_calendar']
1082
+ get_boolean_value(attribute_values['enterprise_base_calendar'])
1083
1083
  end
1084
1084
 
1085
1085
  # Retrieve the Enterprise Checked Out By value
@@ -4216,7 +4216,7 @@ module MPXJ
4216
4216
  'actual_work' => :work,
4217
4217
  'actual_work_protected' => :work,
4218
4218
  'acwp' => :currency,
4219
- 'assignment' => :string,
4219
+ 'assignment' => :boolean,
4220
4220
  'assignment_delay' => :string,
4221
4221
  'assignment_owner' => :string,
4222
4222
  'assignment_units' => :string,
@@ -4358,7 +4358,7 @@ module MPXJ
4358
4358
  'email_address' => :string,
4359
4359
  'engagement_status' => :string,
4360
4360
  'enterprise' => :boolean,
4361
- 'enterprise_base_calendar' => :string,
4361
+ 'enterprise_base_calendar' => :boolean,
4362
4362
  'enterprise_checked_out_by' => :string,
4363
4363
  'enterprise_cost1' => :currency,
4364
4364
  'enterprise_cost10' => :currency,
@@ -120,7 +120,7 @@ module MPXJ
120
120
  #
121
121
  # @return Assignment value
122
122
  def assignment
123
- attribute_values['assignment']
123
+ get_boolean_value(attribute_values['assignment'])
124
124
  end
125
125
 
126
126
  # Retrieve the Assignment Delay value
@@ -155,7 +155,7 @@ module MPXJ
155
155
  #
156
156
  # @return Baseline10 Budget Work value
157
157
  def baseline10_budget_work
158
- get_float_value(attribute_values['baseline10_budget_work'])
158
+ get_duration_value(attribute_values['baseline10_budget_work'])
159
159
  end
160
160
 
161
161
  # Retrieve the Baseline10 Cost value
@@ -267,7 +267,7 @@ module MPXJ
267
267
  #
268
268
  # @return Baseline1 Budget Work value
269
269
  def baseline1_budget_work
270
- get_float_value(attribute_values['baseline1_budget_work'])
270
+ get_duration_value(attribute_values['baseline1_budget_work'])
271
271
  end
272
272
 
273
273
  # Retrieve the Baseline1 Cost value
@@ -379,7 +379,7 @@ module MPXJ
379
379
  #
380
380
  # @return Baseline2 Budget Work value
381
381
  def baseline2_budget_work
382
- get_float_value(attribute_values['baseline2_budget_work'])
382
+ get_duration_value(attribute_values['baseline2_budget_work'])
383
383
  end
384
384
 
385
385
  # Retrieve the Baseline2 Cost value
@@ -491,7 +491,7 @@ module MPXJ
491
491
  #
492
492
  # @return Baseline3 Budget Work value
493
493
  def baseline3_budget_work
494
- get_float_value(attribute_values['baseline3_budget_work'])
494
+ get_duration_value(attribute_values['baseline3_budget_work'])
495
495
  end
496
496
 
497
497
  # Retrieve the Baseline3 Cost value
@@ -603,7 +603,7 @@ module MPXJ
603
603
  #
604
604
  # @return Baseline4 Budget Work value
605
605
  def baseline4_budget_work
606
- get_float_value(attribute_values['baseline4_budget_work'])
606
+ get_duration_value(attribute_values['baseline4_budget_work'])
607
607
  end
608
608
 
609
609
  # Retrieve the Baseline4 Cost value
@@ -715,7 +715,7 @@ module MPXJ
715
715
  #
716
716
  # @return Baseline5 Budget Work value
717
717
  def baseline5_budget_work
718
- get_float_value(attribute_values['baseline5_budget_work'])
718
+ get_duration_value(attribute_values['baseline5_budget_work'])
719
719
  end
720
720
 
721
721
  # Retrieve the Baseline5 Cost value
@@ -827,7 +827,7 @@ module MPXJ
827
827
  #
828
828
  # @return Baseline6 Budget Work value
829
829
  def baseline6_budget_work
830
- get_float_value(attribute_values['baseline6_budget_work'])
830
+ get_duration_value(attribute_values['baseline6_budget_work'])
831
831
  end
832
832
 
833
833
  # Retrieve the Baseline6 Cost value
@@ -939,7 +939,7 @@ module MPXJ
939
939
  #
940
940
  # @return Baseline7 Budget Work value
941
941
  def baseline7_budget_work
942
- get_float_value(attribute_values['baseline7_budget_work'])
942
+ get_duration_value(attribute_values['baseline7_budget_work'])
943
943
  end
944
944
 
945
945
  # Retrieve the Baseline7 Cost value
@@ -1051,7 +1051,7 @@ module MPXJ
1051
1051
  #
1052
1052
  # @return Baseline8 Budget Work value
1053
1053
  def baseline8_budget_work
1054
- get_float_value(attribute_values['baseline8_budget_work'])
1054
+ get_duration_value(attribute_values['baseline8_budget_work'])
1055
1055
  end
1056
1056
 
1057
1057
  # Retrieve the Baseline8 Cost value
@@ -1163,7 +1163,7 @@ module MPXJ
1163
1163
  #
1164
1164
  # @return Baseline9 Budget Work value
1165
1165
  def baseline9_budget_work
1166
- get_float_value(attribute_values['baseline9_budget_work'])
1166
+ get_duration_value(attribute_values['baseline9_budget_work'])
1167
1167
  end
1168
1168
 
1169
1169
  # Retrieve the Baseline9 Cost value
@@ -6917,7 +6917,7 @@ module MPXJ
6917
6917
  #
6918
6918
  # @return Peak value
6919
6919
  def peak
6920
- attribute_values['peak']
6920
+ get_float_value(attribute_values['peak'])
6921
6921
  end
6922
6922
 
6923
6923
  # Retrieve the % Complete value
@@ -6959,7 +6959,7 @@ module MPXJ
6959
6959
  #
6960
6960
  # @return Placeholder value
6961
6961
  def placeholder
6962
- attribute_values['placeholder']
6962
+ get_boolean_value(attribute_values['placeholder'])
6963
6963
  end
6964
6964
 
6965
6965
  # Retrieve the Planned Cost value
@@ -7043,7 +7043,7 @@ module MPXJ
7043
7043
  #
7044
7044
  # @return Publish value
7045
7045
  def publish
7046
- attribute_values['publish']
7046
+ get_boolean_value(attribute_values['publish'])
7047
7047
  end
7048
7048
 
7049
7049
  # Retrieve the Recalc Outline Codes value
@@ -7820,7 +7820,7 @@ module MPXJ
7820
7820
  #
7821
7821
  # @return Task Mode value
7822
7822
  def task_mode
7823
- get_boolean_value(attribute_values['task_mode'])
7823
+ attribute_values['task_mode']
7824
7824
  end
7825
7825
 
7826
7826
  # Retrieve the Task Summary Name value
@@ -8114,7 +8114,7 @@ module MPXJ
8114
8114
  #
8115
8115
  # @return Warning value
8116
8116
  def warning
8117
- attribute_values['warning']
8117
+ get_boolean_value(attribute_values['warning'])
8118
8118
  end
8119
8119
 
8120
8120
  # Retrieve the WBS value
@@ -8190,12 +8190,12 @@ module MPXJ
8190
8190
  'actual_work' => :work,
8191
8191
  'actual_work_protected' => :work,
8192
8192
  'acwp' => :currency,
8193
- 'assignment' => :string,
8193
+ 'assignment' => :boolean,
8194
8194
  'assignment_delay' => :string,
8195
8195
  'assignment_owner' => :string,
8196
8196
  'assignment_units' => :string,
8197
8197
  'baseline10_budget_cost' => :currency,
8198
- 'baseline10_budget_work' => :currency,
8198
+ 'baseline10_budget_work' => :work,
8199
8199
  'baseline10_cost' => :currency,
8200
8200
  'baseline10_deliverable_finish' => :date,
8201
8201
  'baseline10_deliverable_start' => :date,
@@ -8211,7 +8211,7 @@ module MPXJ
8211
8211
  'baseline10_start' => :date,
8212
8212
  'baseline10_work' => :work,
8213
8213
  'baseline1_budget_cost' => :currency,
8214
- 'baseline1_budget_work' => :currency,
8214
+ 'baseline1_budget_work' => :work,
8215
8215
  'baseline1_cost' => :currency,
8216
8216
  'baseline1_deliverable_finish' => :date,
8217
8217
  'baseline1_deliverable_start' => :date,
@@ -8227,7 +8227,7 @@ module MPXJ
8227
8227
  'baseline1_start' => :date,
8228
8228
  'baseline1_work' => :work,
8229
8229
  'baseline2_budget_cost' => :currency,
8230
- 'baseline2_budget_work' => :currency,
8230
+ 'baseline2_budget_work' => :work,
8231
8231
  'baseline2_cost' => :currency,
8232
8232
  'baseline2_deliverable_finish' => :date,
8233
8233
  'baseline2_deliverable_start' => :date,
@@ -8243,7 +8243,7 @@ module MPXJ
8243
8243
  'baseline2_start' => :date,
8244
8244
  'baseline2_work' => :work,
8245
8245
  'baseline3_budget_cost' => :currency,
8246
- 'baseline3_budget_work' => :currency,
8246
+ 'baseline3_budget_work' => :work,
8247
8247
  'baseline3_cost' => :currency,
8248
8248
  'baseline3_deliverable_finish' => :date,
8249
8249
  'baseline3_deliverable_start' => :date,
@@ -8259,7 +8259,7 @@ module MPXJ
8259
8259
  'baseline3_start' => :date,
8260
8260
  'baseline3_work' => :work,
8261
8261
  'baseline4_budget_cost' => :currency,
8262
- 'baseline4_budget_work' => :currency,
8262
+ 'baseline4_budget_work' => :work,
8263
8263
  'baseline4_cost' => :currency,
8264
8264
  'baseline4_deliverable_finish' => :date,
8265
8265
  'baseline4_deliverable_start' => :date,
@@ -8275,7 +8275,7 @@ module MPXJ
8275
8275
  'baseline4_start' => :date,
8276
8276
  'baseline4_work' => :work,
8277
8277
  'baseline5_budget_cost' => :currency,
8278
- 'baseline5_budget_work' => :currency,
8278
+ 'baseline5_budget_work' => :work,
8279
8279
  'baseline5_cost' => :currency,
8280
8280
  'baseline5_deliverable_finish' => :date,
8281
8281
  'baseline5_deliverable_start' => :date,
@@ -8291,7 +8291,7 @@ module MPXJ
8291
8291
  'baseline5_start' => :date,
8292
8292
  'baseline5_work' => :work,
8293
8293
  'baseline6_budget_cost' => :currency,
8294
- 'baseline6_budget_work' => :currency,
8294
+ 'baseline6_budget_work' => :work,
8295
8295
  'baseline6_cost' => :currency,
8296
8296
  'baseline6_deliverable_finish' => :date,
8297
8297
  'baseline6_deliverable_start' => :date,
@@ -8307,7 +8307,7 @@ module MPXJ
8307
8307
  'baseline6_start' => :date,
8308
8308
  'baseline6_work' => :work,
8309
8309
  'baseline7_budget_cost' => :currency,
8310
- 'baseline7_budget_work' => :currency,
8310
+ 'baseline7_budget_work' => :work,
8311
8311
  'baseline7_cost' => :currency,
8312
8312
  'baseline7_deliverable_finish' => :date,
8313
8313
  'baseline7_deliverable_start' => :date,
@@ -8323,7 +8323,7 @@ module MPXJ
8323
8323
  'baseline7_start' => :date,
8324
8324
  'baseline7_work' => :work,
8325
8325
  'baseline8_budget_cost' => :currency,
8326
- 'baseline8_budget_work' => :currency,
8326
+ 'baseline8_budget_work' => :work,
8327
8327
  'baseline8_cost' => :currency,
8328
8328
  'baseline8_deliverable_finish' => :date,
8329
8329
  'baseline8_deliverable_start' => :date,
@@ -8339,7 +8339,7 @@ module MPXJ
8339
8339
  'baseline8_start' => :date,
8340
8340
  'baseline8_work' => :work,
8341
8341
  'baseline9_budget_cost' => :currency,
8342
- 'baseline9_budget_work' => :currency,
8342
+ 'baseline9_budget_work' => :work,
8343
8343
  'baseline9_cost' => :currency,
8344
8344
  'baseline9_deliverable_finish' => :date,
8345
8345
  'baseline9_deliverable_start' => :date,
@@ -9161,13 +9161,13 @@ module MPXJ
9161
9161
  'path_driving_predecessor' => :boolean,
9162
9162
  'path_predecessor' => :boolean,
9163
9163
  'path_successor' => :boolean,
9164
- 'peak' => :string,
9164
+ 'peak' => :units,
9165
9165
  'percent_complete' => :percentage,
9166
9166
  'percent_complete_type' => :percent_complete_type,
9167
9167
  'percent_work_complete' => :percentage,
9168
9168
  'phase_of_work' => :string,
9169
9169
  'physical_percent_complete' => :percentage,
9170
- 'placeholder' => :string,
9170
+ 'placeholder' => :boolean,
9171
9171
  'planned_cost' => :currency,
9172
9172
  'planned_duration' => :duration,
9173
9173
  'planned_finish' => :date,
@@ -9179,7 +9179,7 @@ module MPXJ
9179
9179
  'primary_resource_id' => :integer,
9180
9180
  'priority' => :priority,
9181
9181
  'project' => :string,
9182
- 'publish' => :string,
9182
+ 'publish' => :boolean,
9183
9183
  'recalc_outline_codes' => :boolean,
9184
9184
  'recurring' => :boolean,
9185
9185
  'recurring_data' => :binary,
@@ -9290,7 +9290,7 @@ module MPXJ
9290
9290
  'svpercent' => :percentage,
9291
9291
  'task_calendar' => :string,
9292
9292
  'task_calendar_guid' => :guid,
9293
- 'task_mode' => :boolean,
9293
+ 'task_mode' => :task_mode,
9294
9294
  'task_summary_name' => :string,
9295
9295
  'tcpi' => :numeric,
9296
9296
  'teamstatus_pending' => :boolean,
@@ -9332,7 +9332,7 @@ module MPXJ
9332
9332
  'unique_id_successors' => :string,
9333
9333
  'update_needed' => :boolean,
9334
9334
  'vac' => :currency,
9335
- 'warning' => :string,
9335
+ 'warning' => :boolean,
9336
9336
  'wbs' => :string,
9337
9337
  'wbs_predecessors' => :relation_list,
9338
9338
  'wbs_successors' => :relation_list,
data/lib/mpxj/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # MPXJ gem module
2
2
  module MPXJ
3
3
  # MPXJ gem version number
4
- VERSION = "10.9.1"
4
+ VERSION = "10.11.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mpxj
3
3
  version: !ruby/object:Gem::Version
4
- version: 10.9.1
4
+ version: 10.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jon Iles
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-08-31 00:00:00.000000000 Z
11
+ date: 2022-09-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -120,7 +120,7 @@ files:
120
120
  - lib/mpxj/jaxb-runtime-2.3.2.jar
121
121
  - lib/mpxj/jgoodies-binding-2.13.0.jar
122
122
  - lib/mpxj/jgoodies-common-1.8.1.jar
123
- - lib/mpxj/jsoup-1.15.1.jar
123
+ - lib/mpxj/jsoup-1.15.3.jar
124
124
  - lib/mpxj/junit-4.13.1.jar
125
125
  - lib/mpxj/log4j-api-2.17.2.jar
126
126
  - lib/mpxj/mpxj.jar
Binary file