Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: chrome/content/ui/firstRun.html

Issue 11533106: Prepared adblockplus for Safari (Closed)
Patch Set: Fixed broken path to CSS for firefox Created Sept. 6, 2013, 5:18 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/content/ui/firstRun.js » ('j') | chrome/content/ui/firstRun.js » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 - This file is part of Adblock Plus <http://adblockplus.org/>, 3 - This file is part of Adblock Plus <http://adblockplus.org/>,
4 - Copyright (C) 2006-2013 Eyeo GmbH 4 - Copyright (C) 2006-2013 Eyeo GmbH
5 - 5 -
6 - Adblock Plus is free software: you can redistribute it and/or modify 6 - Adblock Plus is free software: you can redistribute it and/or modify
7 - it under the terms of the GNU General Public License version 3 as 7 - it under the terms of the GNU General Public License version 3 as
8 - published by the Free Software Foundation. 8 - published by the Free Software Foundation.
9 - 9 -
10 - Adblock Plus is distributed in the hope that it will be useful, 10 - Adblock Plus is distributed in the hope that it will be useful,
11 - but WITHOUT ANY WARRANTY; without even the implied warranty of 11 - but WITHOUT ANY WARRANTY; without even the implied warranty of
12 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 - GNU General Public License for more details. 13 - GNU General Public License for more details.
14 - 14 -
15 - You should have received a copy of the GNU General Public License 15 - You should have received a copy of the GNU General Public License
16 - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. 16 - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
17 --> 17 -->
18 18
19 <html> 19 <html>
20 <head> 20 <head>
21 <title class="i18n_firstRun_title"></title> 21 <title class="i18n_firstRun_title"></title>
22 <meta charset="utf-8"> 22 <meta charset="utf-8">
23 <link type="text/css" href="/skin/firstRun.css" rel="stylesheet"/> 23
24 <!-- only for firefox -->
25 <link type="text/css" href="../../skin/firstRun.css" rel="stylesheet"/>
26
27 <!-- only required for the ports -->
28 <link type="text/css" href="skin/firstRun.css" rel="stylesheet"/>
Wladimir Palant 2013/09/10 06:53:46 I'm not particularly happy with using random relat
Sebastian Noack 2013/09/10 10:56:29 Yes, there isn't an other solution (for safari). H
29 <script type="text/javascript" src="ext.js"></script>
30 <script type="text/javascript" src="lib/compat.js"></script>
31 <script type="text/javascript" src="lib/io.js"></script>
32 <script type="text/javascript" src="lib/info.js"></script>
33 <script type="text/javascript" src="lib/adblockplus.js"></script>
Wladimir Palant 2013/09/10 06:53:46 Loading the core code into the page isn't going to
Sebastian Noack 2013/09/10 10:56:29 Unfortunately you are right. I didn't thought abou
24 <script type="text/javascript" src="utils.js"></script> 34 <script type="text/javascript" src="utils.js"></script>
35
25 <script type="text/javascript" src="i18n.js"></script> 36 <script type="text/javascript" src="i18n.js"></script>
26 <script type="text/javascript" src="firstRun.js"></script> 37 <script type="text/javascript" src="firstRun.js"></script>
27 </head> 38 </head>
28 <body> 39 <body>
29 <div id="shade" class="arrow"></div> 40 <div id="shade" class="arrow"></div>
30 <div id="content"> 41 <div id="content">
31 <header> 42 <header>
32 <h1 id="title-main" class="i18n_firstRun_title"></h1> 43 <h1 id="title-main" class="i18n_firstRun_title"></h1>
33 </header> 44 </header>
34 45
46 <p id="legacySafariWarning" class="i18n_firstRun_legacySafariWarning" hidd en="true"></p>
35 <p id="dataCorruptionWarning" class="i18n_firstRun_dataCorruptionWarning" hidden="true"></p> 47 <p id="dataCorruptionWarning" class="i18n_firstRun_dataCorruptionWarning" hidden="true"></p>
36
37 <p id="acceptableAdsExplanation" class="i18n_firstRun_acceptableAdsExplana tion"></p> 48 <p id="acceptableAdsExplanation" class="i18n_firstRun_acceptableAdsExplana tion"></p>
38 49
39 <h2 id="features-title" class="i18n_firstRun_features"></h2> 50 <h2 id="features-title" class="i18n_firstRun_features"></h2>
40 51
41 <ul id="features"> 52 <ul id="features">
42 <li id="feature-malware" class="feature"> 53 <li id="feature-malware" class="feature">
43 <div class="feature-image"></div> 54 <div class="feature-image"></div>
44 <div class="feature-description"> 55 <div class="feature-description">
45 <p class="feature-text"> 56 <p class="feature-text">
46 <span class="i18n_firstRun_feature_malware feature-title"></span> <span class="i18n_firstRun_feature_malware_description"></span> 57 <span class="i18n_firstRun_feature_malware feature-title"></span> <span class="i18n_firstRun_feature_malware_description"></span>
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 </li> 105 </li>
95 </ul> 106 </ul>
96 </footer> 107 </footer>
97 </div> 108 </div>
98 109
99 <div id="glass-pane"> 110 <div id="glass-pane">
100 <iframe id="share-popup" scrolling="no"></iframe> 111 <iframe id="share-popup" scrolling="no"></iframe>
101 </div> 112 </div>
102 </body> 113 </body>
103 </html> 114 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/content/ui/firstRun.js » ('j') | chrome/content/ui/firstRun.js » ('J')

Powered by Google App Engine
This is Rietveld