Skip to content
Snippets Groups Projects
Commit 2e82b778 authored by Pierre-Luc Beaudoin's avatar Pierre-Luc Beaudoin
Browse files

Merge commit 'origin/master'

parents c0ffee7b bf52db50
No related branches found
No related tags found
No related merge requests found
Showing
with 48 additions and 3 deletions
www/images/icons/callouts/6.png

355 B

www/images/icons/callouts/7.png

344 B

www/images/icons/callouts/8.png

357 B

www/images/icons/callouts/9.png

357 B

www/images/icons/caution.png

2.49 KiB

www/images/icons/example.png

2.3 KiB

www/images/icons/home.png

1.31 KiB

www/images/icons/important.png

2.59 KiB

www/images/icons/next.png

1.27 KiB

www/images/icons/note.png

2.67 KiB

www/images/icons/prev.png

1.32 KiB

www/images/icons/tip.png

2.54 KiB

www/images/icons/up.png

1.29 KiB

www/images/icons/warning.png

2.76 KiB

www/images/see-above.png

200 B

www/images/toc-blank.png

318 B

www/images/toc-minus.png

259 B

www/images/toc-plus.png

264 B

...@@ -10,8 +10,8 @@ require_once('sflphone.funcs.php'); ...@@ -10,8 +10,8 @@ require_once('sflphone.funcs.php');
// We've requested an image, fetch it, and send it. // We've requested an image, fetch it, and send it.
if (defined($_REQUEST['i'])) { if (isset($_REQUEST['img'])) {
$img = $_REQUEST['i']; $img = $_REQUEST['img'];
switch(strtolower(substr($img, -3))) { switch(strtolower(substr($img, -3))) {
case 'jpg': case 'jpg':
header("Content-Type: image/jpeg"); header("Content-Type: image/jpeg");
...@@ -26,9 +26,16 @@ if (defined($_REQUEST['i'])) { ...@@ -26,9 +26,16 @@ if (defined($_REQUEST['i'])) {
break; break;
} }
show_page($img); show_page($img, FALSE);
exit();
} }
if (isset($_REQUEST['file'])) {
include("header.php");
show_page($_REQUEST['file']);
include("footer.php");
exit();
}
$module = ''; $module = '';
......
...@@ -267,6 +267,7 @@ div.exampleblock-content { ...@@ -267,6 +267,7 @@ div.exampleblock-content {
/** SFLphone specific */ /** SFLphone specific */
#header { #header {
text-align: center; text-align: center;
position: relative;
} }
#header img { #header img {
border: 0px; border: 0px;
...@@ -279,3 +280,40 @@ div.exampleblock-content { ...@@ -279,3 +280,40 @@ div.exampleblock-content {
border-left: 1px #aaaaaa solid; border-left: 1px #aaaaaa solid;
border-right: 1px #aaaaaa solid; border-right: 1px #aaaaaa solid;
} }
#downtown {
margin-top: 40px;
border-top: 1px solid #bbbbbb;
font-size: smaller;
padding: 1em 0pt 0pt 0pt;
clear: both;
color: #777777;
text-align: center;
}
.donate {
margin: auto
}
#homebutton {
position: absolute;
right: 0px;
top: 10px;
}
#homebutton img {
border: none;
}
.image {
text-align: center;
padding-bottom: 20px;
}
.image .image-title {
background: transparent url(images/see-above.png) no-repeat left;
padding-left: 20px;
color: #4D4F3A;
font-weight: normal;
font-style: italic;
display: inline;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment