Commit 5202f2fdc01855d225b792ce1f451929ec0ea7e2
- Diff rendering mode:
- inline
- side by side
creole.php
(1 / 14)
|   | |||
| 3 | 3 | /* | |
| 4 | 4 | * creole - PHP Creole 1.0 Wiki Markup Parser | |
| 5 | 5 | * | |
| 6 | * Copyright (c) 2009 Ivan Fomichev | ||
| 7 | * | ||
| 8 | * This program is free software: you can redistribute it and/or modify | ||
| 9 | * it under the terms of the GNU Affero General Public License as published by | ||
| 10 | * the Free Software Foundation, either version 3 of the License, or | ||
| 11 | * (at your option) any later version. | ||
| 12 | |||
| 13 | * This program is distributed in the hope that it will be useful, | ||
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 16 | * GNU Affero General Public License for more details. | ||
| 17 | |||
| 18 | * You should have received a copy of the GNU Affero General Public License | ||
| 19 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 6 | * Copyright (c) 2009, 2010 Ivan Fomichev | ||
| 20 | 7 | * | |
| 21 | 8 | * Portions Copyright (c) 2007 Chris Purcell | |
| 22 | 9 | * |
w.php
(18 / 13)
|   | |||
| 2 | 2 | ||
| 3 | 3 | /* | |
| 4 | 4 | * w - A Wiki Software | |
| 5 | * Copyright (c) 2009 Ivan Fomichev | ||
| 5 | * | ||
| 6 | * Copyright (c) 2009, 2010 Ivan Fomichev | ||
| 6 | 7 | * | |
| 7 | * This program is free software: you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU Affero General Public License as published by | ||
| 9 | * the Free Software Foundation, either version 3 of the License, or | ||
| 10 | * (at your option) any later version. | ||
| 11 | |||
| 12 | * This program is distributed in the hope that it will be useful, | ||
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | * GNU Affero General Public License for more details. | ||
| 16 | |||
| 17 | * You should have received a copy of the GNU Affero General Public License | ||
| 18 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 8 | * Permission is hereby granted, free of charge, to any person obtaining a | ||
| 9 | * copy of this software and associated documentation files (the "Software"), | ||
| 10 | * to deal in the Software without restriction, including without limitation | ||
| 11 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
| 12 | * and/or sell copies of the Software, and to permit persons to whom the | ||
| 13 | * Software is furnished to do so, subject to the following conditions: | ||
| 14 | * | ||
| 15 | * The above copyright notice and this permission notice shall be included | ||
| 16 | * in all copies or substantial portions of the Software. | ||
| 17 | * | ||
| 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
| 21 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| 22 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
| 23 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
| 19 | 24 | */ | |
| 20 | 25 | ||
| 21 | 26 | require_once('./creole.php'); |

