Diff

Differences From Artifact [130cfdc6ea]:

To Artifact [aac577ac83]:


10
11
12
13
14
15
16
17
18
19
20
21
22
23













24
25
26
27
28
29
30
31
32
33
34

	action="$1"
	status="$2"
	platform="$3"

	os="$(echo "${platform}" | cut -f 2 -d -)"

	imageProvidingURL='https://rkeene.org/images/icons/dynamic-status/'
	url="${imageProvidingURL}/?os=${os}&status=${status}&action=${action}"

	echo "${url}"
}
for action in build tests; do
	for status in pass fail; do













		for platform in "${platforms[@]}"; do
			tag="${action}-${status}-${platform}"
cat << _EOF_
.timelineTableCell a[href*="/timeline?r=${tag}&"] {
  background: url("$(infoToStatusImageURL "${action}" "${status}" "${platform}")");
  width: 56px; 
  height: 20px;
  background-size: 56px 20px;
  background-repeat: no-repeat;
  color: rgba(0,0,0,0);
  display: inline-block;







|






>
>
>
>
>
>
>
>
>
>
>
>
>



|







10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47

	action="$1"
	status="$2"
	platform="$3"

	os="$(echo "${platform}" | cut -f 2 -d -)"

	imageProvidingURL='https://rkeene.org/images/icons/dynamic-status'
	url="${imageProvidingURL}/?os=${os}&status=${status}&action=${action}"

	echo "${url}"
}
for action in build tests; do
	for status in pass fail; do
		tag="${action}-${status}"
cat << _EOF_
.timelineTable a[href*="/timeline?r=${tag}&"] {
  background: url("$(infoToStatusImageURL "${action}" "${status}" 'linux')");
  width: 56px; 
  height: 20px;
  background-size: 56px 20px;
  background-repeat: no-repeat;
  color: rgba(0,0,0,0);
  display: inline-block;
  text-indent: -65536px;
}
_EOF_
		for platform in "${platforms[@]}"; do
			tag="${action}-${status}-${platform}"
cat << _EOF_
.timelineTable a[href*="/timeline?r=${tag}&"] {
  background: url("$(infoToStatusImageURL "${action}" "${status}" "${platform}")");
  width: 56px; 
  height: 20px;
  background-size: 56px 20px;
  background-repeat: no-repeat;
  color: rgba(0,0,0,0);
  display: inline-block;