lita-youtrack 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 9d7a1684ee245bdfe51e5f1e184412ec88b05297
4
+ data.tar.gz: 1b3a8d77c975140607ef9f4436127205f3eed508
5
+ SHA512:
6
+ metadata.gz: 0e167ffd3daf509b7a1064ea99b8a445d8fa6921d5ed2f5732e8fc9eeccf9df4ae553200827214c634adc2083c3f10fde452f9b09b547fda6bc8689db2747b47
7
+ data.tar.gz: 70e457dbcc14cfd38355b5eea68e5d9f15b7434a3b238e0263cceaa50b47343967fb2f042f70e50fbdea50c8463e5e46a8d9d32ac1ebaeaf6fc319fd63e9812a
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ /.env*
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.0.0
4
+ before_install: gem install bundler -v 1.10.3
data/CHANGELOG.md ADDED
File without changes
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in lita-youtrack.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Jonathan Weyermann
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,61 @@
1
+ # lita-youtrack
2
+
3
+ lita-youtrack is a handler for Lita that integrates YouTrack with Lita, displaying and providing links to various YouTrack issues
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'lita-youtrack'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install lita-youtrack
20
+
21
+
22
+ ## Configuration
23
+
24
+ ````
25
+ Lita.configure do |config|
26
+ ...
27
+ config.handlers.youtrack.login = ENV["YOUTRACK_LOGIN"]
28
+ config.handlers.youtrack.password = ENV["YOUTRACK_PASSWORD"]
29
+ config.handlers.youtrack.hosturl = ENV["YOUTRACK_HOSTURL"]
30
+ ...
31
+ end
32
+ ````
33
+
34
+ YOUTRACK_LOGIN is your YouTrack login
35
+
36
+ YOUTRACK_LOGIN is your YouTrack password
37
+
38
+ YOUTRACK_HOSTURL is the location where your YouTrack service is being hosted
39
+
40
+ ## Usage
41
+
42
+ To display every youtrack project
43
+
44
+ ```lita projects```
45
+
46
+ To display issues from a specific project (PROJECTNAME is the abreviated name shown by 'lita projects')
47
+
48
+ ```lita project PROJECTNAME```
49
+
50
+ To display issues labeled as bugs, not including those in the 'parking lot'
51
+
52
+ ```lita bugs```
53
+
54
+ To display issues labeled as bugs, including the 'parking lot'
55
+
56
+ ```lita bugs parking```
57
+
58
+ ## License
59
+
60
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
61
+
data/Rakefile ADDED
@@ -0,0 +1,7 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
7
+ task :test => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "lita/youtrack"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/rake ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'rake' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('rake', 'rake')
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,6 @@
1
+ require "lita"
2
+
3
+ Lita.load_locales Dir[File.expand_path(
4
+ File.join("..", "..", "locales", "*.yml"), __FILE__
5
+ )]
6
+ require "lita/handlers/youtrack"
@@ -0,0 +1,128 @@
1
+ require "uri"
2
+ require "net/http"
3
+ require "cgi"
4
+ require 'lita'
5
+
6
+ module Lita
7
+ module Handlers
8
+ class Youtrack < Handler
9
+ def initialize(robot)
10
+ super
11
+ end
12
+
13
+ def self.default_config(config)
14
+ config.login = nil
15
+ config.password = nil
16
+ end
17
+
18
+ route(/\bproject (\w+)?/i, :project, command: true, help: { "project car" => "Displays the issues with youtrack project car"})
19
+ route(/\bprojects\b/i, :projects, command: true, help: { "projects" => "Displays a list of projects and their short names"})
20
+ route(/\bbugs *(\w*)/i, :bugs, command: true, help: { "bugs" => "Display all issues with filter -Done -{Parking Lot} #Bug sort by: AMA_Priorities, Updated ",
21
+ "bugs parking" => "Also displays bugs in parking lot"})
22
+
23
+ def project(response)
24
+ project_name = response.matches[0][0]
25
+ uri = URI("#{youtrack_hosturl}/rest/export/#{project_name}/issues")
26
+ response_body = call_http(uri)
27
+ parse_data = parse_project(response_body)
28
+ response.reply project_response(parse_data, project_name)
29
+ end
30
+
31
+ def projects(response)
32
+ uri = URI("#{youtrack_hosturl}/rest/project/all")
33
+ response_body = call_http(uri)
34
+ parse_data = parse_projects(response_body)
35
+ response.reply projects_response(parse_data)
36
+ end
37
+
38
+ def bugs(response)
39
+ filter = filter(response.matches[0][0])
40
+ uri = URI("#{youtrack_hosturl}/rest/issue?filter=%23Bug+-Done+#{filter}sort+by%3A+AMA_Priorities%2C+Updated&max=25")
41
+ response_body = call_http(uri)
42
+ parse_data = parse_bugs(response_body, filter)
43
+ response.reply bugs_response(parse_data)
44
+ end
45
+
46
+ def call_http (uri)
47
+ Net::HTTP.start(uri.host, uri.port, :use_ssl => uri.scheme == 'https') do |http|
48
+ resp, data = http.get(uri, login)
49
+ resp.body
50
+ end
51
+ end
52
+
53
+ private
54
+
55
+ def filter(param)
56
+ if param.downcase == "parking"
57
+ ""
58
+ else
59
+ "-%7BParking+Lot%7D+"
60
+ end
61
+ end
62
+
63
+ def parse_project(response_body)
64
+ data_hash = { responseString: "" , numbers: [] , longnames: response_body.scan(/<field name="summary"> *<value>(.*?)<\/value>/i) }
65
+ response_body.scan(/name="numberInProject"><value>\d*/i) { |m| data_hash[:numbers] << m.scan(/[0-9]+/).first }
66
+ data_hash[:responseString] = "Project not found - type 'lita projects' for list" if data_hash[:longnames].count == 0
67
+ data_hash
68
+ end
69
+
70
+ def parse_projects(response_body)
71
+ data_hash = { responseString: "", longnames: [], shortnames: []}
72
+ response_body.scan(/<project name="[a-zA-Z0-9 -.]*"/i) { |m| data_hash[:longnames] << m[/"([^"]*)"/].gsub("\"", "") }
73
+ response_body.scan(/shortName="\w*"/i) { |m| data_hash[:shortnames] << m.scan(/"([^"]*)"/)[0][0] }
74
+ data_hash
75
+ end
76
+
77
+ def parse_bugs(response_body, filter);
78
+ data_hash = { numbers: [], longnames: response_body.scan(/name="summary"> *<value>(.*?)<\/value>/i), shortnames: [], responseString: ""}
79
+ data_hash[:responseString] += "I found #{data_hash[:longnames].count} bugs. Bugs can be viewed at #{youtrack_hosturl}/issues?q=-Done+#{filter}%23Bug+sort+by%3A+AMA_Priorities%2C+Updated\n"
80
+ response_body.scan(/name="projectShortName">\n*<value>[A-Z]*<\/value>/) { |m| data_hash[:shortnames] << m.scan( />([^>]*)</).last.first}
81
+ response_body.scan(/name="numberInProject"><value>\d*/i) { |m| data_hash[:numbers] << m.gsub(/[^0-9]/i,'')}
82
+ data_hash
83
+ end
84
+
85
+ def project_response(parse_data = {}, project_name)
86
+ parse_data[:longnames].each_with_index do |title, index|
87
+ parse_data[:responseString] += title[0] + " - #{youtrack_hosturl}/issue/#{project_name}-#{parse_data[:numbers][index]}\n"
88
+ end
89
+ parse_data[:responseString]
90
+ end
91
+
92
+ def projects_response(parse_data = {})
93
+ parse_data[:longnames].each_with_index do | title, index|
94
+ parse_data[:responseString] += parse_data[:shortnames][index] + " - " + title + " - #{youtrack_hosturl}/issues?q=project:+{#{title.gsub(' ', '+')}}\n"
95
+ end
96
+ parse_data[:responseString]
97
+ end
98
+
99
+ def bugs_response(parse_data = {})
100
+ parse_data[:longnames].each_with_index do | title, index|
101
+ parse_data[:responseString] += parse_data[:shortnames][index] + "-" + parse_data[:numbers][index] + " - " + title[0] + " - #{youtrack_hosturl}/issue/#{parse_data[:shortnames][index]}-#{parse_data[:numbers][index]}\n"
102
+ end
103
+ parse_data[:responseString]
104
+ end
105
+
106
+ def login
107
+ name = youtrack_login
108
+ password = youtrack_password
109
+ http_response = Net::HTTP.post_form(URI.parse("#{youtrack_hosturl}/rest/user/login"), 'login' => name, 'password' => password)
110
+ cookie = http_response['set-cookie']
111
+ headers = { 'Cookie' => cookie }
112
+ end
113
+
114
+ def youtrack_login
115
+ Lita.config.handlers.youtrack.login
116
+ end
117
+
118
+ def youtrack_password
119
+ Lita.config.handlers.youtrack.password
120
+ end
121
+
122
+ def youtrack_hosturl
123
+ Lita.config.handlers.youtrack.hosturl
124
+ end
125
+ end
126
+ Lita.register_handler(Youtrack)
127
+ end
128
+ end
@@ -0,0 +1,2 @@
1
+ require "lita/youtrack/version"
2
+ require "lita/handlers/youtrack"
@@ -0,0 +1,5 @@
1
+ module Lita
2
+ module Youtrack
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
Binary file
@@ -0,0 +1,41 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'lita/youtrack/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "lita-youtrack"
8
+ spec.version = Lita::Youtrack::VERSION
9
+ spec.authors = ["Jonathan Weyermann"]
10
+ spec.email = ["jonathan.weyermann@ama.ab.ca"]
11
+
12
+ spec.summary = %q{This gem allows the use of lita to check the number of bugs listed on youtrack}
13
+ spec.description = %q{"Lita bugs", "lita project PROJECT", "lita projects"}
14
+ spec.homepage = "https://github.com/amaabca/lita-youtrack"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
18
+ # delete this section to allow pushing this gem to any host.
19
+ if spec.respond_to?(:metadata)
20
+ spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
21
+ else
22
+ raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
23
+ end
24
+
25
+ spec.files = `git ls-files -z`.split("\x0")
26
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
27
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
28
+ spec.require_paths = ["lib"]
29
+
30
+ spec.add_runtime_dependency "lita"
31
+
32
+ spec.add_development_dependency "bundler", "~> 1.10"
33
+ spec.add_development_dependency "rake"
34
+ spec.add_development_dependency "rspec"
35
+ spec.add_development_dependency "rspec-instafail"
36
+ spec.add_development_dependency "simplecov"
37
+ spec.add_development_dependency "pimpmychangelog"
38
+ spec.add_development_dependency "rack-test"
39
+ spec.add_development_dependency 'faraday'
40
+ spec.add_development_dependency 'pry'
41
+ end
@@ -0,0 +1,7 @@
1
+
2
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
3
+ <body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://tempuri.org/">
4
+ <issueCompacts><issue id="YA-1014" entityId="83-780"><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="projectShortName"><value>YA</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="numberInProject"><value>1014</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="summary"><value>Member is seeing statement for 2016 when they view "Previous Statement"</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="description"><value></value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="created"><value>1430852374538</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updated"><value>1434492322221</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterName"><value>darko.dosenovic</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterFullName"><value>darko.dosenovic</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterName"><value>jordan.babe</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterFullName"><value>jordan.babe</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="commentsCount"><value>1</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="votes"><value>0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Priorities"><value>Normal</value><valueId>Normal</valueId><color><bg>#ebf4dd</bg><fg>#64992C</fg></color></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Types"><value>Bug</value><valueId>Bug</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_States"><value>In Review</value><valueId>In Review</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Versions"><value>1.0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MultiUserField" name="Product Owner"><value fullName="edmund.chua">edmund.chua</value></field><comment id="98-741" author="darko.dosenovic" authorFullName="darko.dosenovic" issueId="YA-1014" deleted="false" text="@batman I believe the membership statement is just view current statement. There was no option to view/print previous statements. The only option for this member is to send request to membership records and ask for copy of the previous membership statement. Can't be done online." shownForIssueAuthor="false" created="1434492322223"><replies/></comment></issue><issue id="CAR-1007" entityId="83-778"><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="projectShortName"><value>CAR</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="numberInProject"><value>1007</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="summary"><value>Verify webmaster email address for AgileStyle's SES plugin</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="description"><value></value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="created"><value>1430841695992</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updated"><value>1432231906241</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterName"><value>batman</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterFullName"><value>batman</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterName"><value>christopher.nash</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterFullName"><value>christopher.nash</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="commentsCount"><value>9</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="votes"><value>0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Priorities"><value>Normal</value><valueId>Normal</valueId><color><bg>#ebf4dd</bg><fg>#64992C</fg></color></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Types"><value>Bug</value><valueId>Bug</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_States"><value>In Review</value><valueId>In Review</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Versions"><value>1.0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MultiUserField" name="Product Owner"><value fullName="christopher.nash">christopher.nash</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="AttachmentField" name="attachments"><value id="100-143" url="http://ama-digital.myjetbrains.com/youtrack/_persistent/image.png?file=100-143&amp;v=0&amp;c=true">image.png</value><value id="100-144" url="http://ama-digital.myjetbrains.com/youtrack/_persistent/image2.png?file=100-144&amp;v=0&amp;c=true">image2.png</value><value id="100-165" url="http://ama-digital.myjetbrains.com/youtrack/_persistent/Screen%20Shot%202015-05-21%20at%2012.05.12%20PM.png?file=100-165&amp;v=0&amp;c=true">Screen Shot 2015-05-21 at 12.05.12 PM.png</value><value id="100-166" url="http://ama-digital.myjetbrains.com/youtrack/_persistent/Screen%20Shot%202015-05-21%20at%2012.05.52%20PM.png?file=100-166&amp;v=0&amp;c=true">Screen Shot 2015-05-21 at 12.05.52 PM.png</value><value id="100-167" url="http://ama-digital.myjetbrains.com/youtrack/_persistent/Screen%20Shot%202015-05-21%20at%2012.07.06%20PM.png?file=100-167&amp;v=0&amp;c=true">Screen Shot 2015-05-21 at 12.07.06 PM.png</value><value id="100-168" url="http://ama-digital.myjetbrains.com/youtrack/_persistent/ses_test_email.eml?file=100-168&amp;v=0&amp;c=true">ses_test_email.eml</value></field><comment id="98-459" author="jordan.babe" authorFullName="jordan.babe" issueId="CAR-1007" deleted="false" text="@batman. Done. They should be able to send email now." shownForIssueAuthor="false" created="1430843068940"><replies/></comment><comment id="98-460" author="jordan.babe" authorFullName="jordan.babe" issueId="CAR-1007" deleted="false" text="re-open if it doesn't work; I've just started closing tickets now - it seems like a lot of ceremony for me to put it in review then bug the POs to move it to done" shownForIssueAuthor="false" created="1430843142335" updated="1430843068928"><replies/></comment><comment id="98-462" author="christopher.nash" authorFullName="christopher.nash" issueId="CAR-1007" deleted="false" text="Asked Stephen to verify, but it's still not working for him:&#xA;&#xA;----&#xA;&#xA;Amazon SES is still throwing an error when attempting to send any emails through the AMA Careers site:&#xA;&#xA;Error : [512] SimpleEmailService::sendEmail(): Sender - MessageRejected: Email address is not verified. Request Id: bed3fe74-f343-11e4-956b-7706bbb7e87a&#xA;&#xA;Stephen Brown&#xA;Developer | Project Support, AgileStyle&#xA;780.288.1713 | agilestyle.com | #204 8540 109st Edmonton AB T6G 1E6" shownForIssueAuthor="false" created="1430843672661"><replies/></comment><comment id="98-463" author="ryan.jones" authorFullName="ryan.jones" issueId="CAR-1007" deleted="false" text="@batman can you create a simple curl request so they have something to reference once you're 100% verified." shownForIssueAuthor="false" created="1430843861357"><replies/></comment><comment id="98-472" author="jordan.babe" authorFullName="jordan.babe" issueId="CAR-1007" deleted="false" text="I checked in AWS - everything looks good with their (careers) account - they should use this region (the following is the API endpoint for that region):&#xA;&#xA;email.us-east-1.amazonaws.com" shownForIssueAuthor="false" created="1430863454753" updated="1430843142330"><replies/></comment><comment id="98-571" author="mathieu.gilbert" authorFullName="mathieu.gilbert" issueId="CAR-1007" deleted="false" text="I was able to send a test message using the command line, following this page: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-smtp-client-command-line.html&#xA;&#xA;The &quot;-CAfile ~/.ssh/cert.pem&quot; part may not be needed, I had to download some intermediary cert for openssl.&#xA;&#xA;openssl s_client -CAfile ~/.ssh/cert.pem -starttls smtp -quiet -crlf -connect email-smtp.us-east-1.amazonaws.com:587&#xA;depth=3 /C=US/O=VeriSign, Inc./OU=Class 3 Public Primary Certification Authority&#xA;verify return:1&#xA;depth=2 /C=US/O=VeriSign, Inc./OU=VeriSign Trust Network/OU=(c) 2006 VeriSign, Inc. - For authorized use only/CN=VeriSign Class 3 Public Primary Certification Authority - G5&#xA;verify return:1&#xA;depth=1 /C=US/O=VeriSign, Inc./OU=VeriSign Trust Network/OU=Terms of use at &#xA;" shownForIssueAuthor="false" created="1431639436284" updated="1431639723265"><replies/></comment><comment id="98-572" author="batman" authorFullName="mathieu.gilbert" issueId="CAR-1007" deleted="false" text="Received email:" shownForIssueAuthor="false" created="1431639509315" updated="1431639436272"><replies/></comment><comment id="98-573" author="batman" authorFullName="batman" issueId="CAR-1007" deleted="false" text="The Amazon SES plugin doesn't seem to be on Wordpress. Has batman@batcave.com been verified from Wordpress? It is verified in Amazon (or my test wouldn't have worked).&#xA;&#xA;" shownForIssueAuthor="false" created="1431639649763" updated="1431639509311"><replies/></comment><comment id="98-626" author="michael.vandenbeuken" authorFullName="michael.vandenbeuken" issueId="CAR-1007" deleted="false" text="@batman&#xA;&#xA;Using my local wordpress vagrant install, I was able to install and activate the WP SES plugin, configure it and send a test email successfully.&#xA;&#xA;I've attached screens of the configuration, with the AWS access keys obfuscated. I've also attached the &quot;Production mode test&quot; email that I sent via the plugin.&#xA;" shownForIssueAuthor="false" created="1432231898418"><replies/></comment></issue><issue id="FORMS-1006" entityId="83-951"><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="projectShortName"><value>FORMS</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="numberInProject"><value>1006</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="summary"><value>Link not working on DE registration page</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="description"><value>
5
+ </value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="created"><value>1433272258927</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updated"><value>1433800111006</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterName"><value>darko.dosenovic</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterFullName"><value>darko.dosenovic</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterName"><value>martine.vandyke</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterFullName"><value>martine.vandyke</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="commentsCount"><value>3</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="votes"><value>0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Priorities"><value>Normal</value><valueId>Normal</valueId><color><bg>#ebf4dd</bg><fg>#64992C</fg></color></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Types"><value>Bug</value><valueId>Bug</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_States"><value>In Review</value><valueId>In Review</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Versions"><value>1.0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MultiUserField" name="Product Owner"><value fullName="rod.hodgson">rod.hodgson</value></field><comment id="98-700" author="darko.dosenovic" authorFullName="darko.dosenovic" issueId="FORMS-1006" deleted="false" text="3rd party app, sent link of this bug report to Rod" shownForIssueAuthor="false" created="1433796556829"><replies/></comment><comment id="98-701" author="rod.hodgson" authorFullName="rod.hodgson" issueId="FORMS-1006" deleted="false" text="I checked this out and the link works (Chrome &amp; IE), but it opens up a new tab. They may have missed the new tab or it may have been blocked." shownForIssueAuthor="false" created="1433799074390"><replies/></comment><comment id="98-703" author="rod.hodgson" authorFullName="rod.hodgson" issueId="FORMS-1006" deleted="false" text="Darko showed me it breaking on his PC. After some intense investigation, we realized that the profile fields above have to be completed or the link will not work, while this does not make sense we will have to live with this for now because we should be implementing the new registration system in a month." shownForIssueAuthor="false" created="1433800062214" updated="1433799074386"><replies/></comment></issue><issue id="TECHDBT-1034" entityId="83-810"><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="projectShortName"><value>TECHDBT</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="numberInProject"><value>1034</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="summary"><value>Investigate Amazon Billing</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="description"><value></value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="created"><value>1431357805873</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updated"><value>1433441320204</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterName"><value>jordan.babe</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterFullName"><value>jordan.babe</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterName"><value>ryan.jones</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterFullName"><value>ryan.jones</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="commentsCount"><value>2</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="votes"><value>0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Priorities"><value>Normal</value><valueId>Normal</valueId><color><bg>#ebf4dd</bg><fg>#64992C</fg></color></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Types"><value>Bug</value><valueId>Bug</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_States"><value>In Review</value><valueId>In Review</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Versions"><value>1.0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MultiUserField" name="Product Owner"><value fullName="ryan.jones">ryan.jones</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="AttachmentField" name="attachments"><value id="100-164" url="http://ama-digital.myjetbrains.com/youtrack/_persistent/image.png?file=100-164&amp;v=0&amp;c=true">image.png</value></field><comment id="98-574" author="mathieu.gilbert" authorFullName="mathieu.gilbert" issueId="TECHDBT-1034" deleted="false" text="Sent Ryan a report, further discussion needed." shownForIssueAuthor="false" created="1431704423991"><replies/></comment><comment id="98-624" author="mathieu.gilbert" authorFullName="mathieu.gilbert" issueId="TECHDBT-1034" deleted="false" text="Email sent to Ryan on May 12:&#xA;&#xA;Hi Ryan,&#xA;&#xA;I believe these are the servers the Trusted Advisor is referring to, all categorized. I added the estimated monthly savings for 3-year reserved instances. I’m assuming it’s the total across all instances in that section, so some will be worth more than others (likely prod &gt;&gt; stage). It also seems to average out to roughly $5/micro, $20/small, $30/medium, $60/large, $120/xlarge (savings per instance).&#xA;&#xA;Is this what you were looking for?&#xA;&#xA;&#xA;AMA-AWS&#xA;&#xA;us-west-2a&#xA;&#xA;t2.micro ($4.89)&#xA;us-west-2a-splunk&#xA;&#xA;m3.medium ($302.39)&#xA;us-west-2-driversed-stage-app-1&#xA;us-west-2-driversed-prod-app-1&#xA;us-west-2a-insurance-oa-stage-app-1&#xA;us-west-2a-insurance-oa-prod-app-1&#xA;us-west-2-membership-stage-app-1&#xA;us-west-2-membership-prod-app-1&#xA;us-west-2a-modules-stage-app-1&#xA;us-west-2a-modules-prod-app-1&#xA;us-west-2a-sentinel-stage-app-1&#xA;us-west-2-sentinel-prod-job-1&#xA;&#xA;m3.large ($60.51)&#xA;us-west-2-sentinel-prod-app-1&#xA;&#xA;m3.xlarge ($121.04)&#xA;us-west-2a-f5-big-ip-ltm&#xA;&#xA;&#xA;us-west-2c&#xA;&#xA;m3.medium ($272.15)&#xA;us-west-2c-sentinel-stage-app-2&#xA;us-west-2-driversed-stage-app-2&#xA;us-west-2-driversed-prod-app-2&#xA;us-west-2c-insurance-oa-stage-app-2&#xA;us-west-2c-insurance-oa-prod-app-2&#xA;us-west-2-membership-stage-app-2&#xA;us-west-2-membership-prod-app-2&#xA;us-west-2c-modules-stage-app-2&#xA;us-west-2c-modules-prod-app-2&#xA;&#xA;m3.large ($60.51)&#xA;us-west-2-sentinel-prod-app-2&#xA;&#xA;m3.xlarge ($121.04)&#xA;us-west-2c-f5-big-ip-ltm&#xA;&#xA;&#xA;AMA-ROAD-REPORTS&#xA;&#xA;us-east-1a&#xA;&#xA;m1.small ($59.93)&#xA;aws-sentinel-staging-db&#xA;aws-sentinel-production-db&#xA;vpc-nat&#xA;&#xA;" shownForIssueAuthor="false" created="1432225676527" updated="1431704423984"><replies/></comment></issue><issue id="GCDEV-1050" entityId="83-818"><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="projectShortName"><value>GCDEV</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="numberInProject"><value>1050</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="summary"><value>Clean GitLab from unused/old folders/files</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="description"><value>There is a few old folders/files not used any more. Applications have been removed but the env files stayed. This should be cleared.
6
+ (careers, gentle-planet-2782, ...)</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="created"><value>1431443502124</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updated"><value>1433343298299</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterName"><value>adam.melnyk</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterFullName"><value>adam.melnyk</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterName"><value>darko.dosenovic</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterFullName"><value>darko.dosenovic</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="commentsCount"><value>3</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="votes"><value>0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Priorities"><value>Normal</value><valueId>Normal</valueId><color><bg>#ebf4dd</bg><fg>#64992C</fg></color></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Types"><value>Bug</value><valueId>Bug</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_States"><value>In Review</value><valueId>In Review</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Versions"><value>1.0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MultiUserField" name="Product Owner"><value fullName="ryan.jones">ryan.jones</value></field><comment id="98-673" author="adam.melnyk" authorFullName="adam.melnyk" issueId="GCDEV-1050" deleted="false" text="branch: https://gitlab.corp.ads/ama/rails_envs/merge_requests/187&#xA;&#xA;removes some of the old project files, there may be others that can also be removed as well" shownForIssueAuthor="false" created="1432935675962"><replies/></comment><comment id="98-674" author="adam.melnyk" authorFullName="adam.melnyk" issueId="GCDEV-1050" deleted="false" text="waiting to deploy monday" shownForIssueAuthor="false" created="1432936059256" updated="1432935675953"><replies/></comment><comment id="98-687" author="adam.melnyk" authorFullName="adam.melnyk" issueId="GCDEV-1050" deleted="false" text="I removed three projects in gitlab that are no longer used though there could be others that could also be removed." shownForIssueAuthor="false" created="1433343298299" updated="1432936059250"><replies/></comment></issue><issue id="GWWW-1021" entityId="83-970"><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="projectShortName"><value>GWWW</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="numberInProject"><value>1021</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="summary"><value> Approved Auto Repair Services Centre - AMA Travel - Please Wait page</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="description"><value>after entering in address info, the search shows a redirecting to AMA Travel page. see attached.</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="created"><value>1433438471138</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updated"><value>1434398903679</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterName"><value>darko.dosenovic</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterFullName"><value>darko.dosenovic</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterName"><value>martine.vandyke</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterFullName"><value>martine.vandyke</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="commentsCount"><value>1</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="votes"><value>0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Priorities"><value>Normal</value><valueId>Normal</valueId><color><bg>#ebf4dd</bg><fg>#64992C</fg></color></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Types"><value>Bug</value><valueId>Bug</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_States"><value>In Progress</value><valueId>In Progress</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Versions"><value>1.0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MultiUserField" name="Product Owner"><value fullName="ryan.jones">ryan.jones</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="AttachmentField" name="attachments"><value id="100-200" url="http://ama-digital.myjetbrains.com/youtrack/_persistent/AAR-amatravel.JPG?file=100-200&amp;v=0&amp;c=true">AAR-amatravel.JPG</value></field><comment id="98-727" author="darko.dosenovic" authorFullName="darko.dosenovic" issueId="GWWW-1021" deleted="false" text="Sent email to Suniel to get more info where is this built and if we could adjust it." shownForIssueAuthor="false" created="1434398903680"><replies/></comment><tag cssClass="tag0">dev</tag></issue><issue id="GWWW-1020" entityId="83-968"><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="projectShortName"><value>GWWW</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="numberInProject"><value>1020</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="summary"><value>Approved Auto Repair Services Centre - SYCS logos not appearing </value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="description"><value>
7
+ </value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="created"><value>1433438289419</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updated"><value>1434387830760</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterName"><value>darko.dosenovic</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterFullName"><value>darko.dosenovic</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterName"><value>martine.vandyke</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterFullName"><value>martine.vandyke</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="commentsCount"><value>4</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="votes"><value>0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Priorities"><value>Normal</value><valueId>Normal</valueId><color><bg>#ebf4dd</bg><fg>#64992C</fg></color></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Types"><value>Bug</value><valueId>Bug</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_States"><value>In Review</value><valueId>In Review</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Versions"><value>1.0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MultiUserField" name="Product Owner"><value fullName="ryan.jones">ryan.jones</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="AttachmentField" name="attachments"><value id="100-197" url="http://ama-digital.myjetbrains.com/youtrack/_persistent/AARS%20-%20Club272.JPG?file=100-197&amp;v=0&amp;c=true">AARS - Club272.JPG</value><value id="100-198" url="http://ama-digital.myjetbrains.com/youtrack/_persistent/AAR-2webpage.png?file=100-198&amp;v=0&amp;c=true">AAR-2webpage.png</value><value id="100-199" url="http://ama-digital.myjetbrains.com/youtrack/_persistent/AARwebpage.png?file=100-199&amp;v=0&amp;c=true">AARwebpage.png</value><value id="100-203" url="http://ama-digital.myjetbrains.com/youtrack/_persistent/Screen%20Shot%202015-06-15%20at%2011.01.18%20AM.png?file=100-203&amp;v=0&amp;c=true">Screen Shot 2015-06-15 at 11.01.18 AM.png</value><value id="100-204" url="http://ama-digital.myjetbrains.com/youtrack/_persistent/Screen%20Shot%202015-06-15%20at%2011.02.00%20AM.png?file=100-204&amp;v=0&amp;c=true">Screen Shot 2015-06-15 at 11.02.00 AM.png</value></field><comment id="98-715" author="darko.dosenovic" authorFullName="darko.dosenovic" issueId="GWWW-1020" deleted="false" text="@martine.vandyke Mike has helped me to pinpoint this problem. Apparently AAA has different set of server serving these pages and if you run this:&#xA;&#xA;http://ww1.aaa.com/services/automotive/shopLocator/shopLocatorSearchResults.html?office=998&amp;dt=1434056863317&amp;appcontext=aaaDotCom&amp;lname=&amp;location=CITY%7CCAN000187%7CEdmonton%7CYEA%7CCANADA&amp;association=CAA&amp;street=&amp;showhf=true&amp;refererappid=Unknown&amp;locationName=Edmonton%2C+Ab&amp;lang=EN&amp;shopType=MECHANICAL&amp;postalCode=&amp;email=&amp;club=272&amp;recache=&amp;searchRadius=10&amp;fname=&amp;memid=&amp;conversationId=842&#xA;&#xA;the images are broken. If you run these:&#xA;&#xA;http://ww2.aaa.com/services/automotive/shopLocator/shopLocatorSearchResults.html?office=998&amp;dt=1434056863317&amp;appcontext=aaaDotCom&amp;lname=&amp;location=CITY%7CCAN000187%7CEdmonton%7CYEA%7CCANADA&amp;association=CAA&amp;street=&amp;showhf=true&amp;refererappid=Unknown&amp;locationName=Edmonton%2C+Ab&amp;lang=EN&amp;shopType=MECHANICAL&amp;postalCode=&amp;email=&amp;club=272&amp;recache=&amp;searchRadius=10&amp;fname=&amp;memid=&amp;conversationId=842&#xA;&#xA;the images are OK. It looks like that is reason why we have these images broken.&#xA;&#xA;Can you let them know? Maybe this will help them to fix the problem." shownForIssueAuthor="false" created="1434057305031"><replies/></comment><comment id="98-716" author="darko.dosenovic" authorFullName="darko.dosenovic" issueId="GWWW-1020" deleted="false" text="Going further in broken page, we found that folders for images and stylesheet files are not set properly since they are set as '0-1' instead of '272'&#xA;&#xA;&lt;img src=&quot;/CAA/0-1/images/print.gif&quot; title=&quot;Print Page&quot; alt=&quot;Print Page&quot;&gt;&#xA;&#xA;and .js code is most likely wrong:&#xA;&#xA;'... &#xA;var searchParms = '&amp;Club=0-1&amp;&#xA;SearchType=MECHANICAL&amp;SYCS=N&amp;APPT=N&amp;RVREPAIR=N&amp;WKNDSERV=N&amp;VEHMAKE=N&amp;SERVTYP=N';&#xA;logDCSClick('shopLocatorSearchReq.zzz',searchParms);&#xA;&#xA;...'&#xA;&#xA;" shownForIssueAuthor="false" created="1434061630800" updated="1434057305012"><replies/></comment><comment id="98-721" author="martine.vandyke" authorFullName="martine.vandyke" issueId="GWWW-1020" deleted="false" text="@darko.dosenovic &#xA;I have submitted a new ticket with AAA." shownForIssueAuthor="false" created="1434135118325"><replies/></comment><comment id="98-724" author="darko.dosenovic" authorFullName="darko.dosenovic" issueId="GWWW-1020" deleted="false" text="Images with URLs:&#xA;http://ww1.aaa.com/services/automotive/shopLocator/shopLocatorSearchResults.html?office=998&amp;dt=1434387671395&amp;appcontext=aaaDotCom&amp;lname=&amp;location=CITY%7CCAN000187%7CEdmonton%7CYEA%7CCA&amp;association=CAA&amp;street=&amp;showhf=true&amp;refererappid=Unknown&amp;locationName=Edmonton%2C+Ab&amp;lang=EN&amp;shopType=MECHANICAL&amp;postalCode=&amp;email=&amp;club=272&amp;recache=&amp;searchRadius=10&amp;fname=&amp;memid=&amp;conversationId=503&#xA;&#xA;http://ww2.aaa.com/services/automotive/shopLocator/shopLocatorSearchResults.html?office=998&amp;dt=1434387671395&amp;appcontext=aaaDotCom&amp;lname=&amp;location=CITY%7CCAN000187%7CEdmonton%7CYEA%7CCA&amp;association=CAA&amp;street=&amp;showhf=true&amp;refererappid=Unknown&amp;locationName=Edmonton%2C+Ab&amp;lang=EN&amp;shopType=MECHANICAL&amp;postalCode=&amp;email=&amp;club=272&amp;recache=&amp;searchRadius=10&amp;fname=&amp;memid=&amp;conversationId=503" shownForIssueAuthor="false" created="1434387830761" updated="1434061630793"><replies/></comment><tag cssClass="tag0">dev</tag></issue><issue id="GWWW-1013" entityId="83-770"><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="projectShortName"><value>GWWW</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="numberInProject"><value>1013</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="summary"><value>WP creating pages for images in the Media area.</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="description"><value></value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="created"><value>1430517123213</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updated"><value>1433370855411</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterName"><value>adam.melnyk</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterFullName"><value>adam.melnyk</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterName"><value>sarah.hammond</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterFullName"><value>sarah.hammond</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="commentsCount"><value>1</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="votes"><value>0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Priorities"><value>Normal</value><valueId>Normal</valueId><color><bg>#ebf4dd</bg><fg>#64992C</fg></color></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Types"><value>Bug</value><valueId>Bug</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_States"><value>Backlog</value><valueId>Backlog</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Versions"><value>1.0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MultiUserField" name="Product Owner"><value fullName="edmund.chua">edmund.chua</value></field><comment id="98-692" author="adam.melnyk" authorFullName="adam.melnyk" issueId="GWWW-1013" deleted="false" text="looks like it also loads (out of order) the images that appear before and after it in the media gridview. ie. you would think https://ama.ab.ca/travel-bridal-plan-your-trip/ would only display one image." shownForIssueAuthor="false" created="1433370855413"><replies/></comment></issue><issue id="TECHDBT-1010" entityId="83-174"><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="projectShortName"><value>TECHDBT</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="numberInProject"><value>1010</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="summary"><value>Error Page Analytics Tags</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="description"><value></value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="created"><value>1425662525728</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updated"><value>1429033273796</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterName"><value>ryan.jones</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterFullName"><value>ryan.jones</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterName"><value>ruben.estevez</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterFullName"><value>ruben.estevez</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="commentsCount"><value>7</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="votes"><value>1</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Priorities"><value>Minor</value><valueId>Minor</valueId><color><fg>#64992C</fg></color></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Types"><value>Bug</value><valueId>Bug</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_States"><value>In Progress</value><valueId>In Progress</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Versions"><value>1.0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MultiUserField" name="Product Owner"><value fullName="ryan.jones">ryan.jones</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MultiUserField" name="voterName"><value fullName="johnn.four">johnn.four</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="AttachmentField" name="attachments"><value id="100-19" url="http://ama-digital.myjetbrains.com/youtrack/_persistent/Webtrends-error-tags.zip?file=100-19&amp;v=0&amp;c=true">Webtrends-error-tags.zip</value></field><comment id="98-11" author="ruben.estevez" authorFullName="ruben.estevez" issueId="TECHDBT-1010" deleted="false" text="We'll be adding Google Tag Manage code and Webtrends code to each page.&#xA;The code is based on the URL. So we need different code per site.&#xA;Each page needs three pieces:&#xA;#1: The Google Tag Manager code just after the body tag&#xA;#2: The Webtrends tag and js code&#xA;#3: A Webtrends meta tag somewhere in the body. The tag is based on a pattern of error code and domain:&#xA;F5&#xA;&lt;meta name=&quot;WT.cg_n&quot; content=&quot;Error Pages - F5 [DOMAIN]&quot; /&gt;&#xA;500s&#xA;&lt;meta name=&quot;WT.cg_n&quot; content=&quot;Error Pages - [CODE] [DOMAIN]&quot; /&gt;&#xA;Example Code = 500, 501&#xA;Example Domain = youraccount.ama.ab.ca or forms.ama.ab.ca&#xA;400s&#xA;&lt;meta name=&quot;WT.cg_n&quot; content=&quot;Error Pages - [CODE] [DOMAIN]&quot; /&gt;&#xA;Example Code = 404, 403&#xA;Example Domain = youraccount.ama.ab.ca or forms.ama.ab.ca&#xA;&#xA;Here are the Google Tag Manager tags:&#xA;&#xA;youraccount.ama.ab.ca&#xA;&#xA;&lt;!-- Google Tag Manager --&gt;&#xA;&lt;noscript&gt;&lt;iframe src=&quot;//www.googletagmanager.com/ns.html?id=GTM-PXXSHK&quot;&#xA;height=&quot;0&quot; width=&quot;0&quot; style=&ququot;display:none;visibility:hidden&quot;&gt;&lt;/iframe&gt;&lt;/noscript&gt;&#xA;&lt;script&gt;(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':&#xA;new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],&#xA;j=d.createElement(s),dl=l!='dataLayer'?'&amp;l='+l:'';j.async=true;j.src=&#xA;'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);&#xA;})(window,document,'script','dataLayer','GTM-PXXSHK');&lt;/script&gt;&#xA;&lt;!-- End Google Tag Manager --&gt;&#xA;&#xA;auth.ama.ab.ca&#xA;&#xA;&lt;!-- Google Tag Manager --&gt;&#xA;&lt;noscript&gt;&lt;iframe src=&quot;//www.googletagmanager.com/ns.html?id=GTM-NK2H74&quot;&#xA;height=&quot;0&quot; width=&quot;0&quot; style=&quot;display:none;visibility:hidden&quot;&gt;&lt;/iframe&gt;&lt;/noscript&gt;&#xA;&lt;script&gt;(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':&#xA;new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],&#xA;j=d.createElement(s),dl=l!='dataLayer'?'&amp;l='+l:'';j.async=true;j.src=&#xA;'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);&#xA;})(window,document,'script','dataLayer','GTM-NK2H74');&lt;/script&gt;&#xA;&lt;!-- End Google Tag Manager --&gt;&#xA;&#xA;membership.ama.ab.ca&#xA;&#xA;&lt;!-- Google Tag Manager --&gt;&#xA;&lt;noscript&gt;&lt;iframe src=&quot;//www.googletagmanager.com/ns.html?id=GTM-TMZR56&quot;&#xA;height=&quot;0&quot; width=&quot;0&quot; style=&quot;display:none;visibility:hidden&quot;&gt;&lt;/iframe&gt;&lt;/noscript&gt;&#xA;&lt;script&gt;(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':&#xA;new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],&#xA;j=d.createElement(s),dl=l!='dataLayer'?'&amp;l='+l:'';j.async=true;j.src=&#xA;'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);&#xA;})(window,document,'script','dataLayer','GTM-TMZR56');&lt;/script&gt;&#xA;&lt;!-- End Google Tag Manager --&gt;&#xA;&#xA;insurance-oa.ama.ab.ca&#xA;&#xA;&lt;!-- Google Tag Manager --&gt;&#xA;&lt;noscript&gt;&lt;iframe src=&quot;//www.googletagmanager.com/ns.html?id=GTM-NK2H74&quot;&#xA;height=&quot;0&quot; width=&quot;0&quot; style=&quot;display:none;visibility:hidden&quot;&gt;&lt;/iframe&gt;&lt;/noscript&gt;&#xA;&lt;script&gt;(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':&#xA;new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],&#xA;j=d.createElement(s),dl=l!='dataLayer'?'&amp;l='+l:'';j.async=true;j.src=&#xA;'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);&#xA;})(window,document,'script','dataLayer','GTM-NK2H74');&lt;/script&gt;&#xA;&lt;!-- End Google Tag Manager --&gt;&#xA;&#xA;forms.ama.ab.ca&#xA;&#xA;&lt;!-- Google Tag Manager --&gt;&#xA;&lt;noscript&gt;&lt;iframe src=&quot;//www.googletagmanager.com/ns.html?id=GTM-N6GHDS&quot;&#xA;height=&quot;0&quot; width=&quot;0&quot; style=&quot;display:none;visibility:hidden&quot;&gt;&lt;/iframe&gt;&lt;/noscript&gt;&#xA;&lt;script&gt;(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':&#xA;new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],&#xA;j=d.createElement(s),dl=l!='dataLayer'?'&amp;l='+l:'';j.async=true;j.src=&#xA;'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);&#xA;})(window,document,'script','dataLayer','GTM-N6GHDS');&lt;/script&gt;&#xA;&lt;!-- End Google Tag Manager --&gt;&#xA;&#xA;amaroadreports.ca&#xA;&#xA;&lt;!-- Google Tag Manager --&gt;&#xA;&lt;noscript&gt;&lt;iframe src=&quot;//www.googletagmanager.com/ns.html?id=GTM-PKS6HH&quot;&#xA;height=&quot;0&quot; width=&quot;0&quot; style=&quot;display:none;visibility:hidden&quot;&gt;&lt;/iframe&gt;&lt;/noscript&gt;&#xA;&lt;script&gt;(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':&#xA;new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],&#xA;j=d.createElement(s),dl=l!='dataLayer'?'&amp;l='+l:'';j.async=true;j.src=&#xA;'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);&#xA;})(window,document,'script','dataLayer','GTM-PKS6HH');&lt;/script&gt;&#xA;&lt;!-- End Google Tag Manager --&gt;" shownForIssueAuthor="false" created="1425662558324" updated="1425662602503"><replies/></comment><comment id="98-12" author="ruben.estevez" authorFullName="ruben.estevez" issueId="TECHDBT-1010" deleted="false" text="And attached is a zip of Webtrends tags.&#xA;Inside the zip are zips of code for each site." shownForIssueAuthor="false" created="1425662639768" updated="1425662558318"><replies/></comment><comment id="98-17" author="ryan.jones" authorFullName="ryan.jones" issueId="TECHDBT-1010" deleted="false" text="I'll do this with the F5" shownForIssueAuthor="false" created="1425671361765"><replies/></comment><comment id="98-221" author="darko.dosenovic" authorFullName="darko.dosenovic" issueId="TECHDBT-1010" deleted="false" text="Ryan, Can you update this one?&#xA;&#xA;Thanks,&#xA;&#xA;Darko" shownForIssueAuthor="false" created="1428355390325"><replies/></comment><comment id="98-318" author="ryan.jones" authorFullName="ryan.jones" issueId="TECHDBT-1010" deleted="false" text="@jordan.babe can you follow up with your changes you did for the other error pages?" shownForIssueAuthor="false" created="1429029408881" updated="1425671361759"><replies/></comment><comment id="98-324" author="jordan.babe" authorFullName="jordan.babe" issueId="TECHDBT-1010" deleted="false" text="@ryan.jones Not sure I understand, but for a new project you'll need to copy these files and modify on a per project basis: https://github.com/amaabca/rails_common/tree/master/files/public" shownForIssueAuthor="false" created="1429032830138"><replies/></comment><comment id="98-325" author="ryan.jones" authorFullName="ryan.jones" issueId="TECHDBT-1010" deleted="false" text="This one needs to remain open until we have the tracking on all of the apps (error pages as per jordan)" shownForIssueAuthor="false" created="1429033273797" updated="1429029408870"><replies/></comment><tag cssClass="tag0">dev</tag></issue></issueCompacts></body>
@@ -0,0 +1,10 @@
1
+ I found 9 bugs. Bugs can be viewed at www.sampleyoutrackhost.com/issues?q=-Done+-%7BParking+Lot%7D+%23Bug+sort+by%3A+AMA_Priorities%2C+Updated
2
+ YA-1014 - Member is seeing statement for 2016 when they view "Previous Statement" - www.sampleyoutrackhost.com/issue/YA-1014
3
+ CAR-1007 - Verify webmaster email address for AgileStyle's SES plugin - www.sampleyoutrackhost.com/issue/CAR-1007
4
+ FORMS-1006 - Link not working on DE registration page - www.sampleyoutrackhost.com/issue/FORMS-1006
5
+ TECHDBT-1034 - Investigate Amazon Billing - www.sampleyoutrackhost.com/issue/TECHDBT-1034
6
+ GCDEV-1050 - Clean GitLab from unused/old folders/files - www.sampleyoutrackhost.com/issue/GCDEV-1050
7
+ GWWW-1021 - Approved Auto Repair Services Centre - AMA Travel - Please Wait page - www.sampleyoutrackhost.com/issue/GWWW-1021
8
+ GWWW-1020 - Approved Auto Repair Services Centre - SYCS logos not appearing - www.sampleyoutrackhost.com/issue/GWWW-1020
9
+ GWWW-1013 - WP creating pages for images in the Media area. - www.sampleyoutrackhost.com/issue/GWWW-1013
10
+ TECHDBT-1010 - Error Page Analytics Tags - www.sampleyoutrackhost.com/issue/TECHDBT-1010
@@ -0,0 +1,17 @@
1
+
2
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?><issueCompacts><issue id="DEWWW-1024" entityId="83-1046"><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="projectShortName"><value>DEWWW</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="numberInProject"><value>1024</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="summary"><value>On the All Courses page - dropdown not reflecting the pre-selected choice</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="description"><value>
3
+ </value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="created"><value>1435088565643</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updated"><value>1435088565643</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterName"><value>rod.hodgson</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterFullName"><value>rod.hodgson</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterName"><value>rod.hodgson</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterFullName"><value>rod.hodgson</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="commentsCount"><value>0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="votes"><value>0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Priorities"><value>Normal</value><valueId>Normal</valueId><color><bg>#ebf4dd</bg><fg>#64992C</fg></color></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Types"><value>Bug</value><valueId>Bug</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_States"><value>Parking Lot</value><valueId>Parking Lot</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Versions"><value>1.0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MultiUserField" name="Product Owner"><value fullName="rod.hodgson">rod.hodgson</value></field></issue><issue id="YA-1016" entityId="83-1057"><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="projectShortName"><value>YA</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="numberInProject"><value>1016</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="summary"><value>Investigate what the YA job server is doing.</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="description"><value>Do we need it anymore since we've dropped AXIS?</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="created"><value>1435245331029</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updated"><value>1435337515184</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterName"><value>michael.vandenbeuken</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterFullName"><value>michael.vandenbeuken</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterName"><value>ryan.jones</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterFullName"><value>ryan.jones</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="commentsCount"><value>7</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="votes"><value>0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Priorities"><value>Normal</value><valueId>Normal</valueId><color><bg>#ebf4dd</bg><fg>#64992C</fg></color></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Types"><value>Bug</value><valueId>Bug</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_States"><value>In Review</value><valueId>In Review</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Versions"><value>1.0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MultiUserField" name="Product Owner"><value fullName="edmund.chua">edmund.chua</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="AttachmentField" name="attachments"><value id="100-238" url="http://ama-digital.myjetbrains.com/youtrack/_persistent/my_ama_production_db.png?file=100-238&amp;v=0&amp;c=true">my_ama_production_db.png</value><value id="100-239" url="http://ama-digital.myjetbrains.com/youtrack/_persistent/my_ama_staging_db.png?file=100-239&amp;v=0&amp;c=true">my_ama_staging_db.png</value><value id="100-240" url="http://ama-digital.myjetbrains.com/youtrack/_persistent/my_ama_production_search.png?file=100-240&amp;v=0&amp;c=true">my_ama_production_search.png</value><value id="100-241" url="http://ama-digital.myjetbrains.com/youtrack/_persistent/my_ama_staging_search.png?file=100-241&amp;v=0&amp;c=true">my_ama_staging_search.png</value><value id="100-242" url="http://ama-digital.myjetbrains.com/youtrack/_persistent/my_ama_production_redis.png?file=100-242&amp;v=0&amp;c=true">my_ama_production_redis.png</value><value id="100-243" url="http://ama-digital.myjetbrains.com/youtrack/_persistent/my_ama_staging_redis.png?file=100-243&amp;v=0&amp;c=true">my_ama_staging_redis.png</value></field><comment id="98-853" author="michael.vandenbeuken" authorFullName="michael.vandenbeuken" issueId="YA-1016" deleted="false" text="@ryan.jones: I was going to say that it was primarily the database, and that it handled sidekiq background jobs to update billing status, etc, but it looks like we'd switched over to using the second app server for those purposes at some point.&#xA;&#xA;I don't think we're using these anymore." shownForIssueAuthor="false" created="1435261994752"><replies/></comment><comment id="98-867" author="michael.vandenbeuken" authorFullName="michael.vandenbeuken" issueId="YA-1016" deleted="false" text="@ryan.jones I've attached supporting screenshots showing that staging and prod are using the secondary app servers as memcache, redis and database servers." shownForIssueAuthor="false" created="1435328443601" updated="1435261994742"><replies/></comment><comment id="98-868" author="michael.vandenbeuken" authorFullName="michael.vandenbeuken" issueId="YA-1016" deleted="false" text="Here they are:" shownForIssueAuthor="false" created="1435328480676" updated="1435328443593"><replies/></comment><comment id="98-872" author="ryan.jones" authorFullName="ryan.jones" issueId="YA-1016" deleted="false" text="Wiiiiiiierd. I wonder why we did that. Is there a commit on that change?" shownForIssueAuthor="false" created="1435335542571"><replies/></comment><comment id="98-874" author="michael.vandenbeuken" authorFullName="michael.vandenbeuken" issueId="YA-1016" deleted="false" text="I'll see if I can find a commit for that. " shownForIssueAuthor="false" created="1435336167397" updated="1435328480673"><replies/></comment><comment id="98-875" author="michael.vandenbeuken" authorFullName="michael.vandenbeuken" issueId="YA-1016" deleted="false" text="It was already changed over to app server 2 by the time the .envs were moved into Gitlab. No revision history to indicate why we made the change." shownForIssueAuthor="false" created="1435337192828" updated="1435336167392"><replies/></comment><comment id="98-878" author="michael.vandenbeuken" authorFullName="michael.vandenbeuken" issueId="YA-1016" deleted="false" text="@ryan.jones moving this to In Review. We have as much info as I think we're going to get. We can discuss whether we want to decommission the job servers." shownForIssueAuthor="false" created="1435337515185" updated="1435337192824"><replies/></comment></issue><issue id="CAR-1005" entityId="83-431"><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="projectShortName"><value>CAR</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="numberInProject"><value>1005</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="summary"><value>Careers submission page not working - IE/Safari</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="description"><value>
4
+
5
+ Chrome.</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="created"><value>1427308161926</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updated"><value>1427308161926</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterName"><value>martine.vandyke</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterFullName"><value>martine.vandyke</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterName"><value>martine.vandyke</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterFullName"><value>martine.vandyke</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="commentsCount"><value>0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="votes"><value>0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Priorities"><value>Normal</value><valueId>Normal</valueId><color><bg>#ebf4dd</bg><fg>#64992C</fg></color></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Types"><value>Bug</value><valueId>Bug</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_States"><value>Parking Lot</value><valueId>Parking Lot</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Versions"><value>1.0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MultiUserField" name="Product Owner"><value fullName="ryan.jones">ryan.jones</value></field></issue><issue id="FORMS-1017" entityId="83-1084"><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="projectShortName"><value>FORMS</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="numberInProject"><value>1017</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="summary"><value>Incorrect link address on AMA Website button</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="description"><value>Member reported that the AMA Website buttondoes not work from this page (see attached).
6
+ http://https//ama.ab.ca</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="created"><value>1435596809138</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updated"><value>1435609189421</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterName"><value>michael.vandenbeuken</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterFullName"><value>michael.vandenbeuken</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterName"><value>martine.vandyke</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterFullName"><value>martine.vandyke</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="commentsCount"><value>1</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="votes"><value>0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Priorities"><value>Normal</value><valueId>Normal</valueId><color><bg>#ebf4dd</bg><fg>#64992C</fg></color></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Types"><value>Bug</value><valueId>Bug</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_States"><value>In Review</value><valueId>In Review</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Versions"><value>1.0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MultiUserField" name="Product Owner"><value fullName="ryan.jones">ryan.jones</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="AttachmentField" name="attachments"><value id="100-288" url="http://ama-digital.myjetbrains.com/youtrack/_persistent/image.png?file=100-288&amp;v=0&amp;c=true">image.png</value><value id="100-289" url="http://ama-digital.myjetbrains.com/youtrack/_persistent/webpagenotavailable.JPG?file=100-289&amp;v=0&amp;c=true">webpagenotavailable.JPG</value></field><comment id="98-906" author="michael.vandenbeuken" authorFullName="michael.vandenbeuken" issueId="FORMS-1017" deleted="false" text="@martine.vandyke this'll be fixed when the new design goes live tomorrow. The whole page is different. Are you ok with closing this one?" shownForIssueAuthor="false" created="1435609186902"><replies/></comment><tag cssClass="tag0">dev</tag></issue><issue id="MEMBR-1002" entityId="83-115"><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="projectShortName"><value>MEMBR</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="numberInProject"><value>1002</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="summary"><value>Membership Add Associates page - Clear Family Member selection not working in Internet Explorer</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="description"><value>
7
+
8
+ Ryan verified that this was a bug.</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="created"><value>1425576595091</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updated"><value>1429280868750</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterName"><value>michael.vandenbeuken</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterFullName"><value>michael.vandenbeuken</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterName"><value>ruben.estevez</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterFullName"><value>ruben.estevez</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="commentsCount"><value>3</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="votes"><value>0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Priorities"><value>Normal</value><valueId>Normal</valueId><color><bg>#ebf4dd</bg><fg>#64992C</fg></color></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Types"><value>Bug</value><valueId>Bug</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_States"><value>Parking Lot</value><valueId>Parking Lot</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Versions"><value>1.0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MultiUserField" name="Product Owner"><value fullName="edmund.chua">edmund.chua</value></field><comment id="98-66" author="mathieu.gilbert" authorFullName="mathieu.gilbert" issueId="MEMBR-1002" deleted="false" text="RE: Jordan,&#xA;Do we know if was a native IE? or version? I tried the password changing machine and it clears the associate.&#xA;Just forgot to try IE8 standards, will try that.&#xA;Ruben&#xA;" shownForIssueAuthor="false" created="1426192246428"><replies/></comment><comment id="98-67" author="mathieu.gilbert" authorFullName="mathieu.gilbert" issueId="MEMBR-1002" deleted="false" text="RE: Just try on the password changing machine with IE8 standards and the clear family member works.&#xA;We should find a machine with native IE in order to test this." shownForIssueAuthor="false" created="1426192260090" updated="1426192246421"><replies/></comment><comment id="98-349" author="michael.vandenbeuken" authorFullName="michael.vandenbeuken" issueId="MEMBR-1002" deleted="false" text="On hold until we find a test machine with native IE8." shownForIssueAuthor="false" created="1429280866446"><replies/></comment><tag cssClass="tag0">dev</tag></issue><issue id="API-1011" entityId="83-1051"><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="projectShortName"><value>API</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="numberInProject"><value>1011</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="summary"><value>Identify source application and user when making iMIS calls</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="description"><value>
9
+
10
+ </value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="created"><value>1435163968921</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updated"><value>1435677124085</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterName"><value>root</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterFullName"><value>root</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterName"><value>jordan.babe</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterFullName"><value>jordan.babe</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="commentsCount"><value>2</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="votes"><value>0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Priorities"><value>Normal</value><valueId>Normal</valueId><color><bg>#ebf4dd</bg><fg>#64992C</fg></color></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Types"><value>Bug</value><valueId>Bug</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_States"><value>In Review</value><valueId>In Review</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Versions"><value>1.0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MultiUserField" name="Product Owner"><value fullName="ryan.jones">ryan.jones</value></field><comment id="98-820" author="jordan.babe" authorFullName="jordan.babe" issueId="API-1011" deleted="false" text="@michael.vandenbeuken this is the one I was talking about" shownForIssueAuthor="false" created="1435163989215"><replies/></comment><comment id="98-914" author="root" authorFullName="root" issueId="API-1011" deleted="false" text="@ryan.jones branch in review" shownForIssueAuthor="false" created="1435677124093"><replies/></comment></issue><issue id="TECHDBT-1038" entityId="83-1072"><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="projectShortName"><value>TECHDBT</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="numberInProject"><value>1038</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="summary"><value>Unable to connect to stage-auth.ama.ab.ca (SDE #231332)</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="description"><value>Reported by Grant:
11
+
12
+
13
+ </value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="created"><value>1435331691234</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updated"><value>1435599741830</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterName"><value>michael.vandenbeuken</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterFullName"><value>michael.vandenbeuken</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterName"><value>martine.vandyke</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterFullName"><value>martine.vandyke</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="commentsCount"><value>2</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="votes"><value>0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Priorities"><value>Normal</value><valueId>Normal</valueId><color><bg>#ebf4dd</bg><fg>#64992C</fg></color></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Types"><value>Bug</value><valueId>Bug</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_States"><value>Backlog</value><valueId>Backlog</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Versions"><value>1.0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MultiUserField" name="Product Owner"><value fullName="ryan.jones">ryan.jones</value></field><comment id="98-870" author="martine.vandyke" authorFullName="martine.vandyke" issueId="TECHDBT-1038" deleted="false" text="@jordan.babe &#xA;" shownForIssueAuthor="false" created="1435331729727"><replies/></comment><comment id="98-894" author="michael.vandenbeuken" authorFullName="michael.vandenbeuken" issueId="TECHDBT-1038" deleted="false" text="This is with the VM team for diagnosis." shownForIssueAuthor="false" created="1435599741832"><replies/></comment></issue><issue id="TECHDBT-1037" entityId="83-921"><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="projectShortName"><value>TECHDBT</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="numberInProject"><value>1037</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="summary"><value>Set Bundler version in Ansible scripts</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="description"><value>We .</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="created"><value>1432850784759</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updated"><value>1432850784759</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterName"><value>jordan.babe</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterFullName"><value>jordan.babe</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterName"><value>jordan.babe</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterFullName"><value>jordan.babe</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="commentsCount"><value>0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="votes"><value>0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Priorities"><value>Normal</value><valueId>Normal</valueId><color><bg>#ebf4dd</bg><fg>#64992C</fg></color></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Types"><value>Bug</value><valueId>Bug</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_States"><value>Parking Lot</value><valueId>Parking Lot</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Versions"><value>1.0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MultiUserField" name="Product Owner"><value fullName="ryan.jones">ryan.jones</value></field></issue><issue id="BWBS-1006" entityId="83-985"><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="projectShortName"><value>BWBS</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="numberInProject"><value>1006</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="summary"><value>BWB calculator form formatting - overlapping fields</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="description"><value></value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="created"><value>1433882843983</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updated"><value>1433882843983</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterName"><value>christopher.nash</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterFullName"><value>christopher.nash</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterName"><value>christopher.nash</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterFullName"><value>christopher.nash</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="commentsCount"><value>0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="votes"><value>0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Priorities"><value>Normal</value><valueId>Normal</valueId><color><bg>#ebf4dd</bg><fg>#64992C</fg></color></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Types"><value>Bug</value><valueId>Bug</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_States"><value>Parking Lot</value><valueId>Parking Lot</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Versions"><value>1.0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MultiUserField" name="Product Owner"><value fullName="christopher.nash">christopher.nash</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="AttachmentField" name="attachments"><value id="100-201" url="http://ama-digital.myjetbrains.com/youtrack/_persistent/Formatting-Issue.jpg?file=100-201&amp;v=0&amp;c=true">Formatting-Issue.jpg</value></field></issue><issue id="BWBS-1004" entityId="83-869"><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="projectShortName"><value>BWBS</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="numberInProject"><value>1004</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="summary"><value>Calculators without foundation look terrible unless embedded on a site with Foundation</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="description"><value>
14
+
15
+ </value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="created"><value>1432324491908</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updated"><value>1432324491908</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterName"><value>jordan.babe</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterFullName"><value>jordan.babe</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterName"><value>jordan.babe</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterFullName"><value>jordan.babe</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="commentsCount"><value>0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="votes"><value>0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Priorities"><value>Normal</value><valueId>Normal</valueId><color><bg>#ebf4dd</bg><fg>#64992C</fg></color></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Types"><value>Bug</value><valueId>Bug</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_States"><value>Parking Lot</value><valueId>Parking Lot</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Versions"><value>1.0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MultiUserField" name="Product Owner"><value fullName="christopher.nash">christopher.nash</value></field></issue><issue id="GWWW-1021" entityId="83-970"><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="projectShortName"><value>GWWW</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="numberInProject"><value>1021</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="summary"><value> Approved Auto Repair Services Centre - AMA Travel - Please Wait page</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="description"><value>after entering in address info, the search shows a redirecting to AMA Travel page. see attached.</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="created"><value>1433438471138</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updated"><value>1435155611827</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterName"><value>michael.vandenbeuken</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterFullName"><value>michael.vandenbeuken</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterName"><value>martine.vandyke</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterFullName"><value>martine.vandyke</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="commentsCount"><value>3</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="votes"><value>0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Priorities"><value>Normal</value><valueId>Normal</valueId><color><bg>#ebf4dd</bg><fg>#64992C</fg></color></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Types"><value>Bug</value><valueId>Bug</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_States"><value>In Progress</value><valueId>In Progress</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Versions"><value>1.0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MultiUserField" name="Product Owner"><value fullName="ryan.jones">ryan.jones</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="AttachmentField" name="attachments"><value id="100-200" url="http://ama-digital.myjetbrains.com/youtrack/_persistent/AAR-amatravel.JPG?file=100-200&amp;v=0&amp;c=true">AAR-amatravel.JPG</value></field><comment id="98-727" author="darko.dosenovic" authorFullName="darko.dosenovic" issueId="GWWW-1021" deleted="false" text="Sent email to Suniel to get more info where is this built and if we could adjust it." shownForIssueAuthor="false" created="1434398903680"><replies/></comment><comment id="98-750" author="darko.dosenovic" authorFullName="darko.dosenovic" issueId="GWWW-1021" deleted="false" text="@martine.vandyke &#xA;&#xA;I asked Suniel to take a look at this and maybe come up with some changes, since this gif animation initiali was done by/for TST use." shownForIssueAuthor="false" created="1434572703485" updated="1434398903674"><replies/></comment><comment id="98-816" author="michael.vandenbeuken" authorFullName="michael.vandenbeuken" issueId="GWWW-1021" deleted="false" text="I think this is part of a generic &quot;wait&quot; message in the AAA configuration. I'll see if we can individualize it for different services, but we may be stuck with 1 wait animation for all AAA services." shownForIssueAuthor="false" created="1435155611828"><replies/></comment><tag cssClass="tag0">dev</tag></issue><issue id="GWWW-1013" entityId="83-770"><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="projectShortName"><value>GWWW</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="numberInProject"><value>1013</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="summary"><value>WP creating pages for images in the Media area.</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="description"><value></value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="created"><value>1430517123213</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updated"><value>1433370855411</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterName"><value>adam.melnyk</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterFullName"><value>adam.melnyk</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterName"><value>sarah.hammond</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterFullName"><value>sarah.hammond</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="commentsCount"><value>1</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="votes"><value>0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Priorities"><value>Normal</value><valueId>Normal</valueId><color><bg>#ebf4dd</bg><fg>#64992C</fg></color></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Types"><value>Bug</value><valueId>Bug</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_States"><value>Backlog</value><valueId>Backlog</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Versions"><value>1.0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MultiUserField" name="Product Owner"><value fullName="edmund.chua">edmund.chua</value></field><comment id="98-692" author="adam.melnyk" authorFullName="adam.melnyk" issueId="GWWW-1013" deleted="false" text="looks like it also loads (out of order) the images that appear before and after it in the media gridview. ie. you would think https://ama.ab.ca/travel-bridal-plan-your-trip/ would only display one image." shownForIssueAuthor="false" created="1433370855413"><replies/></comment></issue><issue id="TECHDBT-1010" entityId="83-174"><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="projectShortName"><value>TECHDBT</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="numberInProject"><value>1010</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="summary"><value>Error Page Analytics Tags</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="description"><value>Ryan:
16
+
17
+ </value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="created"><value>1425662525728</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updated"><value>1429033273796</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterName"><value>ryan.jones</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="updaterFullName"><value>ryan.jones</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterName"><value>ruben.estevez</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="reporterFullName"><value>ruben.estevez</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="commentsCount"><value>7</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SingleField" name="votes"><value>1</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Priorities"><value>Minor</value><valueId>Minor</valueId><color><fg>#64992C</fg></color></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Types"><value>Bug</value><valueId>Bug</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_States"><value>In Progress</value><valueId>In Progress</valueId></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CustomFieldValue" name="AMA_Versions"><value>1.0</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MultiUserField" name="Product Owner"><value fullName="ryan.jones">ryan.jones</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MultiUserField" name="voterName"><value fullName="johnn.four">johnn.four</value></field><field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="AttachmentField" name="attachments"><value id="100-19" url="http://ama-digital.myjetbrains.com/youtrack/_persistent/Webtrends-error-tags.zip?file=100-19&amp;v=0&amp;c=true">Webtrends-error-tags.zip</value></field><comment id="98-11" author="ruben.estevez" authorFullName="ruben.estevez" issueId="TECHDBT-1010" deleted="false" text="We'll be adding Google Tag Manage code and Webtrends code to each page.&#xA;The code is based on the URL. So we need different code per site.&#xA;Each page needs three pieces:&#xA;#1: The Google Tag Manager code just after the body tag&#xA;#2: The Webtrends tag and js code&#xA;#3: A Webtrends meta tag somewhere in the body. The tag is based on a pattern of error code and domain:&#xA;F5&#xA;&lt;meta name=&quot;WT.cg_n&quot; content=&quot;Error Pages - F5 [DOMAIN]&quot; /&gt;&#xA;500s&#xA;&lt;meta name=&quot;WT.cg_n&quot; content=&quot;Error Pages - [CODE] [DOMAIN]&quot; /&gt;&#xA;Example Code = 500, 501&#xA;Example Domain = youraccount.ama.ab.ca or forms.ama.ab.ca&#xA;400s&#xA;&lt;meta name=&quot;WT.cg_n&quot; content=&quot;Error Pages - [CODE] [DOMAIN]&quot; /&gt;&#xA;Example Code = 404, 403&#xA;Example Domain = youraccount.ama.ab.ca or forms.ama.ab.ca&#xA;&#xA;Here are the Google Tag Manager tags:&#xA;&#xA;youraccount.ama.ab.ca&#xA;&#xA;&lt;!-- Google Tag Manager --&gt;&#xA;&lt;noscript&gt;&lt;iframe src=&quot;//www.googletagmanager.com/ns.html?id=GTM-PXXSHK&quot;&#xA;height=&quot;0&quot; width=&quot;0&quot; style=&quot;display:none;visibility:hidden&quot;&gt;&lt;/iframe&gt;&lt;/noscript&gt;&#xA;&lt;script&gt;(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':&#xA;new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],&#xA;j=d.createElement(s),dl=l!='dataLayer'?'&amp;l='+l:'';j.async=true;j.src=&#xA;'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);&#xA;})(window,document,'script','dataLayer','GTM-PXXSHK');&lt;/script&gt;&#xA;&lt;!-- End Google Tag Manager --&gt;&#xA;&#xA;auth.ama.ab.ca&#xA;&#xA;&lt;!-- Google Tag Manager --&gt;&#xA;&lt;noscript&gt;&lt;iframe src=&quot;//www.googletagmanager.com/ns.html?id=GTM-NK2H74&quot;&#xA;height=&quot;0&quot; width=&quot;0&quot; style=&quot;display:none;visibility:hidden&quot;&gt;&lt;/iframe&gt;&lt;/noscript&gt;&#xA;&lt;script&gt;(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':&#xA;new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],&#xA;j=d.createElement(s),dl=l!='dataLayer'?'&amp;l='+l:'';j.async=true;j.src=&#xA;'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);&#xA;})(window,document,'script','dataLayer','GTM-NK2H74');&lt;/script&gt;&#xA;&lt;!-- End Google Tag Manager --&gt;&#xA;&#xA;membership.ama.ab.ca&#xA;&#xA;&lt;!-- Google Tag Manager --&gt;&#xA;&lt;noscript&gt;&lt;iframe src=&quot;//www.googletagmanager.com/ns.html?id=GTM-TMZR56&quot;&#xA;height=&quot;0&quot; width=&quot;0&quot; style=&quot;display:none;visibility:hidden&quot;&gt;&lt;/iframe&gt;&lt;/noscript&gt;&#xA;&lt;script&gt;(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':&#xA;new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],&#xA;j=d.createElement(s),dl=l!='dataLayer'?'&amp;l='+l:'';j.async=true;j.src=&#xA;'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);&#xA;})(window,document,'script','dataLayer','GTM-TMZR56');&lt;/script&gt;&#xA;&lt;!-- End Google Tag Manager --&gt;&#xA;&#xA;insurance-oa.ama.ab.ca&#xA;&#xA;&lt;!-- Google Tag Manager --&gt;&#xA;&lt;noscript&gt;&lt;iframe src=&quot;//www.googletagmanager.com/ns.html?id=GTM-NK2H74&quot;&#xA;height=&quot;0&quot; width=&quot;0&quot; style=&quot;display:none;visibility:hidden&quot;&gt;&lt;/iframe&gt;&lt;/noscript&gt;&#xA;&lt;script&gt;(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':&#xA;new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],&#xA;j=d.createElement(s),dl=l!='dataLayer'?'&amp;l='+l:'';j.async=true;j.src=&#xA;'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);&#xA;})(window,document,'script','dataLayer','GTM-NK2H74');&lt;/script&gt;&#xA;&lt;!-- End Google Tag Manager --&gt;&#xA;&#xA;forms.ama.ab.ca&#xA;&#xA;&lt;!-- Google Tag Manager --&gt;&#xA;&lt;noscript&gt;&lt;iframe src=&quot;//www.googletagmanager.com/ns.html?id=GTM-N6GHDS&quot;&#xA;height=&quot;0&quot; width=&quot;0&quot; style=&quot;display:none;visibility:hidden&quot;&gt;&lt;/iframe&gt;&lt;/noscript&gt;&#xA;&lt;script&gt;(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':&#xA;new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],&#xA;j=d.createElement(s),dl=l!='dataLayer'?'&amp;l='+l:'';j.async=true;j.src=&#xA;'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);&#xA;})(window,document,'script','dataLayer','GTM-N6GHDS');&lt;/script&gt;&#xA;&lt;!-- End Google Tag Manager --&gt;&#xA;&#xA;amaroadreports.ca&#xA;&#xA;&lt;!-- Google Tag Manager --&gt;&#xA;&lt;noscript&gt;&lt;iframe src=&quot;//www.googletagmanager.com/ns.html?id=GTM-PKS6HH&quot;&#xA;height=&quot;0&quot; width=&quot;0&quot; style=&quot;display:none;visibility:hidden&quot;&gt;&lt;/iframe&gt;&lt;/noscript&gt;&#xA;&lt;script&gt;(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':&#xA;new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],&#xA;j=d.createElement(s),dl=l!='dataLayer'?'&amp;l='+l:'';j.async=true;j.src=&#xA;'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);&#xA;})(window,document,'script','dataLayer','GTM-PKS6HH');&lt;/script&gt;&#xA;&lt;!-- End Google Tag Manager --&gt;" shownForIssueAuthor="false" created="1425662558324" updated="1425662602503"><replies/></comment><comment id="98-12" author="ruben.estevez" authorFullName="ruben.estevez" issueId="TECHDBT-1010" deleted="false" text="And attached is a zip of Webtrends tags.&#xA;Inside the zip are zips of code for each site." shownForIssueAuthor="false" created="1425662639768" updated="1425662558318"><replies/></comment><comment id="98-17" author="ryan.jones" authorFullName="ryan.jones" issueId="TECHDBT-1010" deleted="false" text="I'll do this with the F5" shownForIssueAuthor="false" created="1425671361765"><replies/></comment><comment id="98-221" author="darko.dosenovic" authorFullName="darko.dosenovic" issueId="TECHDBT-1010" deleted="false" text="Ryan, Can you update this one?&#xA;&#xA;Thanks,&#xA;&#xA;Darko" shownForIssueAuthor="false" created="1428355390325"><replies/></comment><comment id="98-318" author="ryan.jones" authorFullName="ryan.jones" issueId="TECHDBT-1010" deleted="false" text="@jordan.babe can you follow up with your changes you did for the other error pages?" shownForIssueAuthor="false" created="1429029408881" updated="1425671361759"><replies/></comment><comment id="98-324" author="jordan.babe" authorFullName="jordan.babe" issueId="TECHDBT-1010" deleted="false" text="@ryan.jones Not sure I understand, but for a new project you'll need to copy these files and modify on a per project basis: https://github.com/amaabca/rails_common/tree/master/files/public" shownForIssueAuthor="false" created="1429032830138"><replies/></comment><comment id="98-325" author="ryan.jones" authorFullName="ryan.jones" issueId="TECHDBT-1010" deleted="false" text="This one needs to remain open until we have the tracking on all of the apps (error pages as per jordan)" shownForIssueAuthor="false" created="1429033273797" updated="1429029408870"><replies/></comment><tag cssClass="tag0">dev</tag></issue></issueCompacts>
@@ -0,0 +1,14 @@
1
+ I found 13 bugs. Bugs can be viewed at www.sampleyoutrackhost.com/issues?q=-Done+%23Bug+sort+by%3A+AMA_Priorities%2C+Updated
2
+ DEWWW-1024 - On the All Courses page - dropdown not reflecting the pre-selected choice - www.sampleyoutrackhost.com/issue/DEWWW-1024
3
+ YA-1016 - Investigate what the YA job server is doing. - www.sampleyoutrackhost.com/issue/YA-1016
4
+ CAR-1005 - Careers submission page not working - IE/Safari - www.sampleyoutrackhost.com/issue/CAR-1005
5
+ FORMS-1017 - Incorrect link address on AMA Website button - www.sampleyoutrackhost.com/issue/FORMS-1017
6
+ MEMBR-1002 - Membership Add Associates page - Clear Family Member selection not working in Internet Explorer - www.sampleyoutrackhost.com/issue/MEMBR-1002
7
+ API-1011 - Identify source application and user when making iMIS calls - www.sampleyoutrackhost.com/issue/API-1011
8
+ TECHDBT-1038 - Unable to connect to stage-auth.ama.ab.ca (SDE #231332) - www.sampleyoutrackhost.com/issue/TECHDBT-1038
9
+ TECHDBT-1037 - Set Bundler version in Ansible scripts - www.sampleyoutrackhost.com/issue/TECHDBT-1037
10
+ BWBS-1006 - BWB calculator form formatting - overlapping fields - www.sampleyoutrackhost.com/issue/BWBS-1006
11
+ BWBS-1004 - Calculators without foundation look terrible unless embedded on a site with Foundation - www.sampleyoutrackhost.com/issue/BWBS-1004
12
+ GWWW-1021 - Approved Auto Repair Services Centre - AMA Travel - Please Wait page - www.sampleyoutrackhost.com/issue/GWWW-1021
13
+ GWWW-1013 - WP creating pages for images in the Media area. - www.sampleyoutrackhost.com/issue/GWWW-1013
14
+ TECHDBT-1010 - Error Page Analytics Tags - www.sampleyoutrackhost.com/issue/TECHDBT-1010
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?><issueCompacts/>
@@ -0,0 +1 @@
1
+ I found 0 bugs. Bugs can be viewed at www.sampleyoutrackhost.com/issues?q=-Done+-%7BParking+Lot%7D+%23Bug+sort+by%3A+AMA_Priorities%2C+Updated
@@ -0,0 +1,12 @@
1
+
2
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?><issues><issue><field name="AMA_Priorities"><value>Critical</value></field><field name="AMA_Types"><value>Bug</value></field><field name="AMA_States"><value>Done</value></field><field name="AMA_Versions"><value>1.0</value></field><field name="Product Owner"><value>jordan.babe</value></field><field name="numberInProject"><value>1000</value></field><field name="summary"><value>Web Multiple Payments</value></field><field name="description"><value>Several</value></field><field name="created"><value>1425491894396</value></field><field name="updated"><value>1426700393110</value></field><field name="reporterName"><value>Eric.Bach</value></field><field name="updaterName"><value>mathieu.gilbert</value></field><field name="resolved"><value>1426700393107</value></field><field name="watcherName"><value>User: id = 26-21[up-to-date]</value></field><field name="permittedGroup"><value>All Users</value></field><comment author="mathieu.gilbert" text="We disabled overpayment, and IMIS fixed some related things." created="1426700390486"/></issue><issue><field name="AMA_Priorities"><value>Normal</value></field><field name="AMA_Types"><value>Feature</value></field><field name="AMA_States"><value>Parking Lot</value></field><field name="AMA_Versions"><value>1.0</value></field><field name="Product Owner"><value>jordan.babe</value></field><field name="numberInProject"><value>1001</value></field><field name="summary"><value>Updates to include consistent member details in web transactions</value></field><field name="description"><value>There are some minor changes to update for one time payments in the web request to help identify the membership in the Moneris transaction summary
3
+
4
+ 2. Set the batchId to the value from the response from NewMembership. This will also be added to the response of GetHousehold for renewals.</value></field><field name="created"><value>1425495018011</value></field><field name="updated"><value>1434579877066</value></field><field name="reporterName"><value>Eric.Bach</value></field><field name="updaterName"><value>darko.dosenovic</value></field><field name="watcherName"><value>User: id = 26-11[up-to-date]</value></field><field name="permittedGroup"><value>All Users</value></field><comment author="darko.dosenovic" text="@jordan.babe &#xA;&#xA;Is this still valid card/issue?" created="1434579877068"/></issue><issue><field name="AMA_Priorities"><value>Normal</value></field><field name="AMA_Types"><value>Bug</value></field><field name="AMA_States"><value>Parking Lot</value></field><field name="AMA_Versions"><value>1.0</value></field><field name="Product Owner"><value>edmund.chua</value></field><field name="numberInProject"><value>1002</value></field><field name="summary"><value>Membership Add Associates page - Clear Family Member selection not working in Internet Explorer</value></field><field name="description"><value>This came from Audrey when she was testing Join:
5
+
6
+ "In IE it didn’t show the Clear Family Member selection"
7
+
8
+ Ryan verified that this was a bug.</value></field><field name="created"><value>1425576595091</value></field><field name="updated"><value>1429280868750</value></field><field name="reporterName"><value>ruben.estevez</value></field><field name="updaterName"><value>michael.vandenbeuken</value></field><field name="watcherName"><value>User: id = 26-22[up-to-date]</value></field><field name="permittedGroup"><value>All Users</value></field><comment author="mathieu.gilbert" text="RE: Jordan,&#xA;Do we know if was a native IE? or version? I tried the password changing machine and it clears the associate.&#xA;Just forgot to try IE8 standards, will try that.&#xA;Ruben&#xA;" created="1426192246428"/><comment author="mathieu.gilbert" text="RE: Just try on the password changing machine with IE8 standards and the clear family member works.&#xA;We should find a machine with native IE in order to test this." created="1426192260090" updated="1426192246421"/><comment author="michael.vandenbeuken" text="On hold until we find a test machine with native IE8." created="1429280866446"/></issue><issue><field name="AMA_Priorities"><value>Normal</value></field><field name="AMA_Types"><value>Bug</value></field><field name="AMA_States"><value>Done</value></field><field name="AMA_Versions"><value>1.0</value></field><field name="Product Owner"><value>edmund.chua</value></field><field name="numberInProject"><value>1003</value></field><field name="summary"><value>[production][unknown] NoMethodError: undefined method ` automatic_credit_card_renewal=' for #&lt;Membership:0x007f5f6b210df0&gt;</value></field><field name="description"><value>Member with the issue had UTF8 characters in the name. Encoded name caused JSON parsing issues. Mem# 6202722241539008
9
+ </value></field><field name="created"><value>1425577564007</value></field><field name="updated"><value>1426005216790</value></field><field name="reporterName"><value>ruben.estevez</value></field><field name="updaterName"><value>ruben.estevez</value></field><field name="resolved"><value>1426005216788</value></field><field name="permittedGroup"><value>All Users</value></field></issue><issue><field name="AMA_Priorities"><value>Minor</value></field><field name="AMA_Types"><value>Feature</value></field><field name="AMA_States"><value>Parking Lot</value></field><field name="AMA_Versions"><value>1.0</value></field><field name="Product Owner"><value>edmund.chua</value></field><field name="numberInProject"><value>1004</value></field><field name="summary"><value>Join/Renew/Promo Forms - phone number formatting ###-###-####</value></field><field name="description"><value>Automatically add dashes to format phone numbers as ###-###-#### to make them easier to read</value></field><field name="created"><value>1425577919486</value></field><field name="updated"><value>1434646303832</value></field><field name="reporterName"><value>ruben.estevez</value></field><field name="updaterName"><value>darko.dosenovic</value></field><field name="watcherName"><value>User: id = 26-11[up-to-date]</value></field><field name="permittedGroup"><value>All Users</value></field><comment author="darko.dosenovic" text="@fred.thompson Follow with Gwyneth for explanation." created="1434646303835"/></issue><issue><field name="AMA_Priorities"><value>Normal</value></field><field name="AMA_Types"><value>Feature</value></field><field name="AMA_States"><value>Backlog</value></field><field name="AMA_Versions"><value>1.0</value></field><field name="Product Owner"><value>jordan.babe</value></field><field name="numberInProject"><value>1005</value></field><field name="summary"><value>Update One Time Payment request with additional parameter</value></field><field name="description"><value>.
10
+ </value></field><field name="created"><value>1425929529778</value></field><field name="updated"><value>1434579791230</value></field><field name="reporterName"><value>Eric.Bach</value></field><field name="updaterName"><value>darko.dosenovic</value></field><field name="voterName"><value>ryan.jones</value></field><field name="watcherName"><value>User: id = 26-11[up-to-date]</value></field><field name="permittedGroup"><value>All Users</value></field><comment author="jordan.babe" text="@ryan.jones do we have a physical card for this or did we decide to include it as part of the card I'm currently working on?" created="1426280092413"/><comment author="darko.dosenovic" text="@ryan.jones &#xA;&#xA;What is happenig with this one..." created="1434579791232"/></issue><issue><field name="AMA_Priorities"><value>Critical</value></field><field name="AMA_Types"><value>Bug</value></field><field name="AMA_States"><value>Done</value></field><field name="AMA_Versions"><value>1.0</value></field><field name="Product Owner"><value>edmund.chua</value></field><field name="numberInProject"><value>1006</value></field><field name="summary"><value>Back to Your Account link shouldn't always be visible</value></field><field name="description"><value>Don't display the link when the user is in billing (they'll just get booted back anyways).</value></field><field name="created"><value>1426183549450</value></field><field name="updated"><value>1428423077774</value></field><field name="reporterName"><value>mathieu.gilbert</value></field><field name="updaterName"><value>darko.dosenovic</value></field><field name="resolved"><value>1428423077771</value></field><field name="watcherName"><value>User: id = 26-11[up-to-date]</value><value>User: id = 26-21[up-to-date]</value></field><field name="permittedGroup"><value>All Users</value></field><comment author="mathieu.gilbert" text="Only when forced to renew, they get to have a link when it's optional (in 3 month grace period)." created="1426183779897"/><comment author="mathieu.gilbert" text="Branch: https://github.com/amaabca/membership/tree/no-link-if-renew&#xA;Just needs some manual testing..." created="1427237681976" updated="1426183779892"/><comment author="darko.dosenovic" text="This is deployed live now." created="1428353320565"/></issue><issue><field name="AMA_Priorities"><value>Normal</value></field><field name="AMA_Types"><value>Feature</value></field><field name="AMA_States"><value>Done</value></field><field name="AMA_Versions"><value>1.0</value></field><field name="Product Owner"><value>ryan.jones</value></field><field name="numberInProject"><value>1007</value></field><field name="summary"><value>Save BatchNum in Renewal request</value></field><field name="description"><value>e</value></field><field name="created"><value>1426522396169</value></field><field name="updated"><value>1434645097526</value></field><field name="reporterName"><value>Eric.Bach</value></field><field name="updaterName"><value>darko.dosenovic</value></field><field name="resolved"><value>1434645067935</value></field><field name="watcherName"><value>User: id = 26-11[up-to-date]</value><value>User: id = 26-16[up-to-date]</value></field><field name="permittedGroup"><value>All Users</value></field><comment author="darko.dosenovic" text="@ryan.jones &#xA;&#xA;Is this still valid card/issue?" created="1434579925983"/><comment author="jordan.babe" text="@darko.dosenovic If you do a join locally and tail imis log in the api app you should be able to see if batch number is part of the request: tail -f log/ama_imis_services.log " created="1434581059500"/><comment author="darko.dosenovic" text="@ryan.jones It is implemented. Done." created="1434645097527" updated="1434579925975"/></issue><issue><field name="AMA_Priorities"><value>Normal</value></field><field name="AMA_Types"><value>Bug</value></field><field name="AMA_States"><value>Done</value></field><field name="AMA_Versions"><value>1.0</value></field><field name="Product Owner"><value>edmund.chua</value></field><field name="numberInProject"><value>1008</value></field><field name="summary"><value>Handle generic IMIS Exception</value></field><field name="description"><value></value></field><field name="created"><value>1426775336156</value></field><field name="updated"><value>1429280622946</value></field><field name="reporterName"><value>ryan.jones</value></field><field name="updaterName"><value>michael.vandenbeuken</value></field><field name="resolved"><value>1429280622945</value></field><field name="watcherName"><value>User: id = 26-22[up-to-date]</value></field><field name="permittedGroup"><value>All Users</value></field><comment author="michael.vandenbeuken" text="With these, we handle them gracefully on the user side, but still use notify just so that we know IMIS weirdness is happening, when it's happening. Do we just want to drop the notification?" created="1428951822070"/><comment author="ryan.jones" text="I think it makes it seem like its a new error or something. Maybe we can bring it up at the dev meeting? I (personally) only want to see errors if its a real error (I don't want to see handled errors)." created="1428957085526"/><comment author="michael.vandenbeuken" text="Totally makes sense. I'll look into it to see if it's new." created="1428957194025" updated="1428951822064"/><comment author="michael.vandenbeuken" text="It's old. It's the type of error we get when iMIS is toast like during a deployment. I have removed notifications for any errors that are being gracefully handled, with the exception of:&#xA;&#xA;1. An error with a stacktrace, because that is indicative of a malfunctioning system in iMIS.&#xA;2. CancelPreauthorization/VoidPurchase errors. We will continue to receive notifications until we receive/implement endpoints that can cancel or void.&#xA;&#xA;Resolved by https://github.com/amaabca/membership/pull/106." created="1429021981783" updated="1428957194021"/><comment author="michael.vandenbeuken" text="Resolved by https://github.com/amaabca/membership/pull/106. Merged and deployed. Closing bug." created="1429280620800" updated="1429021981779"/></issue><issue><field name="AMA_Priorities"><value>Normal</value></field><field name="AMA_Types"><value>Bug</value></field><field name="AMA_States"><value>Done</value></field><field name="AMA_Versions"><value>1.0</value></field><field name="Product Owner"><value>edmund.chua</value></field><field name="numberInProject"><value>1009</value></field><field name="summary"><value>Handle VoidPurchase Exception</value></field><field name="description"><value>#45 Imis::Exception::VoidPurchase: {"Validation":{"Action":"VoidPurchase","Description":"IMIS Payment Failed. MONERIS Purchase is NOT Cancelled. Please Void the Purchase.","ExceptionMessage":"Message: Preauth/Purchase with a CC that is deleted.”}}
11
+
12
+ https://rollbar.com/web.support/prod-Membership/items/45/</value></field><field name="created"><value>1426775362900</value></field><field name="updated"><value>1429280647820</value></field><field name="reporterName"><value>ryan.jones</value></field><field name="updaterName"><value>michael.vandenbeuken</value></field><field name="resolved"><value>1429280647818</value></field><field name="watcherName"><value>User: id = 26-22[up-to-date]</value></field><field name="permittedGroup"><value>All Users</value></field><comment author="michael.vandenbeuken" text="Resolved by https://github.com/amaabca/membership/pull/106. Merged and deployed. Closing bug." created="1429280644288"/></issue></issues>
@@ -0,0 +1,10 @@
1
+ Web Multiple Payments - www.sampleyoutrackhost.com/issue/MEMBR-1000
2
+ Updates to include consistent member details in web transactions - www.sampleyoutrackhost.com/issue/MEMBR-1001
3
+ Membership Add Associates page - Clear Family Member selection not working in Internet Explorer - www.sampleyoutrackhost.com/issue/MEMBR-1002
4
+ [production][unknown] NoMethodError: undefined method ` automatic_credit_card_renewal=' for #&lt;Membership:0x007f5f6b210df0&gt; - www.sampleyoutrackhost.com/issue/MEMBR-1003
5
+ Join/Renew/Promo Forms - phone number formatting ###-###-#### - www.sampleyoutrackhost.com/issue/MEMBR-1004
6
+ Update One Time Payment request with additional parameter - www.sampleyoutrackhost.com/issue/MEMBR-1005
7
+ Back to Your Account link shouldn't always be visible - www.sampleyoutrackhost.com/issue/MEMBR-1006
8
+ Save BatchNum in Renewal request - www.sampleyoutrackhost.com/issue/MEMBR-1007
9
+ Handle generic IMIS Exception - www.sampleyoutrackhost.com/issue/MEMBR-1008
10
+ Handle VoidPurchase Exception - www.sampleyoutrackhost.com/issue/MEMBR-1009
@@ -0,0 +1,2 @@
1
+
2
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?><projects><project name="AMA Rewards - Marketing" shortName="RWMC"/><project name="AMA Rewards - Savings Portal" shortName="RWSP"/><project name="AMA Rewards - Turnkey System" shortName="RWTK"/><project name="AMA Rewards - WWW" shortName="RWWW"/><project name="API" shortName="API"/><project name="BWB - Broker Blog (B2B)" shortName="BWBB2B"/><project name="BWB - Marketing Webite" shortName="BWBS"/><project name="Careers" shortName="CAR"/><project name="Driver Education - Learners App" shortName="DELA"/><project name="Driver Education - Marketing" shortName="DEMC"/><project name="Driver Education - Online Enrollment" shortName="DEOE"/><project name="Driver Education - WWW" shortName="DEWWW"/><project name="Forms" shortName="FORMS"/><project name="Global - WWW" shortName="GWWW"/><project name="Green Cards - Developer" shortName="GCDEV"/><project name="Green Cards - UX" shortName="GCDES"/><project name="Insurance - Auto Quote" shortName="INSAQ"/><project name="Insurance - Claims App" shortName="INSCA"/><project name="Insurance - Home Quote" shortName="INSHQ"/><project name="Insurance - Marketing" shortName="INSMC"/><project name="Insurance - Mobile Policy" shortName="INSOP"/><project name="Insurance - Online Account" shortName="INSIOA"/><project name="Insurance - PAI" shortName="INSPAI"/><project name="Insurance - WWW" shortName="INSWWW"/><project name="Member Lookup" shortName="MEMLUP"/><project name="Membership (Join)" shortName="MEMBR"/><project name="Membership - Marketing" shortName="MEMMC"/><project name="OAuth (Gatekeeper)" shortName="OAUTH"/><project name="Road Reporter" shortName="RRPTR"/><project name="Road Reports" shortName="RREPORT"/><project name="Road Side Assistance" shortName="RSA"/><project name="Technical Debt" shortName="TECHDBT"/><project name="Travel - WWW" shortName="TRVLWWW"/><project name="Your Account" shortName="YA"/></projects>
@@ -0,0 +1,34 @@
1
+ RWMC - AMA Rewards - Marketing - www.sampleyoutrackhost.com/issues?q=project:+{AMA+Rewards+-+Marketing}
2
+ RWSP - AMA Rewards - Savings Portal - www.sampleyoutrackhost.com/issues?q=project:+{AMA+Rewards+-+Savings+Portal}
3
+ RWTK - AMA Rewards - Turnkey System - www.sampleyoutrackhost.com/issues?q=project:+{AMA+Rewards+-+Turnkey+System}
4
+ RWWW - AMA Rewards - WWW - www.sampleyoutrackhost.com/issues?q=project:+{AMA+Rewards+-+WWW}
5
+ API - API - www.sampleyoutrackhost.com/issues?q=project:+{API}
6
+ BWBB2B - BWB - Broker Blog (B2B) - www.sampleyoutrackhost.com/issues?q=project:+{BWB+-+Broker+Blog+(B2B)}
7
+ BWBS - BWB - Marketing Webite - www.sampleyoutrackhost.com/issues?q=project:+{BWB+-+Marketing+Webite}
8
+ CAR - Careers - www.sampleyoutrackhost.com/issues?q=project:+{Careers}
9
+ DELA - Driver Education - Learners App - www.sampleyoutrackhost.com/issues?q=project:+{Driver+Education+-+Learners+App}
10
+ DEMC - Driver Education - Marketing - www.sampleyoutrackhost.com/issues?q=project:+{Driver+Education+-+Marketing}
11
+ DEOE - Driver Education - Online Enrollment - www.sampleyoutrackhost.com/issues?q=project:+{Driver+Education+-+Online+Enrollment}
12
+ DEWWW - Driver Education - WWW - www.sampleyoutrackhost.com/issues?q=project:+{Driver+Education+-+WWW}
13
+ FORMS - Forms - www.sampleyoutrackhost.com/issues?q=project:+{Forms}
14
+ GWWW - Global - WWW - www.sampleyoutrackhost.com/issues?q=project:+{Global+-+WWW}
15
+ GCDEV - Green Cards - Developer - www.sampleyoutrackhost.com/issues?q=project:+{Green+Cards+-+Developer}
16
+ GCDES - Green Cards - UX - www.sampleyoutrackhost.com/issues?q=project:+{Green+Cards+-+UX}
17
+ INSAQ - Insurance - Auto Quote - www.sampleyoutrackhost.com/issues?q=project:+{Insurance+-+Auto+Quote}
18
+ INSCA - Insurance - Claims App - www.sampleyoutrackhost.com/issues?q=project:+{Insurance+-+Claims+App}
19
+ INSHQ - Insurance - Home Quote - www.sampleyoutrackhost.com/issues?q=project:+{Insurance+-+Home+Quote}
20
+ INSMC - Insurance - Marketing - www.sampleyoutrackhost.com/issues?q=project:+{Insurance+-+Marketing}
21
+ INSOP - Insurance - Mobile Policy - www.sampleyoutrackhost.com/issues?q=project:+{Insurance+-+Mobile+Policy}
22
+ INSIOA - Insurance - Online Account - www.sampleyoutrackhost.com/issues?q=project:+{Insurance+-+Online+Account}
23
+ INSPAI - Insurance - PAI - www.sampleyoutrackhost.com/issues?q=project:+{Insurance+-+PAI}
24
+ INSWWW - Insurance - WWW - www.sampleyoutrackhost.com/issues?q=project:+{Insurance+-+WWW}
25
+ MEMLUP - Member Lookup - www.sampleyoutrackhost.com/issues?q=project:+{Member+Lookup}
26
+ MEMBR - Membership (Join) - www.sampleyoutrackhost.com/issues?q=project:+{Membership+(Join)}
27
+ MEMMC - Membership - Marketing - www.sampleyoutrackhost.com/issues?q=project:+{Membership+-+Marketing}
28
+ OAUTH - OAuth (Gatekeeper) - www.sampleyoutrackhost.com/issues?q=project:+{OAuth+(Gatekeeper)}
29
+ RRPTR - Road Reporter - www.sampleyoutrackhost.com/issues?q=project:+{Road+Reporter}
30
+ RREPORT - Road Reports - www.sampleyoutrackhost.com/issues?q=project:+{Road+Reports}
31
+ RSA - Road Side Assistance - www.sampleyoutrackhost.com/issues?q=project:+{Road+Side+Assistance}
32
+ TECHDBT - Technical Debt - www.sampleyoutrackhost.com/issues?q=project:+{Technical+Debt}
33
+ TRVLWWW - Travel - WWW - www.sampleyoutrackhost.com/issues?q=project:+{Travel+-+WWW}
34
+ YA - Your Account - www.sampleyoutrackhost.com/issues?q=project:+{Your+Account}
@@ -0,0 +1,63 @@
1
+ require 'spec_helper'
2
+
3
+ describe Lita::Handlers::Youtrack, lita_handler: true do
4
+
5
+ before :each do
6
+ Lita.config.handlers.youtrack.hosturl = "www.sampleyoutrackhost.com"
7
+ end
8
+
9
+ let(:bugs_input) { File.read("spec/fixtures/bugs_input.xml") }
10
+ let(:bugs_output) { [File.read("spec/fixtures/bugs_output.txt")] }
11
+ let(:bugs_parking_input) { File.read("spec/fixtures/bugs_parking_input.xml") }
12
+ let(:bugs_parking_output) { [File.read("spec/fixtures/bugs_parking_output.txt")] }
13
+ let(:no_bugs_input) { File.read("spec/fixtures/no_bugs_input.xml") }
14
+ let(:no_bugs_output) { [File.read("spec/fixtures/no_bugs_output.txt")] }
15
+ let(:projects_input) { File.read("spec/fixtures/projects_input.xml") }
16
+ let(:projects_output) { [File.read("spec/fixtures/projects_output.txt")] }
17
+ let(:project_membr_input) { File.read("spec/fixtures/project_MEMBR_input.xml") }
18
+ let(:project_membr_output) { [File.read("spec/fixtures/project_MEMBR_output.txt")] }
19
+ let(:cookie) { [File.read("spec/fixtures/cookie.txt")] }
20
+
21
+ it 'tells lita to display the important bug list' do
22
+ allow_any_instance_of(Lita::Handlers::Youtrack).to receive(:call_http) { bugs_input }
23
+ send_command("bugs")
24
+
25
+ expect(replies).to eq(bugs_output)
26
+ end
27
+
28
+ it 'tells lita to display the important bug list plus parking lot' do
29
+ allow_any_instance_of(Lita::Handlers::Youtrack).to receive(:call_http) { bugs_parking_input }
30
+ send_command("bugs parking")
31
+
32
+ expect(replies).to eq(bugs_parking_output)
33
+ end
34
+
35
+ it 'lita finds no bugs' do
36
+ allow_any_instance_of(Lita::Handlers::Youtrack).to receive(:call_http) { no_bugs_input }
37
+ send_command("bugs")
38
+
39
+ expect(replies).to eq(no_bugs_output)
40
+ end
41
+
42
+ it 'tells lita to display all projects' do
43
+ allow_any_instance_of(Lita::Handlers::Youtrack).to receive(:call_http) { projects_input }
44
+ send_command("projects")
45
+
46
+ expect(replies).to eq(projects_output)
47
+ end
48
+
49
+ it 'tells lita to display specific existing project (MEMBR)' do
50
+ allow_any_instance_of(Lita::Handlers::Youtrack).to receive(:call_http) { project_membr_input }
51
+ send_command("project MEMBR")
52
+
53
+ expect(replies).to eq(project_membr_output)
54
+ end
55
+
56
+ it 'tells lita to display warning for non-existant project (asdf)' do
57
+ allow_any_instance_of(Lita::Handlers::Youtrack).to receive(:call_http) { "" }
58
+ send_command("project ASDF")
59
+
60
+ expect(replies).to include("Project not found - type 'lita projects' for list")
61
+ end
62
+
63
+ end
@@ -0,0 +1,8 @@
1
+ require "simplecov"
2
+ SimpleCov.start do
3
+ add_filter "/spec/"
4
+ add_filter "/vendor/"
5
+ end
6
+
7
+ require 'lita/youtrack'
8
+ require "lita/rspec"
@@ -0,0 +1,2 @@
1
+ jonathan.weyermann
2
+ zaq1024z
metadata ADDED
@@ -0,0 +1,231 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lita-youtrack
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Jonathan Weyermann
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-07-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: lita
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '1.10'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '1.10'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rspec-instafail
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: simplecov
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - '>='
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - '>='
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: pimpmychangelog
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - '>='
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - '>='
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: rack-test
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - '>='
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - '>='
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: faraday
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - '>='
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - '>='
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: pry
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - '>='
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - '>='
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ description: '"Lita bugs", "lita project PROJECT", "lita projects"'
154
+ email:
155
+ - jonathan.weyermann@ama.ab.ca
156
+ executables:
157
+ - console
158
+ - rake
159
+ - setup
160
+ extensions: []
161
+ extra_rdoc_files: []
162
+ files:
163
+ - .gitignore
164
+ - .rspec
165
+ - .travis.yml
166
+ - CHANGELOG.md
167
+ - CODE_OF_CONDUCT.md
168
+ - Gemfile
169
+ - LICENSE.txt
170
+ - README.md
171
+ - Rakefile
172
+ - bin/console
173
+ - bin/rake
174
+ - bin/setup
175
+ - lib/lita-youtrack.rb
176
+ - lib/lita/handlers/youtrack.rb
177
+ - lib/lita/youtrack.rb
178
+ - lib/lita/youtrack/version.rb
179
+ - lita-youtrack-0.1.0.gem
180
+ - lita-youtrack.gemspec
181
+ - spec/fixtures/bugs_input.xml
182
+ - spec/fixtures/bugs_output.txt
183
+ - spec/fixtures/bugs_parking_input.xml
184
+ - spec/fixtures/bugs_parking_output.txt
185
+ - spec/fixtures/no_bugs_input.xml
186
+ - spec/fixtures/no_bugs_output.txt
187
+ - spec/fixtures/project_MEMBR_input.xml
188
+ - spec/fixtures/project_MEMBR_output.txt
189
+ - spec/fixtures/projects_input.xml
190
+ - spec/fixtures/projects_output.txt
191
+ - spec/lita/handlers/youtrack_spec.rb
192
+ - spec/spec_helper.rb
193
+ - usercredentials.ini
194
+ homepage: https://github.com/amaabca/lita-youtrack
195
+ licenses:
196
+ - MIT
197
+ metadata:
198
+ allowed_push_host: 'TODO: Set to ''http://mygemserver.com'''
199
+ post_install_message:
200
+ rdoc_options: []
201
+ require_paths:
202
+ - lib
203
+ required_ruby_version: !ruby/object:Gem::Requirement
204
+ requirements:
205
+ - - '>='
206
+ - !ruby/object:Gem::Version
207
+ version: '0'
208
+ required_rubygems_version: !ruby/object:Gem::Requirement
209
+ requirements:
210
+ - - '>='
211
+ - !ruby/object:Gem::Version
212
+ version: '0'
213
+ requirements: []
214
+ rubyforge_project:
215
+ rubygems_version: 2.0.3
216
+ signing_key:
217
+ specification_version: 4
218
+ summary: This gem allows the use of lita to check the number of bugs listed on youtrack
219
+ test_files:
220
+ - spec/fixtures/bugs_input.xml
221
+ - spec/fixtures/bugs_output.txt
222
+ - spec/fixtures/bugs_parking_input.xml
223
+ - spec/fixtures/bugs_parking_output.txt
224
+ - spec/fixtures/no_bugs_input.xml
225
+ - spec/fixtures/no_bugs_output.txt
226
+ - spec/fixtures/project_MEMBR_input.xml
227
+ - spec/fixtures/project_MEMBR_output.txt
228
+ - spec/fixtures/projects_input.xml
229
+ - spec/fixtures/projects_output.txt
230
+ - spec/lita/handlers/youtrack_spec.rb
231
+ - spec/spec_helper.rb