echi-converter 0.0.5 → 0.1.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.
- data/History.txt +8 -0
- data/config/extended_version12.yml +1 -1
- data/config/extended_version13.yml +1 -1
- data/db/migrate/002_create_echi_logs.rb +1 -1
- data/lib/echi-converter.rb +1 -1
- data/lib/echi-converter/version.rb +2 -2
- data/website/index.html +10 -5
- data/website/index.txt +8 -3
- metadata +2 -2
    
        data/History.txt
    CHANGED
    
    | @@ -48,3 +48,11 @@ | |
| 48 48 | 
             
              * Removed all underscores ('_') from field names in config/schemas for version 12 & 13
         | 
| 49 49 | 
             
            * Bug fix(es):
         | 
| 50 50 | 
             
              * Bug #13165 - Corrected post processing file move
         | 
| 51 | 
            +
             | 
| 52 | 
            +
            == 0.1.0 2007-08-26
         | 
| 53 | 
            +
             | 
| 54 | 
            +
            * Major enhancement(s):
         | 
| 55 | 
            +
            * Minor enhancement(s):
         | 
| 56 | 
            +
              * Added additional details on gem requirements
         | 
| 57 | 
            +
            * Bug fix(es):
         | 
| 58 | 
            +
              * Bug #13166 - Corrected records field definition in ECHI_LOGS to integer
         | 
| @@ -4,7 +4,7 @@ class CreateEchiLogs < ActiveRecord::Migration | |
| 4 4 | 
             
                  t.column "filename", :string, :limit => 10
         | 
| 5 5 | 
             
                  t.column "filenumber", :integer
         | 
| 6 6 | 
             
                  t.column "version", :integer
         | 
| 7 | 
            -
                  t.column "records", : | 
| 7 | 
            +
                  t.column "records", :integer
         | 
| 8 8 | 
             
                  t.column "processed_at", :datetime
         | 
| 9 9 | 
             
                end
         | 
| 10 10 | 
             
              end
         | 
    
        data/lib/echi-converter.rb
    CHANGED
    
    | @@ -155,7 +155,7 @@ module EchiConverter | |
| 155 155 | 
             
                @binary_file.close
         | 
| 156 156 |  | 
| 157 157 | 
             
                #Move the file to the processed directory
         | 
| 158 | 
            -
                destination_directory = @workingdirectory + '/../files/processed/' | 
| 158 | 
            +
                destination_directory = @workingdirectory + '/../files/processed/'
         | 
| 159 159 | 
             
                FileUtils.mv(echi_file, destination_directory)
         | 
| 160 160 |  | 
| 161 161 | 
             
                if @config["echi_process_log"] == "Y"
         | 
    
        data/website/index.html
    CHANGED
    
    | @@ -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.0 | 
| 36 | 
            +
                  <a href="http://rubyforge.org/projects/echi-converter" class="numbers">0.1.0</a>
         | 
| 37 37 | 
             
                </div>
         | 
| 38 38 | 
             
                <h1>→ ‘echi-converter’</h1>
         | 
| 39 39 |  | 
| @@ -47,7 +47,7 @@ | |
| 47 47 | 
             
            	<h2>Status</h2>
         | 
| 48 48 |  | 
| 49 49 |  | 
| 50 | 
            -
            	<p>This is the  | 
| 50 | 
            +
            	<p>This is the beta release now in production use within Call Centers using Avaya <span class="caps">CMS</span>.  The utility successfully and reliably imports the data provided by the Avaya <span class="caps">CMS ECHI</span> into various databases, including Oracle and MySQL.  This provides the repository of call segments that may then be used to provide detailed Cradle to Grave reporting for the call center.</p>
         | 
| 51 51 |  | 
| 52 52 |  | 
| 53 53 | 
             
            	<h2>Features</h2>
         | 
| @@ -79,8 +79,13 @@ | |
| 79 79 |  | 
| 80 80 |  | 
| 81 81 | 
             
            	<ol>
         | 
| 82 | 
            -
            	<li><a href="http://www.ruby-lang.org">Ruby v1.8.6+</a></li>
         | 
| 82 | 
            +
            	<li><a href="http://www.ruby-lang.org/">Ruby v1.8.6+</a></li>
         | 
| 83 83 | 
             
            		<li><a href="http://www.rubygems.org/">Rubygems v0.9.4+</a></li>
         | 
| 84 | 
            +
            		<li><a href="http://activerecord.rubyforge.org/">ActiveRecord v1.15.3+</a></li>
         | 
| 85 | 
            +
            		<li><a href="http://activesupport.rubyforge.org/">ActiveSupport v1.4.2+</a></li>
         | 
| 86 | 
            +
            		<li><a href="http://daemons.rubyforge.org/">Daemons v1.0.7+</a></li>
         | 
| 87 | 
            +
            		<li><a href="http://fastercsv.rubyforge.org/">FasterCSV v1.2.0+</a></li>
         | 
| 88 | 
            +
            		<li><a href="http://rake.rubyforge.org/">Rake v0.7.3+</a></li>
         | 
| 84 89 | 
             
            	</ol>
         | 
| 85 90 |  | 
| 86 91 |  | 
| @@ -166,7 +171,7 @@ | |
| 166 171 |  | 
| 167 172 |  | 
| 168 173 | 
             
            	<ol>
         | 
| 169 | 
            -
            	<li>‘echi-converter | 
| 174 | 
            +
            	<li>‘echi-converter create’ works fine with <span class="caps">OSX</span>/Linux, need to test validate with a Win32 platform, therefore currently recommended to only run on a Linux/OSX platform, could use <a href="http://www.vmware.com">VMWare</a> to do this on Windows.</li>
         | 
| 170 175 | 
             
            	</ol>
         | 
| 171 176 |  | 
| 172 177 |  | 
| @@ -196,7 +201,7 @@ | |
| 196 201 |  | 
| 197 202 | 
             
            	<p>Comments are welcome. Send an email to <a href="mailto:jason@goecke.net">jason [at] goecke.net</a>.</p>
         | 
| 198 203 | 
             
                <p class="coda">
         | 
| 199 | 
            -
                  <a href="mailto:drnicwilliams@gmail.com">Dr Nic</a>,  | 
| 204 | 
            +
                  <a href="mailto:drnicwilliams@gmail.com">Dr Nic</a>, 24th August 2007<br>
         | 
| 200 205 | 
             
                  Theme extended from <a href="http://rb2js.rubyforge.org/">Paul Battley</a>
         | 
| 201 206 | 
             
                </p>
         | 
| 202 207 | 
             
            </div>
         | 
    
        data/website/index.txt
    CHANGED
    
    | @@ -9,7 +9,7 @@ Provides a Ruby based utility for fetching Avaya CMS / ECHI files in binary form | |
| 9 9 |  | 
| 10 10 | 
             
            h2. Status
         | 
| 11 11 |  | 
| 12 | 
            -
            This is the  | 
| 12 | 
            +
            This is the beta release now in production use within Call Centers using Avaya CMS.  The utility successfully and reliably imports the data provided by the Avaya CMS ECHI into various databases, including Oracle and MySQL.  This provides the repository of call segments that may then be used to provide detailed Cradle to Grave reporting for the call center.
         | 
| 13 13 |  | 
| 14 14 |  | 
| 15 15 | 
             
            h2. Features
         | 
| @@ -30,8 +30,13 @@ The utility provides the following capabilities: | |
| 30 30 |  | 
| 31 31 | 
             
            h2. Requirements
         | 
| 32 32 |  | 
| 33 | 
            -
            	# "Ruby v1.8.6+":http://www.ruby-lang.org
         | 
| 33 | 
            +
            	# "Ruby v1.8.6+":http://www.ruby-lang.org/
         | 
| 34 34 | 
             
            	# "Rubygems v0.9.4+":http://www.rubygems.org/
         | 
| 35 | 
            +
            	# "ActiveRecord v1.15.3+":http://activerecord.rubyforge.org/
         | 
| 36 | 
            +
            	# "ActiveSupport v1.4.2+":http://activesupport.rubyforge.org/
         | 
| 37 | 
            +
            	# "Daemons v1.0.7+":http://daemons.rubyforge.org/
         | 
| 38 | 
            +
            	# "FasterCSV v1.2.0+":http://fastercsv.rubyforge.org/
         | 
| 39 | 
            +
            	# "Rake v0.7.3+":http://rake.rubyforge.org/
         | 
| 35 40 |  | 
| 36 41 |  | 
| 37 42 | 
             
            h2. Installing
         | 
| @@ -90,7 +95,7 @@ h2. ToDo | |
| 90 95 |  | 
| 91 96 | 
             
            Items to be done to move this out of alpha stage:
         | 
| 92 97 |  | 
| 93 | 
            -
            # 'echi-converter | 
| 98 | 
            +
            # 'echi-converter create' works fine with OSX/Linux, need to test validate with a Win32 platform, therefore currently recommended to only run on a Linux/OSX platform, could use "VMWare":http://www.vmware.com to do this on Windows.
         | 
| 94 99 |  | 
| 95 100 |  | 
| 96 101 | 
             
            h2. Forum
         | 
    
        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.0 | 
| 7 | 
            -
            date: 2007-08- | 
| 6 | 
            +
              version: 0.1.0
         | 
| 7 | 
            +
            date: 2007-08-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
         |