mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-05 10:54:27 +02:00
update copyright notice
This commit is contained in:
@@ -9,7 +9,7 @@ require_once "PEAR.php";
|
|||||||
* @author Andrei Zmievski <andrei@ispi.net>
|
* @author Andrei Zmievski <andrei@ispi.net>
|
||||||
* @access public
|
* @access public
|
||||||
*
|
*
|
||||||
* Copyright: 2001, ispi Inc.
|
* Copyright: 2001 ispi of Lincoln, Inc.
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU General Public License
|
* modify it under the terms of the GNU General Public License
|
||||||
|
@@ -4,9 +4,9 @@
|
|||||||
* Project: Smarty: the PHP compiled template engine
|
* Project: Smarty: the PHP compiled template engine
|
||||||
* File: Smarty.addons.php
|
* File: Smarty.addons.php
|
||||||
* Author: Monte Ohrt <monte@ispi.net>
|
* Author: Monte Ohrt <monte@ispi.net>
|
||||||
* Andrei Zmievski <andrei@ispi.net>
|
* Andrei Zmievski <andrei@ispi.net>
|
||||||
* Version: 1.0b
|
* Version: 1.0b
|
||||||
* Copyright: 2001 ispi, Inc.
|
* Copyright: 2001 ispi of Lincoln, Inc.
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU General Public License
|
* modify it under the terms of the GNU General Public License
|
||||||
|
@@ -3,12 +3,10 @@
|
|||||||
* Project: Smarty: the PHP compiled template engine
|
* Project: Smarty: the PHP compiled template engine
|
||||||
* File: Smarty.class.php
|
* File: Smarty.class.php
|
||||||
* Author: Monte Ohrt <monte@ispi.net>
|
* Author: Monte Ohrt <monte@ispi.net>
|
||||||
* original idea and implementation
|
* Andrei Zmievski <andrei@ispi.net>
|
||||||
*
|
*
|
||||||
* Andrei Zmievski <andrei@ispi.net>
|
* Version: 1.0b
|
||||||
* parsing engine rewrite and a lot more
|
* Copyright: 2001 ispi of Lincoln, Inc.
|
||||||
* Version: 1.0b
|
|
||||||
* Copyright: 2001 ispi, Inc.
|
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU General Public License
|
* modify it under the terms of the GNU General Public License
|
||||||
|
@@ -33,10 +33,6 @@ testing
|
|||||||
{$Contacts["phone"]["work"]}<br>
|
{$Contacts["phone"]["work"]}<br>
|
||||||
{$Contacts["fax"]}<br>
|
{$Contacts["fax"]}<br>
|
||||||
|
|
||||||
printing by key val:
|
|
||||||
{$Contacts|@key:"phone"}<br>
|
|
||||||
{$Contacts|@key:"fax"}<br>
|
|
||||||
{$Contacts|@key:"cell"}<br>
|
|
||||||
<p>
|
<p>
|
||||||
|
|
||||||
testing strip tags
|
testing strip tags
|
||||||
|
26
docs.sgml
26
docs.sgml
@@ -14,6 +14,7 @@
|
|||||||
<address><email>andrei@ispi.net</email></address>
|
<address><email>andrei@ispi.net</email></address>
|
||||||
</affiliation>
|
</affiliation>
|
||||||
</author>
|
</author>
|
||||||
|
<edition>Version 1.0b</edition>
|
||||||
<copyright><year>2001</year><holder>ispi, Inc.</holder></copyright>
|
<copyright><year>2001</year><holder>ispi, Inc.</holder></copyright>
|
||||||
</bookinfo>
|
</bookinfo>
|
||||||
<chapter>
|
<chapter>
|
||||||
@@ -1772,15 +1773,30 @@ is the first week that has at least 4 days in the current year, and with Monday
|
|||||||
<chapter id="credits">
|
<chapter id="credits">
|
||||||
<title>CREDITS</title>
|
<title>CREDITS</title>
|
||||||
<para>
|
<para>
|
||||||
Monte Ohrt <monte@ispi.net>: Original idea and initial implementation, documentation.
|
Monte Ohrt <monte@ispi.net>: Idea of compiling into PHP scripts,
|
||||||
|
initial implementation, documentation.
|
||||||
</para>
|
</para>
|
||||||
<para>
|
<para>
|
||||||
Andrei Zmievski <andrei@ispi.net>: Rewrote parser from scratch, added much functionality.
|
Andrei Zmievski <andrei@ispi.net>: Rewrote parser from scratch, added
|
||||||
|
custom modifier functionality, and much more.
|
||||||
</para>
|
</para>
|
||||||
<para>
|
<para>
|
||||||
Special thanks goes too all the members of the php-template mailing list.
|
Anne Holz <anne@ispi.net>: Contributed several ideas for formatting features.
|
||||||
Many people shared their thoughts and ideas here, all of which influenced
|
</para>
|
||||||
the direction Smarty took during it's journey to a reality.
|
<para>
|
||||||
|
Frank Kromann <fmk@php.net>: Idea of custom function ability.
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
A special thanks goes to all the people that have contributed other
|
||||||
|
templating solutions to the PHP community which we learned a lot from.
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
A special thanks goes to all the members of the php-template mailing list,
|
||||||
|
who shared and brought many ideas to the table.
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
Rasmus Lerdorf <rasmus@php.net>: For starting what eventually became
|
||||||
|
the coolest programming language ever.
|
||||||
</para>
|
</para>
|
||||||
</chapter>
|
</chapter>
|
||||||
</book>
|
</book>
|
||||||
|
@@ -9,7 +9,7 @@ require_once "PEAR.php";
|
|||||||
* @author Andrei Zmievski <andrei@ispi.net>
|
* @author Andrei Zmievski <andrei@ispi.net>
|
||||||
* @access public
|
* @access public
|
||||||
*
|
*
|
||||||
* Copyright: 2001, ispi Inc.
|
* Copyright: 2001 ispi of Lincoln, Inc.
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU General Public License
|
* modify it under the terms of the GNU General Public License
|
||||||
|
@@ -3,12 +3,10 @@
|
|||||||
* Project: Smarty: the PHP compiled template engine
|
* Project: Smarty: the PHP compiled template engine
|
||||||
* File: Smarty.class.php
|
* File: Smarty.class.php
|
||||||
* Author: Monte Ohrt <monte@ispi.net>
|
* Author: Monte Ohrt <monte@ispi.net>
|
||||||
* original idea and implementation
|
* Andrei Zmievski <andrei@ispi.net>
|
||||||
*
|
*
|
||||||
* Andrei Zmievski <andrei@ispi.net>
|
* Version: 1.0b
|
||||||
* parsing engine rewrite and a lot more
|
* Copyright: 2001 ispi of Lincoln, Inc.
|
||||||
* Version: 1.0b
|
|
||||||
* Copyright: 2001 ispi, Inc.
|
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU General Public License
|
* modify it under the terms of the GNU General Public License
|
||||||
|
@@ -33,10 +33,6 @@ testing
|
|||||||
{$Contacts["phone"]["work"]}<br>
|
{$Contacts["phone"]["work"]}<br>
|
||||||
{$Contacts["fax"]}<br>
|
{$Contacts["fax"]}<br>
|
||||||
|
|
||||||
printing by key val:
|
|
||||||
{$Contacts|@key:"phone"}<br>
|
|
||||||
{$Contacts|@key:"fax"}<br>
|
|
||||||
{$Contacts|@key:"cell"}<br>
|
|
||||||
<p>
|
<p>
|
||||||
|
|
||||||
testing strip tags
|
testing strip tags
|
||||||
|
Reference in New Issue
Block a user