mirror of
https://github.com/e1ven/Robohash.git
synced 2025-06-23 21:35:02 +00:00
Another VERY useful feature
This commit is contained in:
parent
19c7b6fffb
commit
4db3489615
13
webfront.py
13
webfront.py
@ -264,7 +264,18 @@ class ImgHandler(tornado.web.RequestHandler):
|
|||||||
else:
|
else:
|
||||||
#If no set specified, you get set 1
|
#If no set specified, you get set 1
|
||||||
client_set = "set1"
|
client_set = "set1"
|
||||||
|
|
||||||
|
##Let people define multiple sets, so I can add more.
|
||||||
|
if "sets" in self.request.arguments:
|
||||||
|
newsets = tornado.escape.xhtml_escape(self.get_argument("sets")).split(",");
|
||||||
|
replaceset = []
|
||||||
|
for s in newsets:
|
||||||
|
if s in sets:
|
||||||
|
replaceset.append(s)
|
||||||
|
client_set = replaceset[r.hasharray[1] % len(replaceset) ]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if client_set == 'set1':
|
if client_set == 'set1':
|
||||||
client_set = colors[r.hasharray[0] % len(colors) ]
|
client_set = colors[r.hasharray[0] % len(colors) ]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user