web/data/cubicweb.goa.js
changeset 5658 7b9553a9db65
parent 0 b97547f5f1fa
child 5774 0d792bceb25d
equal deleted inserted replaced
5655:ef903fff826d 5658:7b9553a9db65
     1 /*
     1 /**
     2  *  functions specific to cubicweb on google appengine
     2  *  functions specific to cubicweb on google appengine
     3  *
     3  *
     4  *  :organization: Logilab
     4  *  :organization: Logilab
     5  *  :copyright: 2008 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
     5  *  :copyright: 2008-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
     6  *  :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
     6  *  :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
     7  */
     7  */
     8 
     8 
     9 /* overrides rql_for_eid function from htmlhelpers.hs */
     9 /**
    10 function rql_for_eid(eid) { return 'Any X WHERE X eid "' + eid + '"'; }
    10  * .. function:: rql_for_eid(eid)
       
    11  *
       
    12  * overrides rql_for_eid function from htmlhelpers.hs
       
    13  */
       
    14 function rql_for_eid(eid) {
       
    15 	return 'Any X WHERE X eid "' + eid + '"';
       
    16 }
       
    17