-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Adrian Salceanu
committed
Aug 29, 2019
1 parent
4b653b8
commit d7fc35b
Showing
46 changed files
with
9,039 additions
and
918 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "Genie" | ||
uuid = "c43c736e-a2d1-11e8-161f-af95117fbd1e" | ||
authors = ["Adrian Salceanu <[email protected]>"] | ||
version = "0.15.0" | ||
version = "0.16.0" | ||
|
||
[deps] | ||
ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63" | ||
|
@@ -11,10 +11,10 @@ Gumbo = "708ec375-b3d6-5a57-a7ce-8257bf98657a" | |
HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3" | ||
HttpCommon = "77172c1b-203f-54ac-aa54-3f1198fe9f90" | ||
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6" | ||
Logging = "56ddb016-857b-54e1-b83d-db4d58db5568" | ||
Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a" | ||
MbedTLS = "739be429-bea8-5141-9913-cc70e7f3736d" | ||
Millboard = "39ec1447-df44-5f4c-beaa-866f30b4d3b2" | ||
MiniLogging = "f59402ec-0262-5707-a561-770af94bc5a6" | ||
Nettle = "49dea1ee-f6fa-5aa6-9a11-8816cee7d4b9" | ||
Nullables = "4d1e1d77-625e-5b40-9113-a560ec7a8ecd" | ||
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
module ViewHelper | ||
|
||
using Genie, Genie.Helpers | ||
using Genie, Genie.Flash, Genie.Router | ||
|
||
export output_flash | ||
|
||
function output_flash(params::Dict{Symbol,Any}) :: String | ||
! isempty( flash(params) ) ? """<div class="form-group alert alert-info">$(flash(params))</div>""" : "" | ||
function output_flash() :: String | ||
flash_has_message() ? """<div class="form-group alert alert-info">$(flash())</div>""" : "" | ||
end | ||
|
||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
d7fc35b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
d7fc35b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/3044
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via: