PageRenderTime 485ms queryTime 53ms sortTime 55ms getByIdsTime 56ms findMatchingLines 75ms

100+ results results for 'php mail repo:edutrul/sanitation' (485 ms)

Not the results you expected?
index.php git://git.savannah.nongnu.org/savane-cleanup.git | PHP | 363 lines
                    
69    array(
                    
70      'email_hide' => ($form_email_hide ? "1" : "0"),
                    
71      'theme' => $user_theme,
                    
232
                    
233print '<a href="change.php?item=email">'._("Change Email Address").'</a>';
                    
234print '<p class="smaller">'.sprintf(_("Your current address is %s. It is essential to us that this address remains valid. Keep it up to date."), '<strong>'.$row_user['email'].'</strong>').'</p>';
                    
239print '<a href="change_notifications.php">'._("Edit Personal Notification Settings").'</a>';
                    
240print '<p class="smaller">'._("Here is defined when the trackers should send email notifications. It permits also to configure the subject line prefix of sent mails.").'</p>';
                    
241
                    
243print $HTML->box_nextitem(utils_get_alt_row_color($i));
                    
244print '<a href="cc.php">'._("Cancel Mail Notifications").'</a>';
                    
245print '<p class="smaller">'._("Here, you can cancel all mail notifications.").'</p>';
                    
285
                    
286print '<input type="checkbox" name="form_email_hide" value="1" '.($row_user['email_hide'] ? 'checked="checked"':'').' /> '._("Hide email address from your account information");
                    
287
                    
                
UnitCheckProject.html git://git.savannah.nongnu.org/unitcheck.git | HTML | 447 lines
                    
32		<p class="notes">
                    
33			Located in <a class="field" href="_UnitCheckProject.php.html">/UnitCheckProject.php</a> (line <span class="field">32</span>)
                    
34		</p>
                    
161	
                    
162	<!-- ========== Info from phpDoc block ========= -->
                    
163	<ul class="tags">
                    
268	
                    
269	<!-- ========== Info from phpDoc block ========= -->
                    
270	<ul class="tags">
                    
291	
                    
292	<!-- ========== Info from phpDoc block ========= -->
                    
293	<ul class="tags">
                    
443	<p class="notes" id="credit">
                    
444		Documentation generated on Tue, 18 Jan 2011 17:56:51 +1100 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.3</a>
                    
445	</p>
                    
                
ko.js http://avblog.googlecode.com/svn/trunk/ | JavaScript | 502 lines
                    
5 * Licensed under the terms of the GNU Lesser General Public License:
                    
6 * 		http://www.opensource.org/licenses/lgpl-license.php
                    
7 * 
                    
17 * 		Taehwan Kwag (thkwag@nate.com)
                    
18 * 		Hyung-chae, Kim (chaeya@gmail.com)
                    
19 */
                    
221DlgLnkTypeAnchor	: "???",
                    
222DlgLnkTypeEMail		: "???",
                    
223DlgLnkProto			: "????",
                    
229DlgLnkNoAnchors		: "<??? ???? ????.>",
                    
230DlgLnkEMail			: "??? ??",
                    
231DlgLnkEMailSubject	: "??",
                    
231DlgLnkEMailSubject	: "??",
                    
232DlgLnkEMailBody		: "??",
                    
233DlgLnkUpload		: "???",
                    
                
OLE_Root.php https://PHPExcel.svn.codeplex.com/svn | PHP | 482 lines
                    
13// | obtain it through the world-wide-web, please send a note to          |
                    
14// | license@php.net so we can mail you a copy immediately.               |
                    
15// +----------------------------------------------------------------------+
                    
15// +----------------------------------------------------------------------+
                    
16// | Author: Xavier Noguer <xnoguer@php.net>                              |
                    
17// | Based on OLE::Storage_Lite by Kawai, Takanori                        |
                    
22
                    
23require_once 'PHPExcel/Shared/OLE/OLE_PPS.php';
                    
24
                    
31*/
                    
32class PHPExcel_Shared_OLE_PPS_Root extends PHPExcel_Shared_OLE_PPS
                    
33	{
                    
162		$iSmallLen = $iSBcnt * $this->_SMALL_BLOCK_SIZE;
                    
163		$iSlCnt = floor($this->_BIG_BLOCK_SIZE / PHPExcel_Shared_OLE::OLE_LONG_INT_SIZE);
                    
164		$iSBDcnt = floor($iSBcnt / $iSlCnt) + (($iSBcnt % $iSlCnt)? 1:0);
                    
                
board.controller.php http://xe-board.googlecode.com/svn/trunk/ | PHP | 354 lines
                    
94                    for($i=0;$i<count($target_mail);$i++) {
                    
95                        $email_address = trim($target_mail[$i]);
                    
96                        if(!$email_address) continue;
                    
96                        if(!$email_address) continue;
                    
97                        $oMail->setReceiptor($email_address, $email_address);
                    
98                        $oMail->send();
                    
216
                    
217                    $target_mail = explode(',',$this->module_info->admin_mail);
                    
218                    for($i=0;$i<count($target_mail);$i++) {
                    
218                    for($i=0;$i<count($target_mail);$i++) {
                    
219                        $email_address = trim($target_mail[$i]);
                    
220                        if(!$email_address) continue;
                    
220                        if(!$email_address) continue;
                    
221                        $oMail->setReceiptor($email_address, $email_address);
                    
222                        $oMail->send();
                    
                
phpbb2_template.class.php https://bitbucket.org/chamilo/chamilo/ | PHP | 478 lines
                    
1<?php
                    
2/***************************************************************************
                    
2/***************************************************************************
                    
3 *                              template.php
                    
4 *                            -------------------
                    
6 *   copyright            : (C) 2001 The phpBB Group
                    
7 *   email                : support@phpbb.com
                    
8 *
                    
8 *
                    
9 *   $Id: template.php 5142 2005-05-06 20:50:13Z acydburn $
                    
10 *
                    
23/**
                    
24 * Template class. By Nathan Codding of the phpBB group.
                    
25 * The interface was originally inspired by PHPLib templates,
                    
29
                    
30class Phpbb2Template {
                    
31	var $classname = "Phpbb2Template";
                    
                
GroupBenchmarkTest.php https://bitbucket.org/zurmo/zurmo/ | PHP | 351 lines
                    
1<?php
                    
2    /*********************************************************************************
                    
22     *
                    
23     * You can contact Zurmo, Inc. with a mailing address at 27 North Wacker Drive
                    
24     * Suite 370 Chicago, IL 60606. or at email address contact@zurmo.com.
                    
                
AdminCarts.php http://marocmall.googlecode.com/svn/trunk/ | PHP | 286 lines
                    
1<?php
                    
2
                    
3/**
                    
4  * Customers tab for admin panel, AdminContacts.php
                    
5  * @category admin
                    
8  * @copyright PrestaShop
                    
9  * @license http://www.opensource.org/licenses/osl-3.0.php Open-source licence 3.0
                    
10  * @version 1.3
                    
13
                    
14include_once(PS_ADMIN_DIR.'/../classes/AdminTab.php');
                    
15
                    
71			<a href="?tab=AdminCustomers&id_customer='.$customer->id.'&viewcustomer&token='.Tools::getAdminToken('AdminCustomers'.intval(Tab::getIdFromClassName('AdminCustomers')).intval($cookie->id_employee)).'"> '.$customer->firstname.' '.$customer->lastname.'</a></span> ('.$this->l('#').$customer->id.')<br />
                    
72			(<a href="mailto:'.$customer->email.'">'.$customer->email.'</a>)<br /><br />
                    
73			'.$this->l('Account registered:').' '.Tools::displayDate($customer->date_add, intval($cookie->id_lang), true).'<br />
                    
142									'product_mini_'.intval($product['id_product']).(isset($product['id_product_attribute']) ? '_'.intval($product['id_product_attribute']) : '').'.jpg', 45, 'jpg') : '--').'</td>
                    
143									<td><a href="index.php?tab=AdminCatalog&id_product='.$product['id_product'].'&updateproduct&token='.$tokenCatalog.'">
                    
144										<span class="productName">'.$product['name'].'</span><br />
                    
                
??????????????????.htm http://xinhaining-dianjian-delphi.googlecode.com/svn/trunk/ | HTML | 262 lines
                    
133        <tr> 
                    
134          <td><div align="center"><a href="MAILTO:epapi@ut.com.cn"title="TEL:0756-8631686"class=a2><font color="#ff5500">?????????</font></a></div></td>
                    
135        </tr>
                    
157      <div align="center"> 
                    
158        <a href=/><font size=2pt>??</font></a><font color=#ffffff> | </font><a href=/?_id=2><font size=2pt>????</font></a><font color=#ffffff> | </font><a href=/?_id=3><font size=2pt>????</font></a><font color=#ffffff> | </font><a href=/?_id=17><font size=2pt><font color=yellow>???????</font></font></a><font color=#ffffff> | </font><a href=http://www.epapi.com/phpBB2/><font size=2pt><font color=red><b>????</b></font></font></a><font color=#ffffff> | </font><a href=/?_id=6><font size=2pt>????</font></a><font color=#ffffff> | </font><a href=/?_id=7&sel=1><font size=2pt>????</font></a><font color=#ffffff> | </font><a href=/?_id=15><font size=2pt>????</font></a><font color=#ffffff> | </font><a href=index.servlet?_id=10><font size=2pt>????</font></a><font color=#ffffff> | </font><a href=index.servlet?_id=11><font size=2pt>??????</font></a>      </div></td>
                    
159  </tr>
                    
178          <tr>
                    
179         <form name="form" method="post" action="index.php?_id=18">
                    
180            <td height="20" colspan="2"><table width="100%" border="0" align="center" cellpadding="0" cellspacing="0" background="images/bg6.gif">
                    
189                      </font></div></td>
                    
190                  <td ><div align="center"><font color="#990000">?????</font><a href="index.php?_id=18&add=%B5%E7%C1%A6"class=a2>??</a> 
                    
191                        <a href="index.php?_id=18&add=%D3%C5%CC%D8%B5%E7%C1%A6"class=a2>??</a> 
                    
191                        <a href="index.php?_id=18&add=%D3%C5%CC%D8%B5%E7%C1%A6"class=a2>??</a> 
                    
192                        <a href="index.php?_id=18&add=%B5%E7%C6%F8"class=a2>??</a> 
                    
193                        <a href="index.php?_id=18&add=%BB%FA%B5%E7"class=a2>??</a> 
                    
                
AdminShipping.php http://marocmall.googlecode.com/svn/trunk/ | PHP | 306 lines
                    
1<?php
                    
2/*
                    
9* It is also available through the world-wide-web at this URL:
                    
10* http://opensource.org/licenses/osl-3.0.php
                    
11* If you did not receive a copy of the license and are unable to
                    
11* If you did not receive a copy of the license and are unable to
                    
12* obtain it through the world-wide-web, please send an email
                    
13* to license@prestashop.com so we can send you a copy immediately.
                    
23*  @version  Release: $Revision: 8861 $
                    
24*  @license    http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
                    
25*  International Registered Trademark & Property of PrestaShop SA
                    
                
CWsdlGenerator.php http://chenjin.googlecode.com/svn/trunk/ | PHP | 420 lines
                    
1<?php
                    
2/**
                    
4 *
                    
5 * @author Qiang Xue <qiang.xue@gmail.com>
                    
6 * @link http://www.yiiframework.com/
                    
20 * of every input parameter and the type of the return value should be declared using
                    
21 * the standard phpdoc format.
                    
22 *
                    
77 *
                    
78 * @author Qiang Xue <qiang.xue@gmail.com>
                    
79 * @version $Id: CWsdlGenerator.php 242 2012-03-29 15:18:01Z mole1230 $
                    
161	/*
                    
162	 * @param string $type PHP variable type
                    
163	 */
                    
252		$schema->setAttribute('targetNamespace',$this->namespace);
                    
253		foreach($this->_types as $phpType=>$xmlType)
                    
254		{
                    
                
Exception.php http://syracava.googlecode.com/svn/trunk/ | PHP | 397 lines
                    
11 * the PHP License and are unable to obtain it through the web, please
                    
12 * send a note to license@php.net so we can mail you a copy immediately.
                    
13 *
                    
20 * @copyright  1997-2008 The PHP Group
                    
21 * @license    http://www.php.net/license/3_0.txt  PHP License 3.0
                    
22 * @version    CVS: $Id: Exception.php 125 2009-08-21 01:35:18Z takuji.mezawa $
                    
44 *
                    
45 * 3) Inherited properties from PHP Exception Class:
                    
46 *
                    
96 * @copyright  1997-2008 The PHP Group
                    
97 * @license    http://www.php.net/license/3_0.txt  PHP License 3.0
                    
98 * @version    Release: 1.7.2
                    
154    /**
                    
155     * @param mixed $callback  - A valid php callback, see php func is_callable()
                    
156     *                         - A PEAR_Exception::OBSERVER_* constant
                    
                
ISO14496_Box_CPRT.html http://xepec.googlecode.com/svn/trunk/ | HTML | 266 lines
                    
23	<div class="info-box-body">
                    
24        		<!-- ========== Info from phpDoc block ========= -->
                    
25<p class="short-description">The <em>Copyright Box</em> contains a copyright declaration which applies to  the entire presentation, when contained within the <a href="../../php-reader/ISO/ISO14496_Box_MOOV.html"> Movie Box</a>, or, when contained in a track, to that entire track. There may be  multiple copyright boxes using different language codes.</p>
                    
26	<ul class="tags">
                    
27				<li><span class="field">author:</span> Sven Vollbehr &lt;<a href="mailto:svollbehr@gmail.com">svollbehr@gmail.com</a>&gt;</li>
                    
28				<li><span class="field">version:</span> $Rev: 92 $</li>
                    
28				<li><span class="field">version:</span> $Rev: 92 $</li>
                    
29				<li><span class="field">copyright:</span> Copyright (c) 2008 The PHP Reader Project Workgroup</li>
                    
30				<li><span class="field">license:</span> <a href="http://code.google.com/p/php-reader/wiki/License">New BSD License</a></li>
                    
32		<p class="notes">
                    
33			Located in <a class="field" href="_ISO14496---Box---CPRT.php.html">/ISO14496/Box/CPRT.php</a> (line <span class="field">55</span>)
                    
34		</p>
                    
262	<p class="notes" id="credit">
                    
263		Documentation generated on Thu, 01 Jan 2009 14:59:10 +0200 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.1</a>
                    
264	</p>
                    
                
ucan-admin-options-form.php http://ownerpress.googlecode.com/svn/trunk/ | PHP | 235 lines
                    
1<div class="wrap">
                    
2  <h2><img src="<?php echo $this->ucan_images_url.'admin_options.png'; ?>" style="vertical-align:middle;" /> <?php echo __('uCan Post -- Admin Options', 'ucan-post'); ?></h2>
                    
3  <form method='post' action=''>
                    
15            <select name="ucan_post_level">
                    
16              <option value="guest" <?php if($this->ucan_options['uCan_Post_Level'] == 'guest'){echo 'selected="selected"';} ?>><?php echo __('Guest', 'ucan-post'); ?>&nbsp;&nbsp;</option>
                    
17              <option value="0" <?php if($this->ucan_options['uCan_Post_Level'] == '0'){echo 'selected="selected"';} ?>><?php echo __('Subscriber', 'ucan-post'); ?>&nbsp;&nbsp;</option>
                    
17              <option value="0" <?php if($this->ucan_options['uCan_Post_Level'] == '0'){echo 'selected="selected"';} ?>><?php echo __('Subscriber', 'ucan-post'); ?>&nbsp;&nbsp;</option>
                    
18              <option value="1" <?php if($this->ucan_options['uCan_Post_Level'] == '1'){echo 'selected="selected"';} ?>><?php echo __('Contributor', 'ucan-post'); ?>&nbsp;&nbsp;</option>
                    
19              <option value="2" <?php if($this->ucan_options['uCan_Post_Level'] == '2'){echo 'selected="selected"';} ?>><?php echo __('Author', 'ucan-post'); ?>&nbsp;&nbsp;</option>
                    
199          <td>
                    
200            <input type="checkbox" name="ucan_email_admin" value="true" <?php if($this->ucan_options['uCan_Email_Admin']){echo 'checked="checked"';} ?> />
                    
201            <em><?php echo __('(Default = True)', 'ucan-post'); ?></em>
                    
209          <td>
                    
210            <input type="checkbox" name="ucan_email_user" value="true" <?php if($this->ucan_options['uCan_Email_User']){echo 'checked="checked"';} ?> />
                    
211            <em><?php echo __('(Default = False)', 'ucan-post'); ?></em>
                    
                
jqplot.donutRenderer.min.js git://github.com/webasyst/webasyst-framework.git | JavaScript | 34 lines
                    
3 * jqPlot is currently available for use in all personal or commercial projects 
                    
4 * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL 
                    
5 * version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html) licenses. This means that you can 
                    
7 *
                    
8 * Although not required, the author would appreciate an email letting him 
                    
9 * know of any substantial use of jqPlot.  You can reach the author at: 
                    
9 * know of any substantial use of jqPlot.  You can reach the author at: 
                    
10 * chris at jqplot  or see http://www.jqplot.com/info.php .
                    
11 *
                    
12 * If you are feeling kind and generous, consider supporting the project by
                    
13 * making a donation at: http://www.jqplot.com/donate.php .
                    
14 *
                    
18 *
                    
19 *     author Ken Snyder (ken d snyder at gmail dot com)
                    
20 *     date 2008-09-10
                    
                
core.php git://github.com/Austinb/GameQ.git | PHP | 638 lines
                    
1<?php
                    
2/**
                    
192	/**
                    
193	 * Holds and changes we want to make to the normailze filter
                    
194	 *
                    
                
Range.php git://github.com/phpbb/customisation-db.git | PHP | 378 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
24/** Zend_Search_Lucene_Search_Query */
                    
25require_once 'Zend/Search/Lucene/Search/Query.php';
                    
26
                    
90        if ($lowerTerm === null  &&  $upperTerm === null) {
                    
91            require_once 'Zend/Search/Lucene/Exception.php';
                    
92            throw new Zend_Search_Lucene_Exception('At least one term must be non-null');
                    
94        if ($lowerTerm !== null  &&  $upperTerm !== null  &&  $lowerTerm->field != $upperTerm->field) {
                    
95            require_once 'Zend/Search/Lucene/Exception.php';
                    
96            throw new Zend_Search_Lucene_Exception('Both terms must be for the same field');
                    
161
                    
162        require_once 'Zend/Search/Lucene.php';
                    
163        $maxTerms = Zend_Search_Lucene::getTermsPerQueryLimit();
                    
                
CPU.h http://winx.googlecode.com/svn/trunk/ | C Header | 478 lines
                    
5// The use and distribution terms for this software are covered by the
                    
6// Common Public License 1.0 (http://opensource.org/licenses/cpl.php)
                    
7// which can be found in the file CPL.txt at this distribution. By using
                    
13// Creator: xushiwei
                    
14// Email: xushiweizh@gmail.com
                    
15// Date: 2006-8-13 9:41:58
                    
                
Cookie.php http://marocmall.googlecode.com/svn/trunk/ | PHP | 355 lines
                    
1<?php
                    
2/*
                    
9* It is also available through the world-wide-web at this URL:
                    
10* http://opensource.org/licenses/osl-3.0.php
                    
11* If you did not receive a copy of the license and are unable to
                    
11* If you did not receive a copy of the license and are unable to
                    
12* obtain it through the world-wide-web, please send an email
                    
13* to license@prestashop.com so we can send you a copy immediately.
                    
23*  @version  Release: $Revision: 6851 $
                    
24*  @license    http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
                    
25*  International Registered Trademark & Property of PrestaShop SA
                    
224		unset($this->_content['logged']);
                    
225		unset($this->_content['email']);
                    
226		unset($this->_content['id_cart']);
                    
296		}
                    
297		if (PHP_VERSION_ID <= 50200) /* PHP version > 5.2.0 */
                    
298			return setcookie($this->_name, $content, $time, $this->_path, $this->_domain, 0);
                    
                
cfg.cpp git://github.com/facebook/hiphop-php.git | C++ | 308 lines
                    
2   +----------------------------------------------------------------------+
                    
3   | HipHop for PHP                                                       |
                    
4   +----------------------------------------------------------------------+
                    
6   +----------------------------------------------------------------------+
                    
7   | This source file is subject to version 3.01 of the PHP license,      |
                    
8   | that is bundled with this package in the file LICENSE, and is        |
                    
9   | available through the world-wide-web at the following url:           |
                    
10   | http://www.php.net/license/3_01.txt                                  |
                    
11   | If you did not receive a copy of the PHP license and are unable to   |
                    
12   | obtain it through the world-wide-web, please send a note to          |
                    
13   | license@php.net so we can mail you a copy immediately.               |
                    
14   +----------------------------------------------------------------------+
                    
20
                    
21namespace HPHP {
                    
22namespace VM {
                    
                
jquery.ztree.exhide-3.5.js http://jquerytree.googlecode.com/svn/trunk/ | JavaScript | 362 lines
                    
7 * Licensed same as jquery - MIT License
                    
8 * http://www.opensource.org/licenses/mit-license.php
                    
9 *
                    
9 *
                    
10 * email: hunter.z@263.net
                    
11 * Date: 2012-11-20
                    
                
namespace_zend___log.html http://openbiz-cubi.googlecode.com/svn/trunk/ | HTML | 98 lines
                    
49<dl class="version"><dt><b>Version:</b></dt><dd></dd></dl>
                    
50<dl class="rcs"><dt><b>Id:</b></dt><dd><a class="el" href="_suppress_8php_source.html">Suppress.php</a> 16219 2009-06-21 19:45:39Z thomas </dd></dl>
                    
51<p>Formatter  Copyright (c) 2005-2009 <a class="el" href="namespace_zend.html">Zend</a> Technologies USA Inc. (<a href="http://www.zend.com">http://www.zend.com</a>)  <a href="http://framework.zend.com/license/new-bsd">http://framework.zend.com/license/new-bsd</a> New BSD License </p>
                    
62<dl class="version"><dt><b>Version:</b></dt><dd></dd></dl>
                    
63<dl class="rcs"><dt><b>Id:</b></dt><dd><a class="el" href="_xml_8php_source.html">Xml.php</a> 20105 2010-01-06 21:28:26Z matthew </dd></dl>
                    
64<p>Writer  Copyright (c) 2005-2009 <a class="el" href="namespace_zend.html">Zend</a> Technologies USA Inc. (<a href="http://www.zend.com">http://www.zend.com</a>)  <a href="http://framework.zend.com/license/new-bsd">http://framework.zend.com/license/new-bsd</a> New BSD License </p>
                    
81<dl class="version"><dt><b>Version:</b></dt><dd></dd></dl>
                    
82<dl class="rcs"><dt><b>Id:</b></dt><dd><a class="el" href="_null_8php_source.html">Null.php</a> 16219 2009-06-21 19:45:39Z thomas </dd></dl>
                    
83<p>Writer  Copyright (c) 2005-2009 <a class="el" href="namespace_zend.html">Zend</a> Technologies USA Inc. (<a href="http://www.zend.com">http://www.zend.com</a>)  <a href="http://framework.zend.com/license/new-bsd">http://framework.zend.com/license/new-bsd</a> New BSD License </p>
                    
87<dl class="version"><dt><b>Version:</b></dt><dd></dd></dl>
                    
88<dl class="rcs"><dt><b>Id:</b></dt><dd><a class="el" href="_syslog_8php_source.html">Syslog.php</a> 16971 2009-07-22 18:05:45Z mikaelkael </dd></dl>
                    
89<p>Copyright (c) 2005-2009 <a class="el" href="namespace_zend.html">Zend</a> Technologies USA Inc. (<a href="http://www.zend.com">http://www.zend.com</a>)  <a href="http://framework.zend.com/license/new-bsd">http://framework.zend.com/license/new-bsd</a> New BSD License </p>
                    
90<dl class="version"><dt><b>Version:</b></dt><dd></dd></dl>
                    
91<dl class="rcs"><dt><b>Id:</b></dt><dd><a class="el" href="_log_8php_source.html">Log.php</a> 18951 2009-11-12 16:26:19Z alexander </dd></dl>
                    
92</div>
                    
                
lang_pt_PT.inc.php git://github.com/s9y/Serendipity.git | PHP | 74 lines
                    
1<?php # $Id: lang_ja.inc.php,v 1.4 2005/05/17 11:37:42 garvinhicking Exp $
                    
2
                    
23@define('PLUGIN_EVENT_TEXTWIKI_RULE_DESC_CODE', 'Marca texto texto entre <code> e </code> como cзdigo. Usando <code type=".."> pode activar formataусo (e.g. para PHP). Activo por omissсo.');
                    
24@define('PLUGIN_EVENT_TEXTWIKI_RULE_DESC_PHPCODE', 'Marca e formata texto entre <php> e </php> como cзdigo php e adiciona etiquetas abertas de PHP . Activo por omissсo.');
                    
25@define('PLUGIN_EVENT_TEXTWIKI_RULE_DESC_HTML', 'Permite escrever cзdigo HTML entre <html> e </html>. Cuidado que JS tambжm ж possьvel! Se usar isto, nсo use codificaусo de comentрrios! Inactivo por omissсo. Recomendado manter inactivo.'); // Review
                    
26@define('PLUGIN_EVENT_TEXTWIKI_RULE_DESC_RAW', 'Texto entre `` e `` nсo ┤e interpretado por quaisquer outras regras. Activo por omissсo.');
                    
27@define('PLUGIN_EVENT_TEXTWIKI_RULE_DESC_INCLUDE', 'Permite incluir e correr cзdigo PHP com a sьntaxe [[include /caminho/para/script.php]]. O resultado ж interpretado pelas regras de codificaусo. Cuidado, risco de seguranуa! Se usar isto, nсo use codificaусo de comentрrios! Inactivo por omissсo. Recomendado manter inactivo.');
                    
28@define('PLUGIN_EVENT_TEXTWIKI_RULE_INCLUDE_DESC_BASE', 'O directзrio de base para os seus scripts. Por omissсo "/caminho/para/scripts/". Se deixar em branco e ligar include sз pode usar caminhos absolutos.');
                    
31@define('PLUGIN_EVENT_TEXTWIKI_RULE_DESC_BREAK', 'Fins de linha marcados com " _" definem fins de linha explьcitos. Activo por omissсo.');
                    
32@define('PLUGIN_EVENT_TEXTWIKI_RULE_DESC_BLOCKQUOTE', 'Permite usar citaушes de tipo email ("> ", ">> ",...). Activo por omissсo.');
                    
33@define('PLUGIN_EVENT_TEXTWIKI_RULE_DESC_LIST', 'Permite criaусo de listass ("* " = nсo numeradas, "# " = numeradas). Activo por omissсo.');
                    
35@define('PLUGIN_EVENT_TEXTWIKI_RULE_DESC_TABLE', 'permite criar tabelas. Sз usar para linhas completas. Sьntaxe: "|| Cжlula 1 || Cжlula 2 || Cжlula 3 ||". Activo por omissсo.');
                    
36@define('PLUGIN_EVENT_TEXTWIKI_RULE_DESC_EMBED', 'Permite incluir e correr cзdigo PHP com a sьntaxe [[embed /caminho/para/script.php]]. O resultado nсo ж interpretado pelas regras de codificaусo. Cuidado, risco de seguranуa! Se usar isto, nсo use codificaусo de comentрrios! Inactivo por omissсo. Recomendado manter inactivo.'); //Verify
                    
37@define('PLUGIN_EVENT_TEXTWIKI_RULE_EMBED_DESC_BASE', 'O directзrio de base para os seus scripts. Por omissсo "/caminho/para/scripts/". Se deixar em branco e ligar embed sз pode usar caminhos absolutos.');
                    
39@define('PLUGIN_EVENT_TEXTWIKI_RULE_IMAGE_DESC_BASE', 'O directзrio de base para as suas imagens. Por omissсo "/caminho/para/imagens". Se deixar em branco sз pode usar caminhos absolutos ou URLs.');
                    
40@define('PLUGIN_EVENT_TEXTWIKI_RULE_DESC_PHPLOOKUP', 'Cria ligaушes de busca ao manual de PHP com [[php function-name]]. Por omissсo activo.');
                    
41@define('PLUGIN_EVENT_TEXTWIKI_RULE_DESC_TOC', 'Gera um ьndice de todos os tьtulos usados com [[toc]]. Por omissсo activo.');
                    
                
dir.c https://github.com/php/php-src.git | C | 581 lines
                    
10   | obtain it through the world-wide-web, please send a note to          |
                    
11   | license@php.net so we can mail you a copy immediately.               |
                    
12   +----------------------------------------------------------------------+
                    
71		if (id) { \
                    
72			if ((dirp = (php_stream *)zend_fetch_resource(Z_RES_P(id), "Directory", php_file_le_stream())) == NULL) { \
                    
73				RETURN_THROWS(); \
                    
79			} \
                    
80			if ((dirp = (php_stream *)zend_fetch_resource(DIRG(default_dir), "Directory", php_file_le_stream())) == NULL) { \
                    
81				RETURN_THROWS(); \
                    
90		} \
                    
91		if ((dirp = (php_stream *)zend_fetch_resource_ex(handle_zv, "Directory", php_file_le_stream())) == NULL) { \
                    
92			RETURN_THROWS(); \
                    
559	if (flags == PHP_SCANDIR_SORT_ASCENDING) {
                    
560		n = php_stream_scandir(dirn, &namelist, context, (void *) php_stream_dirent_alphasort);
                    
561	} else if (flags == PHP_SCANDIR_SORT_NONE) {
                    
                
API.php https://code.google.com/p/molinos-cms/ | PHP | 383 lines
                    
1<?php
                    
2/**
                    
6 * @subpackage HTTP
                    
7 * @author Justin Forest <justin.forest@gmail.com>
                    
8 * @copyright 2006-2011 molinos.ru
                    
317				'method' => 'POST',
                    
318				'header' => 'Content-Type: application/x-www-form-urlencoded' . PHP_EOL,
                    
319				'content' => Molinos_Core_API::getInstance('http')->build_query($data),
                    
                
LoginController.php http://sharebooks.googlecode.com/svn/trunk/ | PHP | 412 lines
                    
209                //send activate email
                    
210                $user->sendActivateEmail($user->id, $user->first_name." ".$user->last_name,$user->email,TVC_Request::get('user_pass'),$user->activation_code,
                    
211										'home/mails/subscribe-mail-'.TVC_MultiLanguage::getLanguage().'.tpl');
                    
265            }
                    
266            elseif(strlen($email) > Parameter::MAX_LENGTH_NAME || !Utils::checkEmailValid($email) || !User::checkUserExist($email, true))
                    
267            {
                    
282                $user->selectAdd("user.id user_id, concat(first_name, ' ', last_name) name, email, password");
                    
283                $user->whereAdd("user.email='$email'");
                    
284                $user->find(true);
                    
315    {
                    
316        return User::checkEMailExist($email);
                    
317    }
                    
351            $user->id_contact = $cid;
                    
352            $user->email = trim($u_email);
                    
353            $user->activation_code = $activation_code;
                    
                
class.baseobject.php https://code.google.com/p/movabletype/ | PHP | 388 lines
                    
1<?php
                    
2# Movable Type (r) Open Source (C) 2001-2010 Six Apart, Ltd.
                    
5#
                    
6# $Id: class.baseobject.php 5325 2010-02-23 10:44:56Z takayama $
                    
7
                    
10 */
                    
11require_once('adodb.inc.php');
                    
12require_once('adodb-active-record.inc.php');
                    
12require_once('adodb-active-record.inc.php');
                    
13require_once('adodb-exceptions.inc.php');
                    
14
                    
49            'commenter_authenticators' => 'vchar',
                    
50            'require_typekey_emails' => 'vinteger',
                    
51            'nofollow_urls' => 'vinteger',
                    
307            if (empty($blog)) {
                    
308                require_once('class.mt_blog.php');
                    
309                $blog = new Blog;
                    
                
php_solr_response.c git://pkgs.fedoraproject.org/php-pecl-solr | C | 433 lines
                    
2   +----------------------------------------------------------------------+
                    
3   | PHP Version 5                                                        |
                    
4   +----------------------------------------------------------------------+
                    
4   +----------------------------------------------------------------------+
                    
5   | Copyright (c) 1997-2009 The PHP Group                                |
                    
6   +----------------------------------------------------------------------+
                    
6   +----------------------------------------------------------------------+
                    
7   | This source file is subject to version 3.01 of the PHP license,      |
                    
8   | that is bundled with this package in the file LICENSE, and is        |
                    
12   | obtain it through the world-wide-web, please send a note to          |
                    
13   | license@php.net so we can mail you a copy immediately.               |
                    
14   +----------------------------------------------------------------------+
                    
298
                    
299						php_error_docref(NULL TSRMLS_CC, E_WARNING, "Error in JSON->PHP conversion. JSON Error Code %d", json_translation_result);
                    
300					}
                    
                
MaildirFolderTest.php git://github.com/zendframework/zf2.git | PHP | 0 lines
                    
48        if (!is_dir($this->_originalDir . '/cur/')) {
                    
49            $this->markTestSkipped('You have to unpack maildir.tar in Zend/Mail/_files/test.maildir/ '
                    
50                                 . 'directory before enabling the maildir tests');
                    
189    {
                    
190        $mail = new Folder\Maildir($this->_params);
                    
191        try {
                    
286    {
                    
287        $mail = new Folder\Maildir($this->_params);
                    
288        $iterator = new \RecursiveIteratorIterator($mail->getFolders(), \RecursiveIteratorIterator::SELF_FIRST);
                    
297    {
                    
298        $mail = new Folder\Maildir($this->_params);
                    
299
                    
388    {
                    
389        $mail = new Folder\Maildir($this->_params);
                    
390        $root = $mail->getFolders();
                    
                
base.item.items.class.php http://php-ppcms.googlecode.com/svn/trunk/ | PHP | 449 lines
                    
1<?php
                    
2/***************************************************************
                    
3*  Copyright notice
                    
4*  (c) 2009, jianyuzhu@gmail.com
                    
5*  All rights reserved
                    
9//
                    
10include_once(CONFIG_PATH . CONFIG_DIR_CLASSES . 'base.item.class.php');
                    
11
                    
                
Common.php https://bitbucket.org/chamilo/chamilo-dev/ | PHP | 519 lines
                    
1<?php
                    
2/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
                    
6 *
                    
7 * PHP versions 4 and 5
                    
8 *
                    
8 *
                    
9 * LICENSE: This source file is subject to version 3.01 of the PHP license
                    
10 * that is available through the world-wide-web at the following URI:
                    
10 * that is available through the world-wide-web at the following URI:
                    
11 * http://www.php.net/license/3_01.txt If you did not receive a copy of
                    
12 * the PHP License and are unable to obtain it through the web, please
                    
12 * the PHP License and are unable to obtain it through the web, please
                    
13 * send a note to license@php.net so we can mail you a copy immediately.
                    
14 * 
                    
18 * @copyright   2001-2009 The PHP Group
                    
19 * @license     http://www.php.net/license/3_01.txt PHP License 3.01
                    
20 * @version     CVS: $Id: Common.php 137 2009-11-09 13:24:37Z vanpouckesven $
                    
                
Language.php git://github.com/thorsten/phpMyFAQ.git | PHP | 377 lines
                    
1<?php
                    
2/**
                    
4 *
                    
5 * PHP Version 5.3
                    
6 *
                    
10 *
                    
11 * @category  phpMyFAQ
                    
12 * @package   Language
                    
12 * @package   Language
                    
13 * @author    Thorsten Rinne <thorsten@phpmyfaq.de>
                    
14 * @author    Matteo scaramuccia <matteo@phpmyfaq.de>
                    
14 * @author    Matteo scaramuccia <matteo@phpmyfaq.de>
                    
15 * @author    Aurimas Fišeras <aurimas@gmail.com>
                    
16 * @copyright 2009-2012 phpMyFAQ Team
                    
17 * @license   http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0
                    
18 * @link      http://www.phpmyfaq.de
                    
19 * @since     2009-05-14
                    
                
Pgsql.php git://github.com/michael-romer/zf-boilerplate.git | PHP | 336 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: Pgsql.php 23775 2011-03-01 17:25:24Z ralph $
                    
21 */
                    
26 */
                    
27require_once 'Zend/Db/Adapter/Pdo/Abstract.php';
                    
28
                    
251             */
                    
252            require_once 'Zend/Db/Adapter/Exception.php';
                    
253            throw new Zend_Db_Adapter_Exception("LIMIT argument count=$count is not valid");
                    
260             */
                    
261            require_once 'Zend/Db/Adapter/Exception.php';
                    
262            throw new Zend_Db_Adapter_Exception("LIMIT argument offset=$offset is not valid");
                    
                
inlimg.el git://github.com/spastorino/my_emacs_for_rails.git | Emacs Lisp | 423 lines
                    
2;;
                    
3;; Author: Lennart Borgman (lennart O borgman A gmail O com)
                    
4;; Created: 2008-09-27
                    
161    (nxml-mode html-mode)
                    
162    (php-mode html-mode)
                    
163    (css-mode html-mode)
                    
                
ASF_Object_Metadata.html http://xepec.googlecode.com/svn/trunk/ | HTML | 209 lines
                    
26	<ul class="tags">
                    
27				<li><span class="field">author:</span> Sven Vollbehr &lt;<a href="mailto:svollbehr@gmail.com">svollbehr@gmail.com</a>&gt;</li>
                    
28				<li><span class="field">version:</span> $Rev: 102 $</li>
                    
32		<p class="notes">
                    
33			Located in <a class="field" href="_ASF---Object---Metadata.php.html">/ASF/Object/Metadata.php</a> (line <span class="field">55</span>)
                    
34		</p>
                    
88				<A NAME='inherited_vars'><!-- --></A>
                    
89									<p>Inherited from <span class="classname"><a href="../../php-reader/ASF/ASF_Object.html">ASF_Object</a></span></p>
                    
90					<blockquote>
                    
183					<blockquote>
                    
184													<span class="method-name"><a href="../../php-reader/ASF/ASF_Object.html#method__construct">ASF_Object::__construct()</a></span><br>
                    
185													<span class="method-name"><a href="../../php-reader/ASF/ASF_Object.html#methodgetIdentifier">ASF_Object::getIdentifier()</a></span><br>
                    
205	<p class="notes" id="credit">
                    
206		Documentation generated on Thu, 01 Jan 2009 14:59:28 +0200 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.1</a>
                    
207	</p>
                    
                
fsource_PhpExt_Grid_PhpExtGridEditorGridPanel.php.html http://php-ext.googlecode.com/svn/trunk/ | HTML | 170 lines
                    
12<div id="header">
                    
13	<h1><img src="../media/php-ext2.png" alt="PHP-Ext Logo" title="PHP-Ext" width="110" height="34" /></h1>
                    
14	<div>
                    
78<h1 align="center">Source for file EditorGridPanel.php</h1>
                    
79<p>Documentation is available at <a href="../PhpExt/Grid/_PhpExt---Grid---EditorGridPanel.php.html">EditorGridPanel.php</a></p>
                    
80<div class="src-code"><span class="php">
                    
103<li><div class="src-line"><a name="a23"></a><span class="src-doc">&nbsp;*/</span></div></li>
                    
104<li><div class="src-line"><a name="a24"></a><span class="src-key">class&nbsp;</span><a href="../PhpExt/Grid/PhpExt_Grid_EditorGridPanel.html">PhpExt_Grid_EditorGridPanel</a>&nbsp;<span class="src-key">extends&nbsp;</span><a href="../PhpExt/Grid/PhpExt_Grid_GridPanel.html">PhpExt_Grid_GridPanel</a>&nbsp;</div></li>
                    
105<li><div class="src-line"><a name="a25"></a><span class="src-sym">{</span></div></li>
                    
120<li><div class="src-line"><a name="a40"></a>&nbsp;&nbsp;&nbsp;&nbsp;<span class="src-key">public&nbsp;</span><span class="src-key">function&nbsp;</span><a href="../PhpExt/Grid/PhpExt_Grid_EditorGridPanel.html#methodgetClicksToEdit">getClicksToEdit</a><span class="src-sym">(</span><span class="src-sym">)&nbsp;</span><span class="src-sym">{</span></div></li>
                    
121<li><div class="src-line"><a name="a41"></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class="src-key">return&nbsp;</span><span class="src-var">$this</span><span class="src-sym">-&gt;</span><a href="../PhpExt/PhpExt_Object.html#methodgetExtConfigProperty">getExtConfigProperty</a><span class="src-sym">(</span><span class="src-str">&quot;clicksToEdit&quot;</span><span class="src-sym">)</span><span class="src-sym">;</span></div></li>
                    
122<li><div class="src-line"><a name="a42"></a>&nbsp;&nbsp;&nbsp;&nbsp;<span class="src-sym">}</span></div></li>
                    
153<div id="footer">
                    
154PHP-Ext Open Source Project | <a href="http://php-ext.googlecode.com">http://php-ext.googlecode.com</a> | <a href="http://php-ext.quimera-solutions.com">http://php-ext.quimera-solutions.com</a> |
                    
155sergeiw at gmail.com
                    
                
gettext.c git://github.com/vpj/PHP-Extension-API.git | C | 392 lines
                    
2   +----------------------------------------------------------------------+
                    
3   | PHP Version 5                                                        |
                    
4   +----------------------------------------------------------------------+
                    
4   +----------------------------------------------------------------------+
                    
5   | Copyright (c) 1997-2009 The PHP Group                                |
                    
6   +----------------------------------------------------------------------+
                    
12   | obtain it through the world-wide-web, please send a note to          |
                    
13   | license@php.net so we can mail you a copy immediately.               |
                    
14   +----------------------------------------------------------------------+
                    
128	NULL,
                    
129	PHP_MINFO(php_gettext),
                    
130	NO_VERSION_YET,
                    
152
                    
153PHP_MINFO_FUNCTION(php_gettext)
                    
154{
                    
                
MaildirTest.php git://github.com/zendframework/zf2.git | PHP | 445 lines
                    
157    {
                    
158        $mail = new Storage\Maildir(array('dirname' => $this->_maildir));
                    
159
                    
412    {
                    
413        $mail = new Storage\Maildir(array('dirname' => $this->_maildir));
                    
414        $this->assertEquals($mail->getMessage(4)->getPart(2)->contentType, 'text/x-vertical');
                    
418    {
                    
419        $mail = new Storage\Maildir(array('dirname' => $this->_maildir));
                    
420        $this->assertEquals($mail->getMessage(4)->getPart(2)->getSize(), 88);
                    
426        rename($this->_maildir . '/cur/1000000001.P1.example.org:2,FS', $this->_maildir . '/cur/1000000001.P1.example.org,S=456:2,FS');
                    
427        $mail = new Storage\Maildir(array('dirname' => $this->_maildir));
                    
428        $shouldSizes = array(1 => 123, 456, 694, 452, 497);
                    
437        rename($this->_maildir . '/cur/1000000001.P1.example.org:2,FS', $this->_maildir . '/cur/1000000001.P1.example.org,S=456:2,FS');
                    
438        $mail = new Storage\Maildir(array('dirname' => $this->_maildir));
                    
439
                    
                
comment.php http://lazycms.googlecode.com/svn/trunk/ | PHP | 358 lines
                    
32    $author = isset($user['name']) ? esc_html($user['name']) : '';
                    
33    $email  = isset($user['mail']) ? esc_html($user['mail']) : '';
                    
34    $url    = isset($user['url']) ? esc_html($user['url']) : '';
                    
37        'author'   => $author,
                    
38        'mail'     => $email,
                    
39        'url'      => $url,
                    
62    if (isset($user['name'])) $sets['author'] = esc_html($user['name']);
                    
63    if (isset($user['mail'])) $sets['mail'] = esc_html($user['mail']);
                    
64    if (isset($user['url'])) $sets['url'] = esc_html($user['url']);
                    
189        'author'  => $comment['author'] ? $comment['author'] : __('Anonymous'),
                    
190        'email'   => $comment['mail'],
                    
191        'url'     => !strncmp($comment['url'], 'http://', 7) ? $comment['url'] : 'http://' . $comment['url'],
                    
299                        'author'  => $data['author'] ? $data['author'] : __('Anonymous'),
                    
300                        'email'   => $data['mail'],
                    
301                        'url'     => !strncmp($data['url'],'http://',7) ? $data['url'] : 'http://'.$data['url'],
                    
                
bootstrap.sql git://git.savannah.nongnu.org/savane-cleanup.git | SQL | 211 lines
                    
6-- user 'admin', password 'admin'
                    
7-- (account/register.php)
                    
8INSERT INTO user (user_name, user_pw, add_date, status, realname)
                    
12-- (register/*)
                    
13-- (siteadmin/triggercreation.php)
                    
14INSERT INTO groups
                    
16   register_time, short_description,
                    
17   use_homepage, use_mail, use_cvs, use_news, use_task, use_support, use_bugs, use_download)
                    
18VALUES
                    
22
                    
23-- (include/member.php)
                    
24INSERT INTO user_group (user_id, group_id, admin_flags) VALUES (101, LAST_INSERT_ID(), 'A');
                    
42
                    
43A confirmation mail will be sent to the address we have on file for you. Then, load the URL in the email to reset your password.")."', '1');
                    
44INSERT INTO cookbook_context2recipe (recipe_id, group_id, audience_anonymous, audience_loggedin, audience_members, audience_technicians, audience_managers, context_project, context_homepage, context_cookbook, context_download, context_support, context_bugs, context_task, context_patch, context_news, context_mail, context_cvs, context_arch, context_svn, context_my, context_stats, context_siteadmin, context_people, subcontext_browsing, subcontext_postitem, subcontext_edititem, subcontext_search, subcontext_configure )
                    
                
Key.php https://code.google.com/p/s3db/ | PHP | 316 lines
                    
11 * that is available through the world-wide-web at the following URI:
                    
12 * http://www.php.net/license/3_0.txt.  If you did not receive a copy of
                    
13 * the PHP License and are unable to obtain it through the web, please
                    
13 * the PHP License and are unable to obtain it through the web, please
                    
14 * send a note to license@php.net so we can mail you a copy immediately.
                    
15 *
                    
17 * @package    Crypt_RSA
                    
18 * @author     Alexander Valyalkin <valyala@gmail.com>
                    
19 * @copyright  2005, 2006 Alexander Valyalkin
                    
19 * @copyright  2005, 2006 Alexander Valyalkin
                    
20 * @license    http://www.php.net/license/3_0.txt  PHP License 3.0
                    
21 * @version    1.2.0b
                    
89 * @copyright  2005, 2006 Alexander Valyalkin
                    
90 * @license    http://www.php.net/license/3_0.txt  PHP License 3.0
                    
91 * @link       http://pear.php.net/package/Crypt_RSA
                    
                
func.php http://snowcms.googlecode.com/svn/trunk/ | PHP | 272 lines
                    
1<?php
                    
2////////////////////////////////////////////////////////////////////////////
                    
64			'parse_str' => 'mb_parse_str',
                    
65			'mail' => 'mb_send_mail',
                    
66			'stripos' => create_function('$haystack, $needle, $offset = 0', '
                    
66			'stripos' => create_function('$haystack, $needle, $offset = 0', '
                    
67										 // This function doesn\'t exist until PHP 5.2.0 >=
                    
68										 if(function_exists(\'mb_stripos\'))
                    
108			'parse_str' => 'parse_str',
                    
109			'mail' => 'mail',
                    
110			'stripos' => 'stripos',
                    
                
MassTest.php http://firephp.googlecode.com/svn/trunk/ | PHP | 0 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: MassTest.php 23772 2011-02-28 21:35:29Z ralph $
                    
21 */
                    
25 */
                    
26require_once 'Zend/Measure/Flow/Mass.php';
                    
27
                    
35 */
                    
36class Zend_Measure_Flow_MassTest extends PHPUnit_Framework_TestCase
                    
37{
                    
                
Messo.class.php http://antilophpe.googlecode.com/svn/ | PHP | 375 lines
                    
1<?php
                    
2/**
                    
2/**
                    
3 * File Messo.class.php
                    
4 *
                    
192  /**
                    
193    * Get the name and the value of mail fields
                    
194    * @return string
                    
195    */
                    
196  function getMailFields(){
                    
197    return trim("Id: ".$this->getId()."\n"."Nome: ".$this->getNome()."\n"."Utente: ".$this->getIdUtente()."\n"."Active: ".$this->getActive()."\n"."Deleted: ".$this->getDeleted()."\n"."");
                    
                
TemperatureTest.php http://firephp.googlecode.com/svn/trunk/ | PHP | 0 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: TemperatureTest.php 23772 2011-02-28 21:35:29Z ralph $
                    
21 */
                    
22
                    
23if (!defined('PHPUnit_MAIN_METHOD')) {
                    
24    define('PHPUnit_MAIN_METHOD', 'Zend_Measure_TemperatureTest::main');
                    
29 */
                    
30require_once 'Zend/Measure/Temperature.php';
                    
31
                    
34 */
                    
35require_once 'Zend/Registry.php';
                    
36
                    
                
MaildirFolderTest.php http://firephp.googlecode.com/svn/trunk/ | PHP | 0 lines
                    
12 */
                    
13require_once 'Zend/Mail/Storage/Folder/Maildir.php';
                    
14
                    
138        try {
                    
139            $mail = new Zend_Mail_Storage_Folder_Maildir(array());
                    
140        } catch (Exception $e) {
                    
195    {
                    
196        $mail = new Zend_Mail_Storage_Folder_Maildir($this->_params);
                    
197        try {
                    
316    {
                    
317        $mail = new Zend_Mail_Storage_Folder_Maildir($this->_params);
                    
318
                    
412    {
                    
413        $mail = new Zend_Mail_Storage_Folder_Maildir($this->_params);
                    
414        $root = $mail->getFolders();
                    
                
Profiler.php git://github.com/michael-romer/zf-boilerplate.git | PHP | 471 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: Profiler.php 23775 2011-03-01 17:25:24Z ralph $
                    
21 */
                    
280         */
                    
281        require_once 'Zend/Db/Profiler/Query.php';
                    
282        $this->_queryProfiles[] = new Zend_Db_Profiler_Query($queryText, $queryType);
                    
308             */
                    
309            require_once 'Zend/Db/Profiler/Exception.php';
                    
310            throw new Zend_Db_Profiler_Exception("Profiler has no query with handle '$queryId'.");
                    
319             */
                    
320            require_once 'Zend/Db/Profiler/Exception.php';
                    
321            throw new Zend_Db_Profiler_Exception("Query with profiler handle '$queryId' has already ended.");
                    
                
sysvmsg.c git://pkgs.fedoraproject.org/php | C | 478 lines
                    
10  | http://www.php.net/license/3_01.txt                                  |
                    
11  | If you did not receive a copy of the PHP license and are unable to   |
                    
12  | obtain it through the world-wide-web, please send a note to          |
                    
12  | obtain it through the world-wide-web, please send a note to          |
                    
13  | license@php.net so we can mail you a copy immediately.               |
                    
14  +----------------------------------------------------------------------+
                    
146	php_info_print_table_start();
                    
147	php_info_print_table_row(2, "sysvmsg support", "enabled");
                    
148	php_info_print_table_row(2, "Revision", "$Id: 6360183f0075ec66a3dfa01633b2ed808dd482af $");
                    
342
                    
343	messagebuffer = (struct php_msgbuf *) safe_emalloc(maxsize, 1, sizeof(struct php_msgbuf));
                    
344
                    
439			default:
                    
440				php_error_docref(NULL TSRMLS_CC, E_WARNING, "Message parameter must be either a string or a number.");
                    
441				RETURN_FALSE;
                    
                
MassTest.php git://pkgs.fedoraproject.org/php-ZendFramework | PHP | 389 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: MassTest.php 24594 2012-01-05 21:27:01Z matthew $
                    
21 */
                    
25 */
                    
26require_once 'Zend/Measure/Flow/Mass.php';
                    
27
                    
35 */
                    
36class Zend_Measure_Flow_MassTest extends PHPUnit_Framework_TestCase
                    
37{
                    
                
FrequencyTest.php git://pkgs.fedoraproject.org/php-ZendFramework | PHP | 390 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: FrequencyTest.php 24594 2012-01-05 21:27:01Z matthew $
                    
21 */
                    
26 */
                    
27require_once 'Zend/Measure/Frequency.php';
                    
28
                    
36 */
                    
37class Zend_Measure_FrequencyTest extends PHPUnit_Framework_TestCase
                    
38{
                    
                
_phpDocumentor---Documentation---tests---bug-loseunknowntags.php.html http://oregon-caspages.googlecode.com/svn/trunk/ | HTML | 297 lines
                    
129		</a><br>
                    
130			<a href="../tests/_phpDocumentor---Documentation---tests---bug-authoremail.php.html">		bug-authoremail.php
                    
131		</a><br>
                    
155		</a><br>
                    
156		subpackage <b>PhpDocumentorUnitTests</b><br>			<a href="../tests/PhpDocumentorUnitTests/_phpDocumentor---tests---HighlightParserGetInlineTagsTests.php.html">		HighlightParserGetInlineTagsTests.php
                    
157		</a><br>
                    
163		</a><br>
                    
164			<a href="../tests/PhpDocumentorUnitTests/_phpDocumentor---tests---phpDocumentorSetupCleanConverterNamePieceTests.php.html">		phpDocumentorSetupCleanConverterNamePieceTests.php
                    
165		</a><br>
                    
165		</a><br>
                    
166			<a href="../tests/PhpDocumentorUnitTests/_phpDocumentor---tests---phpDocumentorSetupDecideOnOrOffTests.php.html">		phpDocumentorSetupDecideOnOrOffTests.php
                    
167		</a><br>
                    
167		</a><br>
                    
168			<a href="../tests/PhpDocumentorUnitTests/_phpDocumentor---tests---phpDocumentorTParserGetInlineTagsTests.php.html">		phpDocumentorTParserGetInlineTagsTests.php
                    
169		</a><br>
                    
                
user.php git://pkgs.fedoraproject.org/virtuoso-opensource | PHP | 387 lines
                    
169//   $lastname - last name
                    
170//   $email - email address
                    
171//   $admin - is admin? ("Y" or "N")
                    
181  if ( strlen ( $email ) )
                    
182    $uemail = "'" . $email . "'";
                    
183  else
                    
216//   $lastname - last name
                    
217//   $email - email address
                    
218//   $admin - is admin?
                    
226  if ( strlen ( $email ) )
                    
227    $uemail = "'" . $email . "'";
                    
228  else
                    
241  $sql = "UPDATE webcal_user SET cal_lastname = $ulastname, " .
                    
242    "cal_firstname = $ufirstname, cal_email = $uemail," .
                    
243    "cal_is_admin = '$admin' WHERE cal_login = '$user'";
                    
                
DictionaryLoader.php http://firephp.googlecode.com/svn/trunk/ | PHP | 0 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
60            $tiVersion != (int)0xFFFFFFFD /* 2.1+ format    */) {
                    
61                require_once 'Zend/Search/Lucene/Exception.php';
                    
62                throw new Zend_Search_Lucene_Exception('Wrong TermInfoIndexFile file format');
                    
65        // $indexTermCount = $tiiFile->readLong();
                    
66        if (PHP_INT_SIZE > 4) {
                    
67            $indexTermCount = ord($data[$pos]) << 56  |
                    
80                ((ord($data[$pos+4]) & 0x80) != 0)) {
                    
81                    require_once 'Zend/Search/Lucene/Exception.php';
                    
82                    throw new Zend_Search_Lucene_Exception('Largest supported segment size (for 32-bit mode) is 2Gb');
                    
98        if ($indexTermCount < 1) {
                    
99            require_once 'Zend/Search/Lucene/Exception.php';
                    
100            throw new Zend_Search_Lucene_Exception('Wrong number of terms in a term dictionary index');
                    
                
OnlineTest.php http://firephp.googlecode.com/svn/trunk/ | PHP | 0 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: OnlineTest.php 23772 2011-02-28 21:35:29Z ralph $
                    
21 */
                    
25 */
                    
26require_once dirname(dirname(__FILE__)) . DIRECTORY_SEPARATOR . 'OnlineTestCase.php';
                    
27/**
                    
29 */
                    
30require_once 'Zend/Ldap/Node.php';
                    
31
                    
                
TemperatureTest.php git://pkgs.fedoraproject.org/php-ZendFramework | PHP | 448 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: TemperatureTest.php 24594 2012-01-05 21:27:01Z matthew $
                    
21 */
                    
22
                    
23if (!defined('PHPUnit_MAIN_METHOD')) {
                    
24    define('PHPUnit_MAIN_METHOD', 'Zend_Measure_TemperatureTest::main');
                    
29 */
                    
30require_once 'Zend/Measure/Temperature.php';
                    
31
                    
34 */
                    
35require_once 'Zend/Registry.php';
                    
36
                    
                
user_waiting.php http://viet-group.googlecode.com/svn/trunk/ | PHP | 222 lines
                    
76        $message .= nv_EncString( $message );
                    
77        @nv_sendmail( $global_config['site_email'], $row['email'], $subject, $message );
                    
78    }
                    
99'email' => array( 
                    
100    'key' => 'email', 'value' => $lang_module['search_mail'], 'selected' => '' 
                    
101)  //
                    
143'full_name' => ( string )$row['full_name'], //
                    
144'email' => ( string )$row['email'], //
                    
145'regdate' => date( "d/m/Y H:i", $row['regdate'] )  //
                    
152$head_tds['userid']['title'] = $lang_module['userid'];
                    
153$head_tds['userid']['href'] = NV_BASE_ADMINURL . "index.php?" . NV_NAME_VARIABLE . "=" . $module_name . "&amp;" . NV_OP_VARIABLE . "=user_waiting&amp;sortby=userid&amp;sorttype=ASC";
                    
154$head_tds['username']['title'] = $lang_module['account'];
                    
158$head_tds['email']['title'] = $lang_module['email'];
                    
159$head_tds['email']['href'] = NV_BASE_ADMINURL . "index.php?" . NV_NAME_VARIABLE . "=" . $module_name . "&amp;" . NV_OP_VARIABLE . "=user_waiting&amp;sortby=email&amp;sorttype=ASC";
                    
160$head_tds['regdate']['title'] = $lang_module['register_date'];
                    
                
octane_archives.clj http://lighttexteditor.googlecode.com/svn/trunk/ | Clojure | 275 lines
                    
3;;;
                    
4;;; http://www.opensource.org/licenses/bsd-license.php
                    
5
                    
59;;;  
                    
60;;; Contact: Berlin Brown <berlin dot brown at gmail.com>
                    
61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
                    
                
anekdotru.php http://cartonbank.googlecode.com/svn/trunk/ | PHP | 393 lines
                    
10$mailto = "igor.aleshin@gmail.com"; // destination email box
                    
11//$mailto = "cartoonbank.ru@gmail.com"; // destination email box 
                    
12
                    
139					$my_name = "cartoonbank";
                    
140					$my_mail = "cartoonbank.ru@gmail.com";
                    
141					$my_replyto = "cartoonbank.ru@gmail.com";
                    
145					//send email 2
                    
146					mail_attachment($my_file, $my_path, $mailto, $my_mail, $my_name, $my_replyto, $my_subject, $my_message);
                    
147
                    
173
                    
174function mail_attachment($filename, $path, $mailto, $from_mail, $from_name, $replyto, $subject, $message) {
                    
175    $file = $path.$filename;
                    
197    $header .= "--".$uid."--";
                    
198    if (mail($mailto, $subject, "", $header)) {
                    
199        echo "mail send ... OK"; // or use booleans here
                    
                
ValidateAttributesTest.php git://pkgs.fedoraproject.org/sahana | PHP | 443 lines
                    
1<?php
                    
2
                    
2
                    
3require_once('HTMLPurifier/Config.php');
                    
4require_once('HTMLPurifier/StrategyHarness.php');
                    
4require_once('HTMLPurifier/StrategyHarness.php');
                    
5require_once('HTMLPurifier/Strategy/ValidateAttributes.php');
                    
6
                    
90        $this->assertResult(
                    
91            '<acronym title="PHP: Hypertext Preprocessor">PHP</acronym>'
                    
92        );
                    
235        );
                    
236        // mailto in image is not allowed
                    
237        $this->assertResult(
                    
237        $this->assertResult(
                    
238            '<img src="mailto:foo@example.com" />',
                    
239            '<img alt="mailto:foo@example.com" src="" />',
                    
                
template_util.py git://pkgs.fedoraproject.org/python-kid | Python | 282 lines
                    
6__date__ = "$Date: 2007-07-06 21:38:45 -0400 (Fri, 06 Jul 2007) $"
                    
7__author__ = "Ryan Tomayko (rtomayko@gmail.com)"
                    
8__copyright__ = "Copyright 2004-2005, Ryan Tomayko"
                    
8__copyright__ = "Copyright 2004-2005, Ryan Tomayko"
                    
9__license__ = "MIT <http://www.opensource.org/licenses/mit-license.php>"
                    
10
                    
                
OnlineTest.php git://pkgs.fedoraproject.org/php-ZendFramework | PHP | 290 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: OnlineTest.php 24594 2012-01-05 21:27:01Z matthew $
                    
21 */
                    
25 */
                    
26require_once dirname(dirname(__FILE__)) . DIRECTORY_SEPARATOR . 'OnlineTestCase.php';
                    
27/**
                    
29 */
                    
30require_once 'Zend/Ldap/Node.php';
                    
31
                    
                
Atom10.php http://rhaco.googlecode.com/svn/rhaco_1_x/trunk/ | PHP | 335 lines
                    
48		 * 	<name>tokushima</name>
                    
49		 * 	<email>tokushima@hoge.hoge</email>
                    
50		 * </author>
                    
66		 * 	<name>rhaco</name>
                    
67		 * 	<email>rhaco@rhaco.org</email>
                    
68		 * </author>
                    
83		 * 	<name>everes</name>
                    
84		 * 	<email>everes@hoge.hoge</email>
                    
85		 * </author>
                    
157		 * 	<name>tokushima</name>
                    
158		 * 	<email>tokushima@hoge.hoge</email>
                    
159		 * </author>
                    
175		 * 	<name>rhaco</name>
                    
176		 * 	<email>rhaco@rhaco.org</email>
                    
177		 * </author>
                    
                
Auth.php http://kumbia-enterprise.googlecode.com/svn/trunk/ | PHP | 390 lines
                    
1<?php
                    
2
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@loudertechnology.com so we can send you a copy immediately.
                    
17 * @copyright	Copyright (c) 2008-2009 Louder Technology COL. (http://www.loudertechnology.com)
                    
18 * @copyright	Copyright (c) 2005-2008 Andres Felipe Gutierrez (gutierrezandresfelipe at gmail.com)
                    
19 * @license		New BSD License
                    
19 * @license		New BSD License
                    
20 * @version 	$Id: Auth.php 103 2009-10-09 01:30:42Z gutierrezandresfelipe $
                    
21 */
                    
31 * @copyright	Copyright (c) 2008-2009 Louder Technology COL. (http://www.loudertechnology.com)
                    
32 * @copyright	Copyright (c) 2005-2008 Andres Felipe Gutierrez (gutierrezandresfelipe at gmail.com)
                    
33 * @license		New BSD License
                    
226		} else {
                    
227			$options = array('username' => $_SERVER['PHP_AUTH_USER'], 'password' => $_SERVER['PHP_AUTH_PW']);
                    
228			$this->_adapterObject->setParams($options);
                    
                
sub_edit.html http://phpfor.googlecode.com/svn/trunk/ | HTML | 243 lines
                    
10    <th><font color='red'>*</font>&nbsp;E-mail:</th>
                    
11    <td><{input vtype="email&&required" name="email" size="20" value=$member.email}></td>
                    
12  </tr>
                    
22    <th>
                    
23    <span id='editMemberPassword-<{$member.member_id}>' class="lnk" onclick="$(this).store('dialog',new Dialog('index.php?ctl=member/member&act=updatePassword&p[0]=<{$member.member_id}>&p[1]=<{$member.email}>&p[2]='+escape('<{$member.uname}>')+'&p[3]='+encodeURIComponent('<{$member.name}>'),{width:430,height:170,title:'??????'}))">
                    
24      <{t}>??????<{/t}>
                    
32    <th>
                    
33    <span id='editMemberPayPassword-<{$member.member_id}>' class="lnk" onclick="$(this).store('dialog',new Dialog('index.php?ctl=member/member&act=updatePayPassword&p[0]=<{$member.member_id}>&p[1]=<{$member.email}>&p[2]='+escape('<{$member.uname}>')+'&p[3]='+encodeURIComponent('<{$member.name}>'),{width:430,height:170,title:'???????????'}))">
                    
34      <{t}>???????????<{/t}>
                    
193                  <th>??????</th>
                    
194                  <td><{input type="email" name="dealer_email" id="d_email" maxlength="200" value=$member.dealer_email}></td>
                    
195                </tr>
                    
219  <tr>
                    
220    <td><b class="submitBtn"><input onclick="W.page('index.php?ctl=member/member&act=save',{data:$('Member_Form_Edit_<{$member.member_id}>'),method:'post'},$(this))" type="button" value="??" /></b></td>
                    
221  </tr>
                    
                
transports.c http://php52-backports.googlecode.com/svn/trunk/ | C | 520 lines
                    
182/* Bind the stream to a local address */
                    
183PHPAPI int php_stream_xport_bind(php_stream *stream,
                    
184		const char *name, long namelen,
                    
246/* Prepare to listen */
                    
247PHPAPI int php_stream_xport_listen(php_stream *stream, int backlog, char **error_text TSRMLS_DC)
                    
248{
                    
270/* Get the next client and their address (as a string) */
                    
271PHPAPI int php_stream_xport_accept(php_stream *stream, php_stream **client,
                    
272		char **textaddr, int *textaddrlen,
                    
340
                    
341PHPAPI int php_stream_xport_crypto_setup(php_stream *stream, php_stream_xport_crypt_method_t crypto_method, php_stream *session_stream TSRMLS_DC)
                    
342{
                    
453 * sending it as OOB data */
                    
454PHPAPI int php_stream_xport_sendto(php_stream *stream, const char *buf, size_t buflen,
                    
455		long flags, void *addr, socklen_t addrlen TSRMLS_DC)
                    
                
ISO14496_Box_SCHM.html http://xepec.googlecode.com/svn/trunk/ | HTML | 294 lines
                    
23	<div class="info-box-body">
                    
24        		<!-- ========== Info from phpDoc block ========= -->
                    
25<p class="short-description">The <em>Scheme Type Box</em> identifies the protection scheme.</p>
                    
26	<ul class="tags">
                    
27				<li><span class="field">author:</span> Sven Vollbehr &lt;<a href="mailto:svollbehr@gmail.com">svollbehr@gmail.com</a>&gt;</li>
                    
28				<li><span class="field">version:</span> $Rev: 92 $</li>
                    
28				<li><span class="field">version:</span> $Rev: 92 $</li>
                    
29				<li><span class="field">copyright:</span> Copyright (c) 2008 The PHP Reader Project Workgroup</li>
                    
30				<li><span class="field">license:</span> <a href="http://code.google.com/p/php-reader/wiki/License">New BSD License</a></li>
                    
32		<p class="notes">
                    
33			Located in <a class="field" href="_ISO14496---Box---SCHM.php.html">/ISO14496/Box/SCHM.php</a> (line <span class="field">52</span>)
                    
34		</p>
                    
290	<p class="notes" id="credit">
                    
291		Documentation generated on Thu, 01 Jan 2009 14:59:36 +0200 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.1</a>
                    
292	</p>
                    
                
akismet.php git://github.com/klevo/wildflower.git | PHP | 394 lines
                    
13 *
                    
14 * Please be aware that this class is PHP5 only.  Attempts to run it under PHP4 will most likely fail.
                    
15 *
                    
35 *    $akismet->setCommentAuthor($name);
                    
36 *    $akismet->setCommentAuthorEmail($email);
                    
37 *    $akismet->setCommentAuthorURL($url);
                    
109		/* 
                    
110		 * This is necessary if the server PHP5 is running on has been set up to run PHP4 and
                    
111		 * PHP5 concurently and is actually running through a separate proxy al a these instructions:
                    
111		 * PHP5 concurently and is actually running through a separate proxy al a these instructions:
                    
112		 * http://www.schlitt.info/applications/blog/archives/83_How_to_run_PHP4_and_PHP_5_parallel.html
                    
113		 * and http://wiki.coggeshall.org/37.html
                    
256	public function setCommentAuthorEmail($authorEmail) {
                    
257		$this->comment['comment_author_email'] = $authorEmail;
                    
258	}
                    
                
main.php https://bitbucket.org/chamilo/chamilo-dev/ | PHP | 404 lines
                    
34
                    
35// line 355 in phpfreechat.class.php
                    
36$GLOBALS["i18n"]["Please enter your nickname"] = "Vul hier een nickname in";
                    
49
                    
50// line 468 in phpfreechat.class.php
                    
51$GLOBALS["i18n"]["%s disconnected (timeout)"] = "%s niet verbonden (timeout)";
                    
73
                    
74// line 446 in phpfreechatconfig.class.php
                    
75$GLOBALS["i18n"]["%s can't be created"] = "%s kan niet worden gemaakt";
                    
76
                    
77// line 451 in phpfreechatconfig.class.php
                    
78$GLOBALS["i18n"]["%s is not writeable"] = "%s kan niet worden beschreven";
                    
89// line 23 in chat.html.tpl.php
                    
90$GLOBALS["i18n"]["PHP FREE CHAT [powered by phpFreeChat-%s]"] = "PHP FREE CHAT [powered by phpFreeChat-%s]";
                    
91
                    
                
main.php https://bitbucket.org/chamilo/chamilo-dev/ | PHP | 407 lines
                    
34
                    
35// line 355 in phpfreechat.class.php
                    
36$GLOBALS["i18n"]["Please enter your nickname"] = "Bonvolu enskribi vian voknomon";
                    
37
                    
38// line 565 in phpfreechat.class.php
                    
39$GLOBALS["i18n"]["Text cannot be empty"] = "Hej! Vi forgesis skribi ion!!!";
                    
73
                    
74// line 446 in phpfreechatconfig.class.php
                    
75$GLOBALS["i18n"]["%s can't be created"] = "%s can't be created";
                    
89// line 23 in chat.html.tpl.php
                    
90$GLOBALS["i18n"]["PHP FREE CHAT [powered by phpFreeChat-%s]"] = "PHP FREE CHAT [powered by phpFreeChat-%s]";
                    
91
                    
169
                    
170// line 378 in phpfreechatconfig.class.php
                    
171$GLOBALS["i18n"]["'%s' parameter must be a positive number"] = "'%s' parameter must be a positive number";
                    
                
permissions_phpbb.php http://twpug.googlecode.com/svn/trunk/ | PHP | 219 lines
                    
81	'acl_u_chgpasswd'	=> array('lang' => '??????', 'cat' => 'profile'),
                    
82	'acl_u_chgemail'	=> array('lang' => '????email??', 'cat' => 'profile'),
                    
83	'acl_u_chgavatar'	=> array('lang' => '??????', 'cat' => 'profile'),
                    
97	'acl_u_pm_forward'	=> array('lang' => '????????', 'cat' => 'pm'),
                    
98	'acl_u_pm_emailpm'	=> array('lang' => '??email????', 'cat' => 'pm'),
                    
99	'acl_u_pm_printpm'	=> array('lang' => '????????', 'cat' => 'pm'),
                    
106
                    
107	'acl_u_sendemail'	=> array('lang' => '????email', 'cat' => 'misc'),
                    
108	'acl_u_sendim'		=> array('lang' => '????????', 'cat' => 'misc'),
                    
143	'acl_f_print'		=> array('lang' => '??????', 'cat' => 'actions'),
                    
144	'acl_f_email'		=> array('lang' => '??email??', 'cat' => 'actions'),
                    
145
                    
174	'acl_a_jabber'		=> array('lang' => '????Jabber??', 'cat' => 'settings'),
                    
175	'acl_a_phpinfo'		=> array('lang' => '????php??', 'cat' => 'settings'),
                    
176
                    
                
login.php git://git.savannah.nongnu.org/savane-cleanup.git | PHP | 257 lines
                    
23require_once('../include/account.php');
                    
24require_once('../include/sane.php');
                    
25
                    
67    session_cookie('cookie_probe', 1);
                    
68    header('Location: login.php?uri='.$uri.'&cookie_test=1');
                    
69    }
                    
71    {
                    
72      fb(sprintf(_("Savane thinks your cookies are not activated for %s. To log-in, we need you to activate cookies in your web browser for this website. Please do so and click here:"), $sys_default_domain).' '.$GLOBALS['sys_https_url'].$GLOBALS['sys_home'].'account/login.php?uri='.$uri, 1);
                    
73    }
                    
132	      # Go there saying hello to your brother
                    
133	      header ("Location: ".$http."://".$GLOBALS['sys_brother_domain'].$GLOBALS['sys_home']."/account/login.php?session_uid=".user_getid()."&session_hash=".$GLOBALS['session_hash']."&cookie_for_a_year=$cookie_for_a_year&from_brother=1&login=1&stay_in_ssl=$stay_in_ssl&brotherhood=1&uri=".urlencode($uri));
                    
134	      exit;
                    
184      print '<p>'._("Your account is currently pending your email confirmation. Visiting the link sent to you in this email will activate your account.").'</p>';
                    
185      print '<p>'._("If you need this email resent, please click below and a confirmation email will be sent to the email address you provided in registration.").'</p>';
                    
186      print '<p><a href="pending-resend.php?form_user='.htmlspecialchars($form_loginname, ENT_QUOTES).'">['._("Resend Confirmation Email").']</a></p>';
                    
                
const.py.in git://pkgs.fedoraproject.org/gramps | Autoconf | 304 lines
                    
55URL_HOMEPAGE    = "http://gramps-project.org/"
                    
56URL_MAILINGLIST = "http://sourceforge.net/mail/?group_id=25770"
                    
57URL_BUGTRACKER  = "http://bugs.gramps-project.org/bug_report_advanced_page.php"
                    
57URL_BUGTRACKER  = "http://bugs.gramps-project.org/bug_report_advanced_page.php"
                    
58URL_WIKISTRING  = "http://gramps-project.org/wiki/index.php?title="
                    
59URL_MANUAL_PAGE = "Gramps_3.3_Wiki_Manual"
                    
                
C_cache.php http://mycaptain.googlecode.com/svn/ | PHP | 238 lines
                    
34	
                    
35		$cache = "<?php".$config."\n?>";
                    
36		$this->mc_print($cache,$cf); 
                    
48		}
                    
49		$user="\n\$user_cache = array('photo' => \"$icon\",'name' =>\"".htmlspecialchars($blogger['nickname'])."\",'mail'	=>\"".htmlspecialchars($blogger['email'])."\",'des'=>\"".htmlspecialchars($blogger['description'])."\");";
                    
50		$cache = "<?php".$user."\n?>";
                    
69				);";
                    
70		$cache = "<?php".$sta."\n?>";
                    
71		$this->mc_print($cache,$cf);
                    
81		while($show_com=$this->fetch_array($query)){
                    
82			$this->comment.= "\n\$com_cache[".$j."] = array('url'=>\"index.php?action=showlog&gid=".$show_com['gid']."#".$show_com['cid']."\",'name'=>\"".base64_encode(htmlspecialchars($show_com['poster']))."\",'content'=>\"".base64_encode(htmlClean2(subString($show_com['comment'],0,$comment_subnum)))."\");";
                    
83			$j++;
                    
84		}
                    
85		$cache = "<?php".$this->comment."\n?>";
                    
86		$this->mc_print($cache,$cf);
                    
                
labels.inc git://pkgs.fedoraproject.org/roundcubemail | PHP | 484 lines
                    
1<?php
                    
2
                    
7|                                                                       |
                    
8| Language file of the Roundcube Webmail client                         |
                    
9| Copyright (C) 2005-2010, Roundcube Dev. - Switzerland                 |
                    
12+-----------------------------------------------------------------------+
                    
13| Author: Xue zhong sheng <xue.zhongsheng@gmail.com>                    |
                    
14|         Zhang Huang bin <michaelbibby@gmail.com>                      |
                    
32$labels['logout'] = '??';
                    
33$labels['mail'] = '??';
                    
34$labels['settings'] = '??';
                    
36
                    
37// mailbox names
                    
38$labels['inbox'] = '???';
                    
259$labels['maidenname']   = '???';
                    
260$labels['email']        = 'Email';
                    
261$labels['phone']        = '??';
                    
                
ArtistTest.php http://firephp.googlecode.com/svn/trunk/ | PHP | 0 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: ArtistTest.php 23772 2011-02-28 21:35:29Z ralph $
                    
21 */
                    
25 */
                    
26require_once 'Zend/Service/Audioscrobbler.php';
                    
27
                    
28
                    
29require_once "AudioscrobblerTestCase.php";
                    
30
                    
                
ReCaptchaTest.php http://firephp.googlecode.com/svn/trunk/ | PHP | 0 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: ReCaptchaTest.php 24220 2011-07-11 21:31:29Z matthew $
                    
21 */
                    
23/** @see Zend_Service_ReCaptcha */
                    
24require_once 'Zend/Service/ReCaptcha.php';
                    
25
                    
26/** @see Zend_Http_Client_Adapter_Test */
                    
27require_once 'Zend/Http/Client/Adapter/Test.php';
                    
28
                    
29/** @see Zend_Config */
                    
30require_once 'Zend/Config.php';
                    
31
                    
                
PlatformJobQueueTest.php http://firephp.googlecode.com/svn/trunk/ | PHP | 0 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: PlatformJobQueueTest.php 23772 2011-02-28 21:35:29Z ralph $
                    
21 */
                    
23/** Zend_Queue */
                    
24require_once 'Zend/Queue.php';
                    
25
                    
26/** Zend_Queue */
                    
27require_once 'Zend/Queue/Message.php';
                    
28
                    
29/** Zend_Queue_Message_Test */
                    
30require_once 'MessageTestClass.php';
                    
31
                    
                
ubb.src.js http://freewms.googlecode.com/svn/trunk/ | JavaScript | 240 lines
                    
4 * 
                    
5 * @author Yanis.Wang<yanis.wang@gmail.com>
                    
6 * @site http://xheditor.com/
                    
6 * @site http://xheditor.com/
                    
7 * @licence LGPL(http://www.opensource.org/licenses/lgpl-license.php)
                    
8 * 
                    
43	sHtml=sHtml.replace(/\[url\s*=\s*([^\]"]+?)(?:"[^\]]*?)?\s*\]\s*([\s\S]*?)\s*\[\/url\]/ig,'<a href="$1">$2</a>');
                    
44	sHtml=sHtml.replace(/\[email\]\s*(((?!")[\s\S])+?)(?:"[\s\S]*?)?\s*\[\/email\]/ig,'<a href="mailto:$1">$1</a>');
                    
45	sHtml=sHtml.replace(/\[email\s*=\s*([^\]"]+?)(?:"[^\]]*?)?\s*\]\s*([\s\S]+?)\s*\[\/email\]/ig,'<a href="mailto:$1">$2</a>');
                    
136		var tag='url',str;
                    
137		if(url.match(/^mailto:/i))
                    
138		{
                    
138		{
                    
139			tag='email';
                    
140			url=url.replace(/mailto:(.+?)/i,'$1');
                    
                
admin_en.php http://nuke-viet.googlecode.com/svn/trunk/ | PHP | 0 lines
                    
1<?php
                    
2
                    
152$lang_module['activecomm'] = "Activate comment";
                    
153$lang_module['emailcomm'] = "Display email";
                    
154$lang_module['comment_edit'] = "Edit";
                    
159$lang_module['comment_funcs'] = "Function";
                    
160$lang_module['comment_email'] = "Email";
                    
161$lang_module['comment_topic'] = "Topic";
                    
214$lang_module['admin_full_name'] = "Full name";
                    
215$lang_module['admin_email'] = "Email";
                    
216$lang_module['permissions_admin'] = "Management category";
                    
                
fiche.php git://github.com/Dolibarr/dolibarr.git | PHP | 433 lines
                    
28require("../main.inc.php");
                    
29require_once(DOL_DOCUMENT_ROOT."/fourn/class/fournisseur.class.php");
                    
30require_once(DOL_DOCUMENT_ROOT."/fourn/class/fournisseur.facture.class.php");
                    
30require_once(DOL_DOCUMENT_ROOT."/fourn/class/fournisseur.facture.class.php");
                    
31require_once(DOL_DOCUMENT_ROOT."/contact/class/contact.class.php");
                    
32require_once(DOL_DOCUMENT_ROOT."/core/lib/company.lib.php");
                    
142    // EMail
                    
143	print '<td>'.$langs->trans('EMail').'</td><td colspan="3">'.dol_print_email($object->email,0,$object->id,'AC_EMAIL').'</td></tr>';
                    
144
                    
218	print '<td colspan="4"><table width="100%" class="nobordernopadding"><tr><td>'.$langs->trans("Summary").'</td>';
                    
219	print '<td align="right"><a href="'.DOL_URL_ROOT.'/fourn/recap-fourn.php?socid='.$object->id.'">'.$langs->trans("ShowSupplierPreview").'</a></td></tr></table></td>';
                    
220	print '</tr>';
                    
264    			print '<table class="nobordernopadding" width="100%"><tr><td>'.$langs->trans("LastOrders",($num<$MAXLIST?"":$MAXLIST)).'</td>';
                    
265    			print '<td align="right"><a href="commande/liste.php?socid='.$object->id.'">'.$langs->trans("AllOrders").' ('.$num.')</td>';
                    
266                print '<td width="20px" align="right"><a href="'.DOL_URL_ROOT.'/commande/stats/index.php?mode=supplier&socid='.$object->id.'">'.img_picto($langs->trans("Statistics"),'stats').'</a></td>';
                    
                
SubmitTest.php git://pkgs.fedoraproject.org/php-ZendFramework | PHP | 287 lines
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
23// Call Zend_Form_Element_SubmitTest::main() if this source file is executed directly.
                    
24if (!defined("PHPUnit_MAIN_METHOD")) {
                    
25    define("PHPUnit_MAIN_METHOD", "Zend_Form_Element_SubmitTest::main");
                    
27
                    
28require_once 'Zend/Form/Element/Submit.php';
                    
29require_once 'Zend/Form.php';
                    
43 */
                    
44class Zend_Form_Element_SubmitTest extends PHPUnit_Framework_TestCase
                    
45{
                    
265    {
                    
266        if (strtolower(substr(PHP_OS, 0, 3)) == 'win' && version_compare(PHP_VERSION, '5.1.4', '=')) {
                    
267            $this->markTestIncomplete('Error occurs for PHP 5.1.4 on Windows');
                    
                
ArtistTest.php git://pkgs.fedoraproject.org/php-ZendFramework | PHP | 216 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: ArtistTest.php 24594 2012-01-05 21:27:01Z matthew $
                    
21 */
                    
25 */
                    
26require_once 'Zend/Service/Audioscrobbler.php';
                    
27
                    
28
                    
29require_once "AudioscrobblerTestCase.php";
                    
30
                    
                
ReCaptchaTest.php git://pkgs.fedoraproject.org/php-ZendFramework | PHP | 295 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: ReCaptchaTest.php 24594 2012-01-05 21:27:01Z matthew $
                    
21 */
                    
23/** @see Zend_Service_ReCaptcha */
                    
24require_once 'Zend/Service/ReCaptcha.php';
                    
25
                    
26/** @see Zend_Http_Client_Adapter_Test */
                    
27require_once 'Zend/Http/Client/Adapter/Test.php';
                    
28
                    
29/** @see Zend_Config */
                    
30require_once 'Zend/Config.php';
                    
31
                    
                
PlatformJobQueueTest.php git://pkgs.fedoraproject.org/php-ZendFramework | PHP | 330 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: PlatformJobQueueTest.php 24594 2012-01-05 21:27:01Z matthew $
                    
21 */
                    
23/** Zend_Queue */
                    
24require_once 'Zend/Queue.php';
                    
25
                    
26/** Zend_Queue */
                    
27require_once 'Zend/Queue/Message.php';
                    
28
                    
29/** Zend_Queue_Message_Test */
                    
30require_once 'MessageTestClass.php';
                    
31
                    
                
style.css http://rqblog.googlecode.com/svn/trunk/ | CSS | 803 lines
                    
3Theme URI: http://85ideas.com/public-releases/wordpress-theme-pixel/
                    
4Description: Dark WP theme with 2-3 column layout, dropdown categories menu, multiple widget-ready placement and Feedburner email form integrated, easy to customize. Enjoy!
                    
5Author: Sam @ 85ideas.com
                    
9.
                    
10Released under <a href="http://www.opensource.org/licenses/gpl-license.php">GPL</a>.
                    
11.
                    
                
ScoutControllerRaider.java git://pkgs.fedoraproject.org/spring | Java | 280 lines
                    
1// Copyright Hugh Perkins 2006, 2009
                    
2// hughperkins@gmail.com http://manageddreams.com
                    
3//
                    
18// You can find the licence also on the web at:
                    
19// http://www.opensource.org/licenses/gpl-license.php
                    
20//
                    
                
PropertySheet.h http://winx.googlecode.com/svn/trunk/ | C Header | 582 lines
                    
5// The use and distribution terms for this software are covered by the
                    
6// Common Public License 1.0 (http://opensource.org/licenses/cpl.php)
                    
7// which can be found in the file CPL.txt at this distribution. By using
                    
13// Creator: xushiwei
                    
14// Email: xushiweizh@gmail.com
                    
15// Date: 2006-9-2 21:26:41
                    
208		m_psh.hwndParent = hWndParent;
                    
209		m_psh.phpage = GetPages(&m_psh.nPages);
                    
210		int result = ::PropertySheet(&m_psh);
                    
                
fckconfig.js http://eeplat.googlecode.com/svn/trunk/ | JavaScript | 328 lines
                    
59// FCKConfig.ProtectedSource.Add( /<%[\s\S]*?%>/g ) ;	// ASP style server side code <%...%>
                    
60// FCKConfig.ProtectedSource.Add( /<\?[\s\S]*?\?>/g ) ;	// PHP style server side code
                    
61// FCKConfig.ProtectedSource.Add( /(<asp:[^\>]+>[\s|\S]*?<\/asp:[^\>]+>)|(<asp:[^\>]+\/>)/gi ) ;	// ASP.Net style tags <asp:control>
                    
80
                    
81FCKConfig.EMailProtection = 'none' ; // none | encode | function
                    
82FCKConfig.EMailProtectionFunction = 'mt(NAME,DOMAIN,SUBJECT,BODY)' ;
                    
166FCKConfig.IeSpellDownloadUrl	= 'http://www.iespell.com/download.php' ;
                    
167FCKConfig.SpellerPagesServerScript = 'server-scripts/spellchecker.php' ;	// Available extension: .php .cfm .pl
                    
168FCKConfig.FirefoxSpellChecker	= false ;
                    
277// Custom implementations should just ignore it.
                    
278var _FileBrowserLanguage	= 'php' ;	// asp | aspx | cfm | lasso | perl | php | py
                    
279var _QuickUploadLanguage	= 'php' ;	// asp | aspx | cfm | lasso | perl | php | py
                    
                
armory_data.php http://wowroster.googlecode.com/svn/trunk/ | PHP | 290 lines
                    
1<?php
                    
2/**
                    
9 * @license    http://www.gnu.org/licenses/gpl.html   Licensed under the GNU General Public License v3.
                    
10 * @version    SVN: $Id: armory_data.php 2394 2012-02-15 22:05:03Z ulminia@gmail.com $
                    
11 * @link       http://www.wowroster.net
                    
                
index.php http://wowroster.googlecode.com/svn/trunk/ | PHP | 207 lines
                    
1<?php
                    
2/**
                    
9 * @license    http://www.gnu.org/licenses/gpl.html   Licensed under the GNU General Public License v3.
                    
10 * @version    SVN: $Id: index.php 2302 2011-03-19 16:50:59Z c.treyce@gmail.com $
                    
11 * @link       http://www.wowroster.net
                    
                
Property.php http://mongodb-morph.googlecode.com/svn/trunk/ | PHP | 374 lines
                    
1<?php
                    
2/**
                    
4 * @subpackage Query
                    
5 * @author Jonathan Moss <xirisr@gmail.com>
                    
6 * @copyright 2009 Jonathan Moss
                    
                
contacts.js http://phreedom.googlecode.com/svn/trunk/ | JavaScript | 224 lines
                    
31	type: "GET",
                    
32	url: 'index.php?module=contacts&page=ajax&op=contacts&action=get_address&type='+type+'&aID='+id,
                    
33	dataType: ($.browser.msie) ? "text" : "xml",
                    
72  insertValue('address_im_telephone4',     document.getElementById('address_'+type+'m_telephone4').value);
                    
73  insertValue('address_im_email',          document.getElementById('address_'+type+'m_email').value);
                    
74  insertValue('address_im_website',        document.getElementById('address_'+type+'m_website').value);
                    
100	type: "GET",
                    
101	url: 'index.php?module=contacts&page=ajax&op=contacts&action=rm_address&aID='+id,
                    
102	dataType: ($.browser.msie) ? "text" : "xml",
                    
121  var terms = document.getElementById('terms').value;
                    
122  window.open("index.php?module=contacts&page=popup_terms&type="+account_type+"&val="+terms,"terms","width=500px,height=300px,resizable=1,scrollbars=1,top=150,left=200");
                    
123}
                    
127	type: "GET",
                    
128	url: 'index.php?module=contacts&page=ajax&op=contacts&action=get_payment&pID='+id,
                    
129	dataType: ($.browser.msie) ? "text" : "xml",
                    
                
FigletTest.php http://firephp.googlecode.com/svn/trunk/ | PHP | 0 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: FigletTest.php 23772 2011-02-28 21:35:29Z ralph $
                    
21 */
                    
23// Call Zend_Captcha_FigletTest::main() if this source file is executed directly.
                    
24if (!defined("PHPUnit_MAIN_METHOD")) {
                    
25    define("PHPUnit_MAIN_METHOD", "Zend_Captcha_FigletTest::main");
                    
27
                    
28require_once 'Zend/Form/Element/Captcha.php';
                    
29require_once 'Zend/Captcha/Adapter.php';
                    
29require_once 'Zend/Captcha/Adapter.php';
                    
30require_once 'Zend/Config.php';
                    
31
                    
                
FormErrors.php http://firephp.googlecode.com/svn/trunk/ | PHP | 0 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
22/** Zend_Form_Decorator_Abstract */
                    
23require_once 'Zend/Form/Decorator/Abstract.php';
                    
24
                    
                
tab_admincp.php http://thegamesdb.googlecode.com/svn/trunk/ | PHP | 320 lines
                    
72				<ul>
                    
73					<li<?php if($cptab == "userinfo"){ ?> class="active" <?php } ?>><a href="<?= $baseurl ?>/admincp/?cptab=userinfo">My User Info</a></li>
                    
74					<li<?php if($cptab == "addplatform"){ ?> class="active" <?php } ?>><a href="<?= $baseurl ?>/admincp/?cptab=addplatform">Add New Platform</a></li>
                    
74					<li<?php if($cptab == "addplatform"){ ?> class="active" <?php } ?>><a href="<?= $baseurl ?>/admincp/?cptab=addplatform">Add New Platform</a></li>
                    
75					<li<?php if($cptab == "publishers"){ ?> class="active" <?php } ?>><a href="<?= $baseurl ?>/admincp/?cptab=pubdev">Manage Publishers &amp; Developers</a></li>
                    
76					<li<?php if($cptab == "sendpm"){ ?> class="active" <?php } ?>><a href="<?= $baseurl ?>/admincp/?cptab=sendpm">Send PM</a></li>
                    
76					<li<?php if($cptab == "sendpm"){ ?> class="active" <?php } ?>><a href="<?= $baseurl ?>/admincp/?cptab=sendpm">Send PM</a></li>
                    
77					<li<?php if($cptab == "platformalias"){ ?> class="active" <?php } ?>><a href="<?= $baseurl ?>/admincp/?cptab=platformalias">Generate Platform Alias's</a></li>
                    
78				</ul>
                    
127										<td><b>Email Address</b></td>
                    
128										<td><input type="text" name="email" value="<?=$user->emailaddress?>"></td>
                    
129									</tr>
                    
306		</div>
                    
307		<?php
                    
308		}
                    
                
core.charset.class.php http://php-ppcms.googlecode.com/svn/trunk/ | PHP | 310 lines
                    
1<?php
                    
2/***************************************************************
                    
3*  Copyright notice
                    
4*  (c) 2009, jianyuzhu@gmail.com
                    
5*  All rights reserved
                    
                
FigletTest.php git://pkgs.fedoraproject.org/php-ZendFramework | PHP | 364 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: FigletTest.php 24594 2012-01-05 21:27:01Z matthew $
                    
21 */
                    
23// Call Zend_Captcha_FigletTest::main() if this source file is executed directly.
                    
24if (!defined("PHPUnit_MAIN_METHOD")) {
                    
25    define("PHPUnit_MAIN_METHOD", "Zend_Captcha_FigletTest::main");
                    
27
                    
28require_once 'Zend/Form/Element/Captcha.php';
                    
29require_once 'Zend/Captcha/Adapter.php';
                    
29require_once 'Zend/Captcha/Adapter.php';
                    
30require_once 'Zend/Config.php';
                    
31
                    
                
fckconfig.js https://acexpo.svn.codeplex.com/svn | JavaScript | 320 lines
                    
57// FCKConfig.ProtectedSource.Add( /<%[\s\S]*?%>/g ) ;	// ASP style server side code <%...%>
                    
58// FCKConfig.ProtectedSource.Add( /<\?[\s\S]*?\?>/g ) ;	// PHP style server side code
                    
59// FCKConfig.ProtectedSource.Add( /(<asp:[^\>]+>[\s|\S]*?<\/asp:[^\>]+>)|(<asp:[^\>]+\/>)/gi ) ;	// ASP.Net style tags <asp:control>
                    
78
                    
79FCKConfig.EMailProtection = 'none' ; // none | encode | function
                    
80FCKConfig.EMailProtectionFunction = 'mt(NAME,DOMAIN,SUBJECT,BODY)' ;
                    
158FCKConfig.IeSpellDownloadUrl	= 'http://www.iespell.com/download.php' ;
                    
159FCKConfig.SpellerPagesServerScript = 'server-scripts/spellchecker.php' ;	// Available extension: .php .cfm .pl
                    
160FCKConfig.FirefoxSpellChecker	= false ;
                    
269// Custom implementations should just ignore it.
                    
270var _FileBrowserLanguage	= 'aspx' ;	// asp | aspx | cfm | lasso | perl | php | py
                    
271var _QuickUploadLanguage	= 'aspx' ;	// asp | aspx | cfm | lasso | perl | php | py
                    
                
Communicator.php https://code.google.com/p/celebrio/ | PHP | 371 lines
                    
1<?php
                    
2
                    
2
                    
3namespace Nette\Mail\SMTPClient;
                    
4
                    
35
                    
36 * @package nSMTPMailer
                    
37 * @version 1.0.0
                    
42
                    
43class /*Nette\Mail\SMTPClient\*/Communicator
                    
44{
                    
293                'Transport layer ' . $transport . ' is not supported by ' .
                    
294                'the local PHP installation.');
                    
295
                    
                
function_vpn_ssl.php http://windowsfw.googlecode.com/svn/trunk/ | PHP | 343 lines
                    
1<?php
                    
2include_once "function_base_xml_class.php";
                    
244		$this->node_name = "CERTIFICATE";
                    
245		$this->key_array = array( "Time", "City", "State", "Org", "User", "Email");
                    
246	}
                    
301		if (trim($r['Email']) != "")
                    
302			$command .= $this -> CreateCommandStr("KEY_EMAIL", $r['Email']);
                    
303
                    
                
html.php git://github.com/ericbarnes/Status-Board.git | PHP | 344 lines
                    
192	 */
                    
193	public static function mailto($email, $title = null, $attributes = array())
                    
194	{
                    
194	{
                    
195		$email = static::email($email);
                    
196
                    
196
                    
197		if (is_null($title)) $title = $email;
                    
198
                    
198
                    
199		$email = '&#109;&#097;&#105;&#108;&#116;&#111;&#058;'.$email;
                    
200
                    
209	 */
                    
210	public static function email($email)
                    
211	{
                    
                
class_zend___mail___message___file.html http://openbiz-cubi.googlecode.com/svn/trunk/ | HTML | 188 lines
                    
64
                    
65<p>Definition at line <a class="el" href="others_2_zend_2_mail_2_message_2_file_8php_source.html#l00039">39</a> of file <a class="el" href="others_2_zend_2_mail_2_message_2_file_8php_source.html">File.php</a>.</p>
                    
66<hr/><h2>Constructor &amp; Destructor Documentation</h2>
                    
100
                    
101<p>Definition at line <a class="el" href="others_2_zend_2_mail_2_message_2_file_8php_source.html#l00056">56</a> of file <a class="el" href="others_2_zend_2_mail_2_message_2_file_8php_source.html">File.php</a>.</p>
                    
102
                    
123
                    
124<p>Definition at line <a class="el" href="others_2_zend_2_mail_2_message_2_file_8php_source.html#l00092">92</a> of file <a class="el" href="others_2_zend_2_mail_2_message_2_file_8php_source.html">File.php</a>.</p>
                    
125
                    
145
                    
146<p>Definition at line <a class="el" href="others_2_zend_2_mail_2_message_2_file_8php_source.html#l00071">71</a> of file <a class="el" href="others_2_zend_2_mail_2_message_2_file_8php_source.html">File.php</a>.</p>
                    
147
                    
174
                    
175<p>Definition at line <a class="el" href="others_2_zend_2_mail_2_message_2_file_8php_source.html#l00082">82</a> of file <a class="el" href="others_2_zend_2_mail_2_message_2_file_8php_source.html">File.php</a>.</p>
                    
176
                    
                
demo.html http://mbideasproject.googlecode.com/svn/trunk/ | HTML | 228 lines
                    
5  ~ Copyright (c) 2001-2010. Matteo Bicocchi (Pupunzi); Open lab srl, Firenze - Italy
                    
6  ~ email: mbicocchi@open-lab.com
                    
7  ~ site: http://pupunzi.com
                    
9  ~ Licences: MIT, GPL
                    
10  ~ http://www.opensource.org/licenses/mit-license.php
                    
11  ~ http://www.gnu.org/licenses/gpl.html
                    
                
usercp_viewprofile.php http://torrentpier2.googlecode.com/svn/trunk/ | PHP | 241 lines
                    
49{
                    
50	$email_uri = ($bb_cfg['board_email_form']) ? 'profile.php?mode=email&amp;'. POST_USERS_URL .'='. $profiledata['user_id'] : 'mailto:'. $profiledata['user_email'];
                    
51	$email = '<a class="editable" href="'. $email_uri .'">'. $profiledata['user_email'] .'</a>';
                    
109	'PM'                   => '<a href="' . PM_URL . '?mode=post&amp;'. POST_USERS_URL .'='. $profiledata['user_id'] .'">'. $lang['SEND_PRIVATE_MESSAGE'] .'</a>',
                    
110	'EMAIL'                => $email,
                    
111	'WWW'                  => $profiledata['user_website'],
                    
128
                    
129	'U_SEARCH_USER'        => "search.php?search_author=1&amp;uid={$profiledata['user_id']}",
                    
130	'U_SEARCH_TOPICS'      => "search.php?uid={$profiledata['user_id']}&amp;myt=1",
                    
142	'TRAF_STATS'           => !(IS_AM || $profile_user_id),
                    
143	'U_MANAGE'             => (IS_ADMIN) ? "profile.php?mode=editprofile&amp;u={$profiledata['user_id']}" : 'profile.php?mode=editprofile',
                    
144));
                    
224		'AJAX_USER_OPT'    => $ajax_user_opt,
                    
225		'EMAIL_ADDRESS'    => htmlCHR($profiledata['user_email']),
                    
226	));
                    
                
2.0.2.md git://github.com/silverstripe/sapphire.git | Markdown | 156 lines
                    
15  * Much more API Documentation
                    
16  * Modules must now have _config.php files in order to be loaded
                    
17  * New Classes
                    
30      * DataObject
                    
31          * Added add_extension() for adding decorators in _config.php
                    
32      * DataObjectDecorator
                    
33          * Added extraDBFields() for modifying the decorated data objects, adding extra database fields
                    
34      * Email
                    
35          * Added send_all_emails_to()
                    
35          * Added send_all_emails_to()
                    
36          * Added cc_all_emails_to()
                    
37          * Added bcc_all_emails_to()
                    
90      * Fixed ContentController::PageComments() method to die if spammers are POSTing form data when comments are disabled
                    
91      * Fixed permission checking on PHP 5.0.5
                    
92      * Fixed 'cannot access protected property' error in Security section on PHP 5.0.5
                    
                
setup-mysql.sql http://snowcms.googlecode.com/svn/trunk/ | SQL | 206 lines
                    
16##
                    
17# Holds all the PHP errors which have occurred!
                    
18##
                    
81	`member_name` VARCHAR(255) NOT NULL,
                    
82	`member_email` VARCHAR(255) NOT NULL,
                    
83	`member_ip` VARCHAR(150) NOT NULL,
                    
85	`modified_name` VARCHAR(255) NOT NULL DEFAULT '',
                    
86	`modified_email` VARCHAR(255) NOT NULL DEFAULT '',
                    
87	`modified_ip` VARCHAR(150) NOT NULL DEFAULT '',
                    
145
                    
146INSERT INTO `{db->prefix}settings` (`variable`, `value`) VALUES('show_version', 1),('version', '2.0-beta2'),('password_security', 1),('disallowed_names', ''),('disallowed_emails', ''),('default_event', '');
                    
147INSERT INTO `{db->prefix}settings` (`variable`, `value`) VALUES('enable_tasks', 1),('site_name', 'SnowCMS'),('site_email', ''),('theme', 'default'),('max_tasks', 2);
                    
148INSERT INTO `{db->prefix}settings` (`variable`, `value`) VALUES('registration_type', 1),('enable_utf8', 1),('members_min_name_length', 3),('members_max_name_length', 80),('errors_log', 1);
                    
149INSERT INTO `{db->prefix}settings` (`variable`, `value`) VALUES('mail_handler', 'mail'),('smtp_host', 'localhost'),('smtp_port', 25),('smtp_is_tls', 0),('smtp_timeout', 5),('smtp_user', ''),('smtp_pass', '');
                    
150INSERT INTO `{db->prefix}settings` (`variable`, `value`) VALUES('mail_additional_parameters', ''),('default_member_groups', 'member'),('disable_admin_security', 0),('admin_login_timeout', 15),('admin_news_fetch_every', 43200);
                    
                
osx-build.sh git://pkgs.fedoraproject.org/inkscape | Shell | 411 lines
                    
5# Please see
                    
6#  http://wiki.inkscape.org/wiki/index.php?title=CompilingMacOsX
                    
7# for more complete information
                    
9# Author:
                    
10#	Jean-Olivier Irisson <jo.irisson@gmail.com>
                    
11# with information from
                    
                
Generic.php https://code.google.com/p/molinos-cms/ | PHP | 322 lines
                    
96		$ax = new Auth_OpenID_AX_FetchRequest();
                    
97		$ax->add(Auth_OpenID_AX_AttrInfo::make('http://axschema.org/contact/email', 2, 1, 'email'));
                    
98		$ax->add(Auth_OpenID_AX_AttrInfo::make('http://axschema.org/namePerson/first', 1, 1, 'firstname'));
                    
232		elseif (!empty($data['email']))
                    
233			$filter['email'] = $data['email'];
                    
234		else {
                    
273			;
                    
274		elseif (!empty($data['email']) and $node->email == $data['email'])
                    
275			;
                    
297			'openid_identity' => 'url',
                    
298			'sreg_email' => 'email',
                    
299			'sreg_fullname' => 'name',
                    
301			'openid_ext1_value_firstname' => 'firstname',
                    
302			'openid_ext1_value_email' => 'email',
                    
303			'openid_ext1_value_lastname' => 'lastname',
                    
                
google_base_feed_builder.php http://google-checkout-oscommerce.googlecode.com/svn/trunk/ | PHP | 362 lines
                    
1<?php
                    
2/*
                    
21 * Google Checkout v1.5.0
                    
22 * $Id: google_base_feed_builder.php 224 2009-03-11 16:31:28Z ed.davisson $
                    
23 * 
                    
72 *
                    
73 * @author Ed Davisson (ed.davisson@gmail.com)
                    
74 */
                    
75
                    
76require_once(DIR_FS_CATALOG . 'googlecheckout/library/xml/google_xml_builder.php');
                    
77
                    
                
ReferenceEncryptedProperties.java http://owasp-esapi-java.googlecode.com/svn/trunk/ | Java | 294 lines
                    
5 * Enterprise Security API (ESAPI) project. For details, please see
                    
6 * <a href="http://www.owasp.org/index.php/ESAPI">http://www.owasp.org/index.php/ESAPI</a>.
                    
7 *
                    
50 *         <a href="http://www.codemagi.com">CodeMagi, Inc.</a>
                    
51 * @author kevin.w.wall@gmail.com
                    
52 * @since October 8, 2010
                    
                
admin.php http://jfusion.googlecode.com/svn/trunk/ | PHP | 434 lines
                    
1<?php
                    
2/**
                    
14 */
                    
15//require_once dirname(__FILE__) . DS . 'factory.php';
                    
16
                    
18 * JFusion Admin class for Magento 1.1
                    
19 * For detailed descriptions on these functions please check the model.abstractadmin.php
                    
20 * @package JFusion_Magento
                    
69    $db = JFusionFactory::getDataBase($this->getJname());
                    
70    $query = 'SELECT email as username, email from #__customer_entity';
                    
71	if(!empty($count)){
                    
208			$source_path = $params->get('source_path', '');
                    
209			if(!file_exists($source_path . DS . 'app'. DS .'Mage.php')){
                    
210				return JText::_('MAGE_CONFIG_SOURCE_PATH');
                    
                
class.listype.php http://kak.googlecode.com/svn/trunk/ | PHP | 343 lines
                    
1<?php
                    
2defined('_JEXEC') OR die('Access Denied!');
                    
22				} else {
                    
23			      	$results = _JNEWS_MAILING_ALL;
                    
24				}
                    
25				break;
                    
26			case 'mailing_header':
                    
27				if ($listType>0) {
                    
29				} else {
                    
30				backHTML::_header( _JNEWS_MAILING_ALL  , 'newsletter.png' , $message  , $task, $action );
                    
31				}
                    
32				break;
                    
33			case 'mailing_edit_header':
                    
34				backHTML::_header( _JNEWS_EDIT_A.@constant( $GLOBALS[JNEWS.'listname'.$listType] ) , 'newsletter' , $message, $task, $action );
                    
58
                    
59	 function getMailingDropList($listId, $listType, $order) {
                    
60		$lists = '';
                    
                
ajax.js https://git01.codeplex.com/schooldiary | JavaScript | 457 lines
                    
45			var username = document.getElementById("username").value;
                    
46			var url = "scripts/check_register.php?username=" + username;
                    
47			xmlhttp.open("GET", url, true);
                    
79			var password2 = $("#password2").val();
                    
80			var email = $("#email").val();
                    
81			
                    
81			
                    
82			var url = 'scripts/register_student.php?ime=' + ime + '&familiq=' + familiq + '&prezime=' + prezime + '&telefon=' + telefon + '&mestojiveene=' + mestojiveene + '&classid=' + classid + '&number=' +number+ '&username='+ username + '&password1=' + password1 + '&password2='+password2 + '&email=' + email + '&egn=' + egn;
                    
83			xmlhttp.open("GET", url, true);
                    
103						$("#passwords").html('<br/ >'); document.getElementById("password2").value = '';
                    
104						$("#emailMsg").html('<br/ >'); document.getElementById("email").value = '';
                    
105					}
                    
214			var predmet = document.getElementById("predmet").value;
                    
215			var url = "scripts/add_subject.php?predmet=" + predmet;
                    
216			xmlhttp.open("GET", url, true);
                    
                
support.html git://github.com/thirumg/Avro.NET.git | HTML | 360 lines
                    
88					<li><a href="http://marc.theaimsgroup.com/?l=log4net-user&amp;r=1&amp;w=2">MARC</a></li>
                    
89					<li><a href="http://sourceforge.net/mailarchive/forum.php?forum=log4net-users">Old Mailing List at sourceforge</a></li>
                    
90				</ul>
                    
107							To subscribe to the digest list sent an e-mail to <br />
                    
108							<a href="mailto:log4net-user-digest-subscribe@logging.apache.org">log4net-user-digest-subscribe@logging.apache.org</a>.
                    
109						</p>
                    
115                                    <p>
                    
116					To unsubscribe send an email to the relevant email address:
                    
117				</p>
                    
156							<strong>Keep your email short and to the point</strong><br />
                    
157							If your email is more than about a page of text, chances are that it
                    
158							won't get read by very many people. It is much better to try to pack a
                    
202							<strong>Do not cross post messages</strong><br />
                    
203							In other words, pick a mailing list and send your messages to that mailing 
                    
204							list only. Do not send your messages to multiple mailing lists. The reason is 
                    
                
sidebar.php http://jqbird.googlecode.com/svn/trunk/ | PHP | 268 lines
                    
44<?php if ($zenverse_global_twitter != '') { ?>
                    
45<a title="Follow me on Twitter" href="http://twitter.com/<?php echo $zenverse_global_twitter; ?>"><img style="position:relative;" src="<?php bloginfo('template_directory') ?>/images/sidesubs_twitter2.gif" onmouseover="this.style.top='-2px';" onmouseout="this.style.top='0px';" alt="" /></a>
                    
46<?php } ?>
                    
48<?php if ($zenverse_global_feedburner_id!='') { ?>
                    
49<a title="Subscribe to updates via Email" href="http://feedburner.google.com/fb/a/mailverify?uri=<?php echo $zenverse_global_feedburner_id; ?>"><img style="position:relative;" src="<?php bloginfo('template_directory') ?>/images/sidesubs_feedburner2.gif" onmouseover="this.style.top='-2px';" onmouseout="this.style.top='0px';" alt="" /></a>
                    
50<?php } ?>
                    
112?>
                    
113<a href="<?php echo $minism_sponsor_link; ?>" title="<?php echo $minism_sponsor_alttag; ?>"><img alt="<?php echo $minism_sponsor_alttag; ?>" src="<?php echo $minism_sponsor_image; ?>" /></a>
                    
114<?php } ?>
                    
167<?php while (have_posts()) : the_post(); ?>
                    
168<li><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></li>
                    
169<?php endwhile; ?>
                    
206<?php while (have_posts()) : the_post(); ?>
                    
207<li><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></li>
                    
208<?php endwhile; ?>
                    
                
CWsdlGenerator.php git://github.com/pmjones/php-framework-benchmarks.git | PHP | 419 lines
                    
1<?php
                    
2/**
                    
4 *
                    
5 * @author Qiang Xue <qiang.xue@gmail.com>
                    
6 * @link http://www.yiiframework.com/
                    
20 * of every input parameter and the type of the return value should be declared using
                    
21 * the standard phpdoc format.
                    
22 *
                    
77 *
                    
78 * @author Qiang Xue <qiang.xue@gmail.com>
                    
79 * @version $Id: CWsdlGenerator.php 2497 2010-09-23 13:28:52Z mdomba $
                    
161	/*
                    
162	 * @param string $type PHP variable type
                    
163	 */
                    
252		$schema->setAttribute('targetNamespace',$this->namespace);
                    
253		foreach($this->_types as $phpType=>$xmlType)
                    
254		{
                    
                
php_fopen_wrapper.c git://github.com/vpj/PHP-Extension-API.git | C | 351 lines
                    
33
                    
34static size_t php_stream_output_write(php_stream *stream, const char *buf, size_t count TSRMLS_DC)
                    
35{
                    
149
                    
150php_stream * php_stream_url_wrap_php(php_stream_wrapper *wrapper, char *path, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC)
                    
151{
                    
201		}
                    
202		return php_stream_alloc(&php_stream_input_ops, ecalloc(1, sizeof(off_t)), 0, "rb");
                    
203	}
                    
278			} else {
                    
279				php_stream_apply_filter_list(stream, p, mode_rw & PHP_STREAM_FILTER_READ, mode_rw & PHP_STREAM_FILTER_WRITE TSRMLS_CC);
                    
280			}
                    
336
                    
337php_stream_wrapper php_stream_php_wrapper =	{
                    
338	&php_stdio_wops,
                    
                
sqlite_statement.c git://github.com/vpj/PHP-Extension-API.git | C | 366 lines
                    
9  | available through the world-wide-web at the following url:           |
                    
10  | http://www.php.net/license/3_01.txt                                  |
                    
11  | If you did not receive a copy of the PHP license and are unable to   |
                    
12  | obtain it through the world-wide-web, please send a note to          |
                    
13  | license@php.net so we can mail you a copy immediately.               |
                    
14  +----------------------------------------------------------------------+
                    
14  +----------------------------------------------------------------------+
                    
15  | Author: Wez Furlong <wez@php.net>                                    |
                    
16  +----------------------------------------------------------------------+
                    
25#include "php.h"
                    
26#include "php_ini.h"
                    
27#include "ext/standard/info.h"
                    
27#include "ext/standard/info.h"
                    
28#include "pdo/php_pdo.h"
                    
29#include "pdo/php_pdo_driver.h"
                    
                
iptc.c git://github.com/infusion/PHP.git | C | 377 lines
                    
10   | http://www.php.net/license/3_01.txt                                  |
                    
11   | If you did not receive a copy of the PHP license and are unable to   |
                    
12   | obtain it through the world-wide-web, please send a note to          |
                    
12   | obtain it through the world-wide-web, please send a note to          |
                    
13   | license@php.net so we can mail you a copy immediately.               |
                    
14   +----------------------------------------------------------------------+
                    
75
                    
76/* {{{ php_iptc_put1
                    
77 */
                    
142
                    
143/* {{{ php_iptc_next_marker
                    
144 */
                    
155    while (c != 0xff) {
                    
156        if ((c = php_iptc_get1(fp, spool, spoolbuf TSRMLS_CC)) == EOF)
                    
157            return M_EOI; /* we hit EOF */
                    
                
config.m4 git://github.com/vpj/PHP-Extension-API.git | m4 | 278 lines
                    
44    PHP_IMAP_EXPORT void mm_list(void){}
                    
45    PHP_IMAP_EXPORT void mm_exists(void){}
                    
46    PHP_IMAP_EXPORT void mm_searched(void){}
                    
108    PHP_SUBST(IMAP_SHARED_LIBADD)
                    
109    PHP_NEW_EXTENSION(imap, php_imap.c, $ext_shared)
                    
110    AC_DEFINE(HAVE_IMAP,1,[ ])
                    
122    dnl Check for c-client version 2004
                    
123    AC_EGREP_HEADER(mail_fetch_overview_sequence, $IMAP_INC_DIR/mail.h, [
                    
124      AC_DEFINE(HAVE_IMAP2004,1,[ ])
                    
203    elif test -r "$IMAP_DIR/$PHP_LIBDIR/c-client.a"; then
                    
204      ln -s "$IMAP_DIR/$PHP_LIBDIR/c-client.a" "$IMAP_DIR/$PHP_LIBDIR/libc-client.a" >/dev/null 2>&1
                    
205    fi
                    
271    AC_MSG_CHECKING(whether build with IMAP works)
                    
272    PHP_IMAP_TEST_BUILD(mail_newbody, [
                    
273      AC_MSG_RESULT(yes)
                    
                
Decoder.php git://github.com/shevron/sopha.git | PHP | 462 lines
                    
1<?php
                    
2
                    
3/**
                    
4 * Sopha - A PHP 5.x Interface to CouchDB
                    
5 *
                    
13 * If you did not receive a copy of the license and are unable to
                    
14 * obtain it through the world-wide-web, please send an email
                    
15 * to license@zend.com so we can send you a copy immediately.
                    
28
                    
29require_once 'Sopha/Json.php';
                    
30
                    
31/**
                    
32 * Decode JSON encoded string to PHP variable constructs
                    
33 *
                    
146        if (null === $source) {
                    
147            require_once 'Sopha/Json/Exception.php';
                    
148            throw new Sopha_Json_Exception('Must specify JSON encoded source for decoding');
                    
                
core.php http://festos.googlecode.com/svn/trunk/ | PHP | 405 lines
                    
42require_once($config['ABSOLUTE_FILE_PATH'].'core/check_email_address.php');
                    
43require_once($config['ABSOLUTE_FILE_PATH'].'core/class.phpmailer.php');
                    
44require_once($config['ABSOLUTE_FILE_PATH'].'core/class.smtp.php');
                    
64##  sendEmail()
                    
65##  sends an email using mailer values in config.php
                    
66##  returns nothing on success, phpMailer error string on failure
                    
72		$mail = new PHPMailer();
                    
73		$mail->SetLanguage($config['PHPMAILER_LANGUAGE'], $config['ABSOLUTE_FILE_PATH'].'/core/language');
                    
74		$mail->IsSMTP(); // telling the class to use SMTP
                    
79		
                    
80		$mail->From = (isset($festos->email) && $festos->email!='') ? $festos->email : $config['SMTP_SENDER'];
                    
81		$mail->FromName = (isset($festos->nickname) && $festos->nickname!='') ? $festos->nickname : '';
                    
100		if(!$mail->Send()) {
                    
101			return $lang['phpmailer_error'] . $mail->ErrorInfo;
                    
102		}
                    
                
admin.users.html.php http://miacms.googlecode.com/svn/trunk/ | PHP | 510 lines
                    
106				<td>
                    
107				<a href="mailto:<?php echo $row->email; ?>">
                    
108				<?php echo $row->email; ?>
                    
160		?>
                    
161		<form action="index2.php?f=<?php echo mosMainframe::formId($option, 'edit', $my); ?>" method="post" id="adminForm" name="adminForm">
                    
162		<table class="adminheading">
                    
199					<td>
                    
200					<input class="inputbox" type="text" name="email" size="40" value="<?php echo $row->email; ?>" />
                    
201					</td>
                    
362						<td valign="top">
                    
363						<img src="<?php echo $mosConfig_live_site;?>/images/stories/<?php echo $contact[0]->image; ?>" align="middle" alt="<?php echo T_('Contact'); ?>" />
                    
364						</td>
                    
371					<br /><br />
                    
372					<input class="button" type="button" value="<?php echo T_('Change Contact Details'); ?>" onclick="YAHOO.admin.user.gotocontact( '<?php echo $contact[0]->id; ?>' );" />
                    
373					<i>
                    
                
ArrayTest.php http://firephp.googlecode.com/svn/trunk/ | PHP | 0 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: ArrayTest.php 23772 2011-02-28 21:35:29Z ralph $
                    
21 */
                    
22
                    
23if (!defined('PHPUnit_MAIN_METHOD')) {
                    
24    define('PHPUnit_MAIN_METHOD', 'Zend_Translate_Adapter_ArrayTest::main');
                    
29 */
                    
30require_once 'Zend/Translate/Adapter/Array.php';
                    
31
                    
39 */
                    
40class Zend_Translate_Adapter_ArrayTest extends PHPUnit_Framework_TestCase
                    
41{
                    
                
bxforum.class.php http://bitcero-modules.googlecode.com/svn/ | PHP | 510 lines
                    
1<?php
                    
2// $Id: bxforum.class.php 896 2012-01-02 18:43:23Z i.bitcero $
                    
6// Author: Eduardo Cortés <i.bitcero@gmail.com>
                    
7// Email: i.bitcero@gmail.com
                    
8// License: GPL 2.0
                    
326        if($mc['urlmode']){
                    
327            $link = XOOPS_URL.$mc['htbase'].'/forum.php?id='.$this->id();
                    
328        } else {
                    
329            $link = XOOPS_URL.'/modules/bxpress/';
                    
330            $link .= "forum.php?id=".$this->id();
                    
331        }
                    
                
FileEngineTest.php git://github.com/cakephp/cakephp.git | PHP | 393 lines
                    
1<?php
                    
2/**
                    
4 *
                    
5 * PHP 5
                    
6 *
                    
6 *
                    
7 * CakePHP(tm) Tests <http://book.cakephp.org/view/1196/Testing>
                    
8 * Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
                    
13 * @copyright     Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
                    
14 * @link          http://book.cakephp.org/view/1196/Testing CakePHP(tm) Tests
                    
15 * @package       Cake.Test.Case.Cache.Engine
                    
284				6 => 'C:\dev\prj2\sites\cake\libs\view\layouts\rss', 7 => 'C:\dev\prj2\sites\cake\libs\view\layouts\js',
                    
285				8 => 'C:\dev\prj2\sites\cake\libs\view\layouts\email', 9 => 'C:\dev\prj2\sites\cake\libs\view\layouts\email\text',
                    
286				10 => 'C:\dev\prj2\sites\cake\libs\view\layouts\email\html', 11 => 'C:\dev\prj2\sites\cake\libs\view\helpers',
                    
287				12 => 'C:\dev\prj2\sites\cake\libs\view\errors', 13 => 'C:\dev\prj2\sites\cake\libs\view\elements',
                    
288				14 => 'C:\dev\prj2\sites\cake\libs\view\elements\email', 15 => 'C:\dev\prj2\sites\cake\libs\view\elements\email\text',
                    
289				16 => 'C:\dev\prj2\sites\cake\libs\view\elements\email\html', 17 => 'C:\dev\prj2\sites\cake\libs\model',
                    
                
Db2Test.php http://firephp.googlecode.com/svn/trunk/ | PHP | 0 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
24 */
                    
25require_once 'Zend/Db/Adapter/TestCommon.php';
                    
26
                    
29 */
                    
30require_once 'Zend/Db/Adapter/Db2.php';
                    
31
                    
31
                    
32PHPUnit_Util_Filter::addFileToFilter(__FILE__);
                    
33
                    
                
Container.php git://github.com/eryx/php-framework-benchmark.git | PHP | 459 lines
                    
1<?php
                    
2
                    
55 * @author Fabien Potencier <fabien@symfony.com>
                    
56 * @author Johannes M. Schmitt <schmittjoh@gmail.com>
                    
57 *
                    
                
FormErrors.php git://github.com/eryx/php-framework-benchmark.git | PHP | 467 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
                
Config.php git://github.com/eryx/php-framework-benchmark.git | PHP | 537 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
211    /**
                    
212     * Support isset() overloading on PHP 5.1
                    
213     *
                    
222    /**
                    
223     * Support unset() overloading on PHP 5.1
                    
224     *
                    
                
ArrayTest.php git://pkgs.fedoraproject.org/php-ZendFramework | PHP | 354 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: ArrayTest.php 24594 2012-01-05 21:27:01Z matthew $
                    
21 */
                    
22
                    
23if (!defined('PHPUnit_MAIN_METHOD')) {
                    
24    define('PHPUnit_MAIN_METHOD', 'Zend_Translate_Adapter_ArrayTest::main');
                    
29 */
                    
30require_once 'Zend/Translate/Adapter/Array.php';
                    
31
                    
39 */
                    
40class Zend_Translate_Adapter_ArrayTest extends PHPUnit_Framework_TestCase
                    
41{
                    
                
RepositoryService.php http://openbiz-cubi.googlecode.com/svn/trunk/ | PHP | 285 lines
                    
1<?php
                    
2/**
                    
10 * @link      http://code.google.com/p/openbiz-cubi/
                    
11 * @version   $Id: RepositoryService.php 5076 2013-01-07 09:27:31Z hellojixian@gmail.com $
                    
12 */
                    
13
                    
14include_once MODULE_PATH.'/websvc/lib/WebsvcService.php';
                    
15class RepositoryService extends WebsvcService
                    
                
Extracted.php git://github.com/pmjones/php-framework-benchmarks.git | PHP | 274 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: Extracted.php 20893 2010-02-03 22:59:25Z yoshida@zend.co.jp $
                    
21 */
                    
24/** @see Zend_Pdf_Resource_Font */
                    
25require_once 'Zend/Pdf/Resource/Font.php';
                    
26
                    
78                    // Multiple descendant fonts are not supported
                    
79                    require_once 'Zend/Pdf/Exception.php';
                    
80                    throw new Zend_Pdf_Exception(self::TYPE_NOT_SUPPORTED);
                    
117            default:
                    
118                require_once 'Zend/Pdf/Exception.php';
                    
119                throw new Zend_Pdf_Exception(self::TYPE_NOT_SUPPORTED);
                    
                
index.php https://bitbucket.org/chamilo/chamilo-dev/ | PHP | 295 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
22/**
                    
23 * PHP sample code for the YouTube data API.  Utilizes the Zend Framework
                    
24 * Zend_Gdata component to communicate with the YouTube data API.
                    
25 *
                    
26 * Requires the Zend Framework Zend_Gdata component and PHP >= 5.1.4
                    
27 *
                    
28 * This sample is run from within a web browser.  These files are required:
                    
29 * index.php - the main logic, which interfaces with the YouTube API
                    
30 * interface.html - the HTML to represent the web UI
                    
41 */
                    
42require_once 'Zend/Loader.php';
                    
43
                    
                
zhTW.lua http://wow-ui-rick.googlecode.com/svn/trunk/ | Lua | 324 lines
                    
120
                    
121http://forums.wowace.com/showthread.php?t=14249
                    
122
                    
128
                    
129??,???xinhuan@gmail.com.
                    
130]=]
                    
                
Profiler.php http://grupal.googlecode.com/svn/trunk/ | PHP | 474 lines
                    
1<?php
                    
2/**
                    
11 * If you did not receive a copy of the license and are unable to
                    
12 * obtain it through the world-wide-web, please send an email
                    
13 * to license@zend.com so we can send you a copy immediately.
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: Profiler.php 25126 2012-11-16 15:16:11Z rob $
                    
21 */
                    
282         */
                    
283        require_once 'Zend/Db/Profiler/Query.php';
                    
284        $this->_queryProfiles[] = new Zend_Db_Profiler_Query($queryText, $queryType);
                    
310             */
                    
311            require_once 'Zend/Db/Profiler/Exception.php';
                    
312            throw new Zend_Db_Profiler_Exception("Profiler has no query with handle '$queryId'.");
                    
321             */
                    
322            require_once 'Zend/Db/Profiler/Exception.php';
                    
323            throw new Zend_Db_Profiler_Exception("Query with profiler handle '$queryId' has already ended.");
                    
                
suppressing.html git://pkgs.fedoraproject.org/pmd | HTML | 124 lines
                    
3          
                    
4          @import url("./style/maven-theme.css");</style><link rel="stylesheet" href="./style/print.css" type="text/css" media="print"></link><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"></meta><meta name="author" content="Tom Copeland"></meta><meta name="email" content="tom@infoether.com"></meta></head><body class="composite"><div id="banner"><a href="http://pmd.sourceforge.net/" id="organizationLogo"><img alt="InfoEther" src="http://sourceforge.net/sflogo.php?group_id=56262&amp;type=5"></img></a><a href="http://pmd.sourceforge.net/" id="projectLogo"><img alt="PMD" src="./images/pmd_logo_small.jpg"></img></a><div class="clear"><hr></hr></div></div><div id="breadcrumbs"><div class="xleft"></div><div class="xright">
                    
5        
                    
20        <a href="http://sourceforge.net" class="externalLink" title="External Link">Hosted by SourceForge</a>
                    
21      </div><div class="clear"><hr></hr></div></div><div id="leftColumn"><div id="navcolumn"><div id="menuOverview"><h5>Overview</h5><ul><li class="none"><a href="http://sourceforge.net/project/showfiles.php?group_id=56262&amp;package_id=51441&amp;release_id=632850" class="externalLink" title="External Link">Download PMD 4.2.5</a></li><li class="none"><a href="http://sourceforge.net/project/shownotes.php?release_id=632850&amp;group_id=56262" class="externalLink" title="External Link">What's new in PMD 4.2.5</a></li><li class="none"><a href="news.html">PMD in the news</a></li><li class="none"><a href="products.html">PMD-related products and books</a></li><li class="none"><a href="bestpractices.html">Best practices</a></li><li class="none"><a href="future.html">Future directions</a></li><li class="none"><a href="similar-projects.html">Similar projects</a></li><li class="none"><a href="credits.html">Credits</a></li><li class="none"><a href="license.html">License</a></li><li class="none"><a href="meaning.html">What does 'PMD' mean?</a></li></ul></div><div id="menuUsage"><h5>Usage</h5><ul><li class="none"><a href="installing.html">Installation</a></li><li class="none"><a href="running.html">Command line usage</a></li><li class="none"><a href="ant-task.html">Ant task usage</a></li><li class="none"><a href="maven-plugin.html">Maven plugin usage</a></li><li class="none"><a href="mvn-plugin.html">Mvn plugin usage</a></li><li class="none"><a href="integrations.html">IDE plugin usage</a></li><li class="none"><strong><a href="suppressing.html">Suppressing warnings</a></strong></li><li class="none"><a href="cpd.html">Finding duplicated code</a></li><li class="none"><a href="jspsupport.html">JSP support</a></li></ul></div><div id="menuCustomizing_PMD"><h5>Customizing PMD</h5><ul><li class="none"><a href="compiling.html">Compiling PMD</a></li><li class="none"><a href="howtowritearule.html">How to write a rule</a></li><li class="none"><a href="xpathruletutorial.html">Writing XPath rules</a></li><li class="none"><a href="howtomakearuleset.html">How to make a rule set</a></li><li class="none"><a href="howitworks.html">How it works</a></li><li class="none"><a href="rule-guidelines.html">Rule guidelines</a></li></ul></div><div id="menuFor_example"><h5>For example</h5><ul><li class="none"><a href="scoreboard.html">Run PMD on a Sourceforge project</a></li></ul></div><div id="menuRule_Sets"><h5>Rule Sets</h5><ul><li class="none"><a href="rules/index.html">Index</a></li><li class="none"><a href="rules/android.html">Android</a></li><li class="none"><a href="rules/basic.html">Basic</a></li><li class="none"><a href="rules/braces.html">Braces</a></li><li class="none"><a href="rules/codesize.html">Code Size</a></li><li class="none"><a href="rules/clone.html">Clone</a></li><li class="none"><a href="rules/controversial.html">Controversial</a></li><li class="none"><a href="rules/coupling.html">Coupling</a></li><li class="none"><a href="rules/design.html">Design</a></li><li class="none"><a href="rules/finalizers.html">Finalizers</a></li><li class="none"><a href="rules/imports.html">Import Statements</a></li><li class="none"><a href="rules/j2ee.html">J2EE</a></li><li class="none"><a href="rules/javabeans.html">Javabeans</a></li><li class="none"><a href="rules/junit.html">JUnit Tests</a></li><li class="none"><a href="rules/logging-java.html">Logging (Java)</a></li><li class="none"><a href="rules/logging-jakarta-commons.html">Logging (Jakarta)</a></li><li class="none"><a href="rules/migrating.html">Migrating</a></li><li class="none"><a href="rules/naming.html">Naming</a></li><li class="none"><a href="rules/optimizations.html">Optimizations</a></li><li class="none"><a href="rules/strictexception.html">Strict Exceptions</a></li><li class="none"><a href="rules/strings.html">Strings</a></li><li class="none"><a href="rules/sunsecure.html">Sun Security</a></li><li class="none"><a href="rules/unusedcode.html">Unused Code</a></li><li class="none"><a href="rules/basic-jsp.html">Java Server Pages</a></li><li class="none"><a href="rules/basic-jsf.html">Java Server Faces</a></li></ul></div><div id="menuProject_Documentation"><h5>Project Documentation</h5><ul><li class="none"><a href="index.html">About</a></li><li class="collapsed"><a href="project-info.html">Project Info</a></li><li class="collapsed"><a href="maven-reports.html">Project Reports</a></li><li class="none"><a href="development-process.html">Development Process</a></li></ul></div><div id="legend"><h5>Legend</h5><ul><li class="externalLink">External Link</li><li class="newWindow">Opens in a new window</li></ul></div><a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"><img alt="Built by Maven" src="./images/logos/mavenlogo_builtby_w.png"></img></a></div></div><div id="bodyColumn"><div class="contentBox"><div class="section"><a name="Suppressing_warnings"></a><h2>Suppressing warnings</h2>
                    
22   <div class="subsection"><a name="Annotations"></a><h3>Annotations</h3>
                    
122
                    
123     <p>Suggestions?  Comments?  Post them <a href="http://sourceforge.net/forum/forum.php?forum_id=188192" class="externalLink" title="External Link">here</a>.  Thanks!</p>
                    
124   </div></div></div><div class="clear"><hr></hr></div><div id="footer"><div class="xright">Š 2002-2009, InfoEther</div><div class="clear"><hr></hr></div></div></body></html>
                    
                
Transcoding.php http://pumukit.googlecode.com/svn/trunk/ | PHP | 379 lines
                    
1<?php
                    
2/**
                    
96
                    
97  public function setEmailOn()
                    
98  {
                    
98  {
                    
99   $this->setEmail(str_replace('#', '@', $this->getEmail()));
                    
100  }
                    
102
                    
103  public function setEmailOff()
                    
104  {
                    
104  {
                    
105    $this->setEmail(str_replace('@', '#', $this->getEmail()));
                    
106  }
                    
108
                    
109  public function hasEmailOn()
                    
110  {
                    
                
 

Source

Language