Example #1
0
 public static Xopg_tag_itm New_js_file(Io_url src_url) {
   byte[] src = src_url.To_http_file_bry();
   return new Xopg_tag_itm(
       Tid__js_file,
       Gfh_tag_.Bry__script,
       src,
       null,
       Tag__type_js,
       Keyval_.new_("src", String_.new_u8(src)));
 }
Example #2
0
 public static Xopg_tag_itm New_css_file(Io_url href_url) {
   byte[] href = href_url.To_http_file_bry();
   return new Xopg_tag_itm(
       Tid__css_file,
       Gfh_tag_.Bry__link,
       href,
       null,
       Tag__type_css,
       Tag__rel_stylesheet,
       Keyval_.new_("href", String_.new_u8(href)));
 }
Example #3
0
 public GfoMsg Args_ovr(String k, Object v) {
   if (args == null) args = List_adp_.New();
   for (int i = 0; i < args.Count(); i++) {
     Keyval kv = (Keyval) args.Get_at(i);
     if (String_.Eq(k, kv.Key())) {
       kv.Val_(v);
       return this;
     }
   }
   args.Add(Keyval_.new_(k, v));
   return this;
 }
Example #4
0
 @Override
 protected Object ReadOr(String k, Object defaultOr) {
   if (args == null) args = List_adp_.New();
   args.Add(Keyval_.new_(k, defaultOr));
   return defaultOr;
 }
Example #5
0
 public GfoMsg Add(String k, Object v) {
   if (args == null) args = List_adp_.New();
   args.Add(Keyval_.new_(k, v));
   return this;
 }
Example #6
0
public class Xopg_tag_itm {
  Xopg_tag_itm(byte tid, byte[] node, byte[] href, byte[] body, Keyval... atrs) {
    this.tid = tid;
    this.node = node;
    this.href = href;
    this.body = body;
    this.atrs = atrs;
  }

  public final String Source = "xowa";

  public byte Tid() {
    return tid;
  }

  private final byte tid;

  public byte[] Node() {
    return node;
  }

  private final byte[] node;

  public byte[] Href() {
    return href;
  }

  private final byte[] href;

  public byte[] Body() {
    return body;
  }

  private final byte[] body;

  public Keyval[] Atrs() {
    return atrs;
  }

  private final Keyval[] atrs;

  public void To_html(Bry_bfr bfr) {
    bfr.Add_byte(Byte_ascii.Angle_bgn);
    bfr.Add(node);
    To_html_atr(bfr, "data-source", "xowa");
    int len = atrs.length;
    for (int i = 0; i < len; ++i) {
      Keyval atr = atrs[i];
      To_html_atr(bfr, atr.Key(), atr.Val_to_str_or_empty());
    }
    bfr.Add_byte(Byte_ascii.Angle_end);
    if (!Bry_.Eq(node, Gfh_tag_.Bry__link)) {
      if (body != null) {
        bfr.Add_byte_nl();
        bfr.Add(body);
        bfr.Add_byte_nl();
      }
      bfr.Add_byte(Byte_ascii.Angle_bgn).Add_byte(Byte_ascii.Slash);
      bfr.Add(node);
      bfr.Add_byte(Byte_ascii.Angle_end);
    }
    bfr.Add_byte_nl();
  }

  private static void To_html_atr(Bry_bfr bfr, String key, String val) {
    bfr.Add_byte_space();
    bfr.Add_str_a7(key);
    bfr.Add_byte(Byte_ascii.Eq);
    bfr.Add_byte(Byte_ascii.Quote);
    bfr.Add_str_a7(val);
    bfr.Add_byte(Byte_ascii.Quote);
  }

  public static final byte Tid__css_file = 0,
      Tid__css_code = 1,
      Tid__js_file = 2,
      Tid__js_code = 3,
      Tid__htm_frag = 4;
  private static final Keyval Tag__type_css = Keyval_.new_("type", "text/css"),
      Tag__type_js = Keyval_.new_("type", "text/javascript"),
      Tag__type_html = Keyval_.new_("type", "text/html"),
      Tag__rel_stylesheet = Keyval_.new_("rel", "stylesheet");

  public static Xopg_tag_itm New_css_file(Io_url href_url) {
    byte[] href = href_url.To_http_file_bry();
    return new Xopg_tag_itm(
        Tid__css_file,
        Gfh_tag_.Bry__link,
        href,
        null,
        Tag__type_css,
        Tag__rel_stylesheet,
        Keyval_.new_("href", String_.new_u8(href)));
  }

  public static Xopg_tag_itm New_css_code(byte[] code) {
    return new Xopg_tag_itm(Tid__css_code, Gfh_tag_.Bry__style, null, code, Tag__type_css);
  }

  public static Xopg_tag_itm New_js_file(Io_url src_url) {
    byte[] src = src_url.To_http_file_bry();
    return new Xopg_tag_itm(
        Tid__js_file,
        Gfh_tag_.Bry__script,
        src,
        null,
        Tag__type_js,
        Keyval_.new_("src", String_.new_u8(src)));
  }

  public static Xopg_tag_itm New_js_code(String code) {
    return New_js_code(Bry_.new_u8(code));
  }

  public static Xopg_tag_itm New_js_code(byte[] code) {
    return new Xopg_tag_itm(Tid__js_code, Gfh_tag_.Bry__script, null, code, Tag__type_js);
  }

  public static Xopg_tag_itm New_htm_frag(Io_url url, String id) {
    byte[] html = Io_mgr.Instance.LoadFilBry(url);
    return new Xopg_tag_itm(
        Tid__htm_frag, Gfh_tag_.Bry__script, null, html, Tag__type_html, Keyval_.new_("id", id));
  }
}
Example #7
0
 public static Xopg_tag_itm New_htm_frag(Io_url url, String id) {
   byte[] html = Io_mgr.Instance.LoadFilBry(url);
   return new Xopg_tag_itm(
       Tid__htm_frag, Gfh_tag_.Bry__script, null, html, Tag__type_html, Keyval_.new_("id", id));
 }
Example #8
0
 private static Keyval new_itm(Xol_lang_stub itm) {
   String key_str = String_.new_u8(itm.Key());
   String name_str = String_.new_u8(itm.Canonical_name());
   return Keyval_.new_(key_str, name_str + " [" + key_str + "]");
 }
 public static void Publish(TabBox tabBox, int curIdx, int newIdx) {
   Gfo_evt_mgr_.Pub_vals(
       tabBox, OrderChanged_evt, Keyval_.new_("curIdx", curIdx), Keyval_.new_("newIdx", newIdx));
 }