Coder Social home page Coder Social logo

Comments (9)

trink avatar trink commented on July 24, 2024

Yeah param_value would have to allow the escaped versions of ", ', ] but it can be fixed up as well.

from lua_sandbox.

jedisct1 avatar jedisct1 commented on July 24, 2024

Indeed, something like

local esc             = l.P'\\'
local param_value_esc = l.S'"\\]'
local param_value     = ((octet - param_value_esc) + (esc * param_value_esc))^0

might be enough to fix it.

from lua_sandbox.

trink avatar trink commented on July 24, 2024

It would still have to work for something like "foo\bar". The sd_name grammar can be simplified too. Are you interested in submitting a PR for this?

from lua_sandbox.

jedisct1 avatar jedisct1 commented on July 24, 2024

foo\bar would have to be written foo\\bar. I don't think that foo\bar is correct according to the RFC.

I can certainly submit a PR for this.

from lua_sandbox.

jedisct1 avatar jedisct1 commented on July 24, 2024

Stupid question: aren't we supposed to capture (name, value) pairs here?

from lua_sandbox.

trink avatar trink commented on July 24, 2024

That is definitely an option, otherwise it will just capture the entire string. Breaking it into individual message fields would be very useful we just didn't have the need (you are the first to use the structured format)

from lua_sandbox.

jedisct1 avatar jedisct1 commented on July 24, 2024

Having the parser return a table with the fields is probably better than returning the entire string that will have to be parsed anyway.

I'm gonna add this to my initial pull request.

from lua_sandbox.

jedisct1 avatar jedisct1 commented on July 24, 2024

Can you look at the PR again?

foo\bar is now allowed, and the captured fields are returned as a table.

from lua_sandbox.

jedisct1 avatar jedisct1 commented on July 24, 2024

Can you review the current PR?

from lua_sandbox.

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.