1
0
Fork 0

ease.js is now GNU ease.js.

On Sun, Dec 22, 2013 at 03:31:08AM -0500, Richard Stallman wrote:
> I hereby dub ease.js a GNU package, and you its maintainer.
>
> Please don't forget to mention prominently in the README file and
> other suitable documentation places that it is a GNU program.
perfodd
Mike Gerwitz 2013-12-22 09:37:21 -05:00
parent 26dffce00a
commit 8b83add95f
110 changed files with 146 additions and 134 deletions

8
README
View File

@ -3,7 +3,7 @@ Configuring ease.js
Copyright (C) 2013 Mike Gerwitz Copyright (C) 2013 Mike Gerwitz
This file is part of ease.js. This file is part of GNU ease.js.
Copying and distribution of this file, with or without modification, are Copying and distribution of this file, with or without modification, are
permitted in any medium without royalty provided the copyright notice and permitted in any medium without royalty provided the copyright notice and
@ -11,9 +11,9 @@ Configuring ease.js
of any kind. of any kind.
This file contains information on configuring and building ease.js; for This file contains information on configuring and building GNU ease.js; for
information on using the library, please see the Markdown-formatted information on using the library, please see the Markdown-formatted README.md
README.md file or the Texinfo manual. file or the Texinfo manual.
Installing Installing

View File

@ -1,8 +1,8 @@
# ease.js # GNU ease.js
ease.js is a collection of CommonJS modules intended to "ease" the transition GNU ease.js is a classical object-oriented framework for Javascript, intended to
into JavaScript from other Object-Oriented languages. It provides an intuitive eliminate boilerplate code and "ease" the transition into JavaScript from other
means of achieving classical inheritance and has planned support traits/mixins. object-oriented languages.
Current support includes: Current support includes:
@ -13,7 +13,7 @@ Current support includes:
* Visibility (public, protected and private members) * Visibility (public, protected and private members)
* Static and constant members * Static and constant members
While the current focus of the project is Object-Oriented design, it is likely While the current focus of the project is object-oriented design, it is likely
that ease.js will expand to other paradigms in the future. that ease.js will expand to other paradigms in the future.
**This project is under active development. Please see the manual for more **This project is under active development. Please see the manual for more
@ -32,7 +32,7 @@ http://easejs.org/bugs/
## Why ease.js? ## Why ease.js?
There are already a number of libraries/frameworks that permit basic classical There are already a number of libraries/frameworks that permit basic classical
Object-Oriented development, so why ease.js? While many of the existing object-oriented development, so why ease.js? While many of the existing
solutions certainly provide viable solutions, they are largely incomplete. Until solutions certainly provide viable solutions, they are largely incomplete. Until
the appearance of ECMAScript 5, many of the features enjoyed by classical OO the appearance of ECMAScript 5, many of the features enjoyed by classical OO
developers were elusive to JavaScript. The aim of this project is to provide an developers were elusive to JavaScript. The aim of this project is to provide an
@ -49,7 +49,7 @@ whatever native ECMAScript implementation is decided upon.
### Why Classical OOP in JavaScript? ### Why Classical OOP in JavaScript?
ease.js was created (historically) for a number of reasons: ease.js was created (historically) for a number of reasons:
* To "ease" Object-Oriented developers into JavaScript by providing a familiar * To "ease" object-oriented developers into JavaScript by providing a familiar
environment. environment.
* To provide the maintenance and development benefits of classical OOP. * To provide the maintenance and development benefits of classical OOP.
* To provide features missing from the language, such as proper encapsulation * To provide features missing from the language, such as proper encapsulation
@ -57,9 +57,9 @@ ease.js was created (historically) for a number of reasons:
etc. etc.
* To encapsulate the hacks commonly used to perform the above tasks. * To encapsulate the hacks commonly used to perform the above tasks.
Many JS purists believe that classical Object-Oriented programming should be Many JS purists believe that classical object-oriented programming should be
left out of the language and one should stick strictly to prototypal left out of the language and one should stick strictly to prototypal
development. While the two are related (both Object-Oriented), they can be development. While the two are related (both object-oriented), they can be
applied to different problem domains in order to achieve results that are more applied to different problem domains in order to achieve results that are more
natural or intuitive to developers. ease.js works seamlessly with existing natural or intuitive to developers. ease.js works seamlessly with existing
prototypes, allowing the developer to choose whether or not they want to use prototypes, allowing the developer to choose whether or not they want to use

View File

@ -2,7 +2,7 @@
# #
# Copyright (C) 2013 Mike Gerwitz # Copyright (C) 2013 Mike Gerwitz
# #
# This file is part of ease.js. # This file is part of GNU ease.js.
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by

View File

@ -4,7 +4,7 @@
# #
# Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz # Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz
# #
# This file is part of ease.js. # This file is part of GNU ease.js.
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by

View File

@ -1,4 +1,4 @@
@c This document is part of the ease.js manual @c This document is part of the GNU ease.js manual.
@c Copyright (c) 2011 Mike Gerwitz @c Copyright (c) 2011 Mike Gerwitz
@c Permission is granted to copy, distribute and/or modify this document @c Permission is granted to copy, distribute and/or modify this document
@c under the terms of the GNU Free Documentation License, Version 1.3 @c under the terms of the GNU Free Documentation License, Version 1.3
@ -8,12 +8,11 @@
@c Free Documentation License''. @c Free Documentation License''.
@node About @node About
@unnumbered About ease.js @unnumbered About GNU ease.js
ease.js is a collection of @uref{http://commonjs.org, CommonJS} modules intended GNU ease.js is a classical object-oriented framework for Javascript, intended to
to ``ease'' the transition into JavaScript from other Object-Oriented languages. eliminate boilerplate code and "ease" the transition into JavaScript from other
It provides an intuitive means of achieving classical inheritance and has object-oriented languages.
planned support for traits/mixins, function overloading and more.
Current support includes: Current support includes:
@itemize @bullet @itemize @bullet
@ -30,10 +29,11 @@ that ease.js will expand to other paradigms in the future.
@section History @section History
ease.js was initially developed for use at Mike's place of employment in order to ease.js was initially developed for use at the author's place of employment in
move the familiar concept of Object Oriented development over to JavaScript for order to move the familiar concept of object-oriented development over to
use in robust web applications. JavaScript lacks basic core principals of Object JavaScript for use in robust web applications. JavaScript lacks basic core
Oriented development, the most major of which is proper encapsulation. principals of object-oriented development, the most major of which is proper
encapsulation.
The library would be required to work both server and client-side, supporting The library would be required to work both server and client-side, supporting
all major web browsers as far back as Internet Explorer 6. Since it would be all major web browsers as far back as Internet Explorer 6. Since it would be
@ -73,6 +73,9 @@ the future.
The project is owned and developed independently by Mike Gerwitz. There is no The project is owned and developed independently by Mike Gerwitz. There is no
ownership by his employer. ownership by his employer.
On 22 December 2013, ease.js officially became a part of GNU with the kind help
and supervision of Brandon Invergo.
@section Why ease.js? @section Why ease.js?
There already exists a number of different ways to accomplish inheritance and There already exists a number of different ways to accomplish inheritance and

View File

@ -1,4 +1,4 @@
@c This document is part of the ease.js manual @c This document is part of the GNU ease.js manual.
@c Copyright (c) 2011 Mike Gerwitz @c Copyright (c) 2011 Mike Gerwitz
@c Permission is granted to copy, distribute and/or modify this document @c Permission is granted to copy, distribute and/or modify this document
@c under the terms of the GNU Free Documentation License, Version 1.3 @c under the terms of the GNU Free Documentation License, Version 1.3

View File

@ -1,14 +1,23 @@
@c This document is part of the GNU ease.js manual.
@c Copyright (c) 2011 Mike Gerwitz
@c Permission is granted to copy, distribute and/or modify this document
@c under the terms of the GNU Free Documentation License, Version 1.3
@c or any later version published by the Free Software Foundation;
@c with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
@c Texts. A copy of the license is included in the section entitled ``GNU
@c Free Documentation License''.
\input texinfo @c -*-texinfo-*- \input texinfo @c -*-texinfo-*-
@c %**start of header @c %**start of header
@setfilename easejs.info @setfilename easejs.info
@include version.texi @include version.texi
@settitle ease.js Manual v@value{VERSION} @settitle GNU ease.js Manual v@value{VERSION}
@c %**end of header @c %**end of header
@copying @copying
This manual is for ease.js, version @value{VERSION}. This manual is for GNU ease.js, version @value{VERSION}.
Copyright @copyright{} 2011 Mike Gerwitz. Copyright @copyright{} 2011, 2012, 2013 Mike Gerwitz.
@quotation @quotation
Permission is granted to copy, distribute and/or modify this document Permission is granted to copy, distribute and/or modify this document
@ -23,7 +32,7 @@ Free Documentation License".
@titlepage @titlepage
@title ease.js Manual v@value{VERSION} @title GNU ease.js Manual v@value{VERSION}
@subtitle User & Developer Documentation @subtitle User & Developer Documentation
@author Mike Gerwitz @author Mike Gerwitz

View File

@ -1,4 +1,4 @@
@c This document is part of the ease.js manual @c This document is part of the GNU ease.js manual.
@c Copyright (c) 2011 Mike Gerwitz @c Copyright (c) 2011 Mike Gerwitz
@c Permission is granted to copy, distribute and/or modify this document @c Permission is granted to copy, distribute and/or modify this document
@c under the terms of the GNU Free Documentation License, Version 1.3 @c under the terms of the GNU Free Documentation License, Version 1.3

View File

@ -1,4 +1,4 @@
@c This document is part of the ease.js manual @c This document is part of the GNU ease.js manual.
@c Copyright (c) 2011 Mike Gerwitz @c Copyright (c) 2011 Mike Gerwitz
@c Permission is granted to copy, distribute and/or modify this document @c Permission is granted to copy, distribute and/or modify this document
@c under the terms of the GNU Free Documentation License, Version 1.3 @c under the terms of the GNU Free Documentation License, Version 1.3

View File

@ -1,4 +1,4 @@
@c This document is part of the ease.js manual @c This document is part of the GNU ease.js manual.
@c Copyright (c) 2011 Mike Gerwitz @c Copyright (c) 2011 Mike Gerwitz
@c Permission is granted to copy, distribute and/or modify this document @c Permission is granted to copy, distribute and/or modify this document
@c under the terms of the GNU Free Documentation License, Version 1.3 @c under the terms of the GNU Free Documentation License, Version 1.3

View File

@ -1,4 +1,4 @@
@c This document is part of the ease.js manual @c This document is part of the GNU ease.js manual.
@c Copyright (c) 2011 Mike Gerwitz @c Copyright (c) 2011 Mike Gerwitz
@c Permission is granted to copy, distribute and/or modify this document @c Permission is granted to copy, distribute and/or modify this document
@c under the terms of the GNU Free Documentation License, Version 1.3 @c under the terms of the GNU Free Documentation License, Version 1.3

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2013 Mike Gerwitz * Copyright (C) 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -13,7 +13,7 @@
* *
* Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2013 Mike Gerwitz * Copyright (C) 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2013 Mike Gerwitz * Copyright (C) 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -7,7 +7,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -5,7 +5,7 @@
* *
* Copyright (C) 2011, 2013 Mike Gerwitz * Copyright (C) 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2013 Mike Gerwitz * Copyright (C) 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2013 Mike Gerwitz * Copyright (C) 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -5,7 +5,7 @@
# #
# Copyright (C) 2011, 2012 Mike Gerwitz # Copyright (C) 2011, 2012 Mike Gerwitz
# #
# This file is part of ease.js. # This file is part of GNU ease.js
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2013 Mike Gerwitz * Copyright (C) 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -6,7 +6,7 @@
* *
* Copyright (C) 2011, 2013 Mike Gerwitz * Copyright (C) 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2013 Mike Gerwitz * Copyright (C) 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2013 Mike Gerwitz * Copyright (C) 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -4,7 +4,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -4,7 +4,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -4,7 +4,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -4,7 +4,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -4,7 +4,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -4,7 +4,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -4,7 +4,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -4,7 +4,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -4,7 +4,7 @@
* *
* Copyright (C) 2011, 2013 Mike Gerwitz * Copyright (C) 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -20,7 +20,7 @@
* *
* Copyright (C) 2011, 2013 Mike Gerwitz * Copyright (C) 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -4,7 +4,7 @@
* *
* Copyright (C) 2011, 2013 Mike Gerwitz * Copyright (C) 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -6,7 +6,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2013 Mike Gerwitz * Copyright (C) 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -5,7 +5,7 @@
* *
* Copyright (C) 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -8,7 +8,7 @@
* *
* Copyright (C) 2011, 2013 Mike Gerwitz * Copyright (C) 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2013 Mike Gerwitz * Copyright (C) 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -2,7 +2,7 @@
# #
# Copyright (C) 2010, 2011, 2013 Mike Gerwitz # Copyright (C) 2010, 2011, 2013 Mike Gerwitz
# #
# This file is part of ease.js. # This file is part of GNU ease.js.
# #
# ease.js is free software: you can redistribute it and/or modify it under the # ease.js 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 # terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2013 Mike Gerwitz * Copyright (C) 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2013 Mike Gerwitz * Copyright (C) 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2013 Mike Gerwitz * Copyright (C) 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2013 Mike Gerwitz * Copyright (C) 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2011, 2013 Mike Gerwitz * Copyright (C) 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

View File

@ -2,7 +2,7 @@
# #
# Copyright (C) 2010, 2011, 2012 Mike Gerwitz # Copyright (C) 2010, 2011, 2012 Mike Gerwitz
# #
# This file is part of ease.js. # This file is part of GNU ease.js.
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by

View File

@ -9,7 +9,7 @@
* *
* Copyright (C) 2011, 2013 Mike Gerwitz * Copyright (C) 2011, 2013 Mike Gerwitz
* *
* This file is part of ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js 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 * terms of the GNU General Public License as published by the Free Software

Some files were not shown because too many files have changed in this diff Show More