Skip to content

Commit 7a63ada

Browse files
authored
Merge pull request #14 from wet-boew/11-update-static-fallback-files
Updating static fallback files
2 parents 5b33595 + cf62414 commit 7a63ada

97 files changed

Lines changed: 524 additions & 438 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
[Download and/or Installation instructions](https://github.com/wet-boew/cdts-JavaTemplates/wiki/Installation)
44

5+
## v2.6.0
6+
7+
- [CDTS](https://github.com/wet-boew/cdts-sgdc/) v4.0.47 & [wet-boew](https://github.com/wet-boew/wet-boew) v4.0.56.5
8+
- Updated static fallback files
9+
- Bug Fixes
10+
511
## v2.5.1
612

713
- Minor refactoring: Functions now take parameters (and return value) using interfaces `java.util.List` and `java.util.Map` instead of concrete classes `java.util.ArrayList` and `java.util.HashMap` for more flexibility.

builds/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
#
44
# DO NOT EDIT build.properties DIRECTLY!
55
#
6-
gocwebtemplate.build.version=2.5.1-SNAPSHOT
6+
gocwebtemplate.build.version=2.6.0-SNAPSHOT

gocwebtemplate-core/gocwebtemplate-core-base/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>ca.gc.gocwebtemplate</groupId>
1212
<artifactId>gocwebtemplate-core</artifactId>
13-
<version>2.5.1-SNAPSHOT</version>
13+
<version>2.6.0-SNAPSHOT</version>
1414
<relativePath>..</relativePath>
1515
</parent>
1616

gocwebtemplate-core/gocwebtemplate-core-base/src/main/java/goc/webtemplate/Constants.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ public abstract class Constants {
1313

1414
public static final String CACHE_KEY_STATICFILES_PREFIX = "GoC.Template.CacheKey";
1515

16-
public static final String WEB_TEMPLATE_DISTRIBUTION_VERSION = "2.5.1";
16+
public static final String WEB_TEMPLATE_DISTRIBUTION_VERSION = "2.6.0";
1717

18-
public static final String CDTS_DEFAULT_VERSION = "v4_0_46";
18+
public static final String CDTS_DEFAULT_VERSION = "v4_0_47";
1919

2020
public static final String STATIC_FALLBACK_FILES_INTERNAL_PATH = "/goc/webtemplate/StaticFallbackFiles";
2121

gocwebtemplate-core/gocwebtemplate-core-base/src/main/java/goc/webtemplate/component/AbstractCoreBean.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ public void setUseHttps(boolean value) {
459459
}
460460

461461
/**
462-
* Returns the version of the CDN files to use to build the page. (e.g v4_0_46)
462+
* Returns the version of the CDN files to use to build the page. (e.g v4_0_47)
463463
*
464464
* Set at application level via "wettemplate_version" property in cdn.properties,
465465
* can be overriden programatically.
@@ -480,7 +480,7 @@ public String getTemplateVersion() {
480480
}
481481

482482
/**
483-
* Sets the version of the CDN files to use to build the page. (e.g v4_0_46)
483+
* Sets the version of the CDN files to use to build the page. (e.g v4_0_47)
484484
*
485485
* Set at application level via "wettemplate_version" property in cdn.properties,
486486
* can be overriden programatically.

gocwebtemplate-core/gocwebtemplate-core-base/src/test/resources/goc/webtemplate/global/config/cdn.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ cdn_localdev_localpath=/loadtesting/app/cls/WET/{0}/{1}/
2929
#(blank values for theme, subtheme and version will use defaults from internal environment configuration)
3030
wettemplate_theme=
3131
wettemplate_subtheme=
32-
wettemplate_version=v4_0_46
32+
wettemplate_version=v4_0_47
3333
wettemplate_loadjqueryfromgoogle=false
3434
webtemplate_usehttps=true
3535
#

gocwebtemplate-core/gocwebtemplate-core-jsp/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>ca.gc.gocwebtemplate</groupId>
1212
<artifactId>gocwebtemplate-core</artifactId>
13-
<version>2.5.1-SNAPSHOT</version>
13+
<version>2.6.0-SNAPSHOT</version>
1414
<relativePath>..</relativePath>
1515
</parent>
1616

gocwebtemplate-core/gocwebtemplate-core-jsp/src/test/resources/goc/webtemplate/global/config/cdn.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ cdn_localdev_localpath=/GoCWebTemplateSampleJSP/loadtesting/app/cls/WET/{0}/{1}/
2929
#(blank values for theme, subtheme and version will use defaults from internal environment configuration)
3030
wettemplate_theme=
3131
wettemplate_subtheme=
32-
wettemplate_version=v4_0_46
32+
wettemplate_version=v4_0_47
3333
wettemplate_loadjqueryfromgoogle=false
3434
webtemplate_usehttps=true
3535
#

gocwebtemplate-core/gocwebtemplate-core-spring/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>ca.gc.gocwebtemplate</groupId>
1212
<artifactId>gocwebtemplate-core</artifactId>
13-
<version>2.5.1-SNAPSHOT</version>
13+
<version>2.6.0-SNAPSHOT</version>
1414
<relativePath>..</relativePath>
1515
</parent>
1616

gocwebtemplate-core/gocwebtemplate-core-spring/src/main/resources/goc/webtemplate/StaticFallbackFiles/gcintranet/appFooter-en.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
<div class="container">
44
<div class="row">
55
<div class="col-xs-12 col-md-8">
6-
<a href="https://www.canada.ca/en.html"><img src="https://cdts.service.canada.ca/app/cls/WET/gcintranet/v4_0_46/wet-boew/assets/sig-blk-en.svg" alt=""><span class="wb-inv">Government of Canada</span></a>
6+
<a href="https://www.canada.ca/en.html"><img src="https://cdts.service.canada.ca/app/cls/WET/gcintranet/v4_0_47/wet-boew/assets/sig-blk-en.svg" alt=""><span class="wb-inv">Government of Canada</span></a>
77
</div>
88
<div class="col-xs-6 visible-sm visible-xs tofpg">
99
<a href="#wb-cont">Top of Page<span class="glyphicon glyphicon-chevron-up"></span></a>
1010
</div>
1111
<div class="col-xs-6 col-md-4 text-right">
12-
<img src="https://cdts.service.canada.ca/app/cls/WET/gcintranet/v4_0_46/wet-boew/assets/wmms-blk.svg" alt="Symbol of the Government of Canada">
12+
<img src="https://cdts.service.canada.ca/app/cls/WET/gcintranet/v4_0_47/wet-boew/assets/wmms-blk.svg" alt="Symbol of the Government of Canada">
1313
</div>
1414
</div>
1515
</div>

0 commit comments

Comments
 (0)