special case edit page for web remote
The crash came from calling Git.repoLocation, but it made sense to fix this higher up, because there is nothing to edit about the web, it just is what it is.
This commit is contained in:
parent
62f619c3eb
commit
2418bae471
3 changed files with 34 additions and 20 deletions
|
@ -42,6 +42,7 @@ import Utility.Gpg
|
|||
import Annex.UUID
|
||||
import Assistant.Ssh
|
||||
import Config
|
||||
import Logs.Web (webUUID)
|
||||
|
||||
import qualified Data.Text as T
|
||||
import qualified Data.Map as M
|
||||
|
@ -191,7 +192,10 @@ postEditNewCloudRepositoryR :: UUID -> Handler Html
|
|||
postEditNewCloudRepositoryR uuid = connectionNeeded >> editForm True (RepoUUID uuid)
|
||||
|
||||
editForm :: Bool -> RepoId -> Handler Html
|
||||
editForm new (RepoUUID uuid) = page "Edit repository" (Just Configuration) $ do
|
||||
editForm new (RepoUUID uuid)
|
||||
| uuid == webUUID = page "The web" (Just Configuration) $ do
|
||||
$(widgetFile "configurators/edit/webrepository")
|
||||
| otherwise = page "Edit repository" (Just Configuration) $ do
|
||||
mremote <- liftAnnex $ Remote.remoteFromUUID uuid
|
||||
when (mremote == Nothing) $
|
||||
whenM ((/=) uuid <$> liftAnnex getUUID) $
|
||||
|
|
|
@ -23,3 +23,5 @@ Not much in the logs, I see this:
|
|||
[2014-07-25 08:40:14 BST] TransferWatcher: transfer starting: Download UUID "00000000-0000-0000-0000-000000000001" Chase_Adam_at_Startup_School_NY_2014.mp4 Nothing
|
||||
|
||||
"""]]
|
||||
|
||||
> [[fixed|done]] --[[Joey]]
|
||||
|
|
8
templates/configurators/edit/webrepository.hamlet
Normal file
8
templates/configurators/edit/webrepository.hamlet
Normal file
|
@ -0,0 +1,8 @@
|
|||
<div .col-sm-9>
|
||||
<div .content-box>
|
||||
<h2>
|
||||
The world wide web
|
||||
<p>
|
||||
git-annex can download files from the web.
|
||||
<p>
|
||||
This is not a normal repository, and cannot be configured.
|
Loading…
Reference in a new issue