Giter Club home page Giter Club logo

Comments (6)

aaronsw avatar aaronsw commented on July 30, 2024

This should be happening at the template processing level...you shouldn't need to wrap every variable inside the template.

from webpy.

marcogiusti avatar marcogiusti commented on July 30, 2024

What to you mean when you say "at processing level"? Do you mean filtering? This doesn't happen, at least to me.

from webpy.

aaronsw avatar aaronsw commented on July 30, 2024

Then it sounds like that's the bug... Does filtering not work for you at all or only on error pages?

from webpy.

marcogiusti avatar marcogiusti commented on July 30, 2024

I reproduced in a minimal environment. While the application I'm writing should run on google appengine i moved djangoerror_t in a template and replaced the following lines:

global djangoerror_r
if djangoerror_r is None:
    djangoerror_r = Template(djangoerror_t, filename=__file__, filter=websafe)

with:

global djangoerror_r
if djangoerror_r is None:
    djangoerror_r = render('templates').debugerror

and actually the error raise only in a modified version. So I tried a minimal example and seems that variables loaded from templates are not escaped. Here the code:

import web
from google.appengine.ext.webapp.util import run_wsgi_app


web.config['debug'] = True
urls = (
    '/', 'index',
    '/error', 'error'
)
app = web.application(urls, globals())
render = web.template.render('templates')


class index:

    def GET(self):
        return render.index('<marco>')


class error:

    def GET(self):
        return render.error()


def main():
    application = app.wsgifunc()
    run_wsgi_app(application)


if __name__ == '__main__':
    main()

and the template:

$def with (who)

hello $who

from webpy.

marcogiusti avatar marcogiusti commented on July 30, 2024

I found the bug. the problems rise in compiled templates used by appengine. By default variables are escaped by escape_ func which is a CompiledTemplate method but of a dummy object. This template haven't an associated file and as result in template.py:866 the associated filter is None. I hope i was clear.

PS. Which is the preferred/ufficial bug tracker? this one or the lauchpad one?

from webpy.

anandology avatar anandology commented on July 30, 2024

Fixed escaping issue on GAE. closed by 84205cf.

from webpy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.