author | Clipperz <info@clipperz.com> | 2013-01-08 15:14:42 (UTC) |
---|---|---|
committer | Clipperz <info@clipperz.com> | 2013-01-08 15:14:42 (UTC) |
commit | ab84f3c135caece3e51bfac4fabaf06fd214d5f5 (patch) (side-by-side diff) | |
tree | 41fa30d50214160a854a37e023000189fa25a7cf | |
parent | 25bd3085c5464862172c5bd921deca550185fe83 (diff) | |
download | clipperz-ab84f3c135caece3e51bfac4fabaf06fd214d5f5.zip clipperz-ab84f3c135caece3e51bfac4fabaf06fd214d5f5.tar.gz clipperz-ab84f3c135caece3e51bfac4fabaf06fd214d5f5.tar.bz2 |
Fixed 'dump'
The new application layout (single backend with multiple versions of frontend application) handle 'dump' requests (aka 'offline copy') from a different url
-rw-r--r-- | frontend/beta/html/index_template.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/beta/html/index_template.html b/frontend/beta/html/index_template.html index 27a8a64..d51540b 100644 --- a/frontend/beta/html/index_template.html +++ b/frontend/beta/html/index_template.html @@ -1,100 +1,100 @@ <html> <head> <title>@page.title@</title> <META http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- @copyright@ --> @css@ <link rel="shortcut icon" href="./clipperz.ico" /> <meta name="description" content="Login to your web accounts with just one click. Never type a password again! Use multiple complex passwords and forget them. A password manager that enhances your online security." /> <meta name="keywords" content="password manager,gestor de contraseñas,gerenciador de senhas,Kennwortmanager,passwords,security,privacy,cryptography" /> <script> Clipperz_IEisBroken = false; Clipperz_normalizedNewLine = '\n'; - Clipperz_dumpUrl = "/dump/"; + Clipperz_dumpUrl = "/../dump/"; </script> <!--[if IE]><script> Clipperz_IEisBroken = true; Clipperz_normalizedNewLine = '\x0d\x0a'; </script><![endif]--> @js_LINKED@ </head> <body> <div id="mainDiv"> <div id="header"> <div id="miscLinks"> <a id="donateHeaderIconLink" href="http://www.clipperz.com/donations" target="_blank"><img id='donateHeaderIcon' src=""></a> <ul> <li><a href="http://www.clipperz.com/donations" id='donateHeaderLink' class='highlightedHeader' target="_blank">donate</a></li> <li><a href="http://www.clipperz.com/credits" id='creditsHeaderLink' target="_blank">credits</a></li> <li><a href="http://www.clipperz.com/contact" id='feedbackHeaderLink' target="_blank">feedback</a></li> <li><a href="http://www.clipperz.com/support/user_guide" target="_blank" id='helpHeaderLink'>help</a></li> <li><a href="http://www.clipperz.com/forum" target="_blank" id='forumHeaderLink'>forum</a></li> </ul> </div> <div id="logoFrame"> <a href="http://www.clipperz.com" target="_blank"><img id="logo" src="" /></a> <h5 class="clipperzPayoff">keep it to yourself</h5> </div> <div id="mainTabs"> <ul id="exitLinks"> <li id="logoutLI"><!--<a href="#">logout</a>--></li> <li id="lockLI"><!--<a href="#">lock</a>--></li> </ul> <div id="menus"> <table cellpadding="0" cellspacing="0" border="0"> <tbody> <tr id="menusTR"> <!-- <td class="selected"><div><a href="#">records</a></div></td> <td><div><a href="./Account.html">account</a></div></td> <td><div><a href="#">data</a></div></td> <td><div><a href="#">bookmarklet</a></div></td> --> </tr> </tbody> </table> </div> </div> </div> <div id="main"> <h3 class="loading">loading ...</h3> @js_EMBEDDED@ <script> Clipperz.PM.Proxy.defaultProxy = new Clipperz.PM.Proxy.JSON({'url':'@request.path@', 'shouldPayTolls':@should.pay.toll@}); /*offline_data_placeholder*/ </script> <div id="javaScriptAlert"> <h1>Attention!</h1> <p>If you can read this message, the chances are that your browser does not properly support JavaScript? or you have disabled this functionality yourself.</p> <h3>Javascript is required to access Clipperz.</h3> <h5>Please enable scripting or upgrade your browser.</h5> </div> </div> <div id="footer"> Copyright © 2008 Clipperz Srl - <a href="http://www.clipperz.com/terms_of_service" target="black">Terms of service</a> - <a href="http://www.clipperz.com/privacy_policy" target="black">Privacy policy</a> - Application version: @application.version@ </div> <div id="recordDetailEditModeHeaderMask"></div> <div id="recordDetailEditModeVerticalMask"></div> </div> <div id="applicationVersionType" class="@application.version.type@" /> </body> </html> |