Hi!
I'm in my first real experience with python web development. I'm
developing a third part web application with cheetah and cherrypy.
I use cheetah Template class for templating and it works find. But
when it define my color and html attribute in a css style file, and
use the <link> balise to link my css styles, it doesn't work.
In the other hand the server does not serve image for the web page,
defined in the <img sr=> balise
Thus the page is display without themes and color.
And in the console i get 404 error from the server for these
resources.
I don't know if the error is from cheetah but i think it could be from
cherrypy since i have a 404 error, manning that the resource is not
located by the server. Even when i put the full path of my css files
and images, the same thing happen
I use precompiled chestah template Below are my linux and python
configurations, and errors got from the console :
System used : Debian squeeze
Python version : 2.6
Cherrypy version : 3.2.2
Css file:
body {
background-color: #3AD0F2;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: right bottom;
text-align:center;
}
hr.author {
background-color: green;
color: green;
height: 12px;
}
h1 {cherrypy
color: #FFFFFF;
// background-color: #184860;
}
hr.login{
height: 1px;
color: #CCCCCC
border: 0;
}
div.login_header {
padding: 0;
position: absolute;
top: 15px;herrpy
//padding: 10px;
height: 200px;
width: 98%;
border:0;
text-align:justify;
}
div.main_header {
position: absolute;
top: 15px;
padding: 10px;
height: 50px;
width: 100%;
border: 1px dashed orange;
}
div.left {
padding: 10px;
position: absolute;
left: 15px;
top: 100px;
width: 200px;
height: 500px;
border: 1px dashed orange;
}
div.login_center {
//padding: 10px;
position: absolute;
top: 300px;
//left: 50px;
body {
background-color: #3AD0F2;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: right bottom;
text-align:center;
}
hr.author {
background-color: green;
color: green;
height: 12px;
}
h1 {cherrypy
color: #FFFFFF;
// background-color: #184860;
}
hr.login{
height: 1px;herrpy
color: #CCCCCC
border: 0;
}
div.login_header {
padding: 0;
position: absolute;
top: 15px;
//padding: 10px;
height: 200px;
width: 98%;
border:0;
text-align:justify;
}
div.main_header {
position: absolute;
top: 15px;
padding: 10px;
height: 50px;
width: 100%;
border: 1px dashed orange;
}
div.left {
padding: 10px;
position: absolute;
left: 15px;
top: 100px;
width: 200px;
height: 500px;
border: 1px dashed orange;
}
div.login_center {
//padding: 10px;
position: absolute;
top: 300px;
//left: 50px;
height: 250px;
width: 98%;herrpy
border:0;
//border: 1px dashed orange;
}
div.main_center {
padding: 10px;
position: absolute;
top: 100px;
left: 250px;
height: 500px;
width: 500px;
border: 1px dashed orange;
}
div.right {
padding: 10px;
position: absolute;
right: 15px;
top: 100px;
width: 200px;
height: 500px;
border: 1px dashed orange;
}
cherrypydiv.footer {
//padding: 10px;
position: absolute;
//right: 15px;
top: 660px;
height: 50px;
width: 98%;
//margin: 20px;
//padding: 10px;
border:0;
//border: 1px dashed orange;
}
html source code compilied as LoginTemplate class in my cherrypy py
file:
<!--##doc-module: Login page template, use to generate Login class
source code
##Made by Eugene NGONTANG-->
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml">
<head>
<title>Login Page</title>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
<link rel="stylesheet" href="styles/my_style.css" type="text/css"
media="screen"/>
</head>
<body>
<div class='login_header'>
<h2>Login to Eugene System</h2>
<br/>
<table width=100%>
<tr>
<td style="text-align: center; vertical-align: middle;">
<img src="images/logo.png" height="100" style='align:center'> </img>
</td>
</tr>
</table>
<!--img src="images/logo.png" height="100" style='align:center'-->
<!--hr class='login'-->
</div>
<div class='login_center'>
<form method="POST" action="HomeTemplate">
<input type="text" name="username" size="25" /><b> UserName</b><br/
><br/>
<input type="password" name="password" size="25" /><b> Password</
b><br/>
<input type="checkbox" name="remember" value="Remember me"/>
Remember me
<br/><br/><br/><br/><br/><br/><br/><br/>
<table top=20px width=80% align='center'>
<tr>
<td width=50%>
<div style='float:left'>
<a href="RegisterTemplate">Register new account</a>
</div>
</td>
<td width=50%>
<div style='float:right'>
<b><input type="submit" value="Login" size='15'
name='login'/></b>
</div>
</td>
</tr>
</table>
</form>
</div>
<div class='footer'>
<hr class='author'>
Powered by <a href="
http://www.mysite.com">Koala INC</a> ©
2011-2012 Eugène NGONTANG
</div>
</body>
</html>
My py source code; where my index fonction is defined and the template
class is used:
#! /usr/bin/python
import cherrypy
from LoginTemplate import LoginTemplate
class LoginPage(object):
"Login Page Clas"
def __init__(self):
self.tmpl = LoginTemplate()
self.tmpl.title = "Login Page"
self.tmpl.motd = "Login to Eugene System"
self.tmpl.logo = "images/logo.png"
def index(self):
return self.tmpl.respond()
index.exposed = True
cherrypy.config.update({'server.socket_host': '0.0.0.0',
'server.socket_port': 8080,
})
cherrypy.quickstart(LoginPage())
#cherrypy.tree.mount(login, "/"
#cherrypy.engine.start()
In principle, I wanted to use variables title, motd and logo in my
tmpl file, but i used directly values in a html file for testing
Finally error got from console when running the server :
papi@koalab:~/projets/my_project/src/admin$ ./Admin.py
[18/Apr/2012:12:14:01] ENGINE Listening for SIGHUP.
[18/Apr/2012:12:14:01] ENGINE Listening for SIGTERM.
[18/Apr/2012:12:14:01] ENGINE Listening for SIGUSR1.
[18/Apr/2012:12:14:01] ENGINE Bus STARTING
CherryPy Checker:
The Application mounted at '' has an empty config.
[18/Apr/2012:12:14:01] ENGINE Started monitor thread
'_TimeoutMonitor'.
[18/Apr/2012:12:14:01] ENGINE Started monitor thread 'Autoreloader'.
[18/Apr/2012:12:14:01] ENGINE Serving on
0.0.0.0:8080
[18/Apr/2012:12:14:01] ENGINE Bus STARTED
127.0.0.1 - - [18/Apr/2012:12:14:04] "GET / HTTP/1.1" 200 1059 ""
"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16) Gecko/20120315
Iceweasel/3.5.16 (like Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:04] "GET /styles/my_style.css HTTP/
1.1" 404 1216 "
http://localhost:8080/" "Mozilla/5.0 (X11; U; Linux
i686; en-US; rv:1.9.1.16) Gecko/20120315 Iceweasel/3.5.16 (like
Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:04] "GET /home/papi/projets/
my_project/src/admin/images/logo.png HTTP/1.1" 404 1300 "http://
localhost:8080/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16)
Gecko/20120315 Iceweasel/3.5.16 (like Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:04] "GET / HTTP/1.1" 200 1059 ""
"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16) Gecko/20120315
Iceweasel/3.5.16 (like Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:04] "GET /styles/my_style.css HTTP/
1.1" 404 1216 "
http://localhost:8080/" "Mozilla/5.0 (X11; U; Linux
i686; en-US; rv:1.9.1.16) Gecko/20120315 Iceweasel/3.5.16 (like
Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:04] "GET /home/papi/projets/
my_project/src/admin/images/log.png HTTP/1.1" 404 1300 "http://
localhost:8080/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16)
Gecko/20120315 Iceweasel/3.5.16 (like Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:05] "GET / HTTP/1.1" 200 1059 ""
"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16) Gecko/20120315
Iceweasel/3.5.16 (like Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:05] "GET /styles/my_style.css HTTP/
1.1" 404 1216 "
http://localhost:8080/" "Mozilla/5.0 (X11; U; Linux
i686; en-US; rv:1.9.1.16) Gecko/20120315 Iceweasel/3.5.16 (like
Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:1Hi!
I'm in my first real experience with python web development. I'm
developing a third part web application with cheetah and cherrypy.
I use cheetah Template class for templating and it works find. But
when it define my color and html attribute in a css style file, and
use the <link> balise to link my css styles, it doesn't work.
In the other hand the server does not serve image for the web page,
defined in the <img sr=> balise
Thus the page is display without themes and color.
And in the console i get 404 error from the server for these
resources.
I don't know if the error is from cheetah but i think it could be from
cherrypy since i have a 404 error, manning that the resource is not
located by the server. Even when i put the full path of my css files
and images, the same thing happen
I use precompiled chestah template Below are my linux and python
configurations, and errors got from the console :
System used : Debian squeeze
Python version : 2.6
Cherrypy version : 3.2.2
Css file:
body {
background-color: #3AD0F2;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: right bottom;
text-align:center;
}
hr.author {
background-color: green;
color: green;
height: 12px;
}
h1 {cherrypy
color: #FFFFFF;
// background-color: #184860;
}
hr.login{
height: 1px;
color: #CCCCCC
border: 0;
}
div.login_header {
padding: 0;
position: absolute;
top: 15px;herrpy
//padding: 10px;
height: 200px;
width: 98%;
border:0;
text-align:justify;
}
div.main_header {
position: absolute;
top: 15px;
padding: 10px;
height: 50px;
width: 100%;
border: 1px dashed orange;
}
div.left {
padding: 10px;
position: absolute;
left: 15px;
top: 100px;
width: 200px;
height: 500px;
border: 1px dashed orange;
}
div.login_center {
//padding: 10px;
position: absolute;
top: 300px;
//left: 50px;
body {
background-color: #3AD0F2;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: right bottom;
text-align:center;
}
hr.author {
background-color: green;
color: green;
height: 12px;
}
h1 {cherrypy
color: #FFFFFF;
// background-color: #184860;
}
hr.login{
height: 1px;herrpy
color: #CCCCCC
border: 0;
}
div.login_header {
padding: 0;
position: absolute;
top: 15px;
//padding: 10px;
height: 200px;
width: 98%;
border:0;
text-align:justify;
}
div.main_header {
position: absolute;
top: 15px;
padding: 10px;
height: 50px;
width: 100%;
border: 1px dashed orange;
}
div.left {
padding: 10px;
position: absolute;
left: 15px;
top: 100px;
width: 200px;
height: 500px;
border: 1px dashed orange;
}
div.login_center {
//padding: 10px;
position: absolute;
top: 300px;
//left: 50px;
height: 250px;
width: 98%;herrpy
border:0;
//border: 1px dashed orange;
}
div.main_center {
padding: 10px;
position: absolute;
top: 100px;
left: 250px;
height: 500px;
width: 500px;
border: 1px dashed orange;
}
div.right {
padding: 10px;
position: absolute;
right: 15px;
top: 100px;
width: 200px;
height: 500px;
border: 1px dashed orange;
}
cherrypydiv.footer {
//padding: 10px;
position: absolute;
//right: 15px;
top: 660px;
height: 50px;
width: 98%;
//margin: 20px;
//padding: 10px;
border:0;
//border: 1px dashed orange;
}
html source code compilied as LoginTemplate class in my cherrypy py
file:
<!--##doc-module:Login page template, use to generate Login class
source code
##Made by Eugene NGONTANG-->
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml">
<head>
<title>Login Page</title>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
<link rel="stylesheet" href="styles/my_style.css" type="text/css"
media="screen"/>
</head>
<body>
<div class='login_header'>
<h2>Login to Eugene System</h2>
<br/>
<table width=100%>
<tr>
<td style="text-align: center; vertical-align: middle;">
<img src="images/logo.png" height="100" style='align:center'> </img>
</td>
</tr>
</table>
<!--img src="images/logo.png" height="100" style='align:center'-->
<!--hr class='login'-->
</div>
<div class='login_center'>
<form method="POST" action="HomeTemplate">
<input type="text" name="username" size="25" /><b> UserName</b><br/
><br/>
<input type="password" name="password" size="25" /><b> Password</
b><br/>
<input type="checkbox" name="remember" value="Remember me"/>
Remember me
<br/><br/><br/><br/><br/><br/><br/><br/>
<table top=20px width=80% align='center'>
<tr>
<td width=50%>
<div style='float:left'>
<a href="RegisterTemplate">Register new account</a>
</div>
</td>
<td width=50%>
<div style='float:right'>
<b><input type="submit" value="Login" size='15'
name='login'/></b>
</div>
</td>
</tr>
</table>
</form>
</div>
<div class='footer'>
<hr class='author'>
Powered by <a href="
http://www.mysite.com">Kaola INC</a> ©
2011-2012 Eugène NGONTANG
</div>
</body>
</html>
My py source code; where my index fonction is defined and the template
class is used:
#! /usr/bin/python
import cherrypy
from LoginTemplate import LoginTemplate
class LoginPage(object):
"Login Page Clas"
def __init__(self):
self.tmpl = LoginTemplate()
self.tmpl.title = "Login Page"
self.tmpl.motd = "Login to Eugene System"
self.tmpl.logo = "images/logo.png"
def index(self):
return self.tmpl.respond()
index.exposed = True
cherrypy.config.update({'server.socket_host': '0.0.0.0',
'server.socket_port': 8080,
})
cherrypy.quickstart(LoginPage())
#cherrypy.tree.mount(login, "/"
#cherrypy.engine.start()
In principle, I wanted to use variables title, motd and logo in my
tmpl file, but i used directly values in a html file for testing
Finally error got from console when running the server :
papi@koalab:~/projets/my_project/src/admin$ ./Admin.py
[18/Apr/2012:12:14:01] ENGINE Listening for SIGHUP.
[18/Apr/2012:12:14:01] ENGINE Listening for SIGTERM.
[18/Apr/2012:12:14:01] ENGINE Listening for SIGUSR1.
[18/Apr/2012:12:14:01] ENGINE Bus STARTING
CherryPy Checker:
The Application mounted at '' has an empty config.
[18/Apr/2012:12:14:01] ENGINE Started monitor thread
'_TimeoutMonitor'.
[18/Apr/2012:12:14:01] ENGINE Started monitor thread 'Autoreloader'.
[18/Apr/2012:12:14:01] ENGINE Serving on
0.0.0.0:8080
[18/Apr/2012:12:14:01] ENGINE Bus STARTED
127.0.0.1 - - [18/Apr/2012:12:14:04] "GET / HTTP/1.1" 200 1059 ""
"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16) Gecko/20120315
Iceweasel/3.5.16 (like Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:04] "GET /styles/my_style.css HTTP/
1.1" 404 1216 "
http://localhost:8080/" "Mozilla/5.0 (X11; U; Linux
i686; en-US; rv:1.9.1.16) Gecko/20120315 Iceweasel/3.5.16 (like
Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:04] "GET /home/papi/projets/
my_project/src/admin/images/logo.png HTTP/1.1" 404 1300 "http://
localhost:8080/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16)
Gecko/20120315 Iceweasel/3.5.16 (like Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:04] "GET / HTTP/1.1" 200 1059 ""
"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16) Gecko/20120315
Iceweasel/3.5.Hi!
I'm in my first real experience with python web development. I'm
developing a third part web application with cheetah and cherrypy.
I use cheetah Template class for templating and it works find. But
when it define my color and html attribute in a css style file, and
use the <link> balise to link my css styles, it doesn't work.
In the other hand the server does not serve image for the web page,
defined in the <img sr=> balise
Thus the page is display without themes and color.
And in the console i get 404 error from the server for these
resources.
I don't know if the error is from cheetah but i think it could be from
cherrypy since i have a 404 error, manning that the resource is not
located by the server. Even when i put the full path of my css files
and images, the same thing happen
I use precompiled chestah template Below are my linux and python
configurations, and errors got from the console :
System used : Debian squeeze
Python version : 2.6
Cherrypy version : 3.2.2
Css file:
body {
background-color: #3AD0F2;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: right bottom;
text-align:center;
}
hr.author {
background-color: green;
color: green;
height: 12px;
}
h1 {cherrypy
color: #FFFFFF;
// background-color: #184860;
}
hr.login{
height: 1px;
color: #CCCCCC
border: 0;
}
div.login_header {
padding: 0;
position: absolute;
top: 15px;herrpy
//padding: 10px;
height: 200px;
width: 98%;
border:0;
text-align:justify;
}
div.main_header {
position: absolute;
top: 15px;
padding: 10px;
height: 50px;
width: 100%;
border: 1px dashed orange;
}
div.left {
padding: 10px;
position: absolute;
left: 15px;
top: 100px;
width: 200px;
height: 500px;
border: 1px dashed orange;
}
div.login_center {
//padding: 10px;
position: absolute;
top: 300px;
//left: 50px;
body {
background-color: #3AD0F2;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: right bottom;
text-align:center;
}
hr.author {
background-color: green;
color: green;
height: 12px;
}
h1 {cherrypy
color: #FFFFFF;
// background-color: #184860;
}
hr.login{
height: 1px;herrpy
color: #CCCCCC
border: 0;
}
div.login_header {
padding: 0;
position: absolute;
top: 15px;
//padding: 10px;
height: 200px;
width: 98%;
border:0;
text-align:justify;
}
div.main_header {
position: absolute;
top: 15px;
padding: 10px;
height: 50px;
width: 100%;
border: 1px dashed orange;
}
div.left {
padding: 10px;
position: absolute;
left: 15px;
top: 100px;
width: 200px;
height: 500px;
border: 1px dashed orange;
}
div.login_center {
//padding: 10px;
position: absolute;
top: 300px;
//left: 50px;
height: 250px;
width: 98%;herrpy
border:0;
//border: 1px dashed orange;
}
div.main_center {
padding: 10px;
position: absolute;
top: 100px;
left: 250px;
height: 500px;
width: 500px;
border: 1px dashed orange;
}
div.right {
padding: 10px;
position: absolute;
right: 15px;
top: 100px;
width: 200px;
height: 500px;
border: 1px dashed orange;
}
cherrypydiv.footer {ancyCron
//padding: 10px;
position: absolute;
//right: 15px;
top: 660px;
height: 50px;
width: 98%;
//margin: 20px;
//padding: 10px;
border:0;
//border: 1px dashed orange;
}
html source code compilied as LoginTemplate class in my cherrypy py
file:
<!--##doc-module: Login page template, use to generate Login class
source code
##Made by Eugene NGONTANG-->
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml">
<head>
<title>Login Page</title>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
<link rel="stylesheet" href="styles/my_style.css" type="text/css"
media="screen"/>
</head>
<body>
<div class='login_header'>
<h2>Login to Eugene System</h2>
<br/>
<table width=100%>
<tr>ancyCron
<td style="text-align: center; vertical-align: middle;">
<img src="images/logo.png" height="100" style='align:center'> </img>
</td>
</tr>
</table>
<!--img src="images/logo.png" height="100" style='align:center'-->
<!--hr class='login'-->
</div>
<div class='login_center'>
<form method="POST" action="HomeTemplate">
<input type="text" name="username" size="25" /><b> UserName</b><br/
><br/>
<input type="password" name="password" size="25" /><b> Password</
b><br/>
<input type="checkbox" name="remember" value="Remember me"/>
Remember me
<br/><br/><br/><br/><br/><br/><br/><br/>
<table top=20px width=80% align='center'>
<tr>
<td width=50%>
<div style='float:left'>
<a href="RegisterTemplate">Register new account</a>
</div>
</td>
<td width=50%>
<div style='float:right'>
<b><input type="submit" value="Login" size='15'
name='login'/></b>
</div>
</td>
</tr>
</table>
</form>
</div>
<div class='footer'>
<hr class='author'>
Powered by <a href="
http://www.mysite.com">Koala INC</a> ©
2011-2012 Eugène NGONTANG
</div>
</body>
</html>
My py source code; where my index fonction is defined and the template
class is used:
#! /usr/bin/python
import cherrypy
from LoginTemplate import LoginTemplate
class LoginPage(object):
"Login Page Clas"
def __init__(self):
self.tmpl = LoginTemplate()
self.tmpl.title = "Login Page"
self.tmpl.motd = "Login to Eugene System"
self.tmpl.logo = "imag
My py source code; where mes/logo.png"
def index(self):
return self.tmpl.respond()
index.exposed = True
cherrypy.config.update({'server.socket_host': '0.0.0.0',
'server.socket_port': 8080,
})
cherrypy.quickstart(LoginPage())
#cherrypy.tree.mount(login, "/"
#cherrypy.engine.start()
In principle, I wanted to use variables title, motd and logo in my
tmpl file, but i used directly values in a html file for testing
Finally error got from console when running the server :
papi@koalab:~/projets/my_project/src/admin$ ./Admin.py
[18/Apr/2012:12:14:01] ENGINE Listening for SIGHUP.
[18/Apr/2012:12:14:01] ENGINE Listening for SIGTERM.
[18/Apr/2012:12:14:01] ENGINE Listening for SIGUSR1.
[18/Apr/2012:12:14:01] ENGINE Bus STARTING
CherryPy Checker:
The Application mounted at '' has an empty config.
[18/Apr/2012:12:14:01] ENGINE Started monitor thread
'_TimeoutMonitor'.
[18/Apr/2012:12:14:01] ENGINE Started monitor thread 'Autoreloader'.
[18/Apr/2012:12:14:01] ENGINE Serving on
0.0.0.0:8080
[18/Apr/2012:12:14:01] ENGINE Bus STARTED
127.0.0.1 - - [18/Apr/2012:12:14:04] "GET / HTTP/1.1" 200 1059 ""
"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16) Gecko/20120315
Iceweasel/3.5.16 (like Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:04] "GET /styles/my_style.css HTTP/
1.1" 404 1216 "
http://localhost:8080/" "Mozilla/5.0 (X11; U; Linux
i686; en-US; rv:1.9.1.16) Gecko/20120315 Iceweasel/3.5.16 (like
Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:04] "GET /home/papi/projets/
my_project/src/admin/images/logo.png HTTP/1.1" 404 1300 "http://
localhost:8080/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16)
Gecko/20120315 Iceweasel/3.5.16 (like Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:04] "GET / HTTP/1.1" 200 1059 ""
"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16) Gecko/20120315
Iceweasel/3.5.16 (like Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:04] "GET /styles/my_style.css HTTP/
1.1" 404 1216 "
http://localhost:8080/" "Mozilla/5.0 (X11; U; Linux
i686; en-US; rv:1.9.1.16) Gecko/20120315 Iceweasel/3.5.16 (like
Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:04] "GET /home/papi/projets/
my_project/src/admin/images/log.png HTTP/1.1" 404 1300 "http://
localhost:8080/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16)
Gecko/20120315 Iceweasel/3.5.16 (like Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:05] "GET / HTTP/1.1" 200 1059 ""
"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16) Gecko/20120315
Iceweasel/3.5.16 (like Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:05] "GET /styles/my_style.css HTTP/
1.1" 404 1216 "
http://localhost:8080/" "Mozilla/5.0 (X11; U; Linux
i686; en-US; rv:1.9.1.16) Gecko/20120315 Iceweasel/3.5.16 (like
Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:05] "GET /home/papi/projets/
my_project/src/admin/images/logo.png HTTP/1.1" 404 1300 "http://
localhost:8080/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16)
Gecko/20120315 Iceweasel/3.5.16 (like Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:18] "GET / HTTP/1.1" 200 1059 ""
"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16) Gecko/20120315
Iceweasel/3.5.16 (like Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:18] "GET /styles/my_style.css HTTP/
1.1" 404 1216 "
http://localhost:8080/" "Mozilla/5.0 (X11; U; Linux
i686; en-US; rv:1.9.1.16) Gecko/20120315 Iceweasel/3.5.16 (like
Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:18] "GET /home/papi/projets/
my_project/src/admin/images/logo.png HTTP/1.1" 404 1300 "http://
localhost:8080/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16)
Gecko/20120315 Iceweasel/3.5.16 (like Firefox/3.5.16)"
Try to compile and use this from your side if possible, and help to
solve this issue. My aim is not to have any html line in my core
source code, and it looks like by this way, all my html balises that
use external included esources like javascript files, css files and
images, will not be loaded.
How to solve this properly please?
Thanks a lot for your help.16 (like Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:04] "GET /styles/my_style.css HTTP/
1.1" 404 1216 "
http://localhost:8080/" "Mozilla/5.0 (X11; U; Linux
i686; en-US; rv:1.9.1.16) Gecko/20120315 Iceweasel/3.5.16 (like
Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:04] "GET /home/papi/projets/
my_project/src/admin/images/log.png HTTP/1.1" 404 1300 "http://
localhost:8080/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16)
Gecko/20120315 Iceweasel/3.5.16 (like Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:05] "GET / HTTP/1.1" 200 1059 ""
"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16) Gecko/20120315
Iceweasel/3.5.16 (like Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:05] "GET /styles/my_style.css HTTP/
1.1" 404 1216 "
http://localhost:8080/" "Mozilla/5.0 (X11; U; Linux
i686; en-US; rv:1.9.1.16) Gecko/20120315 Iceweasel/3.5.16 (like
Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:05] "GET /home/papi/projets/
my_project/src/admin/images/logo.png HTTP/1.1" 404 1300 "http://
localhost:8080/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16)
Gecko/20120315 Iceweasel/3.5.16 (like Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:18] "GET / HTTP/1.1" 200 1059 ""
"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16) Gecko/20120315
Iceweasel/3.5.16 (like Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:18] "GET /styles/my_style.css HTTP/
1.1" 404 1216 "
http://localhost:8080/" "Mozilla/5.0 (X11; U; Linux
i686; en-US; rv:1.9.1.16a) Gecko/20120315 Iceweasel/3.5.16 (like
Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:18] "GET /home/papi/projets/
my_project/src/admin/images/logo.png HTTP/1.1" 404 1300 "http://
localhost:8080/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16)
Gecko/20120315 Iceweasel/3.5.16 (like Firefox/3.5.16)"
Try to compile and use this from your side if possible, and help to
solve this issue. My aim is not to have any html line in my core
source code, and it looks like by this way, all my html balises that
use external included esources like javascript files, css files and
images, will not be loaded.
How to solve this properly please?
Thanks a lot for your help.2:14:05] "GET /home/papi/projets/my_project/
src/admin/images/logo.png HTTP/1.1" 404 1300 "
http://localhost:8080/"
"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16) Gecko/20120315
Iceweasel/3.5.16 (like Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:18] "GET / HTTP/1.1" 200 1059 ""
"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16) Gecko/20120315
Iceweasel/3.5.16 (liake Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:18] "GET /styles/my_style.css HTTP/
1.1" 404 1216 "
http://localhost:8080/" "Mozilla/5.0 (X11; U; Linux
i686; en-US; rv:1.9.1.16) Gecko/20120315 Iceweasel/3.5.16 (like
Firefox/3.5.16)"
127.0.0.1 - - [18/Apr/2012:12:14:18] "GET /home/papi/projets/
my_project/src/admin/images/logo.png HTTP/1.1" 404 1300 "http://
localhost:8080/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16)
Gecko/20120315 Iceweasel/3.5.16 (like Firefox/3.5.16)"
Try to compile and use this from your side if possible, and help to
solve this issue. My aim is not to have any html line in my core
source code, and it looks like by this way, all my html balises that
use external included esources like javascript files, css files and
images, will not be loaded.
How to solve this properly please?
Thanks a lot for your help.