Skip to content

Commit

Permalink
augment index.yaws and news
Browse files Browse the repository at this point in the history
Add a link to the Yaws github repo to the Yaws front page.

Add a note about JSON-RPC 2.0 changes to the news page.
  • Loading branch information
vinoski committed May 7, 2011
1 parent 5ca422e commit d8cf062
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
18 changes: 11 additions & 7 deletions www/index.yaws
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ out(A) ->
separate modes of operations are supported:"},
{ul,[],
[{li,[],
{p,[],"Standalone mode where Yaws runs as a regular webserver "
{p,[],"Standalone mode where Yaws runs as a regular webserver "
"daemon. This is the default mode."}},
{li,[],
{p,[], "Embedded mode where Yaws runs as an embedded webserver in "
Expand All @@ -29,23 +29,27 @@ out(A) ->
" processes in an efficent way. Its elegance comes from Erlang as "
"well. Web applications don't have to be written in ugly ad hoc "
"languages."},

{h2,[], "yaws.hyber.org"},

{p,[], ["The www page for Yaws is ",
{a ,[{href,"http://yaws.hyber.org"}], "yaws.hyber.org"},
" The documentation, examples as well as releases can be "
". The documentation, examples as well as releases can be "
"found there, and of course, ",
{a ,[{href,"http://yaws.hyber.org"}],"yaws.hyber.org"},
" is itself powered by Yaws."]},

{p,[], ["A mailing list exists at: ",
{a,[{href,"https://lists.sourceforge.net/lists/listinfo/""erlyaws-list"}],
"https://lists.sourceforge.net/lists/listinfo/erlyaws-list"}]},
{h2, [], "News"},
{p, [], ["To see all the most recent changes and activity in Yaws "
"development, please visit the ",
{a, [{href, "https://github.com/klacke/yaws"}],
"Yaws github repository"}, "."]},
gen_news(A)]}]},
{ssi, "END2",[],[]}].



gen_news(A) ->
Expand All @@ -69,7 +73,7 @@ gen_news(Fd, Line) ->
[{h3, [], Line},
{ul, [], Items}]}
],

[X | gen_news(Fd, io:get_line(Fd,''))]
end.

Expand Down
5 changes: 4 additions & 1 deletion www/news
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Sun May 1 10:35 PM EDT 2011 JSON-RPC 2.0
Updated Yaws JSON-RPC support to version 2.0 (Steve Vinoski)

Sat Sep 25 13:39:29 CEST 2010 Yaws 1.89
Maintenance release with a long series of fixes mostly from Steve Vinoski./yaws
Maintenance release with a long series of fixes mostly from Steve Vinoski
all.zip should not not include .yaws files, nor directories "protected" with an index file, nor directories protected by an auth directive. (Hans-Christian Esperer )
adjust to R14B change in gen_tcp:recv for {packet,http} mode Where we handle the return value of gen_tcp:recv while reading headers from the socket (such as with calls to yaws:do_recv), handle new R14B return values as well as existing return values for previous releases. (Steve)
for portability, use erlang:md5 rather than crypto md5 Since OpenSSL availability on Windows for working with the crypto module is apparently questionable, use the erlang:md5 function in place of the crypto md5 functions. (Steve)
Expand Down

0 comments on commit d8cf062

Please sign in to comment.