Git Product home page Git Product logo

unidecode's People

Contributors

aviau avatar fiam avatar rainycape avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

unidecode's Issues

Code panics for Unicode U+10000

Decoding a string with a unicode rune of U+10000 โ€” ๐€€ โ€” results in a panic. The reason is line 45 in unidecode.go, which allows the aforementioned unicode character to slip through..

if c > unicode.MaxRune || c > transCount {

..causing an "index out of range" error in line 49. Changing this to..

if c > unicode.MaxRune || c >= transCount {

..fixes the problem.

please tag and version this project

Hello,

Can you please tag and version this project?

I am the Debian Maintainer for unidecode and versioning would help Debian keep up with development.

gopkgs.com early EOF

Hi,

I'm having difficulties cloning or go getting this package.

If I run go get gopkgs.com/unidecode.v1 I get error saying:

~/Github $ go get gopkgs.com/unidecode.v1
# cd .; git clone http://gopkgs.com/unidecode.v1 /Users/juuso/.gvm/pkgsets/go1.3.3/global/src/gopkgs.com/unidecode.v1
Cloning into '/Users/juuso/.gvm/pkgsets/go1.3.3/global/src/gopkgs.com/unidecode.v1'...
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: unpack-objects failed
package gopkgs.com/unidecode.v1: exit status 128

Running git clone http://gopkgs.com/unidecode.v1 prints:

~/Github $ git clone http://gopkgs.com/unidecode.v1
Cloning into 'unidecode.v1'...
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: unpack-objects failed

However, forking your project and cloning it works fine. Therefore I'd expect there would be something wrong with gopkgs.com.

I'd appreciate if you could take a look at this matter, as some projects which have the old repository as dependency are failing go build's on Linux.

Once this package is working, I could notify the other repository owners about the issue. Otherwise I'm afraid I need to do some major vendoring on my application.

Here are my current software versions as well:
git version 2.0.1
go version go1.3.3 darwin/amd64

Although, as I use version manager I can say that changing the go version to 1.2 does not help either.

Copyright owner

Hello!

I am packaging unidecode for Debian and I woulld like clarifications on who is the copyright owner.

Rainycape was the one to commit the license (4d52591). so I assume that the owner is the following:

2014 Rainy Cape S.L. <[email protected]>

Is that correct?

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.