Skip to content

Commit

Permalink
Merge pull request #299 from hugovk/https
Browse files Browse the repository at this point in the history
http -> https
  • Loading branch information
hugovk committed Feb 23, 2020
2 parents 58729f0 + d53480c commit 7c60d47
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions LICENSE.txt
@@ -1,4 +1,4 @@
Developed by ESN, an Electronic Arts Inc. studio.
Developed by ESN, an Electronic Arts Inc. studio.
Copyright (c) 2014, Electronic Arts Inc.
All rights reserved.

Expand Down Expand Up @@ -26,10 +26,10 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


Portions of code from MODP_ASCII - Ascii transformations (upper/lower, etc)
http://code.google.com/p/stringencoders/
https://github.com/client9/stringencoders
Copyright (c) 2007 Nick Galbreath -- nickg [at] modp [dot] com. All rights reserved.

Numeric decoder derived from from TCL library
http://www.opensource.apple.com/source/tcl/tcl-14/tcl/license.terms
https://opensource.apple.com/source/tcl/tcl-14/tcl/license.terms
* Copyright (c) 1988-1993 The Regents of the University of California.
* Copyright (c) 1994 Sun Microsystems, Inc.
6 changes: 3 additions & 3 deletions README.rst
Expand Up @@ -7,11 +7,11 @@ UltraJSON is an ultra fast JSON encoder and decoder written in pure C with bindi

For a more painless day to day C/C++ JSON decoder experience please checkout ujson4c_, based on UltraJSON.

.. _ujson4c: http://github.com/esnme/ujson4c/
.. _ujson4c: https://github.com/esnme/ujson4c/

| Please checkout the rest of the projects in the Ultra series:
| http://github.com/esnme/ultramemcache
| http://github.com/esnme/ultramysql
| https://github.com/esnme/ultramemcache
| https://github.com/esnme/ultramysql
To install it just run Pip as usual:

Expand Down
2 changes: 1 addition & 1 deletion deps/double-conversion/BUILD
@@ -1,4 +1,4 @@
# Bazel(http://bazel.io) BUILD file
# Bazel (https://bazel.build/) BUILD file

licenses(["notice"])

Expand Down
2 changes: 1 addition & 1 deletion deps/double-conversion/WORKSPACE
@@ -1 +1 @@
# Bazel (http://bazel.io/) WORKSPACE file for double-conversion.
# Bazel (https://bazel.build/) WORKSPACE file for double-conversion.
2 changes: 1 addition & 1 deletion deps/double-conversion/double-conversion/fast-dtoa.cc
Expand Up @@ -232,7 +232,7 @@ static bool RoundWeedCounted(Vector<char> buffer,
// Precondition: number < (1 << (number_bits + 1)).

// Inspired by the method for finding an integer log base 10 from here:
// http://graphics.stanford.edu/~seander/bithacks.html#IntegerLog10
// https://graphics.stanford.edu/~seander/bithacks.html#IntegerLog10
static unsigned int const kSmallPowersOfTen[] =
{0, 1, 10, 100, 1000, 10000, 100000, 1000000, 10000000, 100000000,
1000000000};
Expand Down
4 changes: 2 additions & 2 deletions lib/ultrajson.h
Expand Up @@ -27,11 +27,11 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Portions of code from MODP_ASCII - Ascii transformations (upper/lower, etc)
http://code.google.com/p/stringencoders/
https://github.com/client9/stringencoders
Copyright (c) 2007 Nick Galbreath -- nickg [at] modp [dot] com. All rights reserved.
Numeric decoder derived from from TCL library
http://www.opensource.apple.com/source/tcl/tcl-14/tcl/license.terms
https://opensource.apple.com/source/tcl/tcl-14/tcl/license.terms
* Copyright (c) 1988-1993 The Regents of the University of California.
* Copyright (c) 1994 Sun Microsystems, Inc.
*/
Expand Down
4 changes: 2 additions & 2 deletions lib/ultrajsondec.c
Expand Up @@ -27,11 +27,11 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Portions of code from MODP_ASCII - Ascii transformations (upper/lower, etc)
http://code.google.com/p/stringencoders/
https://github.com/client9/stringencoders
Copyright (c) 2007 Nick Galbreath -- nickg [at] modp [dot] com. All rights reserved.
Numeric decoder derived from from TCL library
http://www.opensource.apple.com/source/tcl/tcl-14/tcl/license.terms
https://opensource.apple.com/source/tcl/tcl-14/tcl/license.terms
* Copyright (c) 1988-1993 The Regents of the University of California.
* Copyright (c) 1994 Sun Microsystems, Inc.
*/
Expand Down
4 changes: 2 additions & 2 deletions lib/ultrajsonenc.c
Expand Up @@ -27,11 +27,11 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Portions of code from MODP_ASCII - Ascii transformations (upper/lower, etc)
http://code.google.com/p/stringencoders/
https://github.com/client9/stringencoders
Copyright (c) 2007 Nick Galbreath -- nickg [at] modp [dot] com. All rights reserved.
Numeric decoder derived from from TCL library
http://www.opensource.apple.com/source/tcl/tcl-14/tcl/license.terms
https://opensource.apple.com/source/tcl/tcl-14/tcl/license.terms
* Copyright (c) 1988-1993 The Regents of the University of California.
* Copyright (c) 1994 Sun Microsystems, Inc.
*/
Expand Down
4 changes: 2 additions & 2 deletions python/py_defines.h
Expand Up @@ -27,11 +27,11 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Portions of code from MODP_ASCII - Ascii transformations (upper/lower, etc)
http://code.google.com/p/stringencoders/
https://github.com/client9/stringencoders
Copyright (c) 2007 Nick Galbreath -- nickg [at] modp [dot] com. All rights reserved.
Numeric decoder derived from from TCL library
http://www.opensource.apple.com/source/tcl/tcl-14/tcl/license.terms
https://opensource.apple.com/source/tcl/tcl-14/tcl/license.terms
* Copyright (c) 1988-1993 The Regents of the University of California.
* Copyright (c) 1994 Sun Microsystems, Inc.
*/
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -94,7 +94,7 @@ def get_version():
ext_modules = [module1],
author="Jonas Tarnstrom",
author_email="jonas.tarnstrom@esn.me",
download_url="http://github.com/esnme/ultrajson",
download_url="https://github.com/esnme/ultrajson",
platforms=['any'],
url="http://www.esn.me",
cmdclass = {'build_ext': build_ext, 'build_clib': build_clib_without_warnings},
Expand Down

0 comments on commit 7c60d47

Please sign in to comment.