Difference between revisions of "CcValidator"

From Creative Commons
Jump to: navigation, search
(added Software Projects form)
 
Line 1: Line 1:
 +
{{Software Project
 +
|Description=ccValidator is an on-line service which parses Creative Commons licenses, validates the RDF and displays their contents in human readable form.  The service is available at http://validator.creativecommons.org.
 +
|Bug tracker=http://code.creativecommons.org/issues/issue?status=-1,1,2,3,4,5,6,7&@sort=-activity&@search_text=&@dispname=Validator&@filter=status,project&@group=priority&project=15&@columns=id,activity,title,creator,assignedto,status&@pagesize=50&@startwith=0
 +
|Code repository=http://code.creativecommons.org/viewgit/validator.git/
 +
|Mailing list=http://lists.ibiblio.org/mailman/listinfo/cc-devel
 +
}}
 
[[Category:Developer]]
 
[[Category:Developer]]
 
[[Category:Opensource]]
 
[[Category:Opensource]]
 
[[Category:Tools]]
 
[[Category:Tools]]
  
ccValidator is an on-line service which parses Creative Commons licenses, validates the RDF and displays their contents in human readable form.  It is useful for ensuring that your license accurately reflects the rights you wish to reserve (or not).  The service is available from the Creative Commons website, at http://validator.creativecommons.org.
+
== Background ==
  
This service was first created in response to a list of [[Developer Challenges|developer challenges]] published by the Creative Commons and totally revamped during Google Summer of Code 2008.  Suggestions and bug reports are always welcome.  You can e-mail them to software@creativecommons.org.   
+
This service was first created in response to a list of [[Developer Challenges|developer challenges]] published by the Creative Commons and totally revamped during Google Summer of Code 2008.  Suggestions and bug reports are always welcome.   
  
 
== Architecture ==
 
== Architecture ==

Latest revision as of 22:06, 30 July 2009

Description of Software ccValidator is an on-line service which parses Creative Commons licenses, validates the RDF and displays their contents in human readable form. The service is available at http://validator.creativecommons.org.
Bug Tracker Link to Bug Tracker
Code Repository Link to Code repository
Mailing List Link to Mailing list

Background

This service was first created in response to a list of developer challenges published by the Creative Commons and totally revamped during Google Summer of Code 2008. Suggestions and bug reports are always welcome.

Architecture

The validator consists of a Pylons web app called "validator" and a Python support module called "libvalidator." libvalidator handles RDF in many formats; RDF in a comment, RDFa, or inline RDF/XML. HTML is processed by html5lib, and the RDF is passed on to RDFlib. The CC RDF information is accessed via the cc.license Python module that wraps the Creative Commons RDF data.

Source Code

The current implementation is available in git. Setting up the validator requires three modules:

  • cc.license
  • libvalidator
  • validator

(If you are not familiar with our git repository, read our documentation on our source repositories.)

If you don't mind cluttering up your PYTHONPATH, the easiest way to get going to is to clone each of these and run "python setup.py install". After that, read the README in the validator repository; you can easily launch the validator web application, by default listening on localhost port 5000.

Demonstration

The validator can validate both our old RDF-in-a-comment and the recommendation from here on out, RDFa. The validator's front page links to these sample documents.

Additional Resources

Bug reports should be submitted via the CC issue tracker.