From 54013851398b16bb5fe7d747d421868cafbb70df Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Thu, 15 Dec 2011 15:50:10 -0500 Subject: [PATCH] dmd 2.057 --- curl.d | 6 ++--- mysql.d | 8 +++---- web.d | 70 +++++++++++++++++++++++++++++++++++++++++++++++++++++++-- 3 files changed, 75 insertions(+), 9 deletions(-) diff --git a/curl.d b/curl.d index ac10115..3e7e4f9 100644 --- a/curl.d +++ b/curl.d @@ -4,8 +4,8 @@ pragma(lib, "curl"); import std.string; extern(C) { - typedef void CURL; - typedef void curl_slist; + struct CURL; + struct curl_slist; alias int CURLcode; alias int CURLoption; @@ -77,7 +77,7 @@ string cachedCurl(string url, int maxCacheHours) { res = curl(url); std.file.write(cacheFile, res); } else { - res = readText(cacheFile); + res = cast(string) std.file.read(cacheFile); } return res; diff --git a/mysql.d b/mysql.d index 2b7d788..971b9ad 100644 --- a/mysql.d +++ b/mysql.d @@ -589,9 +589,9 @@ struct ResultByDataObject(ObjType) if (is(ObjType : DataObject)) { } extern(System) { - typedef void MYSQL; - typedef void MYSQL_RES; - typedef const(ubyte)* cstring; + struct MYSQL; + struct MYSQL_RES; + /* typedef */ alias const(ubyte)* cstring; struct MYSQL_FIELD { cstring name; /* Name of column */ @@ -621,7 +621,7 @@ extern(System) { } } - typedef cstring* MYSQL_ROW; + /* typedef */ alias cstring* MYSQL_ROW; cstring mysql_get_client_info(); MYSQL* mysql_init(MYSQL*); diff --git a/web.d b/web.d index 615ef9b..bab7a29 100644 --- a/web.d +++ b/web.d @@ -198,6 +198,59 @@ class WebDotDBaseType { } } +/// This is meant to beautify and check links and javascripts to call web.d functions. +/// FIXME: this function sucks. +string linkCall(alias Func, Args...)(Args args) { + static if(!__traits(compiles, Func(args))) { + static assert(0, "Your function call doesn't compile. If you need client side dynamic data, try building the call as a string."); + } + + // FIXME: this link won't work from other parts of the site... + + //string script = __traits(parent, Func).stringof; + auto href = __traits(identifier, Func) ~ "?"; + + bool outputted = false; + foreach(i, arg; args) { + if(outputted) { + href ~= "&"; + } else + outputted = true; + + href ~= std.uri.encodeComponent("positional-arg-" ~ to!string(i)); + href ~= "="; + href ~= to!string(arg); // FIXME: this is wrong for all but the simplest types + } + + return href; + +} + +/// This is meant to beautify and check links and javascripts to call web.d functions. +/// This function works pretty ok. You're going to want to append a string to the return +/// value to actually call .get() or whatever; it only does the name and arglist. +string jsCall(alias Func, Args...)(Args args) /*if(is(__traits(parent, Func) : WebDotDBaseType))*/ { + static if(!__traits(compiles, Func(args))) { + static assert(0, "Your function call doesn't compile. If you need client side dynamic data, try building the call as a string."); + } + + string script = __traits(parent, Func).stringof; + script ~= "." ~ __traits(identifier, Func) ~ "("; + + bool outputted = false; + foreach(arg; args) { + if(outputted) { + script ~= ","; + } else + outputted = true; + + script ~= toJson(arg); + } + + script ~= ")"; + return script; +} + /// Everything should derive from this instead of the old struct namespace used before /// Your class must provide a default constructor. class ApiProvider : WebDotDBaseType { @@ -1685,7 +1738,8 @@ JSONValue toJsonValue(T, R = ApiProvider)(T a, string formatToStringAs = null, R if(is(R : ApiProvider)) { JSONValue val; - static if(is(T == typeof(null))) { + static if(is(T == typeof(null)) || is(T == void*)) { + /* void* goes here too because we don't know how to make it work... */ val.type = JSON_TYPE.NULL; } else static if(is(T == JSONValue)) { val = a; @@ -2549,10 +2603,19 @@ void applyTemplateToElement(Element e, in string[string] vars) { // text nodes have no attributes, but they do have text we might replace. tc.contents = htmlTemplateWithData(tc.contents, vars, false); } else { + auto rs = cast(RawSource) ele; + if(rs !is null) + rs.source = htmlTemplateWithData(rs.source, vars, true); /* FIXME: might be wrong... */ // if it is not a text node, it has no text where templating is valid, except the attributes // note: text nodes have no attributes, which is why this is in the separate branch. - foreach(k, v; ele.attributes) + foreach(k, v; ele.attributes) { + if(k == "href" || k == "src") { + // FIXME: HACK this should be properly context sensitive.. + v = v.replace("%7B%24", "{$"); + v = v.replace("%7D", "}"); + } ele.attributes[k] = htmlTemplateWithData(v, vars, false); + } } } } @@ -3050,6 +3113,7 @@ else string javascriptBase = ` It will probably show up in your browser's error console, or you can set the returned object's onerror function to something to handle it callback style. FIXME: not sure if this actually works right! */ +// FIXME: this should probably be rewritten to make a constructable prototype object instead of a literal. enum string javascriptBaseImpl = q{ "_doRequest": function(url, args, callback, method, async) { var xmlHttp; @@ -3426,6 +3490,8 @@ enum string javascriptBaseImpl = q{ }, "_getElement": function(what) { + // FIXME: what about jQuery users? If they do useToReplace($("whatever")), we ought to do what we can with it for the most seamless experience even if I loathe that bloat. + // though I guess they should be ok in doing $("whatever")[0] or maybe $("whatever").get() so not too awful really. var e; if(typeof what == "string") e = document.getElementById(what);