Skip to content

Commit

Permalink
Added license definitions to the JS files
Browse files Browse the repository at this point in the history
  • Loading branch information
davglass committed Sep 13, 2011
1 parent 6593b57 commit dbb420c
Show file tree
Hide file tree
Showing 8 changed files with 41 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/builder.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
Copyright (c) 2011, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/

var markdown = require("node-markdown").Markdown,
fs = require('fs'),
handlebars = require('./handlebars').Handlebars,
Expand Down
5 changes: 5 additions & 0 deletions lib/cli.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
#!/usr/bin/env node
/*
Copyright (c) 2011, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/

/**
* Parses the arguments, creates the options and passes them to Y.YUIDoc.
Expand Down
5 changes: 5 additions & 0 deletions lib/docparser.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
Copyright (c) 2011, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/
YUI.add('docparser', function(Y) {

var Lang = Y.Lang,
Expand Down
5 changes: 5 additions & 0 deletions lib/docview.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
Copyright (c) 2011, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/
YUI.add('docview', function(Y) {


Expand Down
5 changes: 5 additions & 0 deletions lib/help.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
Copyright (c) 2011, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/
YUI.add('help', function(Y) {

var help = [
Expand Down
5 changes: 5 additions & 0 deletions lib/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
Copyright (c) 2011, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/
/**
* Module creates the YUI instance with the required modules, uses them and exports the **Y** to be used
* by the _CLI class_ or by extenders: `require('yuidocjs');`
Expand Down
5 changes: 5 additions & 0 deletions lib/utils.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
Copyright (c) 2011, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/
var path = require('path'),
util = require('util'),
minimatch = require('minimatch'),
Expand Down
5 changes: 5 additions & 0 deletions lib/yuidoc.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
Copyright (c) 2011, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/
var fs = require("fs"),
sys = require("sys"),
path = require("path");
Expand Down

0 comments on commit dbb420c

Please sign in to comment.