protected void Page_Load(object sender, EventArgs e)
    {
        PageInit("PUBLIC");

        String[] files = PageContext.GetContext("build_list", "").Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
        foreach (String url in files)
        {
            m_response.Append(processFile(url));
        }
        Response.ContentType = "text/plain";
        Response.Write(m_response.ToString());
        //only write if it is me!
        if (PageContext.GetContext("USER_NAME", "") == "*****@*****.**")
        {
            File.WriteAllText(Server.MapPath("jquery.SiteBoxMirror.standalone.min.js"), m_response.ToString());
        }
    }