Skip to content

Commit

Permalink
Bump digestive-functors version
Browse files Browse the repository at this point in the history
  • Loading branch information
norm2782 committed Oct 27, 2011
1 parent bee243c commit 05a959d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions JCU.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ Executable jcu
containers >= 0.4,
data-lens >= 2,
data-lens-template >= 2,
digestive-functors >= 0.1,
digestive-functors-blaze >= 0.1.1,
digestive-functors-snap >= 0.1,
digestive-functors >= 0.2 && < 0.3,
digestive-functors-blaze >= 0.2.1 && < 0.3,
digestive-functors-snap >= 0.1.1 && < 0.3,
email-validate >= 0.2.6,
HDBC >= 2.2,
HDBC-sqlite3 >= 2.3,
Expand All @@ -58,7 +58,7 @@ Executable jcu
snap >= 0.6,
snap-core >= 0.6,
snap-server >= 0.6,
snaplet-hdbc >= 0.1.1,
snaplet-hdbc >= 0.2,
text >= 0.11,
time >= 1.1 && < 1.3,
transformers >= 0.2,
Expand Down
6 changes: 3 additions & 3 deletions src/Application.hs
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ loginForm = (\e p r _ -> FormUser e p r)
<++ errors)
<*> mapViewHtml H.div (
label "Password: "
++> inputPassword `validate` longPwd
++> inputPassword False `validate` longPwd
<++ errors)
<*> mapViewHtml H.div (
label "Remember me?"
Expand All @@ -316,11 +316,11 @@ registrationForm = (\ep pp _ -> FormUser (fst ep) (fst pp) False)
<*> ((,)
<$> mapViewHtml H.div (
label "Password: "
++> inputPassword `validate` longPwd
++> inputPassword False `validate` longPwd
<++ errors)
<*> mapViewHtml H.div (
label "Password (confirmation): "
++> inputPassword `validate` longPwd
++> inputPassword False `validate` longPwd
<++ errors))
`validate` identical
<++ errors
Expand Down

0 comments on commit 05a959d

Please sign in to comment.