Skip to content

Commit 222c295

Browse files
committed
Update References
1 parent d4b8a75 commit 222c295

16 files changed

+1612
-821
lines changed

.github/ISSUE_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ Tell us what happens instead
3030

3131
- [name](href)
3232

33-
[Feature]: https://github.com/typeiii/jquery-csv/issues/new?template=FEAT_TEMPLATE.md&labels=feature
33+
[Feature]: https://github.com/evanplaice/jquery-csv/issues/new?template=FEAT_TEMPLATE.md&labels=feature
3434
[StackOverflow]: https://stackoverflow.com/questions/tagged/jquery-csv?mixed=1

.github/ISSUE_TEMPLATES/FEAT_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ A brief description of what the feature aims to accomplish
2222

2323
<!-- When this feature is ready to move on to implementation, create a [Specification][Specification]. -->
2424

25-
[Specification]: https://github.com/typeiii/jquery-csv/issues/new?template=SPEC_TEMPLATE.md&labels=specification
25+
[Specification]: https://github.com/evanplaice/jquery-csv/issues/new?template=SPEC_TEMPLATE.md&labels=specification

CONTRIBUTING.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
- Make superficial changes (ie style/structure) to existing code
3535
- Make API breaking changes unless they're clearly documented in a Specification
3636

37-
[Discussion]: https://github.com/typeiii/jquery-csv/issues/new?template=DISC_TEMPLATE.md&labels=discussion
37+
[Discussion]: https://github.com/evanplaice/jquery-csv/issues/new?template=DISC_TEMPLATE.md&labels=discussion
3838
[StackOverflow]: https://stackoverflow.com/questions/tagged/jquery-csv?mixed=1
39-
[Feature]: https://github.com/typeiii/jquery-csv/issues/new?template=FEAT_TEMPLATE.md&labels=feature
40-
[Specification]: https://github.com/typeiii/jquery-csv/issues/new?template=SPEC_TEMPLATE.md&labels=specification
39+
[Feature]: https://github.com/evanplaice/jquery-csv/issues/new?template=FEAT_TEMPLATE.md&labels=feature
40+
[Specification]: https://github.com/evanplaice/jquery-csv/issues/new?template=SPEC_TEMPLATE.md&labels=specification
4141
[Forking Workflow]: https://www.atlassian.com/git/tutorials/comparing-workflows/forking-workflow

README.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<p align="center"><strong>✓ NOTICE: For a more modern take on CSV parsing, check out the <a href="https://github.com/vanillaes/csv-es">CSV-ES</a> project ✓</strong></p>
22

3-
[![GitHub Releases](https://img.shields.io/github/release/typeiii/jquery-csv.svg)](https://github.com/typeiii/jquery-csv/releases)
3+
[![GitHub Releases](https://img.shields.io/github/release/evanplaice/jquery-csv.svg)](https://github.com/evanplaice/jquery-csv/releases)
44
[![NPM Release](https://img.shields.io/npm/v/jquery-csv.svg)](https://www.npmjs.com/package/jquery-csv)
5-
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/typeiii/jquery-csv/master/LICENSE)
6-
[![Latest Status](https://github.com/typeiii/jquery-csv/workflows/Latest/badge.svg)](https://github.com/typeiii/jquery-csv/actions)
7-
[![Release Status](https://github.com/typeiii/jquery-csv/workflows/Release/badge.svg)](https://github.com/typeiii/jquery-csv/actions)
5+
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/evanplaice/jquery-csv/master/LICENSE)
6+
[![Latest Status](https://github.com/evanplaice/jquery-csv/workflows/Latest/badge.svg)](https://github.com/evanplaice/jquery-csv/actions)
7+
[![Release Status](https://github.com/evanplaice/jquery-csv/workflows/Release/badge.svg)](https://github.com/evanplaice/jquery-csv/actions)
88

99
# Introduction
1010

@@ -115,35 +115,35 @@ Instead of the typical useless contrived example code, I have provided a handful
115115

116116
Want to play with the parser and maybe validate your CSV data without all the frills? No need to download the source first, there's a demo for that...
117117

118-
[jQuery-CSV - toArray()](http://typeiii.github.io/jquery-csv/examples/to-array.html)
118+
[jQuery-CSV - toArray()](http://evanplaice.github.io/jquery-csv/examples/to-array.html)
119119

120-
[jQuery-CSV - toArrays()](http://typeiii.github.io/jquery-csv/examples/to-arrays.html)
120+
[jQuery-CSV - toArrays()](http://evanplaice.github.io/jquery-csv/examples/to-arrays.html)
121121

122-
[jQuery-CSV - fromArrays()](http://typeiii.github.io/jquery-csv/examples/from-arrays.html)
122+
[jQuery-CSV - fromArrays()](http://evanplaice.github.io/jquery-csv/examples/from-arrays.html)
123123

124-
[jQuery-CSV - toObjects()](http://typeiii.github.io/jquery-csv/examples/to-objects.html)
124+
[jQuery-CSV - toObjects()](http://evanplaice.github.io/jquery-csv/examples/to-objects.html)
125125

126-
[jQuery-CSV - fromObjects()](http://typeiii.github.io/jquery-csv/examples/from-objects.html)
126+
[jQuery-CSV - fromObjects()](http://evanplaice.github.io/jquery-csv/examples/from-objects.html)
127127

128128
## Node.js ESM (EcmaScript Module) Import
129129

130130
Here's how to import jQuery-CSV as am ECMAScript module Node.js:
131131

132-
[jQuery-CSV - ESM Import Demonstration](http://typeiii.github.io/jquery-csv/examples/snippets/esm-usage.js)
132+
[jQuery-CSV - ESM Import Demonstration](http://evanplaice.github.io/jquery-csv/examples/snippets/esm-usage.js)
133133

134134
## Node.js CJS (CommonJS Module) Import
135135

136136
Here's how to import jQuery-CSV as CommonJS module Node.js:
137137

138-
[jQuery-CSV - CJS Import Demonstration](http://typeiii.github.io/jquery-csv/examples/snippets/node-usage.js)
138+
[jQuery-CSV - CJS Import Demonstration](http://evanplaice.github.io/jquery-csv/examples/snippets/node-usage.js)
139139

140140
## Client-Side File Handling
141141

142142
Yes, you read that right. It's now possible to open local files in the browser without firing a single request to the server.
143143

144144
The functionality is still pretty new so not all browsers support it (I'm looking @ you IE). If that's not an issue I highly suggest you try it. It's much easier than the traditional client/server approach.
145145

146-
[jQuery-CSV - File Handling Demonstration](http://typeiii.github.io/jquery-csv/examples/file-handling.html)
146+
[jQuery-CSV - File Handling Demonstration](http://evanplaice.github.io/jquery-csv/examples/file-handling.html)
147147

148148
## jQuery-CSV + Flot
149149

@@ -153,7 +153,7 @@ You can input the data set using either the text area provided or via uploading
153153

154154
Want to plot 5 data sets on the same grid, no problem; Just upload 5 files containing one dataset each. The jQuery-CSV will handle the plumbing while Flot will make it all look pretty.
155155

156-
[jQuery-CSV - Flot Demonstration](http://typeiii.github.io/jquery-csv/examples/flot.html)
156+
[jQuery-CSV - Flot Demonstration](http://evanplaice.github.io/jquery-csv/examples/flot.html)
157157

158158
## jQuery-CSV + Google Visualization API
159159

@@ -163,6 +163,6 @@ Don't want to draw a line graph, no problem you can tap into the massive collect
163163

164164
Warning: You may experience multiple spontaneous 'oh my got that's soo awesome' fits of excitement. Maybe even get stoked. Happens to the best us...
165165

166-
[jQuery-CSV - Google Visualization API Demonstration](http://typeiii.github.io/jquery-csv/examples/google-visualization.html)
166+
[jQuery-CSV - Google Visualization API Demonstration](http://evanplaice.github.io/jquery-csv/examples/google-visualization.html)
167167

168168
**jQuery-CSV** coding style is inherited from the [JQuery Core Style Guidelines](https://contribute.jquery.org/style-guide/)

examples/_template.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<div id="header">
1313
<h1 id="title">[operator]</h1>
14-
<div id="link"><a href="https://github.com/typeiii/jquery-csv">GitHub</a></div>
14+
<div id="link"><a href="https://github.com/evanplaice/jquery-csv">GitHub</a></div>
1515
</div>
1616
<div id="container">
1717
<section id="content">

examples/custom-date-parsing.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<div id="header">
1313
<h1 id="title">User Defined Date Parsing Callback</h1>
14-
<div id="link"><a href="https://github.com/typeiii/jquery-csv">GitHub</a></div>
14+
<div id="link"><a href="https://github.com/evanplaice/jquery-csv">GitHub</a></div>
1515
</div>
1616
<div id="container">
1717
<section id="content">

examples/file-handling.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<div id="header">
1313
<h1 id="title">Load from File</h1>
14-
<div id="link"><a href="https://github.com/typeiii/jquery-csv">GitHub</a></div>
14+
<div id="link"><a href="https://github.com/evanplaice/jquery-csv">GitHub</a></div>
1515
</div>
1616
<div id="container">
1717
<section id="content">

examples/flot.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<div id="header">
1313
<h1 id="title">jQuery-CSV + Flot</h1>
14-
<div id="link"><a href="https://github.com/typeiii/jquery-csv">GitHub</a></div>
14+
<div id="link"><a href="https://github.com/evanplaice/jquery-csv">GitHub</a></div>
1515
</div>
1616
<div id="container">
1717
<section id="content">

examples/from-arrays.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<div id="header">
1313
<h1 id="title">$.csv.fromArrays()</h1>
14-
<div id="link"><a href="https://github.com/typeiii/jquery-csv">GitHub</a></div>
14+
<div id="link"><a href="https://github.com/evanplaice/jquery-csv">GitHub</a></div>
1515
</div>
1616
<div id="container">
1717
<section id="content">

examples/from-objects.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<div id="header">
1313
<h1 id="title">$.csv.fromObjects()</h1>
14-
<div id="link"><a href="https://github.com/typeiii/jquery-csv">GitHub</a></div>
14+
<div id="link"><a href="https://github.com/evanplaice/jquery-csv">GitHub</a></div>
1515
</div>
1616
<div id="container">
1717
<section id="content">

examples/google-visualization.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<div id="header">
1313
<h1 id="title">jQuery-CSV + Google Visualization API</h1>
14-
<div id="link"><a href="https://github.com/typeiii/jquery-csv">GitHub</a></div>
14+
<div id="link"><a href="https://github.com/evanplaice/jquery-csv">GitHub</a></div>
1515
</div>
1616
<div id="container">
1717
<section id="content">

examples/to-array.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<div id="header">
1313
<h1 id="title">$.csv.toArray()</h1>
14-
<div id="link"><a href="https://github.com/typeiii/jquery-csv">GitHub</a></div>
14+
<div id="link"><a href="https://github.com/evanplaice/jquery-csv">GitHub</a></div>
1515
</div>
1616
<div id="container">
1717
<section id="content">

examples/to-arrays.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<div id="header">
1313
<h1 id="title">$.csv.toArrays()</h1>
14-
<div id="link"><a href="https://github.com/typeiii/jquery-csv">GitHub</a></div>
14+
<div id="link"><a href="https://github.com/evanplaice/jquery-csv">GitHub</a></div>
1515
</div>
1616
<div id="container">
1717
<section id="content">

examples/to-objects.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<div id="header">
1313
<h1 id="title">$.csv.toObjects()</h1>
14-
<div id="link"><a href="https://github.com/typeiii/jquery-csv">GitHub</a></div>
14+
<div id="link"><a href="https://github.com/evanplaice/jquery-csv">GitHub</a></div>
1515
</div>
1616
<div id="container">
1717
<section id="content">

0 commit comments

Comments
 (0)