Skip to content

Commit 7cfafe0

Browse files
committed
Replace kyne.com.au with kyne.au
1 parent e8972ac commit 7cfafe0

File tree

13 files changed

+25
-25
lines changed

13 files changed

+25
-25
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2010-2012 Mark Pulford <mark@kyne.com.au>
1+
Copyright (c) 2010-2012 Mark Pulford <[email protected]>
22

33
Permission is hereby granted, free of charge, to any person obtaining
44
a copy of this software and associated documentation files (the

README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
= Lua CJSON =
2-
Mark Pulford <mark@kyne.com.au>
2+
Mark Pulford <mark@kyne.au>
33

44
The Lua CJSON module provides JSON support for Lua.
55

@@ -20,7 +20,7 @@ Please read +manual.adoc+ for installation instructions and the API
2020
manual.
2121

2222
The current stable version of this software is available from the
23-
http://www.kyne.com.au/%7Emark/software/lua-cjson.php[Lua CJSON website].
23+
http://www.kyne.au/%7Emark/software/lua-cjson.php[Lua CJSON website].
2424

2525
Feel free to email me if you have any patches, suggestions, or comments.
2626

fpconv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* fpconv - Floating point conversion routines
22
*
3-
* Copyright (c) 2011-2012 Mark Pulford <mark@kyne.com.au>
3+
* Copyright (c) 2011-2012 Mark Pulford <[email protected]>
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining
66
* a copy of this software and associated documentation files (the

lua-cjson-2.1devel-1.rockspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package = "lua-cjson"
22
version = "2.1devel-1"
33

44
source = {
5-
url = "http://www.kyne.com.au/~mark/software/download/lua-cjson-2.1devel.zip",
5+
url = "http://www.kyne.au/~mark/software/download/lua-cjson-2.1devel.zip",
66
}
77

88
description = {
@@ -15,7 +15,7 @@ description = {
1515
(infinity, NaN,..)
1616
- No dependencies on other libraries
1717
]],
18-
homepage = "http://www.kyne.com.au/~mark/software/lua-cjson.php",
18+
homepage = "http://www.kyne.au/~mark/software/lua-cjson.php",
1919
license = "MIT"
2020
}
2121

lua-cjson.spec

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Summary: A fast JSON encoding/parsing module for Lua
99

1010
Group: Development/Libraries
1111
License: MIT
12-
URL: http://www.kyne.com.au/~mark/software/lua-cjson/
13-
Source0: http://www.kyne.com.au/~mark/software/lua-cjson/download/lua-cjson-%{version}.tar.gz
12+
URL: http://www.kyne.au/~mark/software/lua-cjson/
13+
Source0: http://www.kyne.au/~mark/software/lua-cjson/download/lua-cjson-%{version}.tar.gz
1414
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
1515

1616
BuildRequires: lua >= %{luaver}, lua-devel >= %{luaver}
@@ -57,24 +57,24 @@ rm -rf "$RPM_BUILD_ROOT"
5757

5858

5959
%changelog
60-
* Thu Mar 1 2012 Mark Pulford <mark@kyne.com.au> - 2.1.0-1
60+
* Thu Mar 1 2012 Mark Pulford <[email protected]> - 2.1.0-1
6161
- Update for 2.1.0
6262

63-
* Sun Jan 22 2012 Mark Pulford <mark@kyne.com.au> - 2.0.0-1
63+
* Sun Jan 22 2012 Mark Pulford <[email protected]> - 2.0.0-1
6464
- Update for 2.0.0
6565
- Install lua2json / json2lua utilities
6666

67-
* Wed Nov 27 2011 Mark Pulford <mark@kyne.com.au> - 1.0.4-1
67+
* Wed Nov 27 2011 Mark Pulford <[email protected]> - 1.0.4-1
6868
- Update for 1.0.4
6969

70-
* Wed Sep 15 2011 Mark Pulford <mark@kyne.com.au> - 1.0.3-1
70+
* Wed Sep 15 2011 Mark Pulford <[email protected]> - 1.0.3-1
7171
- Update for 1.0.3
7272

73-
* Sun May 29 2011 Mark Pulford <mark@kyne.com.au> - 1.0.2-1
73+
* Sun May 29 2011 Mark Pulford <[email protected]> - 1.0.2-1
7474
- Update for 1.0.2
7575

76-
* Sun May 10 2011 Mark Pulford <mark@kyne.com.au> - 1.0.1-1
76+
* Sun May 10 2011 Mark Pulford <[email protected]> - 1.0.1-1
7777
- Update for 1.0.1
7878

79-
* Sun May 1 2011 Mark Pulford <mark@kyne.com.au> - 1.0-1
79+
* Sun May 1 2011 Mark Pulford <[email protected]> - 1.0-1
8080
- Initial package

lua/cjson/util.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ local json = require "cjson"
22

33
-- Various common routines used by the Lua CJSON package
44
--
5-
-- Mark Pulford <mark@kyne.com.au>
5+
-- Mark Pulford <[email protected]>
66

77
-- Determine with a Lua table can be treated as an array.
88
-- Explicitly returns "not an array" for very sparse arrays.

lua_cjson.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* Lua CJSON - JSON support for Lua
22
*
3-
* Copyright (c) 2010-2012 Mark Pulford <mark@kyne.com.au>
3+
* Copyright (c) 2010-2012 Mark Pulford <[email protected]>
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining
66
* a copy of this software and associated documentation files (the

manual.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
= Lua CJSON 2.1devel Manual =
2-
Mark Pulford <mark@kyne.com.au>
2+
Mark Pulford <mark@kyne.au>
33
:revdate: August 2016
44

55
Overview
@@ -21,7 +21,7 @@ Lua CJSON is covered by the MIT license. Review the file +LICENSE+ for
2121
details.
2222

2323
The current stable version of this software is available from the
24-
http://www.kyne.com.au/%7Emark/software/lua-cjson.php[Lua CJSON website].
24+
http://www.kyne.au/%7Emark/software/lua-cjson.php[Lua CJSON website].
2525

2626
Feel free to email me if you have any patches, suggestions, or comments.
2727

performance.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
JSON module performance comparison under Lua
22
============================================
3-
Mark Pulford <mark@kyne.com.au>
3+
Mark Pulford <mark@kyne.au>
44
:revdate: January 22, 2012
55

66
This performance comparison aims to provide a guide of relative
@@ -26,7 +26,7 @@ http://chiselapp.com/user/dhkolf/repository/dkjson/[DKJSON 2.1]::
2626
https://github.com/brimworks/lua-yajl[Lua YAJL 2.0]::
2727
- C wrapper for the YAJL library
2828

29-
http://www.kyne.com.au/%7Emark/software/lua-cjson.php[Lua CJSON 2.0.0]::
29+
http://www.kyne.au/%7Emark/software/lua-cjson.php[Lua CJSON 2.0.0]::
3030
- C implementation with no dependencies on other libraries
3131

3232

strbuf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* strbuf - String buffer routines
22
*
3-
* Copyright (c) 2010-2012 Mark Pulford <mark@kyne.com.au>
3+
* Copyright (c) 2010-2012 Mark Pulford <[email protected]>
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining
66
* a copy of this software and associated documentation files (the

0 commit comments

Comments
 (0)