Skip to content

Commit

Permalink
update links to data liberation front repos
Browse files Browse the repository at this point in the history
  • Loading branch information
Floppy committed Nov 11, 2020
1 parent a839f62 commit 1e31cc0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Contributing to CSVlint

CSVlint is open source, and contributions are gratefully accepted!
Details on how to contribute are below. By participating in this project, you agree to abide by our [Code of Conduct](https://github.com/theodi/csvlint/blob/CODE_OF_CONDUCT.md).
Details on how to contribute are below. By participating in this project, you agree to abide by our [Code of Conduct](https://github.com/Data-Liberation-Front/csvlint/blob/CODE_OF_CONDUCT.md).

Before you start coding on an issue, please reach out to us either on our [gitter channel](https://gitter.im/theodi/toolbox) or leave a comment on the issue ticket you are interested in contributing towards to indicate your interest in helping.

If this is your first time contributing to the ODI’s codebase you will need to [create a fork of this repository](https://help.github.com/articles/fork-a-repo/).

Consult our [Getting Started Guide](https://github.com/theodi/toolbox/wiki/Developers-Guide:-Getting-Started) (if necessary) and then follow the [readme instructions](https://github.com/theodi/csvlint/blob/master/README.md#development) to get your Development environment running locally
Consult our [Getting Started Guide](https://github.com/Data-Liberation-Front/toolbox/wiki/Developers-Guide:-Getting-Started) (if necessary) and then follow the [readme instructions](https://github.com/Data-Liberation-Front/csvlint/blob/master/README.md#development) to get your Development environment running locally

Ensure that the [tests](https://github.com/theodi/csvlint/blob/master/README.md#tests) pass before working on your contribution
Ensure that the [tests](https://github.com/Data-Liberation-Front/csvlint/blob/master/README.md#tests) pass before working on your contribution

## Code Review Process

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ CSVlint is an online validation tool for CSV files. It validates conformity of C

CSVlint is a rails app designed to act as a continuous validation service, so that when data is changed online, the validation is updated. Data can be online or uploaded for private validation.

The validation code is actually all done in a [Ruby gem](https://github.com/theodi/csvlint.rb) that can also be freely reused in other projects
The validation code is actually all done in a [Ruby gem](https://github.com/Data-Liberation-Front/csvlint.rb) that can also be freely reused in other projects

Follow the [public feature roadmap for CSVLint](https://trello.com/b/2xc7Q0kd/labs-public-toolbox-roadmap?menu=filter&filter=label:CSVlint)

Expand Down
4 changes: 2 additions & 2 deletions app/views/application/documentation.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,6 @@

<p>
This application uses the <code>csvlint.rb</code> Ruby gem made by the Open Data Institute.
For details on how to use the gem yourself, visit <a href = "https://github.com/theodi/csvlint.rb">
https://github.com/theodi/csvlint.rb</a>.
For details on how to use the gem yourself, visit <a href = "https://github.com/Data-Liberation-Front/csvlint.rb">
https://github.com/Data-Liberation-Front/csvlint.rb</a>.
</p>
2 changes: 1 addition & 1 deletion app/views/application/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ function assignEventTriggers(r){
},
error: function(req, textStatus, errorThrown){
var infobox = $('#ajax-error');
$('#ajax-info').html("<strong>Warning! "+errorThrown+"</strong><br>The request couldn't complete. We're working on improvements (see <a href=\"https://github.com/theodi/csvlint/issues\">here</a> for more), and check here for a list of common failures");
$('#ajax-info').html("<strong>Warning! "+errorThrown+"</strong><br>The request couldn't complete. We're working on improvements (see <a href=\"https://github.com/Data-Liberation-Front/csvlint/issues\">here</a> for more), and check here for a list of common failures");
infobox.removeClass('hidden');
infobox.addClass('alert alert-danger').fadeIn('slow');
// infobox.append("<br>"+err); // if you want a verbose output
Expand Down

0 comments on commit 1e31cc0

Please sign in to comment.