-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
603 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# | ||
# List of Authors/Contributors | ||
# | ||
# This file is part of the OpenLink Structured Data Sniffer | ||
# | ||
# Copyright (C) 2015 OpenLink Software | ||
# | ||
# This project is free software; you can redistribute it and/or modify it | ||
# under the terms of the GNU General Public License as published by the | ||
# Free Software Foundation; only version 2 of the License, dated June 1991. | ||
# | ||
# This program is distributed in the hope that it will be useful, but | ||
# WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
# General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License along | ||
# with this program; if not, write to the Free Software Foundation, Inc., | ||
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
# | ||
# | ||
|
||
Current Maintainer | ||
------------------ | ||
Patrick van Kleef opensource{at}openlinksw.com | ||
|
||
|
||
Author | ||
------- | ||
Sergey Malinin smalinin{at}openlinksw.com | ||
|
||
|
||
Contributors | ||
------------ | ||
|
||
This list may not complete. If you have contributed to this project and want to appear on this list, | ||
please email the current maintainer. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# | ||
# CREDITS | ||
# | ||
# This file is part of the OpenLink Structured Data Sniffer | ||
# | ||
# Copyright (C) 2015 OpenLink Software | ||
# | ||
# This project is free software; you can redistribute it and/or modify it | ||
# under the terms of the GNU General Public License as published by the | ||
# Free Software Foundation; only version 2 of the License, dated June 1991. | ||
# | ||
# This program is distributed in the hope that it will be useful, but | ||
# WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
# General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License along | ||
# with this program; if not, write to the Free Software Foundation, Inc., | ||
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
# | ||
# | ||
|
||
The OpenLink Software ODE Sniffer project wishes to acknowledge incorporation of code from the | ||
following projects: | ||
|
||
* jQuery | ||
Project : https://jquery.com/ | ||
License : https://github.com/jquery/jquery/blob/master/LICENSE.txt, looks like MIT license | ||
Description : jQuery is a fast, small, and feature-rich JavaScript library. It makes things | ||
like HTML document traversal and manipulation, event handling, animation, and Ajax | ||
much simpler with an easy-to-use API that works across a multitude of browsers. | ||
|
||
|
||
* jQuery migrate | ||
Project : https://github.com/jquery/jquery-migrate | ||
License : https://github.com/jquery/jquery-migrate/blob/master/LICENSE.txt, looks like MIT license | ||
Description : Migrate older jQuery code to jQuery 1.9+ | ||
|
||
|
||
* jsonld.js | ||
Project : https://github.com/digitalbazaar/jsonld.js | ||
License : New BSD License (3-clause) | ||
Description : A JSON-LD Processor and API implementation in JavaScript. | ||
NOTE : This file was slightly adapted by OpenLink to comment out some unused code. | ||
The original file can be found in lib/original/jsonld.js for comparison. | ||
|
||
|
||
* Microdatajs | ||
Project : https://github.com/foolip/microdatajs | ||
License : MIT license | ||
Description : MicrodataJS is a jQuery plugin that provides an API for accessing Microdata | ||
inspired by (but by necessity slightly different from) the native DOM API. | ||
|
||
|
||
* N3.js | ||
Project : https://github.com/RubenVerborgh/N3.js | ||
License : MIT license | ||
Description : Lightning fast, asynchronous, streaming RDF for JavaScript. | ||
|
||
|
||
* RDFa.js | ||
Project : https://github.com/alexmilowski/green-turtle | ||
License : MIT license | ||
Description : An RDFa 1.1. implementation for browsers. | ||
NOTE : This file was slightly adapted by OpenLink to add some extra functionality and to | ||
comment out some unused code. The original file can be found in | ||
lib/original/RDFa.js for comparison. | ||
|
||
|
||
This list may not complete. If you feel any third party project is missing from this list, please | ||
email the current maintainer. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# OpenLink Structured Data Sniffer | ||
|
||
## Intro | ||
The OpenLink Structured Data Sniffer (OSDS) is a plugin for the Chrome browser that detects and | ||
shows structured data embedded in web pages in either of the following formats: | ||
|
||
- **JSON-LD** | ||
- **Microdata** | ||
- **RDFa** | ||
- **Turtle** | ||
|
||
## License | ||
Copyright 2015 [OpenLink Software](mailto:[email protected]) | ||
|
||
This software is licensed under the GNU General Public License (see | ||
[COPYING](http://github.com/openlink/rdf-editor/blob/develop/COPYING)). | ||
|
||
**Note**: that the only valid version of the GPL license as far as this project is concerned is the | ||
original GNU General Public License Version 2, dated June 1991. | ||
|
||
|
||
## Deployment | ||
|
||
First clone the sources from github, or download and extract a .tar.gz or .bzip based distribution. | ||
|
||
Then open your Chrome browser, choose **Preferences**, **Extensions** and choose the option **Load unpacked extension...**. | ||
|
||
Navigate to the folder with the source code and press the **Select** button, to install the extension in your browser. | ||
|
||
Next navigate to a page containing structured data such as: | ||
|
||
- [OpenLink Home Page](http://www.openlinksw.com/) | ||
- [BBC News](http://www.bbc.com/news) | ||
|
||
and click on the little icon that appears in the address bar. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters