sort sources in alphabetical order

remove test_sources_fail() (all sources pass now)
This commit is contained in:
Fabrice Laporte 2014-09-23 18:01:05 +02:00
parent 91a7eb249c
commit 7e3676ecc9
6 changed files with 302 additions and 1562 deletions

View file

@ -46,6 +46,7 @@ class MockFetchUrl(object):
fn = "".join(x for x in url if (x.isalnum() or x == '/'))
fn = fn.split('/')
fn = os.path.join('rsrc', 'lyrics', fn[0], fn[-1]) + '.txt'
with open(fn, 'r') as f:
content = f.read()
return content
@ -60,7 +61,7 @@ def is_lyrics_content_ok(title, text):
# consider lyrics ok if they share 50% or more with the reference
if len(setinter):
ratio = 1.0 * max(len(setexpected), len(settext)) / len(setinter)
return (ratio > .5 and ratio < 2)
return (ratio > .5 and ratio < 2.5)
return False
@ -70,51 +71,71 @@ class LyricsSourcesPluginTest(unittest.TestCase):
# Use default query when possible, or override artist and title field
# if website don't have lyrics for default query.
sourcesOk = [
# dict(definfo, url='http://www.songlyrics.com',
# path=u'/the-beatles/lady-madonna-lyrics'),
# dict(definfo, url=u'http://www.elyricsworld.com',
# path=u'/lady_madonna_lyrics_beatles.html'),
dict(artist=u'Beres Hammond', title=u'I could beat myself',
url=u'http://www.reggaelyrics.info',
path=u'/beres-hammond/i-could-beat-myself'),
dict(definfo, artist=u'Lilly Wood & the prick', title=u"Hey it's ok",
url=u'http://www.paroles.net/',
path=u'lilly-wood-the-prick/paroles-hey-it-s-ok'),
dict(definfo, artist=u'Amy Winehouse', title=u"Jazz'n'blues",
url=u'http://www.lyricsontop.com',
path=u'/amy-winehouse-songs/jazz-n-blues-lyrics.html'),
dict(definfo, url=u'http://www.sweetslyrics.com',
path=u'/761696.The%20Beatles%20-%20Lady%20Madonna.html'),
dict(definfo, url=u'http://www.absolutelyrics.com',
dict(definfo,
url=u'http://www.absolutelyrics.com',
path=u'/lyrics/view/the_beatles/lady_madonna'),
dict(definfo, url=u'http://www.azlyrics.com/',
dict(definfo,
url=u'http://www.azlyrics.com',
path=u'/lyrics/beatles/ladymadonna.html'),
dict(definfo, url=u'http://www.chartlyrics.com',
dict(definfo,
url=u'http://www.chartlyrics.com',
path=u'/_LsLsZ7P4EK-F-LD4dJgDQ/Lady+Madonna.aspx'),
dict(definfo, artist=u'Lilly Wood & the prick', title=u"Hey it's ok",
url=u'http://www.lyricsmania.com',
path=u'/hey_its_ok_lyrics_lilly_wood_and_the_prick.html'),
dict(definfo, url=u'http://www.lyrics007.com',
dict(definfo,
url=u'http://www.elyricsworld.com',
path=u'/lady_madonna_lyrics_beatles.html'),
dict(definfo,
url=u'http://www.lacoccinelle.net',
artist=u'Jacques Brel', title=u"Amsterdam",
path=u'/paroles-officielles/275679.html'),
dict(definfo,
url=u'http://www.lyrics007.com',
path=u'/The%20Beatles%20Lyrics/Lady%20Madonna%20Lyrics.html'),
dict(definfo, url=u'http://www.smartlyrics.com',
path=u'/Song18148-The-Beatles-Lady-Madonna-lyrics.aspx'),
dict(definfo, url='http://www.releaselyrics.com',
path=u'/e35f/the-beatles-lady-madonna'),
dict(definfo, url='http://www.metrolyrics.com/',
dict(definfo,
url='http://www.lyrics.com/',
path=u'lady-madonna-lyrics-the-beatles.html'),
dict(definfo,
url='http://www.lyricsmania.com/',
path='lady_madonna_lyrics_the_beatles.html'),
dict(definfo,
url=u'http://www.lyrics.net',
path=u'/lyric/17547916'),
dict(definfo,
url=u'http://www.lyricsontop.com',
artist=u'Amy Winehouse', title=u"Jazz'n'blues",
path=u'/amy-winehouse-songs/jazz-n-blues-lyrics.html'),
dict(definfo,
url=u'http://lyrics.wikia.com/',
path=u'The_Beatles:Lady_Madonna'),
dict(definfo,
url='http://www.metrolyrics.com/',
path='lady-madonna-lyrics-beatles.html'),
dict(definfo,
url=u'http://www.paroles.net/',
artist=u'Lilly Wood & the prick', title=u"Hey it's ok",
path=u'lilly-wood-the-prick/paroles-hey-it-s-ok'),
dict(definfo,
url=u'http://www.reggaelyrics.info',
artist=u'Beres Hammond', title=u'I could beat myself',
path=u'/beres-hammond/i-could-beat-myself'),
dict(definfo,
url='http://www.releaselyrics.com',
path=u'/e35f/the-beatles-lady-madonna'),
dict(definfo,
url=u'http://www.smartlyrics.com',
path=u'/Song18148-The-Beatles-Lady-Madonna-lyrics.aspx'),
dict(definfo,
url='http://www.songlyrics.com',
path=u'/the-beatles/lady-madonna-lyrics'),
dict(definfo,
url=u'http://www.stlyrics.com',
path=u'/songs/r/richiehavens48961/ladymadonna2069109.html'),
dict(definfo,
url=u'http://www.sweetslyrics.com',
path=u'/761696.The%20Beatles%20-%20Lady%20Madonna.html'),
]
# Websites that can't be scraped yet.
# The reason why the scraping fail is indicated before each source dict.
sourcesFail = [
# Lyrics consist in multiple small <p> sections instead of a long one
#dict(definfo, artist=u'Lilly Wood & the prick', title=u"Hey it's ok",
# url=u'http://www.lacoccinelle.net',
# path=u'/paroles-officielles/550512.html'),
]
def setUp(self):
"""Set up configuration"""
lyrics.LyricsPlugin()
@ -134,23 +155,11 @@ class LyricsSourcesPluginTest(unittest.TestCase):
def test_sources_ok(self):
for s in self.sourcesOk:
url = s['url'] + s['path']
log.info('Trying to scrape lyrics from {0}'.format(url))
res = lyrics.scrape_lyrics_from_html(lyrics.fetch_url(url))
self.assertTrue(lyrics.is_lyrics(res), url)
self.assertTrue(is_lyrics_content_ok(s['title'], res), url)
def test_sources_fail(self):
for s in self.sourcesFail:
url = s['url'] + s['path']
html = lyrics.fetch_url(url)
res = lyrics.scrape_lyrics_from_html(html)
if lyrics.is_lyrics(res):
if is_lyrics_content_ok(s['title'], res):
log.info(u'{0} can be added to sources :\n{1}'
.format(s['url'], res))
else:
log.info(u'{0} return invalid lyrics:\n{1}'.
format(s['url'], res))
def test_is_page_candidate(self):
for s in self.sourcesOk:
url = unicode(s['url'] + s['path'])

View file

@ -267,6 +267,10 @@
<div id="related_artists">
<div id="ratitle">Latest Beatles Lyrics</div>
<a href="http://www.elyricsworld.com/let's_twist_again_lyrics_beatles.html">Let's Twist Again Lyrics</a>
<a href="http://www.elyricsworld.com/little_child_(mono)_lyrics_beatles.html">Little Child (mono) Lyrics</a>
<a href="http://www.elyricsworld.com/be-bop-a-lula_(live)_lyrics_beatles.html">BE-BOP-A-LULA (Live) Lyrics</a>
<a href="http://www.elyricsworld.com/reminiscing_(live)_lyrics_beatles.html">REMINISCING (Live) Lyrics</a>
@ -282,10 +286,6 @@
<a href="http://www.elyricsworld.com/while_my_guitar_genly_weeps_lyrics_beatles.html">While My Guitar Genly Weeps Lyrics</a>
<a href="http://www.elyricsworld.com/strawberry_field_forever_(emi-remix_15.12.66)_lyrics_beatles.html">Strawberry Field Forever (Emi-remix 15.12.66) Lyrics</a>
<a href="http://www.elyricsworld.com/step_inside_love_lyrics_beatles.html">Step Inside Love Lyrics</a>
<a href="http://www.elyricsworld.com/it_came_upon_midnight_clear_(babys_in_black)_lyrics_beatles.html">It Came Upon Midnight Clear (Babys In Black) Lyrics</a>
</div>
</div>
<div id="pright">
@ -440,7 +440,6 @@ click: function(score, evt) {
</div>
<div id="panel_in" style="padding-left:9px;">
<object width="279" height="193"><param name="movie" value="http://www.youtube.com/v/VfthrizXKOM&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/VfthrizXKOM&amp;hl=en_US&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="280" height="193"></embed></object>
<div style="width:300px; margin-top:5px;">Embed Video <input onclick="select();" value="&lt;div style=&quot;text-align:center;width:302px;height:220px;&quot;&gt;&lt;object width=&quot;300&quot; height=&quot;193&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/VfthrizXKOM&amp;amp;hl=en_US&amp;amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/VfthrizXKOM&amp;amp;hl=en_US&amp;amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;300&quot; height=&quot;193&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br&gt;&lt;a href=&quot;http://www.elyricsworld.com/lady_madonna_lyrics_beatles.html&quot;&gt;Lady Madonna Lyrics&lt;/a&gt; at elw&lt;/div&gt;" style="width: 276px;" readonly="readonly" type="text"></div>
</div>
</div>
<div id="artist_panel_l" style="margin-top:20px; margin-bottom:10px;">
@ -450,14 +449,6 @@ click: function(score, evt) {
</div>
<div id="panel_in" style="padding-left:9px;">
<embed src='http://widget.elyricsworld.com/scroller.swf?lid=154160&speed=4' width='280' height='160' type='application/x-shockwave-flash'/></embed></object>
<div style="width:300px; margin-top:5px;">Embed Widget <input onclick="select();" value="&lt;div style='font-size:10px; font-family: Verdana, Tahoma, Sans-serif; line-height:10px; width:300px;'&gt;
&lt;object width='300' height='175'&gt;
&lt;embed src='http://widget.elyricsworld.com/scroller.swf?lid=154160&amp;speed=4'
width='300' height='175' type='application/x-shockwave-flash'/&gt;&lt;/embed&gt;
&lt;/object&gt;
&lt;br /&gt;&lt;center&gt;&lt;a href='http://www.elyricsworld.com/lady_madonna_lyrics_beatles.html' target='_blank'&gt;Lady Madonna&lt;/a&gt;
found at &lt;a href='http://www.elyricsworld.com' target='_blank'&gt;elyricsworld.com&lt;/a&gt;&lt;/center&gt;
&lt;/div&gt;" style="width: 276px;" readonly="readonly" type="text"></div>
</div>
</div>
<div id="banner_rr2">
@ -532,4 +523,4 @@ found at &lt;a href='http://www.elyricsworld.com' target='_blank'&gt;elyricsworl
</noscript>
<!-- End comScore Tag -->
</body>
</html>
</html>

View file

@ -1,522 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Paroles de Lilly Wood The Prick : Hey It's Ok - paroles de chanson</title>
<meta name="description" content="Lilly Wood The Prick : Hey It's Ok paroles de la chanson "/>
<link href="/s.css?1380773110" rel="stylesheet" type="text/css" title="default"/>
<script type="text/javascript" src="/g.js?1380773110"></script>
<script type="text/javascript"><!--
dwService.reload = false;
dwService.setTargetings({"pagId":"2508","pagType":"content","layId":"551","directories":["\/paroles-officielles\/","\/"],"conId":"550512","appId":"5873"});
initGA(['UA-4587199-1', 'UA-26394066-3']);
initWAI('dugwood', 474759, 474760);//-->
</script>
<link rel="icon" type="image/gif" href="/favicon.gif?1380773110"/>
<script type="text/javascript"><!--
var cocci_sas_target = 'noft';
if (document.location.pathname === '/index.html')
{
cocci_sas_target = 'home';
}
var disableExpand = {2013918: 'sfr-red-tstm', 2013921: 'sfr-red-nuitsfr'},
date = new Date(),
cocci_sas_sfr = '';
if (disableExpand['' + date.getFullYear() + (date.getMonth() + 1) + date.getDate()] || document.location.hash.indexOf('#sfr-red-') === 0)
{
cocci_sas_sfr = disableExpand['' + date.getFullYear() + (date.getMonth() + 1) + date.getDate()] || document.location.hash.substring(1);
}//-->
</script>
</head>
<body id="layout551" class="dom1 contentPage cdirParolesOfficielles app5873 status3">
<div id="contener">
<div id="header-background">
<div id="header">
<div id="header-content">
<div class="header"></div>
<!--Ht@7076--><div class="headerLogo"><a href="/index.html"><img src="/logo-2013.png?1380773110" width="200" height="64" alt="Accueil paroles de chansons"/></a>
</div><!--/Ht@7076--><!--LoBo@4755--><div class="zoneLogin"><div id="loginBoxLogged" style="display:none" class="loginBox">
<div class="pseudo" style="float:left">
<a href="#" title="Mon compte" onclick="dwUser.go('account');return false;" id="loginBox_pseudo_">&nbsp;</a><script type="text/javascript"><!--
dwUser.displayIfLogged('loginBox_pseudo_');//-->
</script>
</div>
<div class="mypage" style="float:left">
<a href="#" title="Ma page personnelle" onclick="dwUser.go('user');return false;" class="button">&nbsp;</a>
</div>
<div class="admin" style="float:left">
<a href="#" title="Mes contenus" class="button" onclick="dwUser.go(); return false;">&nbsp;</a>
</div>
<div class="addcontent" style="float:left">
<a href="#" onclick="dwUser.go('content');return false;" title="Ajouter un contenu" class="button">&nbsp;</a>
</div>
<div class="editcontent" style="float:left">
<a href="#" title="Éditer ce contenu" class="button" style="display:none" id="loginBox_editcontent_">&nbsp;</a>
<script type="text/javascript"><!--
var m = document.location.href.match(/\/(\d+)\.html/);
if (m && m[1] && document.location.href.indexOf('/m/') === -1)
{
dwElement.setDisplayStyle('loginBox_editcontent_', true);
dwElement.get('loginBox_editcontent_').onclick = function ()
{
dwUser.go('content', m[1]);return false;
}
} //-->
</script>
</div>
<div class="messages" style="float:left">
<a href="#" onclick="dwUser.go('message');return false;" title="Mes messages" class="button"><span id="loginBox_msg_" class="number">&nbsp;</span></a><script type="text/javascript"><!--
dwUser.displayIfLogged('loginBox_msg_');//-->
</script>
</div>
<div class="notifications" style="float:left">
<a href="#" onclick="dwUser.go('notifications');return false;" title="Notifications" class="button"><span id="loginBox_notif_" class="number">&nbsp;</span></a><script type="text/javascript"><!--
dwUser.displayIfLogged('loginBox_notif_');//-->
</script>
</div>
<div class="friends" style="float:left">
<a href="#" onclick="dwUser.go('friends');return false;" title="Amis" class="button"><span id="loginBox_fr_" class="number">&nbsp;</span></a><script type="text/javascript"><!--
dwUser.displayIfLogged('loginBox_fr_');//-->
</script>
</div>
<div class="favorites" style="float:left">
<a href="#" onclick="dwLightBox.cache = true; dwLightBox.open('Mes contenus favoris', dwService.getUrl('s', 'contents.favorites'), 'ajax');return false;" title="Contenus favoris" class="button">&nbsp;</a>
</div>
<div class="logout" style="float:left">
<a href="#" title="Déconnexion" onclick="dwUser.logout(); return false;" class="button">&nbsp;</a>
</div>
<div class="clr-zone" style="clear:left">&nbsp;</div>
</div>
<div id="loginBoxNotLogged" class="loginBox">
<a href="#" title="Connexion" onclick="dwUser.login();return false;">Connexion</a> - <a href="#" title="Inscription" onclick="dwService.open('register', 'Inscription');return false;">Inscription</a>
</div>
<script type="text/javascript"><!--
dwUser.displayIfLogged('loginBoxLogged','loginBoxNotLogged'); //-->
</script></div><!--/LoBo@4755--><!--Ht@7075--><div class="headerMenu"><table cellpadding="0" cellspacing="0">
<tr>
<td><a href="/index.html">CHANSONS</a></td>
<td><a href="/artistes/index.html">ARTISTES</a></td>
<td><a href="/albums/index.html">ALBUMS</a></td>
<td><a href="/paroles-officielles/index.html">PAROLES OFFICIELLES</a></td>
</tr>
</table>
</div><!--/Ht@7075--><!--Ht@7077--><div class="headerTitle"><img src="/home-title.png?1380773110" width="693" height="110" alt="Paroles de chansons, traductions, explications"/>
</div><!--/Ht@7077--><!--SeFo@7074--><div class="headerSearch">
<form action="/s.html" method="post" id="searchForm-7074" onsubmit="return dwSearch.send(this.id);">
<p><span class="searchForm"><input type="text" name="q" id="searchForm-7074-q" size="15" alt="Rechercher une chanson, un artiste..." value="Rechercher une chanson, un artiste..." onfocus="if(typeof(dwSearch.d['searchForm-7074']) === 'undefined' || dwSearch.d['searchForm-7074'] === this.value) this.value = ''"/><a href="#" onclick="if (dwSearch.send('searchForm-7074') === true) dwElement.get('searchForm-7074').submit(); return false;"><img id="searchForm-7074-default" src="/spacer.gif?1380773110" alt="Rechercher une chanson, un artiste..."/></a></span><input type="submit" style="display:none"/><!-- affiché uniquement pour qu'en tapant sur entrée dans un champ ça POST le formulaire --></p>
<p id="searchForm-7074-message" style="display: none">&nbsp;</p>
</form>
<script type="text/javascript"><!--
dwAjax.setMessages('searchForm-7074', {1:'Veuillez entrer au moins un mot-clé de recherche'});
dwSearch.restore('searchForm-7074');//-->
</script></div><!--/SeFo@7074--><!--Ht@4808--><div class="pub728"><script type="text/javascript"><!--
SmartAdServerAjax('2301/16363',438,cocci_sas_target,'ww62.smartadserver.com');//-->
</script>
</div><!--/Ht@4808-->
<div class="footer"></div>
</div>
</div>
</div>
<div id="body-background">
<div id="body-header"></div>
<div id="body">
<div id="body-content">
<div id="zone1"><div class="header"></div><div id="subzone1"><!--PaFi@6710--><div class="breadcrumb">
<div id="breadcrumb" class="dwBreadcrumb"><a href="/index.html" title="Accueil">Accueil</a> &gt; <a href="/paroles-officielles/index.html" title="Paroles de chansons officielles">Paroles de chansons officielles</a> &gt; <a href="/paroles-officielles/830989.html" title="Lilly Wood The Prick">Lilly Wood The Prick</a> </div></div><!--/PaFi@6710--><!--CoSo@5873--><div><div id="content550512" class="content contentSong item">
<div class="title"><div class="inner"><h1 class="fn">Hey It's Ok - Lilly Wood The Prick</h1>
</div></div>
<div class="itunes" style="clear:right;float:right"><div class="inner"><a href="#" onclick="dwDocument.openWindow('http://clk.tradedoubler.com/click?p=23753&amp;a=1284621&amp;url=http%3A%2F%2Fphobos.apple.com%2FWebObjects%2FMZSearch.woa%2Fwa%2Fsearch%3Fterm=lilly%20wood%20the%20prick%20hey%20it%20s%20ok%26partnerId%3D2003'); return false;" title="Acheter l'album ou les MP3 sur iTunes"><img src="/itunes.png?1380773110" alt="Acheter l'album ou les MP3 sur iTunes"/></a></div></div>
<div class="amazon" style="float:right"><div class="inner">
<a href="#" onclick="dwDocument.openWindow('http://www.amazon.fr/gp/search?ie=UTF8&amp;index=mp3-downloads&amp;keywords=lilly%20wood%20the%20prick%20hey%20it%20s%20ok&amp;tag=lacoccindunet-21'); return false;" title="Acheter l'album ou les MP3 sur Amazon"><img src="/amazon.png?1380773110" alt="Acheter l'album ou les MP3 sur Amazon"/></a></div></div>
<div class="fnac" style="float:right"><div class="inner">
<a href="#" onclick="dwDocument.openWindow('http://ad.zanox.com/ppc/?8735413C1813773704T&amp;ULP=[[recherche.fnac.com%2FSearch%2FSearchResult.aspx%3FSCat=3%211&amp;Search=lilly%20wood%20the%20prick]]'); return false;" title="Acheter l'album ou les MP3 sur Fnac"><img src="/fnac.png?1380773110" alt="Acheter l'album ou les MP3 sur Fnac"/></a>
</div></div>
<div class="album" style="clear:right;"><div class="inner empty"><strong>Albums :</strong>
</div></div>
<div class="persons"><div class="inner">
<strong>Chanteurs :</strong>
<a href="/paroles-officielles/830989.html">Lilly Wood The Prick</a><br/>
<strong>Compositeurs :</strong>
<a href="/paroles-officielles/830987.html">Benjamin Cotto</a>, <a href="/paroles-officielles/830967.html">Nili Ben Meir</a><br/>
<strong>Auteurs :</strong>
<a href="/paroles-officielles/830987.html">Benjamin Cotto</a>, <a href="/paroles-officielles/830967.html">Nili Ben Meir</a><br/>
<strong>Arrangeurs :</strong>
<a href="/paroles-officielles/830934.html">Pierre Guimard</a><br/>
<strong>Éditeurs :</strong>
<a href="/paroles-officielles/545774.html">Choke Industry</a>, <a href="/paroles-officielles/545654.html">Warner Chappell Music France</a><br/>
</div></div>
<div class="tonefuse"><div class="inner"><a href="#" onclick="dwDocument.openWindow('http://www.ringtonematcher.com/co/ringtonematcher/02/noc.php?sid=LCCLros&amp;artist=lilly+wood+the+prick&amp;song=hey+it+s+ok'); return false"><img src="/tonefuseLeft.png?1380773110" alt=""/> <span>Télécharge la sonnerie de "Hey It's Ok" pour ton mobile</span></a></div></div>
<div class="jukebo"><div class="inner"><table width="100%">
<tr>
<td><span>Voir tous les clips</span> <a href="#" title="jukebo" onclick="window.open('http://www.jukebo.fr/lilly-wood-and-the-prick', 'jukebo'); return false;">Lilly Wood And The Prick</a></td>
<td>
<div id="disableJukebo" style="display:none"><a href="#" onclick="dwUtils.createCookie('dwJukebo', '1', 30, '/'); dwElement.setValue('disableJukebo', 'Désactivation effectuée pour les 30 prochains jours'); return false;">Désactiver la lecture automatique des vidéos</a></div>
</td>
</tr>
</table>
<script type="text/javascript"><!--
var ULTIMEDIA_zone = '1', c = dwUtils.readCookie('dwJukebo');
// S'il y a le cookie sans autoplay, on utilise la zone 3
if (c && c === '1') {
ULTIMEDIA_zone = '3';
}
if (ULTIMEDIA_zone === '1') {
dwElement.setDisplayStyle('disableJukebo');
}
//-->
</script>
<script type='text/javascript'><!--
var ULTIMEDIA_include = '<scr' + 'ipt type="text/javascript" src="http://www.ultimedia.com/deliver/musique/js/mdtk/01497444/article/qksfuz/zone/' + ULTIMEDIA_zone + '/"></scr' + 'ipt>';document.write(ULTIMEDIA_include);
//--></script>
</div></div>
<div class="text"><div class="inner"><h3>Paroles de la chanson &quot;Hey It's Ok&quot;</h3>
<p>Mama, Papa please forget the times I wet my bed<br/>I swear not to do it again<br/>Please forget the way I looked when I was fourteen<br/>I didnt know who I wanted to be<br class="clear" style="clear:both;"/></p><p>Hey ! Its OK, its OK<br/>Cause Ive found what I wanted<br/>I said hey ! Its OK, its OK<br/>Cause Ive found what I wanted<br class="clear" style="clear:both;"/></p><p>Friends and lovers please forgive the mean things Ive said<br/>I swear not to do it again<br/>Please forget the way I act when Ive had too much to drink<br/>Im fighting against myself<br class="clear" style="clear:both;"/></p><p>Hey ! Its OK, its OK<br/>Cause Ive found what I wanted<br/>I said hey ! Its OK, its OK<br/>Cause Ive found what I wanted<br class="clear" style="clear:both;"/></p><p>And I swear not to do anything funny anymore<br/>Yes I swear not to do anything funny anymore<br class="clear" style="clear:both;"/></p><p>Hey ! Its OK, its OK<br/>Cause Ive found what I wanted<br/>I said hey ! Its OK, its OK<br/>Cause Ive found what I wanted<br class="clear" style="clear:both;"/></p><p>Hey ! Its OK, its OK<br/>Cause Ive found what I wanted<br/>I said hey ! Its OK, its OK<br/>Cause Ive found what I wanted</p>
<div style="clear:both;" class="clr-zone">&nbsp;</div>
</div></div>
<div class="tonefuse"><div class="inner"><a href="#" onclick="dwDocument.openWindow('http://www.ringtonematcher.com/co/ringtonematcher/02/noc.php?sid=LCCLros&amp;artist=lilly+wood+the+prick&amp;song=hey+it+s+ok'); return false"><img src="/tonefuseLeft.png?1380773110" alt=""/> <span>Télécharge la sonnerie de "Hey It's Ok" pour ton mobile</span></a></div></div>
</div></div><!--/CoSo@5873--><!--AdDFP@6768--><div class="pub300"><script type="text/javascript"><!--
dwService.dfpFillSlot("6768-300x250",300,250); //-->
</script><!-- dfp@0 --></div><!--/AdDFP@6768--></div><div class="footer"></div></div>
<div id="clr-z1" class="clr-zone">&nbsp;</div>
<div id="zone2"><div class="header"></div><div id="subzone2"><!--Ht@4807--><div class="pub300"><script type="text/javascript"><!--
SmartAdServerAjax('2301/16363',439,cocci_sas_target,'ww62.smartadserver.com');//-->
</script>
</div><!--/Ht@4807--><!--Ht@4840--><div class="box facebox"><h4>Facebook / Soirées</h4>
<div id="facebookIframe"></div><div id="soonnightIframe"></div>
<script type="text/javascript"><!--
dwElement.addEvent(null, 'load', function()
{
dwElement.setValue('facebookIframe', '<i' + 'frame src="http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Flacoccinelle.net&amp;width=288&amp;colorscheme=light&amp;show_faces=false&amp;stream=false&amp;header=false&amp;height=70" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:288px; height:70px;" allowTransparency="true"></i' + 'frame>');
// SoonNight
dwElement.setValue('soonnightIframe', '<i' + 'frame src="http://www.soonnight.com/agenda/agenda,1039.html?r=1&amp;url_page=http://www.soonnight.com&amp;color=white&amp;go_soonnight=1" width="268" height="142" scrolling="no" frameborder="0"></ifr' + 'ame>');
}); //-->
</script>
</div><!--/Ht@4840--></div><div class="footer"></div></div>
<div id="clr-z2" class="clr-zone">&nbsp;</div>
</div>
</div>
<div id="body-footer"></div>
</div>
<div id="footer-background">
<div id="footer">
<div id="footer-content">
<div class="header"></div>
<!--Ht@4820--><div class="boxFooter">
<div id="htmlNotLogged-4820"><div class="titleFooter">À PROPOS</div>
<p>Depuis 2001, La Coccinelle propose et construit une communauté musicale.</p>
<br/><br/>
<p>Le site s'est développé autour d'une idée simple : comprendre les paroles des chansons françaises et internationales, qui souvent regorgent de nombreux secrets.</p>
<br/><br/>
<div class="starFooter"><a href="#" onclick="dwUser.login(); return false">Devenir membre de la communauté</a></div></div>
<div id="htmlLogged-4820"><div class="titleFooter">À PROPOS</div>
<p>Depuis 2001, La Coccinelle propose et construit une communauté musicale.</p>
<br/><br/>
<p>Le site s'est développé autour d'une idée simple : comprendre les paroles des chansons françaises et internationales, qui souvent regorgent de nombreux secrets.</p>
<br/><br/></div>
<script type="text/javascript"><!--
dwUser.displayIfLogged('htmlLogged-4820','htmlNotLogged-4820'); //-->
</script>
</div><!--/Ht@4820--><!--Ht@4821--><div class="boxFooter">
<div id="htmlNotLogged-4821"><div class="titleFooter">TOP RUBRIQUES</div>
<ul>
<li><a href="/top/index.html">Top 50 chansons</a></li>
<li><a href="/dc/index.html">Derniers ajouts</a></li>
<li><a href="/liens/index.html">Partenaires</a></li>
<li><a href="/faq/index.html">Foire aux questions</a></li>
<li><a href="http://www.annonces.com" title="petite annonce">Annonce</a></li>
</ul>
<ul>
<li><a href="/actus/index.html">Actualités</a></li>
<li><a href="/index.html">Paroles de chansons</a></li>
<li><a href="#" onclick="dwUser.login(); return false;">Inscription</a></li>
</ul>
</div>
<div id="htmlLogged-4821"><div class="titleFooter">TOP RUBRIQUES</div>
<ul>
<li><a href="/top/index.html">Top 50 chansons</a></li>
<li><a href="/dc/index.html">Derniers ajouts</a></li>
<li><a href="/liens/index.html">Partenaires</a></li>
<li><a href="/faq/index.html">Foire aux questions</a></li>
<li><a href="http://www.annonces.com" title="petite annonce">Annonce</a></li>
</ul>
<ul>
<li><a href="/actus/index.html">Actualités</a></li>
<li><a href="/index.html">Paroles de chansons</a></li>
<li><a href="#" onclick="dwUser.go('account'); return false;">Mon compte</a></li>
</ul></div>
<script type="text/javascript"><!--
dwUser.displayIfLogged('htmlLogged-4821','htmlNotLogged-4821'); //-->
</script>
</div><!--/Ht@4821--><!--Ht@4822--><div class="boxFooter linkCocci"><div class="titleFooter">SUIVEZ LA COCCINELLE</div>
<div class="icoFollow"><a href="/actus/rss.xml">Les actus via RSS</a></div>
<div class="icoFollow twitterF"><a href="http://twitter.com/lacoccinellenet" onclick="dwDocument.openWindow(this.href, 'twitter');return false">Suivez-nous sur Twitter</a></div>
<div class="icoFollow facebookF"><a href="http://www.facebook.com/pages/La-Coccinelle-du-Net/140698937843" onclick="dwDocument.openWindow(this.href, 'facebook');return false">Rejoignez-nous sur facebook</a></div>
</div><!--/Ht@4822--><!--Ht@4816--><div class="copyright">&copy;2001-2014 LaCoccinelle.net
<script type="text/javascript"><!--
/* GestionPub Habillage temporaire */
if (cocci_sas_target !== 'curly' && !cocci_sas_sfr)
{
document.write('<sc' + 'ript type="text/javascript" src="http://a01.gestionpub.com/GP2a52c58652a78c759"></scr' + 'ipt>');
document.write('<sc' + 'ript type="text/javascript" src="http://a01.gestionpub.com/GP4221c74529ce2c"></scr' + 'ipt>');
}
dwElement.addEvent(null, 'load', function()
{
var s = document.createElement('script'),
node = document.getElementsByTagName('script')[0],
online = new Image(), members = new Image(), xiti = new Image();
/* GestionPub Footer Expand DESACTIVE * /
if (cocci_sas_target !== 'curly')
{
s.async = true;
s.type = 'text/javascript';
s.src = 'http://a01.gestionpub.com/GP2a72c88df2355ac48'; // Footer Expand
node.parentNode.insertBefore(s, node);
}
/* Connectés */
online.src = 'http://coccinelledunet.free.fr/online.png.php?host=lc';
if (dwUser.isLogged === true)
{
members.src = 'http://coccinelledunet.free.fr/online.png.php?host=lcm';
}
Xt_param = 's=175975&p=';
try {Xt_r = top.document.referrer;}
catch(e) {Xt_r = document.referrer; }
Xt_h = new Date();
Xt_i = 'http://logv26.xiti.com/hit.xiti?'+Xt_param;
Xt_i += '&hl='+Xt_h.getHours()+'x'+Xt_h.getMinutes()+'x'+Xt_h.getSeconds();
if(parseFloat(navigator.appVersion)>=4) {Xt_s=screen;Xt_i+='&r='+Xt_s.width+'x'+Xt_s.height+'x'+Xt_s.pixelDepth+'x'+Xt_s.colorDepth;}
xiti.src = Xt_i+'&ref='+Xt_r.replace(/[<>"]/g, '').replace(/&/g, '$');
});//-->
</script>
</div><!--/Ht@4816--><!--Ht@4817--><div class="menuFooter"><a href="/index.html">Accueil</a> <!--<a href="">A propos de la coccinelle</a>--> <a href="#" onclick="dwService.open('tou');return false">CGU</a> <a href="/s/index.html">Contact</a>
</div><!--/Ht@4817--><!--Ht@7031--><div class=""><script type="text/javascript"><!--
if (cocci_sas_sfr && cocci_sas_sfr === 'sfr-red-nuitsfr')
{
var sfrRed = {click:'http://ww62.smartadserver.com/call/cliccommand/8932016/[timestamp]?', image:'nuitsfr2', pixels:[]};
}
if (cocci_sas_sfr && cocci_sas_sfr.indexOf('sfr-red-') === 0)
{
dwElement.addEvent(null, 'load', function ()
{
if (document.location.href.indexOf('index.html') !== -1)
{
dwElement.get('sas_438').id = 'sas_438_disabled';
dwElement.get('sas_438_disabled').style.display = 'none';
}
for (var i in sfrRed.pixels)
{
var img = document.createElement('img');
img.src = sfrRed.pixels[i];
dwElement.get('footer-content').appendChild(img);
}
dwElement.get('contener').style.background = 'url(/pub-sfr-' + sfrRed.image + '.jpg) top center no-repeat';
dwElement.get('header').style.paddingTop = '200px';
document.body.style.background = '#000';
document.body.style.cursor = 'pointer';
dwElement.get('header-content').style.cursor = 'default';
dwElement.get('footer-content').style.cursor = 'default';
dwElement.get('body-content').style.cursor = 'default';
dwElement.get('footer-content').style.background = '#000';
dwElement.get('footer-background').style.background = 'none';
dwElement.addEvent(document.body, 'click', function(event)
{
if (event.target && event.target.id)
{
if (event.target.id === 'header' || event.target.id === 'footer' || event.target.id === 'body' || event.target.id === 'header-background' || event.target.id === 'footer-background' || event.target.id === 'body-background')
{
dwDocument.openWindow(sfrRed.click);
}
}
});
});
}
//-->
</script>
</div><!--/Ht@7031-->
<div class="footer"></div>
</div>
</div>
</div>
</div>
</body>
</html>

View file

@ -31,7 +31,7 @@ Friday night arrives without a suitc.." />
<script type="text/javascript" src="/js/mini/header.js?combined=prototype,overlay,common,lyrics,users,scriptaculous"></script>
<script type="text/javascript" src="/js/mini/header.20140417.js?combined=prototype,overlay,common,lyrics,users,scriptaculous"></script>
<script type="text/javascript" src="/js/jquery.min.js"></script>
<script type="text/javascript">var $j = jQuery.noConflict();</script>
@ -50,71 +50,20 @@ Friday night arrives without a suitc.." />
<script src="/js/ie6.js" type="text/javascript"></script>
<script src="/js/pngfix.js" type="text/javascript"></script>
<![endif]-->
<!-- artists lyric --><!-- SHOULD SHOW LYRICS (T 232880) --><!-- CANNOT FIND RELATED LYRICS --> <!-- LYRICS FIND -->
<!-- artists lyric --> <!-- LYRICS FIND -->
<!-- ### Put all this in the head of your page ### -->
<style type="text/css" media="screen">
.PRINTONLY {display:none;visibility:hidden;}
</style>
<style type="text/css" media="print">
.SCREENONLY {display:none;visibility:hidden;}
</style>
<script language="JavaScript1.2">
var selectdisabled = true;
var omitformtags= new Array();
omitformtags[0] = "input";
omitformtags[1] = "select";
omitformtags[2] = "textarea";
omitformtags[3] = "radio";
omitformtags[4] = "checkbox";
function disableselect(e) {
var formObj = false;
for (var i = 0; i < omitformtags.length; i++){
if (e.target.tagName.toLowerCase() == omitformtags[i]){
formObj = true;
}
}
if (!formObj){
return false;
}
}
function reEnable(){
return true;
}
if (typeof document.onselectstart != "undefined"){
document.onselectstart = new Function ("return false");
}else{
document.onmousedown=disableselect;
document.onmouseup=reEnable;
}
</script>
<script language="javascript">
/* for Internet Explorer */
/*@cc_on @*/
/*@if (@_win32)
document.write("<script defer src=/js/ie_onload.js><"+"/script>");
/*@end @*/
</script>
<!-- ### END ### -->
<!-- END OF LYRICS FIND -->
<!-- END OF PRESENCE BAR CSS -->
<script src="http://adexcite.com/ads/video/controller.php?eid=15200"></script>
</head>
<body onLoad="; " id="bodytag" class="bodyContent userbg" oncontextmenu="return false;" onkeydown="if(event.ctrlKey){return false;}" >
<body id="bodytag" class="bodyContent userbg" >
<div id="overlay" class="hide">
<div class="close"><a href="javascript:void(0);" onClick="ol_close();">close</a></div>
<div id="overlay_content"></div>
@ -177,112 +126,101 @@ document.getElementById('googlecseinput'),
<div class="inner">
<div id="content">
<!--<div id="content">--><script type="text/javascript" src="/js/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.js"></script>
<script type="text/javascript" src="/js/mini/slimScroll.js"></script>
<script type="text/javascript" src="/js/mini/track_comments.js"></script>
<script type="text/javascript">
</script>
<!--<div id="content">--><script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.js"></script>
<script type="text/javascript" src="/js/mini/lyrics.js"></script>
<link href="/css/mini/profile-layout.css" rel="stylesheet" type="text/css" />
<link href="/css/mini/lyrics.css?20131003-2" rel="stylesheet" type="text/css" />
<link href="/css/mini/lyrics.20140428.css" rel="stylesheet" type="text/css" />
<style>
h1#profile_name, h1#profile_name * { font-size:16px; }
#songlist .row { border-bottom:1px solid #ccc; padding-bottom:5px; margin-bottom:5px; }
#songlist .row .left { clear:both; float:none; }
#songlist .row .left a { color:#555; }
#menu ul, #menu li { list-style-type:none; padding:0px; margin:0px; }
#menu ul li { display:block; }
#menu ul li a { padding:5px; border:1px solid #ccc; display:block; width:148px; color:#333; text-align:center; }
#menu ul li a:hover { color:#333; }
#leftcontent {
position: relative;
}
#leftcontent .btn_right {
width: auto !important;
}
.fblike_btn {
width: 130px;
}
#adbox { width: 444px; }
</style>
<div id="outer_profile">
<div id="pic_ads">
<a href="thebeatles"><img src='http://image01.lyrics.com/artists/pic200/drP900/P970/p97040d4dv8.jpg' width='160' border='1' alt='thebeatles' /></a>
<br />
<div id="menu">
<ul>
<li><span id="friend_artist_link_P 3644"><a href='javascript:void(0);' onclick="return alert('Please login first.');">Follow</a></span></li>
<li><a href="/artists/artist_fans/P 3644">Fans</a></li>
<li><a href="/artists/albums/P 3644">Albums</a></li>
<li><a href="/thebeatles">Lyrics</a></li>
</ul> </div>
<div id="google_ads_160x600">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-3044889097204573";
/* 160x600, created 9/9/08 */
google_ad_slot = "3524097094";
google_ad_width = 160;
google_ad_height = 600;
//-->
<script async src="http://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<ins class="adsbygoogle"
style="display:inline-block;width:160px;height:600px"
data-ad-client="ca-pub-3044889097204573"
data-ad-slot="3524097094"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
</div>
</div>
<div id="profile">
<div id="leftcontent">
<script type="text/javascript">
function toggleYouTube()
{
var youtube = '<iframe src="http://www.pages.com/youtube.php?T_ID=T 232880&width=420&height=236" width="420" height="236" frameborder="0"></iframe>';
$('adbox').innerHTML = youtube;
}
</script>
<div id="adbox">
<!--The Beatles - Lady Madonna-->
<div id="fake_youtube" class="image">
<div id="fake_image"><a href="#" onclick="return toggleYouTube();"><img src="http://img.youtube.com/vi/gNyHymEhZmg/0.jpg" width="420" height="236" /></a></div>
<div id="fake_play_btn"><a href="#" onclick="return toggleYouTube();"><img src="/images/play_overlay_white.png" /></a></div>
</div>
</div><br />
<table width="420" cellpadding="0" cellspacing="0" class="playlist-btn">
<tr>
<td width="396">
<a href='http://www.lyrics.com/login_redirect.php?u=%2Flady-madonna-lyrics-the-beatles.html' class='silver_btn_left' onclick="alert('Please login first to add this song into your playlist!');" title='Add to playlist'>Add to Playlist</a> </td>
<td width="24">
<a class="silver_btn_right" href="javascript:void(0);" onclick="flagVideo('T 232880');">&nbsp;</a>
</td>
</table>
<br />
<div class="leftbox">
<div class="title">
<div class="left">Suggestions</div>
<div class="right">&nbsp;</div>
<br style="clear:both" />
</div>
<div class="content">
<div class="row" id="album_list">
</div>
<script type="text/javascript">
getTopSongsMore('/home/similarsongs_left_start/T 232880/0');
<script type="text/javascript">
function toggleYouTube()
{
var youtube = '<iframe src="http://www.pages.com/youtube.php?T_ID=T 232880&width=444&height=250" width="444" height="250" frameborder="0"></iframe>';
$j('#adbox_temp').addClass('hide');
$('adbox_content').innerHTML = youtube;
$j('#adbox').removeClass('hide');
}
</script>
</div>
</div>
<div class='pw-widget pw-size-medium'>
<a class='pw-button-googleplus'></a>
<a class='pw-button-facebook'></a>
<a class='pw-button-twitter'></a>
<a class='pw-button-email'></a>
<a class='pw-button-post'></a>
</div>
<script src='http://i.po.st/static/script/post-widget.js#publisherKey=ahap795vm5td5n4ua63f' type='text/javascript'></script>
<div id="adbox_temp">
<script>
/* 300 x 250 Medium Rectangle / 300x600 Hybrid */
cf_page_artist = "The Beatles";
cf_page_song = "Lady Madonna";
cf_adunit_id = "39382430";
</script>
<script src="//srv.clickfuse.com/showads/showad.js"></script>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- ros300x250new -->
<ins class="adsbygoogle"
style="display:inline-block;width:300px;height:250px"
data-ad-client="ca-pub-3044889097204573"
data-ad-slot="7302685429"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div id="adbox" class="hide">
<div id="adbox_content">
</div>
<div class="btn_right">
<a href='javascript:void(0);' class="silver_btn_default refresh_video" title="Get New Video">
Get New Video
</a>
</div>
</div><br />
</div>
<div id="rightcontent">
<div class="profile_name_and_status">
<h1 id="profile_name">Lady Madonna<br /><span class="small">by <a href="/thebeatles">The Beatles</a></span></h1>
<div class="fblike_btn">
<iframe src="http://www.facebook.com/plugins/like.php?app_id=257638770934394&amp;href=http%3A%2F%2Fwww.lyrics.com%2F%2Flady-madonna-lyrics-the-beatles.html&amp;send=false&amp;layout=button_count&amp;width=90&amp;show_faces=true&amp;action=like&amp;colorscheme=light&amp;font&amp;height=21" scrolling="no" frameborder="0" allowTransparency="true"></iframe>
<a href='http://www.lyrics.com/login_redirect.php?u=%2Flady-madonna-lyrics-the-beatles.html' class='silver_btn_default' onclick="alert('Please login first to add this song into your playlist!');" title='Add to playlist'>Add to Playlist</a> <a href='javascript:void(0);' onclick="toggleYouTube();"><img src='http://www.lyrics.com/images/play.png' alt='play' align="absmiddle" /></a>
</div>
</div>
<div class="tabs_wrapper">
@ -293,8 +231,17 @@ document.getElementById('googlecseinput'),
<div id="lyric_tab_content" class="tab_content">
<div id="lyric_tab_content" class="tab_content" style="position:relative;">
<div style="position:absolute;top:0;right:0;z-index:10;">
<div class="pw-widget pw-vertical pw-size-medium">
<a class="pw-button-facebook"></a>
<a class="pw-button-twitter"></a>
<a class="pw-button-googleplus"></a>
<a class="pw-button-print"></a>
</div>
<script src="http://i.po.st/static/v3/post-widget.js#publisherKey=ahap795vm5td5n4ua63f&retina=true" type="text/javascript"></script>
</div>
<div class="artist_content">
@ -303,10 +250,22 @@ document.getElementById('googlecseinput'),
<div class="ringtone_area"><strong><img src="/images/phone__left.gif" border='0' />&nbsp;
<a href="http://www.ringtonematcher.com/go/?sid=PALYros&&artist=The+Beatles&song=Lady+Madonna" rel="nofollow" target="_blank">
Send "Lady Madonna" Ringtone to your Cell
</a>&nbsp;<img src="/images/phone__right.gif" border='0' /></strong></div> <!-- LYRIC REVISION FORM -->
<script>
/* Above Lyrics */
cf_page_artist = "The Beatles";
cf_page_song = "Lady Madonna";
cf_adunit_id = "39382166";
cf_hostname = "srv.tonefuse.com";
</script>
<div class="tonefuse"></div>
<!-- LYRIC REVISION FORM -->
<div id="revision_form" class="hide">
</div>
@ -341,17 +300,15 @@ See how they run<br />
<br />
Lady Madonna, children at your feet<br />
Wonder how you manage to make ends meet<br />---<br />Lyrics powered by <a href="http://www.lyricfind.com" target="_blank" rel="nofollow" style="color:#000; text-decoration:none; cursor:text">LyricFind</a><br />
written by LENNON, JOHN WINSTON / MCCARTNEY, PAUL JAMES<br />
written by LENNON, JOHN / MCCARTNEY, PAUL<br />
Lyrics © Sony/ATV Music Publishing LLC<!-- RESPONSE CODE: 101 ** 232880 --><!-- T_ID: T 232880 --> </div>
</div>
<!-- LYRIC REVISION -->
<div class="ringtone_area"><strong><img src="/images/phone__left.gif" border='0' />&nbsp;
<a href="http://www.ringtonematcher.com/go/?sid=PALYros&artist=The+Beatles&song=Lady+Madonna" rel="nofollow" target="_blank">
Send "Lady Madonna" Ringtone to your Cell
</a>&nbsp;<img src="/images/phone__right.gif" border='0' /></strong></div>
<div class="tonefuse_bottom"></div>
</div>
@ -386,7 +343,44 @@ Wonder how you manage to make ends meet<br />---<br />Lyrics powered by <a href=
<br style="clear:both;" />
</div>
</div><!-- #outer_profile -->
<div id="tonefuse_content" style="display:none;">
<script src="//srv.tonefuse.com/showads/showad.js"></script>
</div>
<div id="tonefuse_bottom_content" style="display:none;">
<script>
/* Below Lyrics */
(function() {
var opts = {
artist: "The Beatles",
song: "Lady Madonna",
adunit_id: 39382167,
div_id: "cf_async_" + Math.floor((Math.random() * 999999999)),
};
document.write('<div id="'+opts.div_id+'"></div>');var c=function(){cf.showAsyncAd(opts)};if(window.cf)c();else{cf_async=!0;var r=document.createElement("script"),s=document.getElementsByTagName("script")[0];r.async=!0;r.src="//srv.tonefuse.com/showads/showad.js";r.readyState?r.onreadystatechange=function(){if("loaded"==r.readyState||"complete"==r.readyState)r.onreadystatechange=null,c()}:r.onload=c;s.parentNode.insertBefore(r,s)};
})();
</script>
</div>
<script type="text/javascript">
function addToneFuseContent() {
var html = $j('#tonefuse_content').html();
if(html.search('/style') > -1) {
var content = $j("#tonefuse_content").clone().find("script,noscript").remove().end().html();
$j('.tonefuse').html(content);
} else {
setTimeout(200,addToneFuseContent);
}
}
addToneFuseContent();
function addToneFuseBottomContent() {
var html = $j('#tonefuse_bottom_content').html();
if(html.search('cf_async') > -1) {
var content = $j("#tonefuse_bottom_content").clone().find("script,noscript").remove().end().html();
$j('.tonefuse_bottom').html(content);
} else {
setTimeout(200,addToneFuseBottomContent);
}
}
addToneFuseBottomContent();
var lyricform = false;
function showRevisionForm()
{
@ -430,11 +424,25 @@ function add_lyric_comment()
}});
return false;
}
Event.observe(window,'load',function() {
});
var minTop = 65;
$j(document).ready(function() {
});
$j(window).scroll(function() {
var scrollTop = $j(window).scrollTop();
if(scrollTop <= minTop) {
$j('#adbox').css({ position: 'relative', top: '0px', width: '444px' });
} else {
$j('#adbox').css({ position: 'fixed', top: '10px', width: '444px' });
}
});
$j('.refresh_video').click(function(e) {
lyricPageFlagVideo('T 232880');
e.preventDefault();
</script>
<br class="clear" />
});
</script> <br class="clear" />
</div><!-- #content -->
</div><!-- #inner -->
@ -460,7 +468,7 @@ Event.observe(window,'load',function() {
<a href='/about/contact'>Contact Us</a> | <a href='/about/terms_of_use'>Terms of Use</a> | <a href='/about/privacy'>Privacy Policy</a> | <a href="/user/api/docs/">Developers</a>
</td>
<td style="text-align:right;">
&copy; 2008 Lyrics.com | All rights reserved. | 0.2153()<!-- --> </td>
&copy; 2008 Lyrics.com | All rights reserved. | 0.2034()<!-- --> </td>
</tr>
</table>
</div>
@ -501,8 +509,7 @@ Event.observe(window,'load',function() {
<img src="http://b.scorecardresearch.com/p?c1=2&c2=6035055&c3=&c4=&c5=&c6=&c15=&cj=1" />
</noscript>
<!-- End comScore Tag -->
</body>
</body>
</html>

View file

@ -1,812 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Lilly Wood & The Prick - Hey It's Ok Lyrics</title>
<link href="/files/aa2.css" type=text/css rel=stylesheet>
<meta name="description" content="Lilly Wood & The Prick Hey It's Ok Lyrics. Hey It's Ok lyrics performed by Lilly Wood & The Prick: Mama, Papa, please forget the times <br />
I wet my bed <br />
I swear not to do it again <br />
Please forgive the way I looked <br />
" />
<meta name="keywords" content="hey it's ok,lilly wood & the prick,lyrics,words,song" />
<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
<meta name="language" content="en" />
<meta property="og:title" content="Lilly Wood & The Prick - Hey It's Ok Lyrics"/>
<meta property="og:type" content="song"/>
<meta property="og:url" content="http://www.lyricsmania.com/hey_its_ok_lyrics_lilly_wood_and_the_prick.html"/>
<meta property="og:site_name" content="www.lyricsmania.com"/>
<meta property="og:description" content="Lilly Wood & The Prick Hey It's Ok Lyrics. Hey It's Ok lyrics performed by Lilly Wood & The Prick: Mama, Papa, please forget the times <br />
I wet my bed <br />
I swear not to do it again <br />
Please forgive the way I looked <br />
">
<meta property="og:language" content="en"/>
<meta property="fb:admins" content="100001599431689" />
<meta http-equiv="expires" content="0" />
<meta name="classification" content="Lilly Wood & The Prick lyrics" />
<link href="http://www.lyricsmania.com/xml/last100album.xml" rel="alternate" type="application/rss+xml" title="Last 100 Albums" />
<link href="http://www.lyricsmania.com/xml/last100artists.xml" rel="alternate" type="application/rss+xml" title="Last 100 Artists" />
<link href="http://www.lyricsmania.com/xml/last100lyrics.xml" rel="alternate" type="application/rss+xml" title="Last 150 Lyrics" />
<script type="text/javascript" src="/js/lm_js.js"></script>
<script type="text/javascript" src="http://partner.googleadservices.com/gampad/google_service.js">
</script>
<script type="text/javascript">
GS_googleAddAdSenseService("ca-pub-3687873374834629");
GS_googleEnableAllServices();
</script>
<script type="text/javascript">
GA_googleUseIframeRendering();
GA_googleAddAttr("j_title", "Hey It's Ok");
GA_googleAddAttr("j_artist", "Lilly Wood & The Prick");
</script>
<link rel="image_src" href="/files/toplogo4.jpg" />
<script language="javascript" type="text/javascript" src="/copy.js"></script>
<script type="text/javascript" src="https://apis.google.com/js/plusone.js">
{lang: 'en'}
</script>
<link rel="canonical" href="http://www.lyricsmania.com/hey_its_ok_lyrics_lilly_wood_and_the_prick.html">
<link rel="alternate" hreflang="it" href="http://www.testimania.com/" />
<link rel="alternate" hreflang="es" href="http://www.letrasmania.com/" />
<link rel="alternate" hreflang="fr" href="http://www.parolesmania.com/" />
<link rel="alternate" hreflang="de" href="http://www.songtextemania.com/" />
<script type="text/javascript">
window.___gcfg = {lang: 'en'};
(function()
{var po = document.createElement("script");
po.type = "text/javascript"; po.async = true;po.src = "https://apis.google.com/js/plusone.js";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(po, s);
})();</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-435431-1']);
_gaq.push(['_setDomainName', 'lyricsmania.com']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script>
cf_page_artist = "Lilly Wood & The Prick";
cf_page_song = "Hey It's Ok";
cf_page_genre = "";
cf_adunit_id = "39381134";
cf_flex = true;
</script>
<script src="//srv.clickfuse.com/showads/showad.php"></script>
<script type="text/javascript">
function toolbar(id_el,id_eldue) {
el = document.getElementById(id_el);
eldue = document.getElementById(id_eldue);
_display = (el.style.display);
if (_display == "none") {
eldue.style.bottom = "-60px";
eldue.style.display = "none";
el.style.display = "block";
setTimeout(function(){slide(el)},2);
}
else {
el.style.display = "none";
eldue.style.display = "block";
}
}
function slide(id_el) {
if(!id_el.id) {
el = document.getElementById(id_el);
}
_bottom = parseInt(el.style.bottom);
if (_bottom < '0') {
el.style.bottom = (_bottom+2)+"px";
setTimeout(function(){slide(id_el)},5);
}
}
</script>
<script type='text/javascript' language='javascript'>
var cw = 1003; // specify content width
var cp = 10; // specify the content padding if desired
try{
var s=document.createElement('script');
s.id='specific_rome_js';
s.type='text/javascript';
s.src='http://rome.specificclick.net/rome/rome.js?l=31116&t=j&cw='+cw+'&cp='+cp;
document.body.appendChild(s);
}catch(e){}
</script></head>
<body id=page_bg>
<h1>Hey It's Ok Lyrics</h1>
<div class=center align=center style="margin-bottom: 49px;">
<!-- Inizio Header -->
<div id=aa>
<div id=aa1><a href="/" title="lyrics"><img src="/blank.gif" alt="lyrics" border="0" height="95" width="242"></a></div>
<div id=aa2>
<script type="text/javascript"><!--
google_ad_client = "ca-pub-4710666039840396";
google_ad_slot = "4552504620/6029212500";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="//pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<div id=aa3></div>
</div>
<!-- Fine Header -->
<div class=clr></div>
<div id=sx>
<div id=dx>
<div id=tabs>
<div id=tabssx>
<div id=tabsdx>
<div id=tabber>
<ul>
<li class=blue><a href="http://www.lyricsmania.com/">Lyrics</a></li>
<li class=blue><a href="/soundtrackslyrics.html">Soundtrack Lyrics</a></li>
<li class=blue><a href="/topartists.html">Top 100 Artists</a></li>
<li class=blue><a href="/toplyrics.html">Top 100 Lyrics</a></li>
<li class=blue><a href="/last100artists.html">Last 100 artists</a></li>
<li class=blue><a href="/last100album.html">Last 100 albums</a></li>
<li class=blue><a href="/add.html">Submit Lyrics</a></li>
<li>
<form class="logina" action="http://my.lyricsmania.com/login.php?destpage=/hey_its_ok_lyrics_lilly_wood_and_the_prick.html">
<input class="formino" type="text" name="username" size="9" maxlength="18" value="Username" onFocus="if(this.value == 'Username') {this.value = '';}" onBlur="if (this.value == '') {this.value = 'Username';}" />
<input class="formino" type="password" name="password" size="9" maxlength="18" value="Password" onFocus="if(this.value == 'Password') {this.value = '';}" onBlur="if (this.value == '') {this.value = 'Password';}" />
<input class="loginb" type="submit" value="Login"> or
</form>
</li>
<li class=beige><a href="http://my.lyricsmania.com/signup.html">Signup</a> </li>
</ul>
</div>
</div>
</div>
</div>
<div class=clr></div>
<!-- Inizio Blocco Contenuti -->
<div id=topmodule></div>
<div id=whitebox>
<div id=whitebox_t>
<div id=whitebox_tl>
<div id=whitebox_tr></div></div></div>
<div id=whitebox_m>
<div id=area>
<div id=maincolumn2>
<div id=albums>
<table cellpadding="2" cellspacing="0" width="100%">
<tr>
<td align=center>
<table>
<tr>
<td>
<form action="/searchnew.php">
<input id="s" type="text" name="k" onclick="if (this.value == 'Find Artist and/or Lyrics') this.value=''" value="Find Artist and/or Lyrics" onblur="if(this.value == '') this.value='Find Artist and/or Lyrics'" value="" style="margin:0;padding-left:2px;color:#35456e;font-size:22px;text-weight:bold;width:380px;height:30px;border: 2px solid #35456e;">
</td>
<td>
<input type="image" src="/sbut.png" value="Search!">
</td>
</tr>
</table>
</form> </td>
</tr>
<tr>
<td noWrap align=center>
<font style="color:#1b57b1; font-size: 1.0em !important;">Browse :</font>
<a href="/lyrics/num.html">0-9</a>
<a href="/lyrics/A.html">A</a>
<a href="/lyrics/B.html">B</a>
<a href="/lyrics/C.html">C</a>
<a href="/lyrics/D.html">D</a>
<a href="/lyrics/E.html">E</a>
<a href="/lyrics/F.html">F</a>
<a href="/lyrics/G.html">G</a>
<a href="/lyrics/H.html">H</a>
<a href="/lyrics/I.html">I</a>
<a href="/lyrics/J.html">J</a>
<a href="/lyrics/K.html">K</a>
<a href="/lyrics/L.html">L</a>
<a href="/lyrics/M.html">M</a>
<a href="/lyrics/N.html">N</a>
<a href="/lyrics/O.html">O</a>
<a href="/lyrics/P.html">P</a>
<a href="/lyrics/Q.html">Q</a>
<a href="/lyrics/R.html">R</a>
<a href="/lyrics/S.html">S</a>
<a href="/lyrics/T.html">T</a>
<a href="/lyrics/U.html">U</a>
<a href="/lyrics/V.html">V</a>
<a href="/lyrics/W.html">W</a>
<a href="/lyrics/X.html">X</a>
<a href="/lyrics/Y.html">Y</a>
<a href="/lyrics/Z.html">Z</a>
<font style="color:#1b57b1; font-size: 1.0em !important;"> | </font> <a href="/all.html">ALL</a>
<br /><br />
</td>
</tr>
</table>
<div class=thinbox>
<div>
<div>
<div>
<table width="100%"><tr>
<td valign="top">
<h2>Hey It's Ok lyrics</h2>
<h3>Lilly Wood & The Prick</h3>
<br />
<a href="/correct.php?id=1069996"><img src="/files/correct.png" width=16 height=16 alt="Correct Hey It's Ok Lyrics" border=0> Correct these lyrics</a><br />
<a href="/print/1069996.html" rel="nofollow" onclick="javascript: pageTracker._trackPageview('/print-testo');"><img src="/files/print.png" width=16 height=16 alt="Print Hey It's Ok Lyrics" border=0> Print these lyrics</a>
<br />
<a href="#commentlyrics" rel="nofollow"><img src="/images/pencil2.png" width=16 height=16 alt="Comment Lyrics" border=0>Comment lyrics</a><br>
<a href="http://del.icio.us/post?url=http://www.lyricsmania.com/hey_its_ok_lyrics_lilly_wood_and_the_prick.html" rel="nofollow" target="_blank" title="Share this page on Del.icio.us"><img src="/images/deliciousoff.png" border="0"></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&bkmk=http://www.lyricsmania.com/hey_its_ok_lyrics_lilly_wood_and_the_prick.html&title=LYRICS" rel="nofollow" target="_blank" title="Share this page on Google Bookmarks"><img src="/images/googleoff.png" border="0"></a>
<a href="http://digg.com/submit?phase=2&url=http://www.lyricsmania.com/hey_its_ok_lyrics_lilly_wood_and_the_prick.html" rel="nofollow" target="_blank" title="Share this page on Digg"><img src="/images/diggoff.png" border="0"></a>
<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.lyricsmania.com/hey_its_ok_lyrics_lilly_wood_and_the_prick.html" rel="nofollow" target="_blank" title="Share this page on Myspace"><img src="/images/myspaceoff.png" border="0"></a>
</td>
<td width="180" valign="top">
<div class="radio">
<span class="charts">Rate this song:</span>
<form method="post" name="addme" action="http://my.lyricsmania.com/vote.html">
<input type="hidden" name="id_artista" value="57989">
<input type="hidden" name="id_testo" value="1069996">
<input type="radio" name="voto" value="1" onclick="this.form.submit()" />1
<input type="radio" name="voto" value="2" onclick="this.form.submit()" />2
<input type="radio" name="voto" value="3" onclick="this.form.submit()" />3
<input type="radio" name="voto" value="4" onclick="this.form.submit()" />4
<input type="radio" name="voto" value="5" onclick="this.form.submit()" />5
</form>
<div class="notes">
No votes yet, be the first!
<br/><br/>
<a href="http://my.lyricsmania.com/playlist/add/.html"><img src="/files/addfavorites.png" border="0"></a> <a href="http://my.lyricsmania.com/playlist/add/1069996.html">Add to my playlist</a>
</div>
</div>
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
<div class=clr></div>
<table width=100%><tr><td>
Artist: <b><a href="http://www.lyricsmania.com/lilly_wood_and_the_prick_lyrics.html" title="Lilly Wood & The Prick lyrics">Lilly Wood & The Prick lyrics</a></b><br>
Title: Hey It's Ok</td>
<td width=70>
<iframe src="http://www.facebook.com/plugins/like.php?href=http://www.lyricsmania.com/hey_its_ok_lyrics_lilly_wood_and_the_prick.html&amp;send=false&amp;layout=box_count&amp;width=100&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:85px; height:65px;" allowTransparency="true"></iframe>
</td>
<td width=70>
<a href="http://twitter.com/share" class="twitter-share-button" data-count="vertical" data-via="lyricsmaniacom">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
</td>
<td width=70>
<g:plusone size="tall" href="http://www.lyricsmania.com/hey_its_ok_lyrics_lilly_wood_and_the_prick.html"></g:plusone>
</td>
</tr></table>
<br>
<center>
<span style="font-size:14px;">
<a href="/redir.php?id=7&artist=Lilly Wood & The Prick&song=Hey It's Ok" target="_blank" onclick="javascript: pageTracker._trackPageview('/tonefuset1');"><img src="/images/phone_icon_red_small_trans.gif" border="0"></a>
<a href="/redir.php?id=7&artist=Lilly Wood & The Prick&song=Hey It's Ok" target="_blank" style="color: #cc0000; font-weight: bold; font-family: Arial; text-decoration: underline;" onclick="javascript: pageTracker._trackPageview('/tonefuset1');">Send "Hey It's Ok" to your Cell</a>
<a href="/redir.php?id=7&artist=Lilly Wood & The Prick&song=Hey It's Ok" target="_blank" onclick="javascript: pageTracker._trackPageview('/tonefuset1');"><img src="/images/phone_icon_red_small_trans2.gif" border="0"></a>
</span>
</center>
<br>
<div style="clear: both; overflow: hidden; text-align:center;">
<a href="http://www.musictory.com/music/Lilly+Wood+%5Band%5D+The+Prick/Hey+It%27s+Ok" target="_blank"><img src="/bottone3.png" style="vertical-align: bottom; margin-right:5px;"></a>
<a href="http://www.musictory.com/music/Lilly+Wood+%5Band%5D+The+Prick/Hey+It%27s+Ok" target="_blank">Watch "Hey It's Ok" video</a><a href="http://www.musictory.com/music/Lilly+Wood+%5Band%5D+The+Prick/Hey+It%27s+Ok" target="_blank"><img src="/bottone3.png" style="vertical-align: bottom; margin-left:5px;"></a>
</div>
<br>
<div class="other-lyrics">
<strong>Other Lilly Wood & The Prick Lyrics:</strong><br><br>
<a href="/down_the_drain_lyrics_lilly_wood_and_the_prick.html" onclick="javascript: pageTracker._trackPageview('/other-lyrics-alto');">Down the Drain lyrics</a>
<a href="/this_is_a_love_song_lyrics_lilly_wood_and_the_prick.html" onclick="javascript: pageTracker._trackPageview('/other-lyrics-alto');">This Is A Love Song lyrics</a>
<a href="/my_best_lyrics_lilly_wood_and_the_prick.html" onclick="javascript: pageTracker._trackPageview('/other-lyrics-alto');">My Best lyrics</a>
<a href="/cover_my_face_lyrics_lilly_wood_and_the_prick.html" onclick="javascript: pageTracker._trackPageview('/other-lyrics-alto');">Cover My Face lyrics</a>
<a href="/water_ran_lyrics_lilly_wood_and_the_prick.html" onclick="javascript: pageTracker._trackPageview('/other-lyrics-alto');">Water Ran lyrics</a>
<a href="/prayer_in_c_lyrics_lilly_wood_and_the_prick.html" onclick="javascript: pageTracker._trackPageview('/other-lyrics-alto');">Prayer In C lyrics</a>
<a href="/little_johnny_lyrics_lilly_wood_and_the_prick.html" onclick="javascript: pageTracker._trackPageview('/other-lyrics-alto');">Little Johnny lyrics</a>
<a href="/middle_of_the_night_lyrics_lilly_wood_and_the_prick.html" onclick="javascript: pageTracker._trackPageview('/other-lyrics-alto');">Middle Of The Night lyrics</a>
<a href="/a_time_is_near_lyrics_lilly_wood_and_the_prick.html" onclick="javascript: pageTracker._trackPageview('/other-lyrics-alto');">A Time Is Near lyrics</a>
<a href="/down_the_drain_demo_version_lyrics_lilly_wood_and_the_prick.html" onclick="javascript: pageTracker._trackPageview('/other-lyrics-alto');">Down The Drain (Demo Version) lyrics</a>
</div> <!-- other -->
<strong>Lyrics to Hey It's Ok</strong> :<br />
<div id='songlyrics_h' class='dn'>
Mama, Papa, please forget the times <br />
I wet my bed <br />
I swear not to do it again <br />
Please forgive the way I looked <br />
when I was fourteen <br />
I didn't know who I wanted to be <br />
<br />
Hey It's OK, It's OK <br />
Cause I've found what i wanted <br />
Hey It's OK, I'ts Ok <br />
Cause I've found what i wanted <br />
<br />
Friends and lovers please forgive <br />
the mean things I've said <br />
I swear not to do again <br />
Please forgive the way I act when <br />
I've had too much to drink <br />
I'm fighting against myself <br />
<br />
Hey It's OK, It's OK <br />
Cause I've found what i wanted <br />
Hey It's OK, I'ts Ok<br />
<br />
Cause I've found what i wanted <br />
<br />
And I swear not to do anything funny anymore <br />
yes I swear not to do anything funny anymore <br />
<br />
Hey It's OK, It's OK <br />
Cause I've found what i wanted <br />
Hey It's OK, I'ts Ok <br />
Cause I've found what i wanted <br />
Hey It's OK, It's OK <br />
Cause I've found what i wanted <br />
Hey It's OK, I'ts Ok <br />
Cause I've found what i wanted<br />
<br />
(Merci à Julia pour cettes paroles)<br />
</div>
<script type="text/javascript">
var song_id = "";
var youtube_video = false;
var lv_code = "";
var l_code = "";
var v_code = "";
</script>
<div id="songlyrics"></div>
<script type="text/javascript">
gE('songlyrics').innerHTML = gE('songlyrics_h').innerHTML;
if (typeof startSignatureInsert === 'function')
{
startSignatureInsert();
}
</script>
<br />&#91; These are <a href="hey_its_ok_lyrics_lilly_wood_and_the_prick.html" title="Hey It's Ok Lyrics">Hey It's Ok Lyrics</a> on http://www.lyricsmania.com/ &#93;
<br><br>
<script>
google_ad_client = 'ca-pub-2633654272685046';
google_ad_channel = '1908251867';
google_override_format = 'true';
google_ad_width = 430;
google_ad_height = 80;
google_ad_type = 'text/image';
google_color_link = '#0057DA';
google_color_url = '#000000';
google_color_url = '#000000';
google_language = 'en';
</script>
<script src="https://pagead2.googlesyndication.com/pagead/show_ads.js
"></script>
<br><br>
<center>
<span style="font-size:14px;">
<a href="/redir.php?id=7&artist=Lilly Wood & The Prick&song=Hey It's Ok" target="_blank" onclick="javascript: pageTracker._trackPageview('/tonefuset2');"><img src="/images/phone_icon_red_small_trans.gif" border="0"></a>
<a href="/redir.php?id=7&artist=Lilly Wood & The Prick&song=Hey It's Ok" target="_blank" style="color: #cc0000; font-weight: bold; font-family: Arial; text-decoration: underline;" onclick="javascript: pageTracker._trackPageview('/tonefuset2');">Send "Hey It's Ok" to your Cell</a>
<a href="/redir.php?id=7&artist=Lilly Wood & The Prick&song=Hey It's Ok" target="_blank" onclick="javascript: pageTracker._trackPageview('/tonefuset2');"><img src="/images/phone_icon_red_small_trans2.gif" border="0"></a>
</span>
</center>
<div class="clr"></div>
<br>
<div class=thinbox>
<div>
<div>
<div>
<h5><a name="commentlyrics">Comments to these lyrics</a></h5>
<br />
<a href="javascript:void(0);" onclick="popolaDiv('comment_post','leave_comment')" id="leave_comment">Leave a Comment</a><br />
<div id="comment_post" style="display: none;">
<form method=post action="http://my.lyricsmania.com/login.php?destpage=/comments/add.html" id="add_comment_form" name="add_comment_form" onSubmit="validateForm(add_comment_form.comment)">
<input type="hidden" name="id_testo" value="1069996">
<textarea type=text maxlenght=50 rows="5" cols="33" wrap="virtual" name="comment" onKeyDown="limitText(this.form.comment,this.form.countdown,500);"
onKeyUp="limitText(this.form.comment,this.form.countdown,500);"></textarea><br /><font size="1">(Maximum characters: 500)<br>
You have <input readonly type="text" name="countdown" size="3" value="500"> characters left.</font>
<br />
Verification: <input type="text" name="verification"><br>Enter the text in the image
<br>
<img border="0" src="/captcha.php">
<br>
<input type="submit" name="add_comment" value="Add Comment" id="submit_comment"> </form>
</div>
<br />
No comments to these lyrics yet, be the first!
</div>
</div>
</div>
</div>
<div></div>
</div>
<div id=rectangle>
<div style='margin-bottom: 10px'>
<script type="text/javascript"><!--
e9 = new Object();
e9.size = "300x250";
e9.addBlockingCategories="Audio,Pop-under,Pop-up";
//--></script>
<script type="text/javascript" src="http://tags.expo9.exponential.com/tags/LyricsMania/ROS/tags.js"></script></div>
<div id="fb-root"></div>
<script>
/*
window.fbAsyncInit = function() {
FB.init({
appId : '137256903140676',
channelUrl : '//www.facebook.com/pages/Lyrics-Mania/144174245625143',
status : true,
xfbml : true
});
}
;*/
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<div class="thinbox">
<div>
<div>
<div>
<iframe src="http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FLyrics-Mania%2F144174245625143&amp;width=292&amp;colorscheme=light&amp;show_faces=true&amp;stream=false&amp;header=false&amp;height=258" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:258px;" allowTransparency="true"></iframe>
<div class="g-plus" data-href="https://plus.google.com/112654762505809752225?rel=publisher" data-width="300" data-height="69" data-theme="light"></div>
</div>
</div>
</div>
</div><div class=thinbox>
<div>
<div>
<div>
<h5>Last Added Lyrics</h5>
<a href="/les_artistes_lyrics_lilly_wood_and_the_prick.html">L.E.S. Artistes lyrics</a><br>
<a href="/a_time_is_near_lyrics_lilly_wood_and_the_prick.html">A Time Is Near lyrics</a><br>
<a href="/long_way_back_lyrics_lilly_wood_and_the_prick.html">Long Way Back lyrics</a><br>
<a href="/middle_of_the_night_lyrics_lilly_wood_and_the_prick.html">Middle Of The Night lyrics</a><br>
<a href="/hymn_to_my_invisible_friend_lyrics_lilly_wood_and_the_prick.html">Hymn To My Invisible Friend lyrics</a><br>
<a href="/this_is_a_love_song_lyrics_lilly_wood_and_the_prick.html">This Is A Love Song lyrics</a><br>
<a href="/go_slow_lyrics_lilly_wood_and_the_prick.html">Go Slow lyrics</a><br>
<a href="/les_artistes_lyrics_lilly_wood_and_the_prick.html">L.e.s Artistes lyrics</a><br>
<a href="/down_the_drain_demo_version_lyrics_lilly_wood_and_the_prick.html">Down The Drain (Demo Version) lyrics</a><br>
<a href="/hymn_to_my_invisble_friend_lyrics_lilly_wood_and_the_prick.html">Hymn To My Invisble Friend lyrics</a><br>
<a href="/a_time_is_near_lyrics_lilly_wood_and_the_prick.html">A Time Is Near lyrics</a><br>
<a href="/hopeless_kids_lyrics_lilly_wood_and_the_prick.html">Hopeless Kids lyrics</a><br>
<a href="/little_johnny_lyrics_lilly_wood_and_the_prick.html">Little Johnny lyrics</a><br>
<a href="/my_best_lyrics_lilly_wood_and_the_prick.html">My Best lyrics</a><br>
<a href="/prayer_in_c_lyrics_lilly_wood_and_the_prick.html">Prayer In C lyrics</a><br>
</div>
</div>
</div>
</div><div class=thinbox>
<div>
<div>
<div>
<h5>Last 20 Artists</h5>
<a href="/traucoholik_lyrics.html" title="Traucoholik lyrics">Traucoholik lyrics</a> |
<a href="/mitochondrion_lyrics.html" title="Mitochondrion lyrics">Mitochondrion lyrics</a> |
<a href="/leela_and_the_rams_lyrics.html" title="Leela and The Rams lyrics">Leela and The Rams lyrics</a> |
<a href="/mariana_caetano_lyrics.html" title="Mariana Caetano lyrics">Mariana Caetano lyrics</a> |
<a href="/dosfire_lyrics.html" title="Dosfire lyrics">Dosfire lyrics</a> |
<a href="/kapone47_lyrics.html" title="Kapone47 lyrics">Kapone47 lyrics</a> |
<a href="/2anormal_lyrics.html" title="2anormal lyrics">2anormal lyrics</a> |
<a href="/poetic_teacher_lyrics.html" title="Poetic Teacher lyrics">Poetic Teacher lyrics</a> |
<a href="/stefano_bittelli_lyrics.html" title="Stefano Bittelli lyrics">Stefano Bittelli lyrics</a> |
<a href="/skeme_lyrics.html" title="Skeme lyrics">Skeme lyrics</a> |
<a href="/monica_sannino_lyrics.html" title="Monica Sannino lyrics">Monica Sannino lyrics</a> |
<a href="/mariachiara_castaldi_lyrics.html" title="Mariachiara Castaldi lyrics">Mariachiara Castaldi lyrics</a> |
<a href="/le_sparole_lyrics.html" title="Le Sparole lyrics">Le Sparole lyrics</a> |
<a href="/marco_colonna_lyrics.html" title="Marco Colonna lyrics">Marco Colonna lyrics</a> |
<a href="/lorenzo_luraca_lyrics.html" title="Lorenzo Luracà lyrics">Lorenzo Luracà lyrics</a> |
<a href="/eddi_santiago_figueroa_montes_lyrics.html" title="Eddi Santiago Figueroa Montes lyrics">Eddi Santiago Figueroa Montes lyrics</a> |
<a href="/valentina_livi_lyrics.html" title="Valentina Livi lyrics">Valentina Livi lyrics</a> |
<a href="/gabriele_morini_lyrics.html" title="Gabriele Morini lyrics">Gabriele Morini lyrics</a> |
<a href="/francesco_palma_lyrics.html" title="Francesco Palma lyrics">Francesco Palma lyrics</a> |
<a href="/violetta_zironi_lyrics.html" title="Violetta Zironi lyrics">Violetta Zironi lyrics</a> |
</div>
</div>
</div>
</div>
<div class=clr></div>
</div>
<div class=clr></div>
<div id=topartists>
<div class=thinbox>
<div>
<div>
<div>
<h5><a href="/topartists.html">Top Artists</a></h5>
<table cellpadding="1" cellspacing="2" width="100%" height="150">
<tr class=charts>
<td valign="top">
<a href="/rihanna_lyrics.html" title="Rihanna lyrics">Rihanna lyrics</a><br>
<a href="/kapone47_lyrics.html" title="Kapone47 lyrics">Kapone47 lyrics</a><br>
<a href="/2anormal_lyrics.html" title="2anormal lyrics">2anormal lyrics</a><br>
<a href="/dvbbs_and_borgeous_lyrics.html" title="DVBBS & Borgeous lyrics">DVBBS & Borgeous lyrics</a><br>
<a href="/ross_lynch,_maia_mitchell_and_teen_beach_movie_cast_lyrics.html" title="Ross Lynch, Maia Mitchell & Teen Beach Movie Cast lyrics">Ross Lynch, Maia Mitchell & Teen Beach Movie Cast lyrics</a><br>
<a href="/miley_cyrus_lyrics.html" title="Miley Cyrus lyrics">Miley Cyrus lyrics</a><br>
<a href="/mumford_and_sons_lyrics.html" title="Mumford & Sons lyrics">Mumford & Sons lyrics</a><br>
<a href="/nicki_minaj_lyrics.html" title="Nicki Minaj lyrics">Nicki Minaj lyrics</a><br>
<a href="/arctic_monkeys_lyrics.html" title="Arctic Monkeys lyrics">Arctic Monkeys lyrics</a><br>
<a href="/adele_lyrics.html" title="Adele lyrics">Adele lyrics</a><br>
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
<div></div>
</div>
<div id=toplyrics>
<div class=thinbox>
<div>
<div>
<div>
<h5><a href="/toplyrics.html">Top Lyrics</a></h5>
<table cellpadding="1" cellspacing="2" width="564" height="150">
<tr class=charts>
<td valign="top">
Katy Perry - <a href="/roar_lyrics_katy_perry.html" title="Roar lyrics">Roar lyrics</a><br>
Avicii - <a href="/wake_me_up_lyrics_avicii.html" title="Wake Me Up lyrics">Wake Me Up lyrics</a><br>
Martin Garrix - <a href="/animals_lyrics_martin_garrix.html" title="Animals lyrics">Animals lyrics</a><br>
Romeo Santos - <a href="/propuesta_indecente_lyrics_romeo_santos.html" title="Propuesta Indecente lyrics">Propuesta Indecente lyrics</a><br>
Of Monsters And Men - <a href="/little_talks_lyrics_of_monsters_and_men_1.html" title="Little Talks lyrics">Little Talks lyrics</a><br>
Ed Sheeran - <a href="/lego_house_lyrics_ed_sheeran.html" title="Lego House lyrics">Lego House lyrics</a><br>
Fray (The) - <a href="/how_to_save_a_life_lyrics_fray_the.html" title="How To Save A Life lyrics">How To Save A Life lyrics</a><br>
Capital Cities - <a href="/safe_and_sound_lyrics_capital_cities.html" title="Safe and Sound lyrics">Safe and Sound lyrics</a><br>
Lulu and the Lampshades - <a href="/youre_gonna_miss_me_lyrics_lulu_and_the_lampshades.html" title="You're Gonna Miss Me lyrics">You're Gonna Miss Me lyrics</a><br>
DVBBS & Borgeous - <a href="/tsunami_lyrics_dvbbs_and_borgeous.html" title="Tsunami lyrics">Tsunami lyrics</a><br>
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
<div></div>
</div>
</div>
<div id=leftcolumn2>
<div class=thinbox>
<div>
<div>
<div>
<h5>Main Menu</h5>
<a href="/contact.html">Contact Us</a><br />
<a href="/dancelyrics.html">Dance Lyrics</a>
<a href="/jinglebellslyrics.html" title="Jingle Bells Lyrics">Jingle Bells Lyrics</a><br />
<a href="/biographies.html">Biographies</a><br />
<a href="/links.html">Links</a><br />
<a href="/linkus.html">Link To Us</a><br />
<a href="/toadvertise.html">To Advertise</a><br />
<a href="/contact.html">Request Lyrics</a><br />
</div>
</div>
</div>
</div>
<div class=thinbox>
<div>
<div>
<div>
<h5>Play This Song</h5>
<!-- start snippet -->
<div class="boxcontent1"><!-- this line may not be needed-->
<div class="boxcontent2" style="height:45px;"> <!-- this line may not be
needed-->
<!-- edit this DIV below for positioning -->
<div style="position:relative;left:-41px;top:-35px;">
<script type="text/javascript" src="
http://cd02.static.jango.com/javascripts/promos/jangolib_3.js"></script>
<link rel=StyleSheet href="
http://cd02.static.jango.com/stylesheets/promo/jangoscroller_3b.css"
type="text/css">
<div class="scroller">
<div class="expandBtn"><a href="http://www.jango.com" target="_blank"
class="expandBtn"><img src="
http://cd02.static.jango.com/images/promo/playerCornerSpacer_1.gif"
border="0" width="10" height="10" alt="free music" /></a></div>
<div class="playerBG"><a href="http://www.jango.com/play/Lilly Wood & The Prick/Hey It's Ok"
target="_blank">
<img src="
http://cd02.static.jango.com/images/promo/playerLyrics160Black.gif"
border="0" alt="free music" /></a></div>
<div style="position:absolute;top:26px;left:18px;">
<marquee width="140" scrolldelay="150">
<a href="http://www.jango.com/play/Lilly Wood & The Prick/Hey It's Ok" class="playList">Lilly Wood & The Prick - Hey It's Ok</a>
</marquee>
</div>
</div>
<img src="http://p.jango.com/lyricsmania.gif"
style="width:1px;height:1px;" />
</div>
</div><!-- this line may not be needed-->
</div><!-- this line may not be needed-->
<div class="boxfooter"></div><!-- this line may not be needed-->
<!-- snippet end -->
<div style="text-align:center; margin-left:-20px;">
<script type="text/javascript">
GA_googleFillSlotWithSize("ca-pub-3687873374834629",
"LyricsMania_160x170_wrapper", 160, 170);
</script>
</div>
</div>
</div>
</div>
</div>
<div style='margin-bottom: 10px'>
<script type="text/javascript"><!--
e9 = new Object();
e9.size = "160x600,120x600";
e9.addBlockingCategories="Audio,Pop-under,Pop-up";
//--></script>
<script type="text/javascript" src="http://tags.expo9.exponential.com/tags/LyricsMania/ROS/tags.js"></script>
</div>
<div class=thinbox>
<div>
<div>
<div>
<h5>Partners</h5>
<a href="http://www.uplyrics.com/" target=_blank title="Lyrics">Lyrics</a><br>
<a href="http://www.parolesmania.com/paroles_lilly_wood_and_the_prick_57989.html" target=_blank title="Paroles Lilly Wood & The Prick">Paroles Lilly Wood & The Prick</a><br>
<a href="http://www.testimania.com/" target=_blank title="Testi Gratis">Testi Canzoni</a><br>
<a href="http://www.letrasmania.com/" target=_blank title="Letras de canciones">Letras De Canciones</a><br>
<a href="http://www.angolotesti.i/" target=_blank title="Testi Canzoni Gratis">Testi Di Canzoni</a><br>
<a href="http://www.ricettemania.it" target=_blank>Ricette</a><br>
<a href="http://www.musictory.com" title="Music Directory" target=_blank>Musictory</a><br>
</div>
</div>
</div>
</div>
<div></div>
</div>
<div class=clr></div></div>
<div class=clr></div></div>
<div id=whitebox_b>
<div id=whitebox_bl>
<div id=whitebox_br>
</div>
</div>
</div>
</div>
<div id=footer>
<div id=footer_l>
<div id=footer_r>
<div>LyricsMania.com - Copyright &#169; 2013 - All Rights Reserved<br /><a href="/privacy.php">Privacy Policy</a></div>
</div>
</div>
</div>
<div id="toolbar" style="bottom: -60px;">
<div id="toolbar-content">
<ul>
<li>
<img src="/pictures/thumbnails/73507.jpg">
<a href="/miranda_lambert_lyrics.html" onclick="javascript: pageTracker._trackPageview('/toolbar');">Miranda Lambert</a>
</li>
<li>
<img src="/pictures/thumbnails/1974.jpg">
<a href="/last_day_before_holiday_lyrics.html" onclick="javascript: pageTracker._trackPageview('/toolbar');">Last Day Before Holiday</a>
</li>
<li>
<img src="/pictures/thumbnails/69023.jpg">
<a href="/afrim_muqiqi_lyrics.html" onclick="javascript: pageTracker._trackPageview('/toolbar');">Afrim Muqiqi</a>
</li>
<li>
<img src="/pictures/thumbnails/91173.jpg">
<a href="/downset_lyrics.html" onclick="javascript: pageTracker._trackPageview('/toolbar');">Downset</a>
</li>
<li>
<img src="/pictures/thumbnails/74453.jpg">
<a href="/jamar_rogers_lyrics.html" onclick="javascript: pageTracker._trackPageview('/toolbar');">Jamar Rogers</a>
</li>
<div class="clear"></div>
</ul>
</div> <!-- toolbar-content -->
<div id="close"><a href="javascript:void(0);" onclick="toolbar('open-toolbar','toolbar')"><img src="/images/close-down.png"></a></div> <!-- close -->
</div> <!-- toolbar -->
<div id="open-toolbar" style="display:none; bottom: -60px;"><a href="javascript:void(0);" onclick="toolbar('toolbar','open-toolbar')"><img src="/images/open-up.png"></a></div>
<script>
setTimeout(function(){slide('toolbar')},2);
</script>
</div></div>
<div id="rect_ad_loader" style="display:none;">
<div class=thinbox>
<div>
<div>
<div>
<script type="text/javascript"><!--
e9 = new Object();
e9.size = "300x250";
e9.addBlockingCategories="Audio,Pop-under,Pop-up";
//--></script>
<script type="text/javascript" src="http://tags.expo9.exponential.com/tags/LyricsMania/ROS/tags.js"></script>
<script type="text/javascript">
document.getElementById("rect_ad").innerHTML = document.getElementById("rect_ad_loader").innerHTML
</script></div>
</div>
</div>
</div>
</div>
</body>
</html>

View file

@ -1,3 +1,70 @@
Amsterdam: |
Dans le port d'Amsterdam
Y a des marins qui chantent
Les rêves qui les hantent
Au large d'Amsterdam
Dans le port d'Amsterdam
Y a des marins qui dorment
Comme des oriflammes
Le long des berges mornes
Dans le port d'Amsterdam
Y a des marins qui meurent
Pleins de bière et de drames
Aux premières lueurs
Mais dans le port d'Amsterdam
Y a des marins qui naissent
Dans la chaleur épaisse
Des langueurs océanes
Dans le port d'Amsterdam
Y a des marins qui mangent
Sur des nappes trop blanches
Des poissons ruisselants
Ils vous montrent des dents
A croquer la fortune
A décroisser la lune
A bouffer des haubans
Et ça sent la morue
Jusque dans le coeur des frites
Que leurs grosses mains invitent
A revenir en plus
Puis se lèvent en riant
Dans un bruit de tempête
Referment leur braguette
Et sortent en rotant
Dans le port d'Amsterdam
Y a des marins qui dansent
En se frottant la panse
Sur la panse des femmes
Et ils tournent et ils dansent
Comme des soleils crachés
Dans le son déchiré
D'un accordéon rance
Ils se tordent le cou
Pour mieux s'entendre rire
Jusqu'à ce que tout à coup
L'accordéon expire
Alors le geste grave
Alors le regard fier
Ils ramènent leur batave
Jusqu'en pleine lumière
Dans le port d'Amsterdam
Y a des marins qui boivent
Et qui boivent et reboivent
Et qui reboivent encore
Ils boivent à la santé
Des putains d'Amsterdam
De Hambourg ou d'ailleurs
Enfin ils boivent aux dames
Qui leur donnent leur joli corps
Qui leur donnent leur vertu
Pour une pièce en or
Et quand ils ont bien bu
Se plantent le nez au ciel
Se mouchent dans les étoiles
Et ils pissent comme je pleure
Sur les femmes infidèles
Dans le port d'Amsterdam
Lady_Madonna: |
Lady Madonna, children at your feet
Wonder how you manage to make ends meet