Coder Social home page Coder Social logo

Comments (6)

threedaymonk avatar threedaymonk commented on August 16, 2024

I can't reproduce this: , is decoded to , for me.

What else is in your project? What is self.Long_Description? That's a really strange name for a Ruby method (it shouldn't normally start with a capital letter), which makes me wonder about the rest of the environment.

I'm closing this for now; please reopen it if you can make a minimal test case that demonstrates the problem.

from htmlentities.

Jonathan-Garber avatar Jonathan-Garber commented on August 16, 2024

Thanks
You can leave this closed. I went a different direction and resolved the issue myself.

from htmlentities.

Jonathan-Garber avatar Jonathan-Garber commented on August 16, 2024

Ok so I actually came back to using HTMLEntities for decoding and I still have this same error.

def test
  require 'htmlentities'
  coder = HTMLEntities.new
    product = Product.where(Product_Number: item).take
    number = coder.decode(product.Product_Number)
    name = coder.decode(product.Product_Name)
    manufacturer = coder.decode(product.Manufacturer)
    desc = coder.decode(product.Long_Description)
end

All entities are properly replaced except ,

All products are imported from a CSV sheet to the table. Long_Description is t.text and contains the plain text description of the item. The CSV Long_Description is plaintext with the html encoded already.

So I am decoding them on the fly. I rather decode them before saving to the database but I couldn't make that work properly either. I had the same issue with the , remaining encoded

Why would it work on all other entities except that one? I am totally lost on this.

from htmlentities.

Jonathan-Garber avatar Jonathan-Garber commented on August 16, 2024

If it helps I did some more testing tonight at I found a description like this

Some Words Here, More Words Here

Which gives me

Some Words Here, More Words Here

I also found its not working for me on

"

I am beginning to think its due to how the descriptions are for some of these items. I might be stuck with fixing them by hand once they are added in from the CSV sheet.

from htmlentities.

threedaymonk avatar threedaymonk commented on August 16, 2024

That is actually working as it's supposed to: you've got double-escaped text there (→ = decode, ← = encode):

,,,

If you decode twice, it should give you the results you expect.

from htmlentities.

Jonathan-Garber avatar Jonathan-Garber commented on August 16, 2024

hrm.. It's a shame I don't have control over how the content is on these CSV Sheets.

However double decoding seems to have fixed it properly. Thank you for that advice. I simply didn't think to try double decoding it.

Thanks again

from htmlentities.

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.