Roxen.git
/
server
/
modules
/
graphics
/
gbutton.pike
version
»
Context lines:
10
20
40
80
file
none
3
Roxen.git/server/modules/graphics/gbutton.pike:20:
// icon-data -- inline icon data // align -- left|center|right text alignment // align-icon -- left|center-before|center-after|right icon alignment // valign-icon -- above|middle|below icon vertical alignment // >Button text</gbutton> // // Alignment restriction: when text alignment is either left or right, icons // must also be aligned left or right.
-
constant cvs_version = "$Id: gbutton.pike,v 1.
116
2008
/
05
/
22
14
:
43
:
04
mast
Exp $";
+
constant cvs_version = "$Id: gbutton.pike,v 1.
117
2009
/
02
/
19
17
:
20
:
41
jonasw
Exp $";
constant thread_safe = 1; #include <module.h> inherit "module"; roxen.ImageCache button_cache; int do_ext; constant module_type = MODULE_TAG; constant module_name = "Graphics: GButton";
Roxen.git/server/modules/graphics/gbutton.pike:767:
if (stat_cache = id->misc->gbutton_statcache) { if (!id->misc->persistent_cache_crawler) if (res = stat_cache[f]) return (res > 0) && res; } else stat_cache = id->misc->gbutton_statcache = ([ ]); int was_internal = id->misc->internal_get; id->misc->internal_get = 1; res = stat_cache[ f ] = (id->conf->stat_file( f,id ) ||
-
file_stat( f ) ||
+
({ 0,0,0,0 }) )[ST_MTIME] || -1; if (!was_internal) m_delete(id->misc, "internal_get"); return (res > 0) && res; } class ButtonFrame { inherit RXML.Frame; array mk_url(RequestID id)