diff options
author | 2012-09-24 14:48:47 -0400 | |
---|---|---|
committer | 2012-09-24 14:48:47 -0400 | |
commit | 38dadcf24873ced5e8e375669d56022d0ce7cc16 (patch) | |
tree | be5c915b40839bba9b2b7f5bc2322b99ce7d2d7e /templates | |
parent | dd502bdae1be6a91b0c5f2f7996b1dc8d5f0cfc4 (diff) |
license the webapp under the AGPL 3+
This means that anyone serving up the webapp to users as a service
(ie, without providing any git-annex binary at all to the user) still needs
to provide a link to the source code for it, including any modifications
they may make.
This may make git-annex be covered by the AGPL as a whole when it is built
with the webapp. If in doubt, you should ask a lawyer.
When git-annex is built with the webapp disabled, no AGPLed code is used.
Even building in the assistant does not pull in AGPLed code.
Diffstat (limited to 'templates')
30 files changed, 0 insertions, 615 deletions
diff --git a/templates/README b/templates/README deleted file mode 100644 index eb0ca037b..000000000 --- a/templates/README +++ /dev/null @@ -1,7 +0,0 @@ -These are template files for the git-annex webapp. They use the -Shakespearean template library, which is documented here: -http://www.yesodweb.com/book/shakespearean-templates - -Note that for most of the templates, it will use files ending in -.hamlet, .julius, and .cassius if they exist. So if you need to add CSS, -or javascript, you can create the missing template files. diff --git a/templates/actionbutton.hamlet b/templates/actionbutton.hamlet deleted file mode 100644 index 03abe5c11..000000000 --- a/templates/actionbutton.hamlet +++ /dev/null @@ -1,2 +0,0 @@ -<a class="#{buttonclass}" href="@{route}" onclick="(function( $ ) { $.post('@{route}'); })( jQuery ); return false;"> - <i class="#{iconclass}"></i> #{fromMaybe "" label} diff --git a/templates/bootstrap.hamlet b/templates/bootstrap.hamlet deleted file mode 100644 index f743a0d46..000000000 --- a/templates/bootstrap.hamlet +++ /dev/null @@ -1,14 +0,0 @@ -$doctype 5 -<html> - <head> - <title> - $maybe reldir <- relDir webapp - #{reldir} #{pageTitle page} - $nothing - #{pageTitle page} - <link rel="icon" href=@{StaticR favicon_ico} type="image/x-icon"> - <meta name="viewport" content="width=device-width,initial-scale=1.0"> - ^{pageHead page} - <body> - ^{pageBody page} - <div #modal></div> diff --git a/templates/configurators/adddrive.hamlet b/templates/configurators/adddrive.hamlet deleted file mode 100644 index 948c9f1ee..000000000 --- a/templates/configurators/adddrive.hamlet +++ /dev/null @@ -1,39 +0,0 @@ -<div .span9 .hero-unit> - <h2> - Adding a removable drive - <p> - Clone this repository to a USB drive, memory stick, or other # - removable media. Whenever the removable drive is plugged in, its - content will be synced with the content of this repository. - <p> - $if (null writabledrives) - <div .span6 .alert .alert-error .alert-block> - $if (null removabledrives) - <h4 .alert-heading> - No removable drives found - Please make sure you have a removable drive plugged in and mounted. - $else - <h4 .alert-heading> - No usable removable drives found - Seems you cannot write to any of the removable drives that are # - currently mounted. Try plugging in a removable drive that you can # - write to, or correcting the write permissions. - <p> - <a .btn .btn-primary href="@{AddDriveR}"> - Rescan for removable drives - $else - <form enctype=#{enctype}> - <fieldset> - ^{form} - ^{authtoken} - <button .btn .btn-primary type=submit onclick="$('#clonemodal').modal('show');">Use this drive</button> # - <a .btn href="@{AddDriveR}"> - Rescan for removable drives -<div .modal .fade #clonemodal> - <div .modal-header> - <h3> - Cloning to drive - <div .modal-body> - <p> - Cloning the repository to the drive. This may take a few minutes; # - do not remove the drive. diff --git a/templates/configurators/addrsync.net.hamlet b/templates/configurators/addrsync.net.hamlet deleted file mode 100644 index 6ea55ae12..000000000 --- a/templates/configurators/addrsync.net.hamlet +++ /dev/null @@ -1,43 +0,0 @@ -<div .span9 .hero-unit> - <h2> - Adding a Rsync.net repository - <p> - <a href="http://rsync.net/"> - Rsync.net # - is a well-respected cloud storage provider. Its rsync repositories are # - supported very well by git-annex. # - <a href="http://www.rsync.net/products/pricing.html"> - pricing details - <p> - $case status - $of UnusableServer msg - <div .alert .alert-error> - <i .icon-warning-sign></i> #{msg} - $of _ - <i .icon-warning-sign></i> # - All your data will be synced to the Rsync.net repository, so make # - sure it has enough available space. Your data will be encrypted before # - it is sent to Rsync.net. - <p> - When you sign up for a Rsync.net account, you receive an # - email from them with a host name and a username. Fill that # - information in below. You also likely don't want to use your whole # - rsync.net repository for git-annex alone, so git-annex will use a # - subdirectory of it, as configured below. - <p> - <form .form-horizontal enctype=#{enctype}> - <fieldset> - ^{form} - ^{authtoken} - <div .form-actions> - <button .btn .btn-primary type=submit onclick="$('#testmodal').modal('show');"> - Use this rsync.net repository -<div .modal .fade #testmodal> - <div .modal-header> - <h3> - Making repository ... - <div .modal-body> - <p> - Setting up your rsync.net repository. This could take a minute. - <p> - You may be prompted for your rsync.net ssh password. diff --git a/templates/configurators/enabledirectory.hamlet b/templates/configurators/enabledirectory.hamlet deleted file mode 100644 index 03da311c5..000000000 --- a/templates/configurators/enabledirectory.hamlet +++ /dev/null @@ -1,10 +0,0 @@ -<div .span9 .hero-unit> - <h2> - Enabling #{description} - <p> - Where is this repository located? - <p> - <a .btn href="@{AddDriveR}"> - On a removable drive - <a .btn href="@{RepositoriesR}"> - Cancel diff --git a/templates/configurators/intro.hamlet b/templates/configurators/intro.hamlet deleted file mode 100644 index c1642b061..000000000 --- a/templates/configurators/intro.hamlet +++ /dev/null @@ -1,28 +0,0 @@ -<div .span9 ##{ident} .hero-unit> - $maybe reldir <- relDir webapp - <h2> - git-annex is watching over your files in <small><tt>#{reldir}</tt></small> - <p> - It will automatically notice changes, and keep files in sync between # - $if notenough - repositories on your devices ... - <h2> - But no other repositories are set up yet. - <a .btn .btn-primary .btn-large href="@{RepositoriesR}">Add another repository</a> - $else - $if barelyenough - <span .badge .badge-warning>#{numrepos}</span> - $else - <span .badge .badge-success>#{numrepos}</span> - \ repositories and devices: - <table .table .table-striped .table-condensed> - <tbody> - $forall (num, name, _) <- repolist - <tr> - <td> - #{num} - <td> - #{name} - <a .btn .btn-primary .btn-large href="@{RepositoriesR}">Add another repository</a> - <p> - Or just sit back, watch the magic, and get on with using your files. diff --git a/templates/configurators/main.hamlet b/templates/configurators/main.hamlet deleted file mode 100644 index b0fdcc282..000000000 --- a/templates/configurators/main.hamlet +++ /dev/null @@ -1,9 +0,0 @@ -<div .span9> - <div .row-fluid> - <div .span4> - <h3> - <a href="@{RepositoriesR}"> - Manage repositories - <p> - Distribute the files in this repository to other devices, # - make backups, and more, by adding repositories. diff --git a/templates/configurators/newrepository.hamlet b/templates/configurators/newrepository.hamlet deleted file mode 100644 index d2bdad9b9..000000000 --- a/templates/configurators/newrepository.hamlet +++ /dev/null @@ -1,15 +0,0 @@ -<div .span9 .hero-unit> - <h2> - Add another repository - <p> - The form below will make a separate repository, that is not synced # - with your existing repository. You can use the new repository for # - different sorts of files, that are synced and shared with other # - devices and users. - <p> - <form .form-inline enctype=#{enctype}> - ^{form} - <p> - <i .icon-asterisk></i> # - Do you want to add another repository that is kept in sync with # - the current one? If so, <a href="@{RepositoriesR}">go here</a>. diff --git a/templates/configurators/newrepository/first.hamlet b/templates/configurators/newrepository/first.hamlet deleted file mode 100644 index 88b1fa72b..000000000 --- a/templates/configurators/newrepository/first.hamlet +++ /dev/null @@ -1,14 +0,0 @@ -<div .span9 .hero-unit> - <h2> - Welcome to git-annex! - <p> - There's just one thing to do before you can start using the power # - and convenience of git-annex. - <h2> - Create a git-annex repository - <p> - Files in this repository will managed by git-annex, # - and kept in sync with your repositories on other devices. - <p> - <form .form-inline enctype=#{enctype}> - ^{form} diff --git a/templates/configurators/newrepository/form.hamlet b/templates/configurators/newrepository/form.hamlet deleted file mode 100644 index 6c2405be6..000000000 --- a/templates/configurators/newrepository/form.hamlet +++ /dev/null @@ -1,11 +0,0 @@ -#{msg} -<p> - <div .input-prepend .input-append> - <span .add-on> - <i .icon-folder-open></i> - ^{fvInput pathView} - <button type=submit .btn .btn-primary> - Make Repository -$if err - <div .alert .alert-error> - #{errmsg} diff --git a/templates/configurators/pairing/disabled.hamlet b/templates/configurators/pairing/disabled.hamlet deleted file mode 100644 index c946aacc4..000000000 --- a/templates/configurators/pairing/disabled.hamlet +++ /dev/null @@ -1,5 +0,0 @@ -<div .span9 .hero-unit> - <h2> - Pairing not supported - <p> - This build of git-annex does not support pairing. Sorry! diff --git a/templates/configurators/pairing/inprogress.hamlet b/templates/configurators/pairing/inprogress.hamlet deleted file mode 100644 index da783a764..000000000 --- a/templates/configurators/pairing/inprogress.hamlet +++ /dev/null @@ -1,18 +0,0 @@ -<div .span9 .hero-unit> - <h2> - Pairing in progress .. - $if T.null secret - <p> - You do not need to leave this page open; pairing will finish # - automatically. - $else - <p> - Now you should either go tell the owner of the computer you want to pair # - with the secret phrase you selected ("#{secret}"), or go enter it into # - the computer you want to pair with. - <p> - You do not need to leave this page open; pairing will finish automatically # - as soon as the secret phrase is entered into the other computer. - <p> - If you're not seeing a pair request on the other computer, try moving # - it to the same switch or wireless network as this one. diff --git a/templates/configurators/pairing/prompt.hamlet b/templates/configurators/pairing/prompt.hamlet deleted file mode 100644 index 1d27b1837..000000000 --- a/templates/configurators/pairing/prompt.hamlet +++ /dev/null @@ -1,50 +0,0 @@ -<div .span9 .hero-unit> - <h2> - Pairing with a local computer - <p> - $if start - Pair with a computer on your local network (or VPN), and the # - two git annex repositories will be combined into one, with changes # - kept in sync between them. - $else - Pairing with #{username}@#{hostname} will combine the two git annex # - repositories into one, with changes kept in sync between them. - <p> - $if start - For security, enter a secret phrase. This same secret phrase will # - also need to be entered on the computer you're pairing with. # - It will be used to verify you're pairing with the right computer. - $else - $if sameusername - For security, you need to enter the same secret phrase that was # - entered on #{hostname} when the pairing was started. - $else - For security, a secret phrase has been selected, which you need # - to enter here to finish the pairing. If you don't know the # - phrase, go ask #{username} ... - $if badphrase - <div .alert .alert-error> - <i .icon-warning-sign></i> #{problem} - <p> - <form .form-horizontal enctype=#{enctype}> - <fieldset> - ^{form} - ^{authtoken} - <div .form-actions> - <button .btn .btn-primary type=submit> - $if start - Start pairing - $else - Finish pairing - <div .alert .alert-info> - $if start - <p> - A good secret phrase is reasonably long. You'll only # - type it a few times. Only letters and numbers matter; # - punctuation and white space is ignored. - <p> - A quotation is one good choice, something like: # - "#{sampleQuote}" - $else - Only letters and numbers matter; punctuation and spaces are # - ignored. diff --git a/templates/configurators/repositories.hamlet b/templates/configurators/repositories.hamlet deleted file mode 100644 index 8411ce350..000000000 --- a/templates/configurators/repositories.hamlet +++ /dev/null @@ -1,78 +0,0 @@ -<div .span9> - <h2> - Your repositories - <table .table .table-condensed> - <tbody> - $forall (num, name, needsenabled) <- repolist - <tr> - <td> - #{num} - <td> - $if isJust needsenabled - <i>#{name} - $else - #{name} - <td> - $maybe enable <- needsenabled - <i>not enabled here # - → # - <a href="@{enable}"> - enable - <div .row-fluid> - <div .span6> - <h2> - Add more repositories - - <h3> - <a href="@{AddDriveR}"> - <i .icon-plus-sign></i> Removable drive - <p> - Clone this repository to a USB drive, memory stick, or other # - removable media. - <p> - For offline archiving, backups, or to # - <a href="http://en.wikipedia.org/wiki/Sneakernet">SneakerNet</a> # - between computers. - - <h3> - <a href="@{StartPairR}"> - <i .icon-plus-sign></i> Local computer - <p> - Pair with a local computer to automatically keep files in sync # - between computers on your local network. - <p> - For easy sharing with family and friends, or between your devices. - - <h3> - <i .icon-plus-sign></i> Phone - <p> - Save photos and recordings from your phone. - <p> - Send selected files to your phone. - - <div .span6> - <h2> - Store your data in the cloud - - <h3> - <a href="@{AddRsyncNetR}"> - <i .icon-plus-sign></i> Rsync.net - <p> - Works very well with git-annex. - - <h3> - <i .icon-plus-sign></i> Amazon S3 - <p> - Good choice for professional storage quality and low prices. - - <h3> - <i .icon-plus-sign></i> Box.com - <p> - Provides free cloud storage for small amounts of data. - - <h3> - <a href="@{AddSshR}"> - <i .icon-plus-sign></i> Remote server - <p> - Set up a repository on a remote server using # - <tt>ssh</tt>, to build your own personal cloud. diff --git a/templates/configurators/ssh/add.hamlet b/templates/configurators/ssh/add.hamlet deleted file mode 100644 index c2336a169..000000000 --- a/templates/configurators/ssh/add.hamlet +++ /dev/null @@ -1,33 +0,0 @@ -<div .span9 .hero-unit> - <h2> - Adding a remote server using ssh - <p> - You can use nearly any server that has ssh and rsync. For example, you # - could use a <a href="http://linode.com/">Linode</a> or another VPS, or # - an account on a friend's server. - <p> - $case status - $of UnusableServer msg - <div .alert .alert-error> - <i .icon-warning-sign></i> #{msg} - $of _ - <i .icon-warning-sign></i> Do keep in mind that all your data # - will be synced to the server, so make sure it has enough available # - disk space and bandwidth, and that you trust it with your data. - <p> - <form .form-horizontal enctype=#{enctype}> - <fieldset> - ^{form} - ^{authtoken} - <div .form-actions> - <button .btn .btn-primary type=submit onclick="$('#testmodal').modal('show');"> - Check this server -<div .modal .fade #testmodal> - <div .modal-header> - <h3> - Testing server ... - <div .modal-body> - <p> - Checking ssh connection to the server. This could take a minute. - <p> - You may be prompted for your password to log into the server. diff --git a/templates/configurators/ssh/confirm.hamlet b/templates/configurators/ssh/confirm.hamlet deleted file mode 100644 index f82335ceb..000000000 --- a/templates/configurators/ssh/confirm.hamlet +++ /dev/null @@ -1,42 +0,0 @@ -<div .span9 .hero-unit> - <h2> - Ready to add remote server - <div .row-fluid> - <div .span8> - <p> - The server #{sshHostName sshdata} has been verified to be usable. - $if not (rsyncOnly sshdata) - <p> - You have two options for how to use the server. - <p> - <a .btn .btn-primary href="@{MakeSshGitR sshdata}" onclick="$('#setupmodal').modal('show');"> - Use a git repository on the server - <br> - All your data will be uploaded to the server. If you set up other # - devices to use the same server, they will all be kept in sync, # - using the server as a central hub. # - <p> - <a .btn .btn-primary href="@{MakeSshRsyncR sshdata}" onclick="$('#setupmodal').modal('show');"> - Use an encrypted rsync repository on the server - <br> - The contents of your files will be stored, fully encrypted, on the # - server. The server will not store other information about your # - git repository. - <div .span4> - $if needsPubKey sshdata - <div .alert .alert-info> - <i .icon-info-sign></i> # - A ssh key will be installed on the server, allowing git-annex to # - access it securely without a password. -<div .modal .fade #setupmodal> - <div .modal-header> - <h3> - Making repository ... - <div .modal-body> - <p> - Setting up repository on the remote server. This could take a minute. - $if needsPubKey sshdata - <p> - You will be prompted once more for your ssh password. A ssh key # - is being installed on the server, allowing git-annex to access it # - securely without a password. diff --git a/templates/configurators/ssh/enable.hamlet b/templates/configurators/ssh/enable.hamlet deleted file mode 100644 index 1e35e481b..000000000 --- a/templates/configurators/ssh/enable.hamlet +++ /dev/null @@ -1,30 +0,0 @@ -<div .span9 .hero-unit> - <h2> - Enabling #{description} - <p> - Another repository uses this server, but the server is not # - yet enabled for use here. The first step to enable it is to check if it's # - usable here. - <p> - <p> - <form .form-horizontal enctype=#{enctype}> - <fieldset> - <div .form-actions> - <button .btn .btn-primary type=submit onclick="$('#testmodal').modal('show');"> - Check this server - $case status - $of UnusableServer msg - <div .alert .alert-error> - <i .icon-warning-sign></i> #{msg} - $of _ - ^{form} - ^{authtoken} -<div .modal .fade #testmodal> - <div .modal-header> - <h3> - Testing server ... - <div .modal-body> - <p> - Checking ssh connection to the server. This could take a minute. - <p> - You may be prompted for your password to log into the server. diff --git a/templates/configurators/ssh/error.hamlet b/templates/configurators/ssh/error.hamlet deleted file mode 100644 index 05d2de412..000000000 --- a/templates/configurators/ssh/error.hamlet +++ /dev/null @@ -1,10 +0,0 @@ -<div .span9 .hero-unit> - <h2> - <i .icon-warning-sign></i> Failed to make repository - <p> - Something went wrong setting up the repository on the remote server. - <p> - Transcript: #{msg} - <p> - <a .btn .btn-primary href="#"> - Retry diff --git a/templates/dashboard/main.hamlet b/templates/dashboard/main.hamlet deleted file mode 100644 index aa780bdb2..000000000 --- a/templates/dashboard/main.hamlet +++ /dev/null @@ -1,10 +0,0 @@ -^{content} - $if warnNoScript - <noscript> - <div .navbar .navbar-fixed-bottom> - <div .navbar-inner> - <div .container> - Javascript is disabled; cannot update in real-time. - <div .btn-group> - <a .btn .btn-primary href="@{NoScriptAutoR}">Auto-refresh every 3 seconds # - <a .btn .btn-primary href="@{NoScriptR}">Manually refresh diff --git a/templates/dashboard/metarefresh.hamlet b/templates/dashboard/metarefresh.hamlet deleted file mode 100644 index 89a2e0b2c..000000000 --- a/templates/dashboard/metarefresh.hamlet +++ /dev/null @@ -1,2 +0,0 @@ -<noscript> - <meta http-equiv="refresh" content="#{show delayseconds}; URL=@{this}"> diff --git a/templates/dashboard/transfers.hamlet b/templates/dashboard/transfers.hamlet deleted file mode 100644 index da5848432..000000000 --- a/templates/dashboard/transfers.hamlet +++ /dev/null @@ -1,37 +0,0 @@ -<div .span9 ##{ident}> - $if null transfers - $else - <h2>Transfers - $forall (transfer, info) <- transfers - $with percent <- maybe "unknown" (showPercentage 0) $ percentComplete transfer info - <div .row-fluid> - <div .span10> - <div .row-fluid> - <h3> - $maybe file <- associatedFile info - #{file} - $nothing - #{key2file $ transferKey transfer} - $case transferDirection transfer - $of Upload - → - $of Download - ← - <small>#{maybe "unknown" Remote.name $ transferRemote info}</small> - $with size <- maybe "unknown" (roughSize dataUnits True) $ keySize $ transferKey transfer - $if isJust $ startedTime info - $if isrunning info - <small .pull-right><b>#{percent} of #{size}</b></small> - $else - <small .pull-right>paused at #{percent} of #{size}</small> - $else - <small .pull-right>queued (#{size})</small> - <div .row-fluid> - <div .progress .progress-striped> - <div .bar style="width: #{percent};"> - <div .btn-group .span2> - $if isrunning info - ^{actionButton (PauseTransferR transfer) Nothing "btn" "icon-pause"} - $else - ^{actionButton (StartTransferR transfer) Nothing "btn" "icon-play"} - ^{actionButton (CancelTransferR transfer) Nothing "btn" "icon-remove"} diff --git a/templates/documentation/about.hamlet b/templates/documentation/about.hamlet deleted file mode 100644 index 97007b8f6..000000000 --- a/templates/documentation/about.hamlet +++ /dev/null @@ -1,17 +0,0 @@ -<div .span9 .hero-unit> - <h2> - git-annex watches over your files - <p> - It will automatically notice changes, and keep files in sync between # - repositories and devices. - <p> - For full details, see # - <a href="http://git-annex.branchable.com/">the git-annex website</a>. - <hr> - git-annex is © 2010-2012 Joey Hess. It is free software, licensed # - under the terms of the GNU General Public License, version 3 or above. # - <p> - Its development was made possible by # - <a href="http://git-annex.branchable.com/assistant/thanks/"> - many excellent people - . <i .icon-heart></i> diff --git a/templates/notifications/longpolling.julius b/templates/notifications/longpolling.julius deleted file mode 100644 index affa50cc8..000000000 --- a/templates/notifications/longpolling.julius +++ /dev/null @@ -1,12 +0,0 @@ -function longpoll_#{ident}() { - longpoll(longpoll_#{ident}_url, '#{ident}' - , function() { setTimeout(longpoll_#{ident}, #{delay}); } - , function() { webapp_disconnected(); } - ); -} -$(function() { - $.get("@{geturl}", function(url){ - longpoll_#{ident}_url = url; - setTimeout(longpoll_#{ident}, #{startdelay}); - }); -}); diff --git a/templates/otherrepos.hamlet b/templates/otherrepos.hamlet deleted file mode 100644 index f1738f2f0..000000000 --- a/templates/otherrepos.hamlet +++ /dev/null @@ -1,10 +0,0 @@ -<ul .dropdown-menu> - $forall (name, path) <- repolist - <li> - <a href="@{SwitchToRepositoryR path}"> - #{name} - $if not (null repolist) - <li .divider></li> - <li> - <a href="@{NewRepositoryR}"> - Add another repository diff --git a/templates/page.cassius b/templates/page.cassius deleted file mode 100644 index 39decd03a..000000000 --- a/templates/page.cassius +++ /dev/null @@ -1,5 +0,0 @@ -body - padding-top: 60px - padding-bottom: 40px -.sidebar-nav - padding: 9px 0 diff --git a/templates/page.hamlet b/templates/page.hamlet deleted file mode 100644 index 7648b6107..000000000 --- a/templates/page.hamlet +++ /dev/null @@ -1,23 +0,0 @@ -<div .navbar .navbar-fixed-top> - <div .navbar-inner> - <div .container> - <a .brand> - git-annex - <ul .nav> - $forall (name, route, isactive) <- navbar - <li :isactive:.active> - <a href="@{route}"> - #{name} - $maybe reldir <- relDir webapp - <ul .nav .pull-right> - <li> - ^{actionButton FileBrowserR (Just "Files") "" "icon-folder-open icon-white"} - <li .dropdown #menu1> - <a .dropdown-toggle data-toggle="dropdown" href="#menu1"> - Current Repository: #{reldir} - <b .caret></b> - ^{otherReposWidget} - $nothing -<div .container-fluid> - <div .row-fluid> - ^{content} diff --git a/templates/page.julius b/templates/page.julius deleted file mode 100644 index a9d0b4223..000000000 --- a/templates/page.julius +++ /dev/null @@ -1,17 +0,0 @@ -connfailed = - '<div id="modal" class="modal fade">' + - ' <div class="modal-header">' + - ' <h3>git-annex has shut down</h3>' + - ' </div>' + - ' <div class="modal-body">' + - ' You can now close this browser window.' + - ' </div>' + - '</div>' ; - -function webapp_disconnected () { - $('#modal').replaceWith(connfailed); - $('#modal').modal('show'); - - // ideal, but blocked by many browsers - window.close(); -} diff --git a/templates/sidebar/alert.hamlet b/templates/sidebar/alert.hamlet deleted file mode 100644 index c5138d79a..000000000 --- a/templates/sidebar/alert.hamlet +++ /dev/null @@ -1,21 +0,0 @@ -<div .alert .fade .in .#{divclass} :block:.alert-block ##{alertid}> - $if closable - <a .close onclick="(function( $ ) { $.get('@{CloseAlert aid}') })( jQuery );">×</a> - $maybe h <- renderAlertHeader alert - $if block - <h4 .alert-heading> - $maybe i <- alertIcon alert - <i .icon-#{bootstrapIcon i}></i> # - #{h} - $else - $maybe i <- alertIcon alert - <i .icon-#{bootstrapIcon i}></i> # - <strong>#{h}</strong> # - $nothing - $maybe i <- alertIcon alert - <i .icon-#{bootstrapIcon i}></i> # - #{renderAlertMessage alert} - $maybe button <- alertButton alert - <br> - <a .btn .btn-primary href="@{ClickAlert aid}"> - #{buttonLabel button} diff --git a/templates/sidebar/main.hamlet b/templates/sidebar/main.hamlet deleted file mode 100644 index 32900b920..000000000 --- a/templates/sidebar/main.hamlet +++ /dev/null @@ -1,3 +0,0 @@ -<div .span3 ##{ident}> - <div .sidebar-nav> - ^{content} |