Skip to content
This repository has been archived by the owner on Oct 8, 2022. It is now read-only.

Commit

Permalink
Merge branch 'release/v1.0.0' into stable
Browse files Browse the repository at this point in the history
Conflicts:
	project/Build.scala
  • Loading branch information
satabin committed Sep 21, 2014
2 parents f2abf83 + 467b743 commit b2f66c4
Show file tree
Hide file tree
Showing 19 changed files with 259 additions and 191 deletions.
6 changes: 5 additions & 1 deletion blue-common/src/main/resources/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,11 @@ blue {

# the prefix of this \BlueLaTeX installation
# if it is installed at the root of the domain, then leave this string empty
path-prefix = "/api"
# if the prefix is absolute (i.e. starting with a `/`) then the API is expected to
# be at the root of the virtual host.
# if the path is relative (i.e. not starting with `/`) then the client
# is expected to send its requests by appending its own prefix to the API prefix if it has any.
path-prefix = "api"

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ class RegisterUserLet(val couch: CouchClient, config: Config, context: BundleCon
ErrorResponse("unable_to_register", s"Something went wrong when registering the user $username. Please retry")))
}
} recover {
case SohvaException(_, ConflictException(_)) =>
case ConflictException(_) =>
logWarn(s"User $username already exists")
(HStatus.Conflict,
ErrorResponse("unable_to_register", s"The user $username already exists"))
Expand Down
35 changes: 19 additions & 16 deletions blue-web/src/main/assets/less/mobile.less
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,9 @@
width: 39px!important;
}
}
.centerRightCol {
padding-left: 40px!important;
}
.leftCol {
left: 40px;
.close {
Expand All @@ -235,26 +238,26 @@
display: none;
}
}
.centerRightCol {
padding-left: 40px!important;
}
}
&.close, &.open {
&.close, &.open {
-moz-transition: left .5s;
-o-transition: left .5s;
transition: left .5s;
-webkit-transition: left .5s;
}
&.close {
left: -300px;
}
.bg {
height: 100%;
left: 0;
position: fixed;
top: 0;
width: 100%;
z-index: -1;
}
&.close {
left: -300px;
.bg {
display: none;
}
}
.bg {
height: 100%;
left: 0;
position: fixed;
top: 0;
width: 100%;
z-index: -1;
}
}
}
#form-page {
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,14 @@
"value":"Affiliation",
"description":"Affiliation"
},
{
"key":"_Registration_Password_will_sent_in_email_",
"value":"A confirmation email will be sent with instructions define your password",
"description":"Registration Password will be sent in email"
},
{
"key":"_Registration_Success_",
"value":"You are now registred please check your email to define your password.",
"value":"You are now registred please check your mailbox to define your password.",
"description":"Registration success"
},
{
Expand Down Expand Up @@ -91,7 +96,7 @@
},
{
"key":"_Reset_Wait_email_confirm_request_",
"value":"Please ckeck your email",
"value":"Please check your mailbox",
"description":"Reset password succed"
},
{
Expand Down Expand Up @@ -220,13 +225,13 @@
"description":"Ace settings: Key binding"
},
{
"key":"_Show_wrap_",
"value":"Show wrap",
"key":"_Wrap_mode_",
"value":"Wrap mode",
"description":"Ace settings: Show wrap"
},
{
"key":"_Full_line_selection_",
"value":"Full lline selection",
"value":"Full line selection",
"description":"Ace settings: Full lline selection"
},
{
Expand Down Expand Up @@ -261,7 +266,7 @@
},
{
"key":"_Enable_behaviours_",
"value":"Enable behaviours",
"value":"Enable auto-pairing of special characters (', \", ...)",
"description":"Ace settings: Enable behaviours"
},
{
Expand Down Expand Up @@ -344,6 +349,16 @@
"value":"Are you sure you want to remove the paper: \"\\s\"?",
"description":"Delete paper confirmation"
},
{
"key":"_Delete_synchronized_file_confirm_",
"value":"Are you sure you want to remove the file: \"\\s\"?",
"description":"Delete synchronized file confirmation"
},
{
"key":"_Delete_resource_confirm_",
"value":"Are you sure you want to remove the resource: \"\\s\"?",
"description":"Delete resource confirmation"
},
{
"key":"_Ascending_",
"value":"Ascending",
Expand Down Expand Up @@ -876,6 +891,21 @@



{
"key":"_username_tooltip_",
"value":"The unique name of the user.",
"description":"tooltip: Username"
},
{
"key":"_first_name_tooltip_",
"value":"The first name of the user.",
"description":"tooltip: Firstname"
},
{
"key":"_last_name_tooltip_",
"value":"The last name of the user.",
"description":"tooltip: lastname"
},
{
"key":"_files_tooltip_",
"value":"All files of the paper.",
Expand Down
Loading

0 comments on commit b2f66c4

Please sign in to comment.