echi-converter 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -75,7 +75,13 @@
75
75
  * FR#14855 - Store processed files in a year/month directory structure based on processed date (ie - 2007/10)
76
76
  * If the 'echi_ftp_directory' option in application.yml is left blank/nil, the system will not attempt a change directory
77
77
  * The system now builds the files to process array from the to_process directory instead of the ftp list, to allow for better recovery if a failure occurs
78
- * FR#14997 - Added support for sending email alerts if ECHI fails to connect to either the database or an ftp server
79
78
  * Bug fix(es):
80
79
  * Fixed bug #14585 requiring Hoe for the install
81
- * Will now properly toggle between the standard schema and the Presence schema (ie - override ActiveRecord defaults)
80
+ * Will now properly toggle between the standard schema and the Presence schema (ie - override ActiveRecord defaults)
81
+
82
+ == 0.2.1 2007-10-26
83
+
84
+ * Major enhancement(s):
85
+ * Minor enhancement(s):
86
+ * Bug fix(es):
87
+ * Fixed the database schema to pull from the appropriate config file information for the PCO schema
@@ -1,6 +1,6 @@
1
1
  class EchiRecord < ActiveRecord::Base
2
- set_table_name config["pco_record_tablename"]
3
- set_sequence_name config["pco_record_seqname"]
2
+ set_table_name @config["pco_record_tablename"]
3
+ set_sequence_name @config["pco_record_seqname"]
4
4
  end
5
5
 
6
6
  class EchiLog < ActiveRecord::Base
@@ -2,7 +2,7 @@ module EchiConverter #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 2
5
- TINY = 0
5
+ TINY = 1
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
@@ -33,7 +33,7 @@
33
33
  <h1>ECHI Converter</h1>
34
34
  <div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/echi-converter"; return false'>
35
35
  <p>Get Version</p>
36
- <a href="http://rubyforge.org/projects/echi-converter" class="numbers">0.2.0</a>
36
+ <a href="http://rubyforge.org/projects/echi-converter" class="numbers">0.2.1</a>
37
37
  </div>
38
38
  <h1>&#x2192; &#8216;echi-converter&#8217;</h1>
39
39
 
@@ -208,7 +208,7 @@
208
208
 
209
209
  <p>Comments are welcome. Send an email to <a href="mailto:jason@goecke.net">jason [at] goecke.net</a>.</p>
210
210
  <p class="coda">
211
- <a href="mailto:drnicwilliams@gmail.com">Dr Nic</a>, 23rd October 2007<br>
211
+ <a href="mailto:drnicwilliams@gmail.com">Dr Nic</a>, 26th October 2007<br>
212
212
  Theme extended from <a href="http://rb2js.rubyforge.org/">Paul Battley</a>
213
213
  </p>
214
214
  </div>
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: echi-converter
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.2.0
7
- date: 2007-10-23 00:00:00 -07:00
6
+ version: 0.2.1
7
+ date: 2007-10-26 00:00:00 -07:00
8
8
  summary: ECHI Conversion Utility - Provides a utility to fetch Avaya CMS / ECHI binary files, convert them and insert into a database table via ActiveRecord
9
9
  require_paths:
10
10
  - lib