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.
108
2004/05/
20
20
:
44
:
43
jonasw Exp $";
+
constant cvs_version = "$Id: gbutton.pike,v 1.
109
2004/05/
21
09
:
46
:
19
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:205:
"<b>Cache size:</b> %s", s[0], Roxen.sizetostring(s[1])); } mapping(string:function) query_action_buttons() { return ([ "Clear cache":flush_cache ]); } void flush_cache() { button_cache->flush();
+
+
// It's possible that user code contains a number of stale URLs in
+
// e.g. <cache> blocks so we can just as well flush the RAM cache to
+
// reduce the risk of broken images.
+
cache.flush_memory_cache();
} Image.Layer layer_slice( Image.Layer l, int from, int to ) { return Image.Layer( ([ "image":l->image()->copy( from,0, to-1, l->ysize()-1 ), "alpha":l->alpha()->copy( from,0, to-1, l->ysize()-1 ), ]) ); }