Skip to content

Commit 940c4e7

Browse files
author
Rafael Grigorian
committed
Fixed GH-86
1 parent 68d0fbf commit 940c4e7

File tree

10 files changed

+15
-25
lines changed

10 files changed

+15
-25
lines changed

design/user_guide.sketch

1 MB
Binary file not shown.

docs/images/preview.png

389 KB
Loading

docs/user_guide.pdf

736 KB
Binary file not shown.

src/app/code/community/JetRails/Cloudflare/etc/config.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<config>
44
<modules>
55
<JetRails_Cloudflare>
6-
<version>1.0.0</version>
6+
<version>1.0.2</version>
77
</JetRails_Cloudflare>
88
</modules>
99
<admin>

src/app/design/adminhtml/base/default/template/cloudflare/caching/always_online.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
data-section-name="always_online" >
77
<div class="row" >
88
<div class="wrapper_left" >
9-
<span class="section_title" >Always Online</span>
9+
<span class="section_title" >Always Online</span>
1010
<p>If your server goes down, Cloudflare will serve your website’s static pages from our cache.</p>
1111
</div>
1212
<div class="wrapper_right" >

src/app/design/adminhtml/base/default/template/cloudflare/dashboard.phtml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66

77
<div class="cloudflare-dashboard" >
88
<div class="dashboard-header" >
9-
<img class="logo" src="<?php echo $this->getSkinUrl ('images/cloudflare/cloudflare.svg') ?>" />
9+
<div class="logo" >
10+
<img src="<?php echo $this->getSkinUrl ('images/cloudflare/jetrails.svg') ?>" />
11+
</div>
1012
<div class="domain_wrapper" >
1113
<div class="selected" ><?php echo $this->getDomainName () ?></div>
1214
<div class="options" >
@@ -27,10 +29,7 @@
2729
<?php endforeach ?>
2830
</div>
2931
</div>
30-
<div class="attribution" >
31-
<img src="<?php echo $this->getSkinUrl ('images/cloudflare/jetrails.svg') ?>" />
32-
<p>made with <span>&#10084;</span> by</p>
33-
</div>
32+
<div class="attribution" ></div>
3433
</div>
3534
<div class="dashboard-main" >
3635
<ul class="tabs" >

src/app/design/adminhtml/base/default/template/cloudflare/network/http_2.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<li>Connection multiplexing is on a per-domain basis</li>
4141
<li>The connection from Cloudflare to your origin will be made over HTTP 1.x</li>
4242
</ul>
43-
<p><strong>Note</strong>: Rocket Loader can further improve connection multiplexing in HTTP/2 by allowing resources hosted on different domains to be retrieved in a single network request. Without Rocket Loader, if a website has resources that are hosted on a different domain, separate HTTP/2 connections will need to be made for resources on each domain. While HTTP/2 is not supported between the Cloudflare network and the customer origin, Cloudflare Railgun provides similar benefits for connection multiplexing and HTTP header compression on this connection.</p>
43+
<p><strong>Note</strong>: Rocket Loader can further improve connection multiplexing in HTTP/2 by allowing resources hosted on different domains to be retrieved in a single network request. Without Rocket Loader, if a website has resources that are hosted on a different domain, separate HTTP/2 connections will need to be made for resources on each domain. While HTTP/2 is not supported between the Cloudflare network and the customer origin, Cloudflare Railgun provides similar benefits for connection multiplexing and HTTP header compression on this connection.</p>
4444
<p><a target="blank" href="https://support.cloudflare.com/hc/en-us/articles/200168126-Who-can-use-HTTP-2-and-SPDY" >Does my site support HTTP/2</a></p>
4545
<p><a target="blank" href="https://support.cloudflare.com/hc/en-us/articles/200167976-How-can-I-tell-if-HTTP-2-or-SPDY-is-working-for-my-website" >How can I tell HTTP/2 is working on my site.</a></p>
4646
</div>

src/app/design/adminhtml/base/default/template/cloudflare/speed/rocket_loader.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
data-section-name="rocket_loader" >
77
<div class="row" >
88
<div class="wrapper_left" >
9-
<span class="section_title" >Rocket Loader</span>
9+
<span class="section_title" >Rocket Loader</span>
1010
<p>Improve load time for pages that include JavaScript.</p>
1111
</div>
1212
<div class="wrapper_right" >

src/skin/adminhtml/base/default/images/cloudflare/cloudflare.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/skin/adminhtml/base/default/scss/cloudflare/core/dashboard.scss

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
height: 85px;
1212
display: flex;
1313
.logo {
14+
display: flex;
1415
float: none;
1516
margin: 0;
1617
height: initial;
@@ -22,6 +23,12 @@
2223
box-sizing: border-box;
2324
border-bottom: solid 1px $color-border_gray;
2425
border-right: solid 1px $color-border_gray;
26+
align-items: center;
27+
justify-content: center;
28+
img {
29+
height: 30px;
30+
width: 150px;
31+
}
2532
}
2633
.domain_wrapper {
2734
background: #FFF;
@@ -93,21 +100,6 @@
93100
height: 85px;
94101
border-bottom: solid 1px $color-border_gray;
95102
width: 100%;
96-
img {
97-
height: 20px;
98-
float: right;
99-
margin-right: 30px;
100-
margin-top: 32.5px;
101-
}
102-
p {
103-
line-height: 85px;
104-
float: right;
105-
margin: 0;
106-
margin-right: 10px;
107-
span {
108-
color: red;
109-
}
110-
}
111103
}
112104
}
113105
.dashboard-main {

0 commit comments

Comments
 (0)