Created
December 16, 2016 00:00
-
-
Save binarytemple/d54bf0daa28245ab146fc889fbba986b to your computer and use it in GitHub Desktop.
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
diff --git a/.gitignore b/.gitignore | |
index b43c124..6649665 100644 | |
--- a/.gitignore | |
+++ b/.gitignore | |
@@ -4,3 +4,6 @@ erl_crash.dump | |
examples/rendered_output | |
src/erlydtl_parser.erl | |
*~ | |
+_build/ | |
+ebintest/ | |
+tags | |
diff --git a/Makefile b/Makefile | |
index 9c84b75..1964612 100755 | |
--- a/Makefile | |
+++ b/Makefile | |
@@ -1,6 +1,6 @@ | |
ERL=erl | |
ERLC=erlc | |
-REBAR=./rebar | |
+REBAR=rebar3 | |
all: compile | |
diff --git a/include/erlydtl_preparser.hrl b/include/erlydtl_preparser.hrl | |
index 398682e..7822de8 100755 | |
--- a/include/erlydtl_preparser.hrl | |
+++ b/include/erlydtl_preparser.hrl | |
@@ -160,12 +160,12 @@ yecc_end(Line) -> | |
yecctoken_end_location(Token) -> | |
try | |
- {text, Str} = erl_scan:token_info(Token, text), | |
- {line, Line} = erl_scan:token_info(Token, line), | |
+ {text, Str} = erl_scan:text(Token), | |
+ {line, Line} = erl_scan:line(Token), | |
Parts = re:split(Str, "\n"), | |
Dline = length(Parts) - 1, | |
Yline = Line + Dline, | |
- case erl_scan:token_info(Token, column) of | |
+ case erl_scan:column(Token) of | |
{column, Column} -> | |
Col = byte_size(lists:last(Parts)), | |
{Yline, Col + if Dline =:= 0 -> Column; true -> 1 end}; | |
@@ -184,13 +184,13 @@ yeccerror(Token) -> | |
-compile({nowarn_unused_function, yecctoken_to_string/1}). | |
yecctoken_to_string(Token) -> | |
- case catch erl_scan:token_info(Token, text) of | |
+ case catch erl_scan:text(Token) of | |
{text, Txt} -> Txt; | |
_ -> yecctoken2string(Token) | |
end. | |
yecctoken_location(Token) -> | |
- case catch erl_scan:token_info(Token, location) of | |
+ case catch erl_scan:location(Token) of | |
{location, Loc} -> Loc; | |
_ -> element(2, Token) | |
end. | |
diff --git a/rebar b/rebar | |
deleted file mode 100755 | |
index 3e61ebf..0000000 | |
Binary files a/rebar and /dev/null differ | |
diff --git a/src/erlydtl_filters.erl b/src/erlydtl_filters.erl | |
index 72a55ce..54a185e 100755 | |
--- a/src/erlydtl_filters.erl | |
+++ b/src/erlydtl_filters.erl | |
@@ -527,14 +527,13 @@ pprint(Input) -> | |
%% @doc Returns a random item from the given list. | |
random(Input) when is_list(Input) -> | |
- lists:nth(random:uniform(erlang:length(Input)), Input); | |
+ lists:nth(rand:uniform(erlang:length(Input)), Input); | |
random(_) -> | |
"". | |
random_num(Value) -> | |
- {A1,A2,A3} = now(), | |
- random:seed(A1, A2, A3), | |
- Rand = random:uniform(Value), | |
+ rand:seed(exs64), | |
+ Rand = rand:uniform(Value), | |
Rand. | |
%% random tags to be used when using erlydtl in testing | |
@@ -546,7 +545,7 @@ random_range(Range) -> | |
random_range(Start, End) when End >= Start -> | |
%?debugFmt("Input, Start, End: ~p,~p,~p~n",[Input,Start,End]), | |
Range = End - Start, | |
- Rand = random:uniform(Range), | |
+ Rand = rand:uniform(Range), | |
Num = Rand + Start, | |
lists:flatten(io_lib:format("~B",[Num])). | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment