Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1465)

Side by Side Diff: ports/tor/index.html

Issue 1289343005: Added Tor (Closed) Base URL: https://chromium.googlesource.com/external/naclports.git@pepper_44
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>KroTor</title>
5 <META HTTP-EQUIV="Pragma" CONTENT="no-cache" />
6 <META HTTP-EQUIV="Expires" CONTENT="-1" />
7 <script type="text/javascript" src="hterm.concat.js"></script>
8 <script type="text/javascript" src="pipeserver.js"></script>
9 <script type="text/javascript" src="naclprocess.js"></script>
10 <script type="text/javascript" src="naclterm.js"></script>
11 <script type="text/javascript" src="tor.js"></script>
12
13
14 <style type="text/css">
15 body {
16 position: absolute;
17 padding: 2px;
18 margin: 0;
19 height: 100%;
20 width: 100%;
21 overflow: scroll;
22 }
23
24 #terminal {
25 height: 450px;
26 position: relative;
27 padding: 5px;
28 }
29 </style>
30
31 </head>
32 <body>
33 <h4 style="text-align: center;">KroTor</h4>
34 <div>
35 <p style="text-align: center;">This is port of Tor(core) to NaCl platfrom.<b r/> To learn more about Tor Project,please visit https://www.torproject.org/</p>
36 <ul>
37 <li>Since Chrome Socket API is required,"NaCl Socket API" flag[chrome://fl ags] must be enabled for testing.
binji 2015/08/24 22:28:01 Shouldn't be needed -- let's try to figure out why
deepankar-tyagi 2015/08/25 18:14:44 Issue resolved,turns out I messed up in permission
38 <br/> Alternatively you can launch chrome with --allow-nacl-socket-api=l ocalhost (or whatever host
39 you are loading this page from</li>
40 <li>On successful run(see the logs in terminal), a tor (socks) proxy will be available system wide at 127.0.0.1:9999, point your browser/
41 application accordingly to the proxy</li>
42 <li>Config options can be added/modified in torrc file, alternatively they can be added in tor.js [see line 27 for example]<br/>
43 To see all the config options visit https://www.torproject.org/docs/tor-ma nual.html.en</li>
44 </ul>
45 </div>
46
47 <div id="terminal"></div>
48 </body>
49 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698