Change to distribute TinyJS under MIT License

master
pur3mail 13 years ago
parent c1f0f4a7a7
commit 3677bae3a2

@ -7,20 +7,23 @@
* *
* Copyright (C) 2009 Pur3 Ltd * Copyright (C) 2009 Pur3 Ltd
* *
* This library is free software; you can redistribute it and/or * Permission is hereby granted, free of charge, to any person obtaining a copy of
* modify it under the terms of the GNU Lesser General Public * this software and associated documentation files (the "Software"), to deal in
* License as published by the Free Software Foundation; either * the Software without restriction, including without limitation the rights to
* version 2 of the License, or (at your option) any later version. * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
* * of the Software, and to permit persons to whom the Software is furnished to do
* This library is distributed in the hope that it will be useful, * so, subject to the following conditions:
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * The above copyright notice and this permission notice shall be included in all
* Lesser General Public License for more details. * copies or substantial portions of the Software.
*
* You should have received a copy of the GNU Lesser General Public * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* License along with this library; if not, write to the * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* Free Software Foundation, Inc., 59 Temple Place - Suite 330, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* Boston, MA 02111-1307, USA. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/ */
/* /*

@ -7,20 +7,23 @@
* *
* Copyright (C) 2009 Pur3 Ltd * Copyright (C) 2009 Pur3 Ltd
* *
* This library is free software; you can redistribute it and/or * Permission is hereby granted, free of charge, to any person obtaining a copy of
* modify it under the terms of the GNU Lesser General Public * this software and associated documentation files (the "Software"), to deal in
* License as published by the Free Software Foundation; either * the Software without restriction, including without limitation the rights to
* version 2 of the License, or (at your option) any later version. * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
* * of the Software, and to permit persons to whom the Software is furnished to do
* This library is distributed in the hope that it will be useful, * so, subject to the following conditions:
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * The above copyright notice and this permission notice shall be included in all
* Lesser General Public License for more details. * copies or substantial portions of the Software.
*
* You should have received a copy of the GNU Lesser General Public * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* License along with this library; if not, write to the * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* Free Software Foundation, Inc., 59 Temple Place - Suite 330, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* Boston, MA 02111-1307, USA. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/ */
/* Version 0.1 : (gw) First published on Google Code /* Version 0.1 : (gw) First published on Google Code

@ -7,20 +7,23 @@
* *
* Copyright (C) 2009 Pur3 Ltd * Copyright (C) 2009 Pur3 Ltd
* *
* This library is free software; you can redistribute it and/or * Permission is hereby granted, free of charge, to any person obtaining a copy of
* modify it under the terms of the GNU Lesser General Public * this software and associated documentation files (the "Software"), to deal in
* License as published by the Free Software Foundation; either * the Software without restriction, including without limitation the rights to
* version 2 of the License, or (at your option) any later version. * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
* * of the Software, and to permit persons to whom the Software is furnished to do
* This library is distributed in the hope that it will be useful, * so, subject to the following conditions:
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * The above copyright notice and this permission notice shall be included in all
* Lesser General Public License for more details. * copies or substantial portions of the Software.
*
* You should have received a copy of the GNU Lesser General Public * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* License along with this library; if not, write to the * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* Free Software Foundation, Inc., 59 Temple Place - Suite 330, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* Boston, MA 02111-1307, USA. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/ */
#ifndef TINYJS_H #ifndef TINYJS_H

@ -3,24 +3,29 @@
* *
* A single-file Javascript-alike engine * A single-file Javascript-alike engine
* *
* - Useful language functions
*
* Authored By Gordon Williams <gw@pur3.co.uk> * Authored By Gordon Williams <gw@pur3.co.uk>
* *
* Copyright (C) 2009 Pur3 Ltd * Copyright (C) 2009 Pur3 Ltd
* *
* This library is free software; you can redistribute it and/or * Permission is hereby granted, free of charge, to any person obtaining a copy of
* modify it under the terms of the GNU Lesser General Public * this software and associated documentation files (the "Software"), to deal in
* License as published by the Free Software Foundation; either * the Software without restriction, including without limitation the rights to
* version 2 of the License, or (at your option) any later version. * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
* * of the Software, and to permit persons to whom the Software is furnished to do
* This library is distributed in the hope that it will be useful, * so, subject to the following conditions:
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * The above copyright notice and this permission notice shall be included in all
* Lesser General Public License for more details. * copies or substantial portions of the Software.
*
* You should have received a copy of the GNU Lesser General Public * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* License along with this library; if not, write to the * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* Free Software Foundation, Inc., 59 Temple Place - Suite 330, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* Boston, MA 02111-1307, USA. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/ */
#include "TinyJS_Functions.h" #include "TinyJS_Functions.h"

@ -7,20 +7,23 @@
* *
* Copyright (C) 2009 Pur3 Ltd * Copyright (C) 2009 Pur3 Ltd
* *
* This library is free software; you can redistribute it and/or * Permission is hereby granted, free of charge, to any person obtaining a copy of
* modify it under the terms of the GNU Lesser General Public * this software and associated documentation files (the "Software"), to deal in
* License as published by the Free Software Foundation; either * the Software without restriction, including without limitation the rights to
* version 2 of the License, or (at your option) any later version. * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
* * of the Software, and to permit persons to whom the Software is furnished to do
* This library is distributed in the hope that it will be useful, * so, subject to the following conditions:
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * The above copyright notice and this permission notice shall be included in all
* Lesser General Public License for more details. * copies or substantial portions of the Software.
*
* You should have received a copy of the GNU Lesser General Public * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* License along with this library; if not, write to the * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* Free Software Foundation, Inc., 59 Temple Place - Suite 330, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* Boston, MA 02111-1307, USA. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/ */
#ifndef TINYJS_FUNCTIONS_H #ifndef TINYJS_FUNCTIONS_H

@ -3,8 +3,29 @@
* *
* A single-file Javascript-alike engine * A single-file Javascript-alike engine
* *
* - Math and Trigonometry functions - * - Math and Trigonometry functions
* *
* Authored By O.Z.L.B. <ozlbinfo@gmail.com>
*
* Copyright (C) 2011 O.Z.L.B.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is furnished to do
* so, subject to the following conditions:
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/ */
#include <math.h> #include <math.h>

@ -7,20 +7,23 @@
* *
* Copyright (C) 2009 Pur3 Ltd * Copyright (C) 2009 Pur3 Ltd
* *
* This library is free software; you can redistribute it and/or * Permission is hereby granted, free of charge, to any person obtaining a copy of
* modify it under the terms of the GNU Lesser General Public * this software and associated documentation files (the "Software"), to deal in
* License as published by the Free Software Foundation; either * the Software without restriction, including without limitation the rights to
* version 2 of the License, or (at your option) any later version. * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
* * of the Software, and to permit persons to whom the Software is furnished to do
* This library is distributed in the hope that it will be useful, * so, subject to the following conditions:
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * The above copyright notice and this permission notice shall be included in all
* Lesser General Public License for more details. * copies or substantial portions of the Software.
*
* You should have received a copy of the GNU Lesser General Public * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* License along with this library; if not, write to the * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* Free Software Foundation, Inc., 59 Temple Place - Suite 330, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* Boston, MA 02111-1307, USA. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/ */
/* /*

Loading…
Cancel
Save