Lang: text
Get the source!
Actions
Recent Pastes
text846557233 (f0nz julio 29, 2010 at 16:58)
FLOWERS (f0nz julio 29, 2010 at 16:27)
THE CAVEMAN (f0nz julio 29, 2010 at 16:36)
STARS (f0nz julio 29, 2010 at 16:49)
cherokee failing to start within a FreeBSD Jail (Wu julio 29, 2010 at 13:41)
TinyHTTPProxy (Wu julio 20, 2010 at 17:43)
some dirty z5 html rendered code (Wu julio 15, 2010 at 19:02)
As per request (MarcosBL julio 09, 2010 at 14:28)
using openssl to test aTLS smtp connection (Wu julio 09, 2010 at 12:25)
tcsh358213545 ( julio 01, 2010 at 18:37)
About
This is the paste site from e-shell.org, my personal website. It is an instance of the CodeSharingZ Zope Product (just take a look at http://zopecode.codigo23.net/wiki/CodeSharingZ to learn more about it). Feel free to paste whatever you want, but notice that all the pastes in here are deleted in a regular basis.
Links
L text
(http://en.wikipedia.org/wiki/Plain_text)

zsql method

A sample ZSQLMethod that is called directly by url, allowing traverse
 1 <params>cliente_id</params>
 2 select caso.id,  subtipo_tipo_caso.subtipo, 
 3 procedimiento_subtipo.procedimiento, caso.fecha_alta,
 4 caso.referencia, caso.num_archivo, caso.cerrado
 5 from caso, subtipo_tipo_caso, procedimiento_subtipo,
 6 caso_cliente
 7 where caso_cliente.id_cliente = <dtml-sqlvar cliente_id type=int>
 8 and caso.id = caso_cliente.id_caso
 9 and caso.activo='t'
10 and subtipo_tipo_caso.id = caso.id_subtipo
11 and procedimiento_subtipo.id = caso.id_procedimiento
12 group by 1,2,3,4,5,6,7
Pasted by on marzo 04, 2010 at 16:21 | Lang: text | (12 lines of code)