ole-qa-framework 3.14.1 → 3.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (118) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +30 -0
  3. data/LICENSE.md +1 -1
  4. data/README.md +93 -1
  5. data/Rakefile.rb +38 -12
  6. data/config/options.yml +11 -0
  7. data/data/circulation.yml +10 -0
  8. data/data/country.yml +3 -0
  9. data/lib/common/common_object.rb +1 -1
  10. data/lib/common/data_object.rb +1 -2
  11. data/lib/common/line_object.rb +1 -1
  12. data/lib/common/page.rb +27 -3
  13. data/lib/common/subline_object.rb +1 -1
  14. data/lib/data_factory/account_factory.rb +3 -3
  15. data/lib/data_factory/bib_factory.rb +14 -4
  16. data/lib/data_factory/metadata_factory.rb +4 -3
  17. data/lib/data_factory/patron_factory.rb +10 -5
  18. data/lib/data_factory/string_factory.rb +2 -2
  19. data/lib/docstore/common/results.rb +1 -1
  20. data/lib/docstore/pages/marc_results.rb +1 -1
  21. data/lib/docstore/pages/search.rb +1 -1
  22. data/lib/module/factory_helpers.rb +1 -1
  23. data/lib/module/qa_helpers.rb +1 -1
  24. data/lib/ole-qa-framework.rb +17 -16
  25. data/lib/ole_qa_framework/COMPATIBILITY.rb +1 -1
  26. data/lib/ole_qa_framework/VERSION.rb +2 -2
  27. data/lib/olefs/common/e_doc.rb +1 -1
  28. data/lib/olefs/common/lookup.rb +1 -1
  29. data/lib/olefs/common/purap_document.rb +1 -1
  30. data/lib/olefs/objects/invoice_current_item.rb +1 -1
  31. data/lib/olefs/objects/invoice_line.rb +1 -1
  32. data/lib/olefs/objects/line_item.rb +1 -1
  33. data/lib/olefs/objects/receiving_line.rb +1 -1
  34. data/lib/olefs/pages/building_lookup.rb +1 -1
  35. data/lib/olefs/pages/invoice.rb +1 -1
  36. data/lib/olefs/pages/load_report.rb +1 -1
  37. data/lib/olefs/pages/load_summary_lookup.rb +1 -1
  38. data/lib/olefs/pages/main_menu.rb +1 -1
  39. data/lib/olefs/pages/payment_request.rb +1 -1
  40. data/lib/olefs/pages/purchase_order.rb +1 -1
  41. data/lib/olefs/pages/receiving_document.rb +1 -1
  42. data/lib/olefs/pages/requisition.rb +1 -1
  43. data/lib/olefs/pages/vendor_lookup.rb +1 -1
  44. data/lib/olefs/subobjects/accounting_line.rb +1 -1
  45. data/lib/olefs/subobjects/copies_line.rb +1 -1
  46. data/lib/olefs/subobjects/exception_notes_line.rb +1 -1
  47. data/lib/olefs/subobjects/invoice_line_item.rb +1 -1
  48. data/lib/olefs/subobjects/notes_line.rb +1 -1
  49. data/lib/olefs/subobjects/processing_line.rb +1 -1
  50. data/lib/olefs/subobjects/receipt_notes_line.rb +1 -1
  51. data/lib/olels/common/batch_profile.rb +1 -1
  52. data/lib/olels/common/e_doc.rb +1 -1
  53. data/lib/olels/common/editor.rb +1 -1
  54. data/lib/olels/common/lookup.rb +1 -1
  55. data/lib/olels/objects/access_info_line.rb +1 -1
  56. data/lib/olels/objects/batch_data_mapping_line.rb +1 -1
  57. data/lib/olels/objects/batch_delete_field_line.rb +1 -1
  58. data/lib/olels/objects/batch_rename_field_line.rb +1 -1
  59. data/lib/olels/objects/control_006_line.rb +1 -1
  60. data/lib/olels/objects/control_007_line.rb +1 -1
  61. data/lib/olels/objects/data_line.rb +1 -1
  62. data/lib/olels/objects/editor_note.rb +1 -1
  63. data/lib/olels/objects/export_filter_line.rb +1 -1
  64. data/lib/olels/objects/holdings_note.rb +1 -1
  65. data/lib/olels/objects/import_defaults_line.rb +1 -1
  66. data/lib/olels/objects/import_match_line.rb +1 -1
  67. data/lib/olels/objects/import_pf_line.rb +1 -1
  68. data/lib/olels/objects/item_note.rb +1 -1
  69. data/lib/olels/objects/ownership_extent_line.rb +1 -1
  70. data/lib/olels/objects/patron_address_line.rb +1 -1
  71. data/lib/olels/objects/patron_email_line.rb +1 -1
  72. data/lib/olels/objects/patron_phone_line.rb +1 -1
  73. data/lib/olels/objects/workbench_line.rb +1 -1
  74. data/lib/olels/pages/batch_export_profile.rb +1 -1
  75. data/lib/olels/pages/batch_import_profile.rb +1 -1
  76. data/lib/olels/pages/batch_job_details.rb +1 -1
  77. data/lib/olels/pages/batch_job_report.rb +1 -1
  78. data/lib/olels/pages/batch_process.rb +1 -1
  79. data/lib/olels/pages/batch_profile_lookup.rb +1 -1
  80. data/lib/olels/pages/batch_type_lookup.rb +1 -1
  81. data/lib/olels/pages/bib_editor.rb +1 -1
  82. data/lib/olels/pages/describe_workbench.rb +1 -1
  83. data/lib/olels/pages/instance_editor.rb +1 -1
  84. data/lib/olels/pages/item_editor.rb +1 -1
  85. data/lib/olels/pages/item_lookup.rb +1 -1
  86. data/lib/olels/pages/loan.rb +1 -1
  87. data/lib/olels/pages/location.rb +1 -1
  88. data/lib/olels/pages/location_level_lookup.rb +1 -1
  89. data/lib/olels/pages/location_lookup.rb +1 -1
  90. data/lib/olels/pages/main_menu.rb +1 -1
  91. data/lib/olels/pages/old_describe_workbench.rb +1 -1
  92. data/lib/olels/pages/patron.rb +1 -1
  93. data/lib/olels/pages/patron_lookup.rb +1 -1
  94. data/lib/olels/pages/renewal.rb +1 -1
  95. data/lib/olels/pages/request.rb +1 -1
  96. data/lib/olels/pages/request_lookup.rb +1 -1
  97. data/lib/olels/pages/return.rb +1 -1
  98. data/lib/olels/pages/staff_upload.rb +1 -1
  99. data/lib/olels/subobjects/ownership_note.rb +1 -1
  100. data/spec/common/browser_spec.rb +2 -2
  101. data/spec/common/data_object_spec.rb +2 -2
  102. data/spec/common/line_object_spec.rb +2 -2
  103. data/spec/common/page_spec.rb +2 -2
  104. data/spec/common/session_spec.rb +62 -0
  105. data/spec/common/subline_object_spec.rb +2 -2
  106. data/spec/data_factory/account_factory_spec.rb +1 -1
  107. data/spec/data_factory/bib_factory_spec.rb +17 -1
  108. data/spec/data_factory/patron_factory_spec.rb +6 -1
  109. data/spec/data_factory/string_factory_spec.rb +1 -1
  110. data/spec/modules/qa_helpers_spec.rb +2 -2
  111. data/spec/spec_helper.rb +1 -1
  112. metadata +7 -9
  113. data/lib/config/alt/dev_env.yml +0 -8
  114. data/lib/config/alt/test_env.yml +0 -8
  115. data/lib/config/default_options.yml +0 -8
  116. data/lib/module/qa_data_helpers.rb +0 -17
  117. data/lib/module/qa_page_helpers.rb +0 -41
  118. data/spec/modules/qa_page_helpers_spec.rb +0 -54
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -14,7 +14,7 @@
14
14
 
15
15
  module OLE_QA::Framework
16
16
  # Generate random alphabetic, numeric, or alphanumeric strings of a given length
17
- class String_Factory
17
+ module String_Factory
18
18
  class << self
19
19
 
20
20
  include OLE_QA::Framework::Factory_Helpers
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- # Copyright 2005-2013 The Kuali Foundation
3
+ # Copyright 2005-2014 The Kuali Foundation
4
4
  #
5
5
  # Licensed under the Educational Community License, Version 2.0 (the "License");
6
6
  # you may not use this file except in compliance with the License.
@@ -30,14 +30,17 @@ module OLE_QA
30
30
  @datadir = File.expand_path(File.dirname(__FILE__) + "/../data/")
31
31
  $LOAD_PATH.unshift(@datadir) unless $LOAD_PATH.include?(@datadir)
32
32
 
33
- # Return absolute path from which the file was run
34
- def self.load_dir
35
- @libdir
36
- end
37
33
 
38
- # Return absolute path for data directory
39
- def self.data_dir
40
- @datadir
34
+ class << self
35
+ # Return absolute path from which the file was run
36
+ def load_dir
37
+ @libdir
38
+ end
39
+
40
+ # Return absolute path for data directory
41
+ def data_dir
42
+ @datadir
43
+ end
41
44
  end
42
45
 
43
46
  # Load libraries from absolute path
@@ -78,7 +81,7 @@ module OLE_QA
78
81
  @explicit_wait = 0
79
82
  @doc_wait = 0
80
83
 
81
- # Set accessor methods for explicit_wait & doc_wait, to be used mainly by OLE_QA::Tools (ole-qa-tools).
84
+ # Set accessor methods for explicit_wait & doc_wait.
82
85
  class << self
83
86
  attr_reader :explicit_wait, :doc_wait
84
87
  end
@@ -88,7 +91,7 @@ module OLE_QA
88
91
  # Exit with @ole.quit
89
92
  #
90
93
  # Default options loaded from
91
- # lib/config/default_options.yml
94
+ # config/options.yml
92
95
  #
93
96
  class Session
94
97
 
@@ -116,24 +119,22 @@ module OLE_QA
116
119
  # (URL for OLE Installation)
117
120
  # :docstore_url => 'http://tst.docstore.ole.kuali.org/'
118
121
  # (URL for OLE DocStore Installation)
119
- # :headless => true/false
122
+ # :headless? => true/false
120
123
  # (Use Headless gem to handle XVFB session)
121
124
  # :implicit_wait => NN
122
125
  # (Set Selenium Webdriver's default wait period)
123
126
  # :explicit_wait => NN
124
- # (Set the wait period used by custom wait functions)
127
+ # (Set the wait period used by Watir Webdriver and custom functions)
125
128
  # :doc_wait => NN
126
129
  # (Set the wait period for eDoc routing to complete)
127
130
  # :browser => watir_webdriver
128
131
  # (Where browser is a Watir WebDriver session)
129
132
  #
130
133
  # To configure the default options, edit
131
- # lib/config/default_options.yml
134
+ # config/options.yml
132
135
  #
133
136
  def initialize( options={} )
134
- yaml_configuration = File.open(OLE_QA::Framework::load_dir + '/config/default_options.yml', 'r')
135
- options_defaults = YAML.load(yaml_configuration)
136
- yaml_configuration.close
137
+ options_defaults = YAML.load_file(OLE_QA::Framework::load_dir + '/../config/options.yml')
137
138
  @options = options_defaults.merge(options)
138
139
 
139
140
  # Start headless session if requested
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -15,6 +15,6 @@
15
15
  module OLE_QA
16
16
  module Framework
17
17
  # The version number for this project.
18
- VERSION = '3.14.1'
18
+ VERSION = '3.15.0'
19
19
  end
20
20
  end
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2005-2013 The Kuali Foundation
1
+ # Copyright 2005-2014 The Kuali Foundation
2
2
  #
3
3
  # Licensed under the Educational Community License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.