yolo 1.0.0.pre
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +4 -0
- data/Rakefile +32 -0
- data/lib/yolo.rb +13 -0
- data/lib/yolo/config.rb +1 -0
- data/lib/yolo/config/config.yml +16 -0
- data/lib/yolo/config/settings.rb +89 -0
- data/lib/yolo/deployment.rb +2 -0
- data/lib/yolo/deployment/base_deployer.rb +14 -0
- data/lib/yolo/deployment/ota.rb +74 -0
- data/lib/yolo/formatters.rb +2 -0
- data/lib/yolo/formatters/error_formatter.rb +33 -0
- data/lib/yolo/formatters/progress_formatter.rb +96 -0
- data/lib/yolo/history/history.yml +3 -0
- data/lib/yolo/notify.rb +2 -0
- data/lib/yolo/notify/email.rb +64 -0
- data/lib/yolo/notify/ios/email.html +567 -0
- data/lib/yolo/notify/ios/ota_email.rb +24 -0
- data/lib/yolo/tasks.rb +5 -0
- data/lib/yolo/tasks/base_task.rb +22 -0
- data/lib/yolo/tasks/ios/build.rb +28 -0
- data/lib/yolo/tasks/ios/calabash.rb +46 -0
- data/lib/yolo/tasks/ios/ocunit.rb +58 -0
- data/lib/yolo/tasks/ios/release.rb +182 -0
- data/lib/yolo/tools.rb +5 -0
- data/lib/yolo/tools/git.rb +190 -0
- data/lib/yolo/tools/ios/calabash.rb +26 -0
- data/lib/yolo/tools/ios/ipa.rb +31 -0
- data/lib/yolo/tools/ios/release_notes.rb +34 -0
- data/lib/yolo/tools/ios/xcode.rb +51 -0
- metadata +138 -0
@@ -0,0 +1,567 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
5
|
+
<title>*|MC:SUBJECT|*</title>
|
6
|
+
<style type="text/css">
|
7
|
+
/* Reset Styles */
|
8
|
+
body{margin:0; padding:0;}
|
9
|
+
img{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}
|
10
|
+
table, td{border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;}
|
11
|
+
#bodyTable{height:100% !important; margin:0; padding:0; width:100% !important;}
|
12
|
+
|
13
|
+
/* Client-specific Styles */
|
14
|
+
#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */
|
15
|
+
.ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */
|
16
|
+
a, a span, a .yshortcuts{background:none !important; border-bottom:none !important;} /* Prevent Yahoo from styling links */
|
17
|
+
|
18
|
+
/* Template Styles */
|
19
|
+
|
20
|
+
/**
|
21
|
+
* @tab Page
|
22
|
+
* @section heading 1
|
23
|
+
* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.
|
24
|
+
* @style heading 1
|
25
|
+
*/
|
26
|
+
h1{
|
27
|
+
/*@editable*/ color:#3F3F38;
|
28
|
+
display:block;
|
29
|
+
/*@editable*/ font-family:Helvetica;
|
30
|
+
/*@editable*/ font-size:24px;
|
31
|
+
/*@editable*/ font-weight:bold;
|
32
|
+
/*@editable*/ line-height:100%;
|
33
|
+
/*@editable*/ letter-spacing:normal;
|
34
|
+
margin-top:0;
|
35
|
+
margin-right:0;
|
36
|
+
margin-bottom:30px;
|
37
|
+
margin-left:0;
|
38
|
+
/*@editable*/ text-align:left;
|
39
|
+
}
|
40
|
+
|
41
|
+
/**
|
42
|
+
* @tab Page
|
43
|
+
* @section heading 2
|
44
|
+
* @tip Set the styling for all second-level headings in your emails.
|
45
|
+
* @style heading 2
|
46
|
+
*/
|
47
|
+
h2{
|
48
|
+
/*@editable*/ color:#3F3F38;
|
49
|
+
display:block;
|
50
|
+
/*@editable*/ font-family:Helvetica;
|
51
|
+
/*@editable*/ font-size:20px;
|
52
|
+
/*@editable*/ font-weight:normal;
|
53
|
+
/*@editable*/ line-height:100%;
|
54
|
+
/*@editable*/ letter-spacing:normal;
|
55
|
+
margin-top:0;
|
56
|
+
margin-right:0;
|
57
|
+
margin-bottom:10px;
|
58
|
+
margin-left:0;
|
59
|
+
/*@editable*/ text-align:left;
|
60
|
+
}
|
61
|
+
|
62
|
+
/**
|
63
|
+
* @tab Page
|
64
|
+
* @section heading 3
|
65
|
+
* @tip Set the styling for all third-level headings in your emails.
|
66
|
+
* @style heading 3
|
67
|
+
*/
|
68
|
+
h3{
|
69
|
+
/*@editable*/ color:#202020;
|
70
|
+
display:block;
|
71
|
+
/*@editable*/ font-family:Helvetica;
|
72
|
+
/*@editable*/ font-size:16px;
|
73
|
+
/*@editable*/ font-weight:bold;
|
74
|
+
/*@editable*/ line-height:100%;
|
75
|
+
/*@editable*/ letter-spacing:normal;
|
76
|
+
margin-top:0;
|
77
|
+
margin-right:0;
|
78
|
+
margin-bottom:10px;
|
79
|
+
margin-left:0;
|
80
|
+
/*@editable*/ text-align:left;
|
81
|
+
}
|
82
|
+
|
83
|
+
/**
|
84
|
+
* @tab Page
|
85
|
+
* @section heading 4
|
86
|
+
* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.
|
87
|
+
* @style heading 4
|
88
|
+
*/
|
89
|
+
h4{
|
90
|
+
/*@editable*/ color:#202020;
|
91
|
+
display:block;
|
92
|
+
/*@editable*/ font-family:Helvetica;
|
93
|
+
/*@editable*/ font-size:14px;
|
94
|
+
/*@editable*/ font-weight:bold;
|
95
|
+
/*@editable*/ line-height:100%;
|
96
|
+
/*@editable*/ letter-spacing:normal;
|
97
|
+
margin-top:0;
|
98
|
+
margin-right:0;
|
99
|
+
margin-bottom:10px;
|
100
|
+
margin-left:0;
|
101
|
+
/*@editable*/ text-align:left;
|
102
|
+
}
|
103
|
+
|
104
|
+
/* /\/\/\/\/\/\/\/\/\/\ STANDARD STYLING: PREHEADER /\/\/\/\/\/\/\/\/\/\ */
|
105
|
+
|
106
|
+
/**
|
107
|
+
* @tab Header
|
108
|
+
* @section preheader style
|
109
|
+
* @tip Set the background color and bottom border for your email's preheader area.
|
110
|
+
* @theme page
|
111
|
+
*/
|
112
|
+
#templatePreheader{
|
113
|
+
/*@editable*/ background-color:#E8E9E3;
|
114
|
+
/*@editable*/ border-bottom:0;
|
115
|
+
}
|
116
|
+
|
117
|
+
/**
|
118
|
+
* @tab Header
|
119
|
+
* @section preheader text
|
120
|
+
* @tip Set the styling for your email's preheader text. Choose a size and color that is easy to read.
|
121
|
+
*/
|
122
|
+
.preheaderContent{
|
123
|
+
/*@editable*/ color:#606060;
|
124
|
+
/*@editable*/ font-family:Helvetica;
|
125
|
+
/*@editable*/ font-size:11px;
|
126
|
+
/*@editable*/ line-height:125%;
|
127
|
+
/*@editable*/ text-align:left;
|
128
|
+
}
|
129
|
+
|
130
|
+
/**
|
131
|
+
* @tab Header
|
132
|
+
* @section preheader link
|
133
|
+
* @tip Set the styling for your email's preheader links. Choose a color that helps them stand out from your text.
|
134
|
+
*/
|
135
|
+
.preheaderContent a:link, .preheaderContent a:visited, /* Yahoo! Mail Override */ .preheaderContent a .yshortcuts /* Yahoo! Mail Override */{
|
136
|
+
/*@editable*/ color:#0E8081;
|
137
|
+
/*@editable*/ font-weight:normal;
|
138
|
+
/*@editable*/ text-decoration:underline;
|
139
|
+
}
|
140
|
+
|
141
|
+
/* /\/\/\/\/\/\/\/\/\/\ STANDARD STYLING: HEADER /\/\/\/\/\/\/\/\/\/\ */
|
142
|
+
|
143
|
+
/**
|
144
|
+
* @tab Header
|
145
|
+
* @section header style
|
146
|
+
* @tip Set the background color and border for your email's header area.
|
147
|
+
* @theme header
|
148
|
+
*/
|
149
|
+
#templateHeader{
|
150
|
+
/*@editable*/ background-color:#FAFAFA;
|
151
|
+
/*@editable*/ border-top:0;
|
152
|
+
/*@editable*/ border-bottom:0;
|
153
|
+
}
|
154
|
+
|
155
|
+
/**
|
156
|
+
* @tab Header
|
157
|
+
* @section header text
|
158
|
+
* @tip Set the styling for your email's header text. Choose a size and color that is easy to read.
|
159
|
+
*/
|
160
|
+
.headerContent{
|
161
|
+
/*@editable*/ color:#3F3F38;
|
162
|
+
/*@editable*/ font-family:Helvetica;
|
163
|
+
/*@editable*/ font-size:18px;
|
164
|
+
/*@editable*/ font-weight:bold;
|
165
|
+
/*@editable*/ line-height:100%;
|
166
|
+
/*@editable*/ padding-top:20px;
|
167
|
+
/*@editable*/ padding-right:0;
|
168
|
+
/*@editable*/ padding-bottom:20px;
|
169
|
+
/*@editable*/ padding-left:0;
|
170
|
+
/*@editable*/ text-align:center;
|
171
|
+
/*@editable*/ vertical-align:middle;
|
172
|
+
}
|
173
|
+
|
174
|
+
/**
|
175
|
+
* @tab Header
|
176
|
+
* @section header link
|
177
|
+
* @tip Set the styling for your email's header links. Choose a color that helps them stand out from your text.
|
178
|
+
*/
|
179
|
+
.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{
|
180
|
+
/*@editable*/ color:#0E8081;
|
181
|
+
/*@editable*/ font-weight:normal;
|
182
|
+
/*@editable*/ text-decoration:underline;
|
183
|
+
}
|
184
|
+
|
185
|
+
#headerImage{
|
186
|
+
height:auto;
|
187
|
+
max-width:600px !important;
|
188
|
+
}
|
189
|
+
|
190
|
+
/* /\/\/\/\/\/\/\/\/\/\ STANDARD STYLING: MAIN BODY /\/\/\/\/\/\/\/\/\/\ */
|
191
|
+
|
192
|
+
/**
|
193
|
+
* @tab Body
|
194
|
+
* @section body style
|
195
|
+
* @tip Set the background color and borders for your email's body area.
|
196
|
+
*/
|
197
|
+
#templateBody{
|
198
|
+
/*@editable*/ background-color:#FAFAFA;
|
199
|
+
/*@editable*/ border-top:0;
|
200
|
+
/*@editable*/ border-bottom:0;
|
201
|
+
}
|
202
|
+
|
203
|
+
/**
|
204
|
+
* @tab Body
|
205
|
+
* @section body text container
|
206
|
+
* @tip Set the background color and borders for your email's body content block.
|
207
|
+
*/
|
208
|
+
#bodyContentBlock{
|
209
|
+
/*@editable*/ background-color:#FFFFFF;
|
210
|
+
/*@editable*/ border-top:0;
|
211
|
+
/*@editable*/ border-bottom:1px solid #CCCCCC;
|
212
|
+
}
|
213
|
+
|
214
|
+
/**
|
215
|
+
* @tab Body
|
216
|
+
* @section body text
|
217
|
+
* @tip Set the styling for your email's main content text. Choose a size and color that is easy to read.
|
218
|
+
* @theme main
|
219
|
+
*/
|
220
|
+
.bodyContent{
|
221
|
+
/*@editable*/ color:#202020;
|
222
|
+
/*@editable*/ font-family:Helvetica;
|
223
|
+
/*@editable*/ font-size:15px;
|
224
|
+
/*@editable*/ line-height:150%;
|
225
|
+
/*@editable*/ text-align:left;
|
226
|
+
}
|
227
|
+
|
228
|
+
/**
|
229
|
+
* @tab Body
|
230
|
+
* @section body link
|
231
|
+
* @tip Set the styling for your email's main content links. Choose a color that helps them stand out from your text.
|
232
|
+
*/
|
233
|
+
.bodyContent a:link, .bodyContent a:visited, /* Yahoo! Mail Override */ .bodyContent a .yshortcuts /* Yahoo! Mail Override */{
|
234
|
+
/*@editable*/ color:#0E8081;
|
235
|
+
/*@editable*/ font-weight:normal;
|
236
|
+
/*@editable*/ text-decoration:underline;
|
237
|
+
}
|
238
|
+
|
239
|
+
/**
|
240
|
+
* @tab Body
|
241
|
+
* @section button style
|
242
|
+
* @tip Set the styling for your email's button. Choose a style that draws attention.
|
243
|
+
*/
|
244
|
+
.templateButton{
|
245
|
+
-moz-border-radius:3px;
|
246
|
+
-webkit-border-radius:3px;
|
247
|
+
/*@editable*/ background-color:#23B3B4;
|
248
|
+
border-radius:3px;
|
249
|
+
}
|
250
|
+
|
251
|
+
/**
|
252
|
+
* @tab Body
|
253
|
+
* @section button style
|
254
|
+
* @tip Set the styling for your email's button. Choose a style that draws attention.
|
255
|
+
*/
|
256
|
+
.templateButtonContent, .templateButtonContent a:link, .templateButtonContent a:visited, /* Yahoo! Mail Override */ .templateButtonContent a .yshortcuts /* Yahoo! Mail Override */{
|
257
|
+
/*@editable*/ color:#FFFFFF;
|
258
|
+
/*@editable*/ font-family:Helvetica;
|
259
|
+
/*@editable*/ font-size:18px;
|
260
|
+
/*@editable*/ font-weight:bold;
|
261
|
+
/*@editable*/ line-height:100%;
|
262
|
+
text-align:center;
|
263
|
+
text-decoration:none;
|
264
|
+
}
|
265
|
+
|
266
|
+
.bodyContent img{
|
267
|
+
display:inline;
|
268
|
+
height:auto;
|
269
|
+
}
|
270
|
+
|
271
|
+
/* /\/\/\/\/\/\/\/\/\/\ STANDARD STYLING: FOOTER /\/\/\/\/\/\/\/\/\/\ */
|
272
|
+
|
273
|
+
/**
|
274
|
+
* @tab Footer
|
275
|
+
* @section footer style
|
276
|
+
* @tip Set the background color and top border for your email's footer area.
|
277
|
+
* @theme footer
|
278
|
+
*/
|
279
|
+
body, #bodyTable{
|
280
|
+
/*@editable*/ background-color:#E8E9E3;
|
281
|
+
}
|
282
|
+
|
283
|
+
/**
|
284
|
+
* @tab Footer
|
285
|
+
* @section footer style
|
286
|
+
* @tip Set the background color and top border for your email's footer area.
|
287
|
+
* @theme footer
|
288
|
+
*/
|
289
|
+
#templateFooter{
|
290
|
+
/*@editable*/ border-top:0;
|
291
|
+
}
|
292
|
+
|
293
|
+
/**
|
294
|
+
* @tab Footer
|
295
|
+
* @section footer text
|
296
|
+
* @tip Set the styling for your email's footer text. Choose a size and color that is easy to read.
|
297
|
+
* @theme footer
|
298
|
+
*/
|
299
|
+
.footerContent{
|
300
|
+
/*@editable*/ color:#606060;
|
301
|
+
/*@editable*/ font-family:Helvetica;
|
302
|
+
/*@editable*/ font-size:10px;
|
303
|
+
/*@editable*/ line-height:150%;
|
304
|
+
/*@editable*/ text-align:left;
|
305
|
+
}
|
306
|
+
|
307
|
+
/**
|
308
|
+
* @tab Footer
|
309
|
+
* @section footer link
|
310
|
+
* @tip Set the styling for your email's footer links. Choose a color that helps them stand out from your text.
|
311
|
+
*/
|
312
|
+
.footerContent a:link, .footerContent a:visited, /* Yahoo! Mail Override */ .footerContent a .yshortcuts /* Yahoo! Mail Override */{
|
313
|
+
/*@editable*/ color:#0E8081;
|
314
|
+
/*@editable*/ font-weight:normal;
|
315
|
+
/*@editable*/ text-decoration:underline;
|
316
|
+
}
|
317
|
+
|
318
|
+
.footerContent img{
|
319
|
+
display:inline;
|
320
|
+
}
|
321
|
+
|
322
|
+
#monkeyRewards img{
|
323
|
+
max-width:190px;
|
324
|
+
}
|
325
|
+
|
326
|
+
/* Small Screen Styles */
|
327
|
+
@media only screen and (max-width: 480px){
|
328
|
+
/* Client-specific Reset Styles */
|
329
|
+
body, table, td, p, a, li, blockquote{-webkit-text-size-adjust:none !important;} /* Prevent Webkit platforms from changing default text sizes. */
|
330
|
+
|
331
|
+
/* Template Styles */
|
332
|
+
body{width:auto !important;}
|
333
|
+
|
334
|
+
table[id="templatePreheader"]{display:none;} /* Hide the template preheader to save space */
|
335
|
+
|
336
|
+
/**
|
337
|
+
* @tab Mobile Styles
|
338
|
+
* @section heading 1
|
339
|
+
* @tip Make the first-level headings larger in size for better readability on small screens.
|
340
|
+
*/
|
341
|
+
h1{
|
342
|
+
/*@editable*/ font-size:28px !important;
|
343
|
+
/*@editable*/ line-height:100% !important;
|
344
|
+
}
|
345
|
+
|
346
|
+
/**
|
347
|
+
* @tab Mobile Styles
|
348
|
+
* @section heading 2
|
349
|
+
* @tip Make the second-level headings larger in size for better readability on small screens.
|
350
|
+
*/
|
351
|
+
h2{
|
352
|
+
/*@editable*/ font-size:24px !important;
|
353
|
+
/*@editable*/ line-height:100% !important;
|
354
|
+
}
|
355
|
+
|
356
|
+
/**
|
357
|
+
* @tab Mobile Styles
|
358
|
+
* @section heading 3
|
359
|
+
* @tip Make the third-level headings larger in size for better readability on small screens.
|
360
|
+
*/
|
361
|
+
h3{
|
362
|
+
/*@editable*/ font-size:20px !important;
|
363
|
+
/*@editable*/ line-height:100% !important;
|
364
|
+
}
|
365
|
+
|
366
|
+
/**
|
367
|
+
* @tab Mobile Styles
|
368
|
+
* @section heading 4
|
369
|
+
* @tip Make the fourth-level headings larger in size for better readability on small screens.
|
370
|
+
*/
|
371
|
+
h4{
|
372
|
+
/*@editable*/ font-size:18px !important;
|
373
|
+
/*@editable*/ line-height:100% !important;
|
374
|
+
}
|
375
|
+
|
376
|
+
/**
|
377
|
+
* @tab Mobile Styles
|
378
|
+
* @section header image width
|
379
|
+
* @tip Make the main header image fluid for portrait or landscape view adaptability. If a fluid layout doesn't work, set width to 300px or half-size instead.
|
380
|
+
*/
|
381
|
+
img[id="headerImage"]{
|
382
|
+
/*@editable*/ height:auto !important;
|
383
|
+
/*@editable*/ width:185px !important;
|
384
|
+
}
|
385
|
+
|
386
|
+
/**
|
387
|
+
* @tab Mobile Styles
|
388
|
+
* @section header text
|
389
|
+
* @tip Make the header content text larger in size for better readability on small screens.
|
390
|
+
*/
|
391
|
+
.headerContent{
|
392
|
+
/*@editable*/ font-size:22px !important;
|
393
|
+
/*@editable*/ line-height:150% !important;
|
394
|
+
}
|
395
|
+
|
396
|
+
/**
|
397
|
+
* @tab Mobile Styles
|
398
|
+
* @section body text
|
399
|
+
* @tip Make the body content text larger in size for better readability on small screens.
|
400
|
+
*/
|
401
|
+
.bodyContent{
|
402
|
+
/*@editable*/ font-size:18px !important;
|
403
|
+
/*@editable*/ line-height:125% !important;
|
404
|
+
}
|
405
|
+
|
406
|
+
/**
|
407
|
+
* @tab Body
|
408
|
+
* @section button text
|
409
|
+
* @tip Make the button content text larger in size for better readability on small screens.
|
410
|
+
*/
|
411
|
+
.templateButtonContent, .templateButtonContent a:link, .templateButtonContent a:visited, /* Yahoo! Mail Override */ .templateButtonContent a .yshortcuts /* Yahoo! Mail Override */{
|
412
|
+
/*@editable*/ font-size:15px !important;
|
413
|
+
/*@editable*/ line-height:125% !important;
|
414
|
+
}
|
415
|
+
|
416
|
+
/**
|
417
|
+
* @tab Mobile Styles
|
418
|
+
* @section footer text
|
419
|
+
* @tip Make the footer content text larger in size for better readability on small screens.
|
420
|
+
*/
|
421
|
+
.footerContent{
|
422
|
+
/*@editable*/ font-size:14px !important;
|
423
|
+
/*@editable*/ line-height:150% !important;
|
424
|
+
}
|
425
|
+
|
426
|
+
td[class="footerContent"] a{ /* Place footer social and utility links on their own lines, for easier access */
|
427
|
+
display:block !important;
|
428
|
+
}
|
429
|
+
}
|
430
|
+
</style>
|
431
|
+
</head>
|
432
|
+
<body leftmargin="0" marginwidth="0" topmargin="0" marginheight="0" offset="0">
|
433
|
+
<center>
|
434
|
+
<table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" id="bodyTable">
|
435
|
+
<tr>
|
436
|
+
<td align="center" valign="top">
|
437
|
+
<!-- // BEGIN PREHEADER -->
|
438
|
+
<table border="0" cellpadding="10" cellspacing="0" width="100%" id="templatePreheader">
|
439
|
+
<tr>
|
440
|
+
<td align="center" valign="top">
|
441
|
+
<table border="0" cellpadding="0" cellspacing="0" width="320">
|
442
|
+
<tr>
|
443
|
+
<td valign="top" class="preheaderContent" mc:edit="preheader_content">
|
444
|
+
</td>
|
445
|
+
</tr>
|
446
|
+
</table>
|
447
|
+
</td>
|
448
|
+
</tr>
|
449
|
+
</table>
|
450
|
+
<!-- END PREHEADER \\ -->
|
451
|
+
<!-- // BEGIN CONTAINER -->
|
452
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" id="templateContainer">
|
453
|
+
<tr>
|
454
|
+
<td align="center" valign="top">
|
455
|
+
<!-- // BEGIN HEADER -->
|
456
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" id="templateHeader">
|
457
|
+
<tr>
|
458
|
+
<td align="center" valign="top">
|
459
|
+
<table border="0" cellpadding="0" cellspacing="0" width="320">
|
460
|
+
<tr>
|
461
|
+
<td class="headerContent">
|
462
|
+
<img src="http://gallery.mailchimp.com/27aac8a65e64c994c4416d6b8/images/yoga_logo.png" style="max-width:320px;" id="headerImage campaign-icon" mc:label="header_image" mc:edit="header_image" mc:allowdesigner mc:allowtext />
|
463
|
+
</td>
|
464
|
+
</tr>
|
465
|
+
</table>
|
466
|
+
</td>
|
467
|
+
</tr>
|
468
|
+
</table>
|
469
|
+
<!-- END HEADER \\ -->
|
470
|
+
</td>
|
471
|
+
</tr>
|
472
|
+
<tr>
|
473
|
+
<td align="center" valign="top">
|
474
|
+
<!-- // BEGIN BODY -->
|
475
|
+
<table border="0" cellpadding="20" cellspacing="0" width="100%" id="templateBody">
|
476
|
+
<tr>
|
477
|
+
<td align="center" valign="top">
|
478
|
+
<table border="0" cellpadding="20" cellspacing="0" width="320" id="bodyContentBlock">
|
479
|
+
<tr>
|
480
|
+
<td align="center" valign="top">
|
481
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
482
|
+
<tr>
|
483
|
+
<td valign="top" class="bodyContent" mc:edit="body_content">
|
484
|
+
<h1>Honk 1.2.9.develop (123)</h1>
|
485
|
+
<h3>Change log</h3>
|
486
|
+
<p>
|
487
|
+
<ul>
|
488
|
+
<li>Trac-55 - Welcome screen - Showing on logout & not setting shown until close hit</li>
|
489
|
+
</ul>
|
490
|
+
</p>
|
491
|
+
<h3>Fixes</h3>
|
492
|
+
<p>
|
493
|
+
<ul>
|
494
|
+
<li>No Fixes</li>
|
495
|
+
</ul>
|
496
|
+
</p>
|
497
|
+
<h3>Notes</h3>
|
498
|
+
<p>No Notes</p>
|
499
|
+
<h3>Known issues</h3>
|
500
|
+
<p>No Known issues</p>
|
501
|
+
<h3>Password</h3>
|
502
|
+
<p>iasjdiasjdf</p>
|
503
|
+
</td>
|
504
|
+
</tr>
|
505
|
+
<tr>
|
506
|
+
<td align="center" valign="top" style="padding-top:20px;">
|
507
|
+
<table border="0" cellpadding="20" cellspacing="0" width="100%" class="templateButton" mc:hideable>
|
508
|
+
<tr>
|
509
|
+
<td align="center" valign="middle" class="templateButtonContent" mc:edit="button_content00">
|
510
|
+
<a href="http://www.mailchimp.com" target="_blank">Install</a>
|
511
|
+
</td>
|
512
|
+
</tr>
|
513
|
+
</table>
|
514
|
+
</td>
|
515
|
+
</tr>
|
516
|
+
</table>
|
517
|
+
</td>
|
518
|
+
</tr>
|
519
|
+
</table>
|
520
|
+
</td>
|
521
|
+
</tr>
|
522
|
+
</table>
|
523
|
+
<!-- END BODY \\ -->
|
524
|
+
</td>
|
525
|
+
</tr>
|
526
|
+
<tr>
|
527
|
+
<td align="center" valign="top">
|
528
|
+
<!-- // BEGIN FOOTER -->
|
529
|
+
<table border="0" cellpadding="40" cellspacing="0" width="100%" id="templateFooter">
|
530
|
+
<tr>
|
531
|
+
<td align="center" valign="top">
|
532
|
+
<table border="0" cellpadding="0" cellspacing="0" width="320">
|
533
|
+
<tr>
|
534
|
+
<td valign="top" class="footerContent" mc:edit="footer_content">
|
535
|
+
<em>Copyright © *|CURRENT_YEAR|* *|LIST:COMPANY|*, All rights reserved.</em>
|
536
|
+
<br />
|
537
|
+
*|IFNOT:ARCHIVE_PAGE|* *|LIST:DESCRIPTION|*
|
538
|
+
<br />
|
539
|
+
<br />
|
540
|
+
<strong>Our mailing address is:</strong>
|
541
|
+
<br />
|
542
|
+
*|HTML:LIST_ADDRESS_HTML|**|END:IF|*
|
543
|
+
<br />
|
544
|
+
<br />
|
545
|
+
*|IF:REWARDS|* *|HTML:REWARDS|* *|END:IF|*
|
546
|
+
</td>
|
547
|
+
</tr>
|
548
|
+
<tr>
|
549
|
+
<td colspan="3" valign="top" class="footerContent" style="padding-top:20px;" mc:edit="footer_utility">
|
550
|
+
<a href="*|UNSUB|*">unsubscribe from this list</a> | <a href="*|UPDATE_PROFILE|*">update subscription preferences</a>
|
551
|
+
</td>
|
552
|
+
</tr>
|
553
|
+
</table>
|
554
|
+
</td>
|
555
|
+
</tr>
|
556
|
+
</table>
|
557
|
+
<!-- END FOOTER \\ -->
|
558
|
+
</td>
|
559
|
+
</tr>
|
560
|
+
</table>
|
561
|
+
<!-- END CONTAINER \\ -->
|
562
|
+
</td>
|
563
|
+
</tr>
|
564
|
+
</table>
|
565
|
+
</center>
|
566
|
+
</body>
|
567
|
+
</html>
|