1 2 3 4 5 6 7 8 9 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 48 49 50 51 52
|
jQuery Mobile for Debian
------------------------
In order to make use of jQuery Mobile in your html, include the following
lines in your html header:
<link type="text/css"
href="/javascript/jquery-mobile/jquery.mobile.css"
rel="stylesheet" />
<link type="text/css"
href="/javascript/jquery-mobile/jquery.mobile.structure.css"
rel="stylesheet" />
<link type="text/css"
href="/javascript/jquery-mobile/jquery.mobile.theme.css"
rel="stylesheet" />
<script language="javascript" type="text/javascript"
src="/javascript/jquery-mobile/jquery.mobile.js"></script>
If you're generating files which are going to be served via the
filesystem (such that no HTTP server is used) instead you should
access jQuery Mobile via the filesystem path:
<link type="text/css"
href="/usr/share/javascript/jquery-mobile/jquery.mobile.css"
rel="stylesheet" />
<link type="text/css"
href="/usr/share/javascript/jquery-mobile/jquery.mobile.structure.css"
rel="stylesheet" />
<link type="text/css"
href="/usr/share/javascript/jquery-mobile/jquery.mobile.theme.css"
rel="stylesheet" />
<script language="javascript" type="text/javascript"
src="/usr/share/javascript/jquery-mobile/jquery.mobile.js"></script>
Explain why dfsg-packaging
--------------------------
jQuery Mobile originally comes with minified files. However, it violates
the Debian Policy.
Additionally, code copies of jQuery and jQury Mobil itself have been
removed from the demos.
-- Marcelo Jorge Vieira <metal@debian.org> Sun, 20 May 2012 18:04:18 -0300
|