Skip to content

Commit bea73a6

Browse files
committed
be more friendly to phone device
1 parent 8e3684e commit bea73a6

10 files changed

+28
-3
lines changed

CoreFeatures.md.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ <h1>
1919
<li>More easier to archive Sub/Pub services with broadcast events API</li>
2020
<li>Run initialization clojure code when nginx worker starting</li>
2121
<li>Support user defined http request method</li>
22-
<li>Compatible with the Nginx lastest stable version 1.6.0. (Nginx 1.4.x is also ok, older version is not tested and maybe works.)</li>
22+
<li>Compatible with the Nginx lastest stable version 1.6.x. (Nginx 1.4.x is also ok, older version is not tested and maybe works.)</li>
2323
<li>One of benifits of <a href="http://nginx.org/">Nginx</a> is worker processes are automatically restarted by a master process if they crash</li>
2424
<li>Utilizes lazy headers and direct memory operation between <a href="http://nginx.org/">Nginx</a> and JVM to fast handle dynamic contents from Clojure or Java code.</li>
2525
<li>Utilizes <a href="http://nginx.org/">Nginx</a> zero copy file sending mechanism to fast handle static contents controlled by Clojure or Java code.</li>

configuration.html

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
<head>
55
<meta charset='utf-8'>
66
<meta http-equiv="X-UA-Compatible" content="chrome=1">
7+
<meta content="True" name="HandheldFriendly">
8+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
9+
<meta name="viewport" content="width=device-width">
710
<meta name="description" content="nginx-clojure.github.io : Nginx module for embedding Clojure / Java / Groovy programs, typically those Ring based handlers">
811

912
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">

downloads.html

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33

44
<head>
55
<meta charset='utf-8'>
6+
<meta content="True" name="HandheldFriendly">
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
8+
<meta name="viewport" content="width=device-width">
69
<meta http-equiv="X-UA-Compatible" content="chrome=1">
710
<meta name="description" content="nginx-clojure.github.io : Nginx module for embedding Clojure / Java / Groovy programs, typically those Ring based handlers">
811

header.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!-- HEADER -->
22
<nav id="header_wrap" class="navbar navbar-default navbar-fixed-top" role="navigation">
3-
<header class="inner container">
3+
<header id="header_logo_title" class="inner container">
44
<ul class="external-link-buttons">
55
<li>
66
<a id="forkme_banner" href="https://github.com/nginx-clojure/nginx-clojure" target="_blank">View on GitHub</a>

index.html

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
<head>
55
<meta charset='utf-8'>
66
<meta http-equiv="X-UA-Compatible" content="chrome=1">
7+
<meta content="True" name="HandheldFriendly">
8+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
9+
<meta name="viewport" content="width=device-width">
710
<meta name="description" content="nginx-clojure.github.io : Nginx module for embedding Clojure / Java / Groovy programs, typically those Ring based handlers">
811

912
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">

installation.html

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
<head>
55
<meta charset='utf-8'>
66
<meta http-equiv="X-UA-Compatible" content="chrome=1">
7+
<meta content="True" name="HandheldFriendly">
8+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
9+
<meta name="viewport" content="width=device-width">
710
<meta name="description" content="nginx-clojure.github.io : Nginx module for embedding Clojure / Java / Groovy programs, typically those Ring based handlers">
811

912
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">

more.html

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
<head>
55
<meta charset='utf-8'>
66
<meta http-equiv="X-UA-Compatible" content="chrome=1">
7+
<meta content="True" name="HandheldFriendly">
8+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
9+
<meta name="viewport" content="width=device-width">
710
<meta name="description" content="nginx-clojure.github.io : Nginx module for embedding Clojure / Java / Groovy programs, typically those Ring based handlers">
811

912
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">

quickstart.html

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
<head>
55
<meta charset='utf-8'>
66
<meta http-equiv="X-UA-Compatible" content="chrome=1">
7+
<meta content="True" name="HandheldFriendly">
8+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
9+
<meta name="viewport" content="width=device-width">
710
<meta name="description" content="nginx-clojure.github.io : Nginx module for embedding Clojure / Java / Groovy programs, typically those Ring based handlers">
811

912
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">

stylesheets/stylesheet.css

+5-1
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ body {
422422
Small Device Styles
423423
*******************************************************************************/
424424

425-
@media screen and (max-width: 480px) {
425+
@media screen and (max-width: 800px) {
426426
body {
427427
font-size:14px;
428428
}
@@ -439,6 +439,10 @@ Small Device Styles
439439
display: none;
440440
}
441441

442+
#header_logo_title {
443+
display: none;
444+
}
445+
442446
.inner {
443447
min-width: 320px;
444448
max-width: 480px;

userfullLinks.html

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
<head>
55
<meta charset='utf-8'>
66
<meta http-equiv="X-UA-Compatible" content="chrome=1">
7+
<meta content="True" name="HandheldFriendly">
8+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
9+
<meta name="viewport" content="width=device-width">
710
<meta name="description" content="nginx-clojure.github.io : Nginx module for embedding Clojure / Java / Groovy programs, typically those Ring based handlers">
811

912
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">

0 commit comments

Comments
 (0)