| /plugin/freechat/phpfreechat/src/ |
| D | pfcjson.class.php | 12 * This library is distributed in the hope that it will be useful, 20 * Boston, MA 02110-1301 USA 29 // if the php5-json module is not available, use a software json implementation 33 $this->json = new Services_JSON(); 37 function encode($v) argument 39 if ($this->json) 40 return $this->json->encode($v); 42 return json_encode($v); 45 function decode($v) argument 47 if ($this->json) [all …]
|
| /plugin/zip/pear/File/Archive/Predicate/ |
| D | False.php | 14 * This library is distributed in the hope that it will be useful, 21 * Foundation, Inc., 59 Temple Place, Suite 330,Boston,MA 02111-1307 USA 26 * @copyright 1997-2005 The PHP Group 28 * @version CVS: $Id: False.php,v 1.5 2005/04/21 10:01:46 vincentlascaux Exp $
|
| D | True.php | 14 * This library is distributed in the hope that it will be useful, 21 * Foundation, Inc., 59 Temple Place, Suite 330,Boston,MA 02111-1307 USA 26 * @copyright 1997-2005 The PHP Group 28 * @version CVS: $Id: True.php,v 1.5 2005/04/21 10:01:47 vincentlascaux Exp $
|
| D | Current.php | 14 * This library is distributed in the hope that it will be useful, 21 * Foundation, Inc., 59 Temple Place, Suite 330,Boston,MA 02111-1307 USA 26 * @copyright 1997-2005 The PHP Group 28 * @version CVS: $Id: Current.php,v 1.1 2005/05/28 23:17:28 vincentlascaux Exp $ 46 $tmp = $this->value; 47 $this->value = false;
|
| D | Not.php | 14 * This library is distributed in the hope that it will be useful, 21 * Foundation, Inc., 59 Temple Place, Suite 330,Boston,MA 02111-1307 USA 26 * @copyright 1997-2005 The PHP Group 28 * @version CVS: $Id: Not.php,v 1.5 2005/04/21 10:01:47 vincentlascaux Exp $ 44 $this->pred = $pred; 51 return !$this->pred->isTrue($source);
|
| D | Eregi.php | 15 * This library is distributed in the hope that it will be useful, 22 * Foundation, Inc., 59 Temple Place, Suite 330,Boston,MA 02111-1307 USA 27 * @copyright 1997-2005 The PHP Group 29 * @version CVS: $Id: Eregi.php,v 1.6 2005/04/21 10:01:46 vincentlascaux Exp $ 50 $this->ereg = $ereg; 57 return eregi($this->ereg, $source->getFilename());
|
| D | MinSize.php | 14 * This library is distributed in the hope that it will be useful, 21 * Foundation, Inc., 59 Temple Place, Suite 330,Boston,MA 02111-1307 USA 26 * @copyright 1997-2005 The PHP Group 28 * @version CVS: $Id: MinSize.php,v 1.5 2005/04/21 10:01:47 vincentlascaux Exp $ 48 $this->minSize = $minSize; 55 $stat = $source->getStat(); 56 return !isset($stat[7]) || $stat[7]>=$this->minSize;
|
| D | Ereg.php | 14 * This library is distributed in the hope that it will be useful, 21 * Foundation, Inc., 59 Temple Place, Suite 330,Boston,MA 02111-1307 USA 26 * @copyright 1997-2005 The PHP Group 28 * @version CVS: $Id: Ereg.php,v 1.5 2005/04/21 10:01:46 vincentlascaux Exp $ 48 $this->ereg = $ereg; 55 return ereg($this->ereg, $source->getFilename());
|
| D | MaxDepth.php | 14 * This library is distributed in the hope that it will be useful, 21 * Foundation, Inc., 59 Temple Place, Suite 330,Boston,MA 02111-1307 USA 26 * @copyright 1997-2005 The PHP Group 28 * @version CVS: $Id: MaxDepth.php,v 1.6 2005/04/21 10:01:46 vincentlascaux Exp $ 45 * $source->getFilename(). 51 $this->maxDepth = $maxDepth; 58 $url = parse_url($source->getFilename()); 59 return substr_count($url['path'], '/') <= $this->maxDepth ;
|
| D | Index.php | 16 * This library is distributed in the hope that it will be useful, 23 * Foundation, Inc., 59 Temple Place, Suite 330,Boston,MA 02111-1307 USA 28 * @copyright 1997-2005 The PHP Group 30 * @version CVS: $Id: Index.php,v 1.1 2005/05/30 19:44:53 vincentlascaux Exp $ 51 $this->indexes = $indexes; 58 return isset($this->indexes[$this->pos++]);
|
| D | MinTime.php | 15 * This library is distributed in the hope that it will be useful, 22 * Foundation, Inc., 59 Temple Place, Suite 330,Boston,MA 02111-1307 USA 27 * @copyright 1997-2005 The PHP Group 29 * @version CVS: $Id: MinTime.php,v 1.6 2005/04/21 10:01:47 vincentlascaux Exp $ 51 $this->minTime = $minTime; 59 $stat = $source->getStat(); 60 return !isset($stat[9]) || $stat[9]>=$this->minTime;
|
| D | Extension.php | 14 * This library is distributed in the hope that it will be useful, 21 * Foundation, Inc., 59 Temple Place, Suite 330,Boston,MA 02111-1307 USA 26 * @copyright 1997-2005 The PHP Group 28 * @version CVS: $Id: Extension.php,v 1.5 2005/04/21 10:01:46 vincentlascaux Exp $ 49 $this->extensions = explode(",",$extensions); 51 $this->extensions = $extensions; 59 $filename = $source->getFilename(); 65 $result = in_array($extension, $this->extensions);
|
| D | And.php | 15 * This library is distributed in the hope that it will be useful, 22 * Foundation, Inc., 59 Temple Place, Suite 330,Boston,MA 02111-1307 USA 27 * @copyright 1997-2005 The PHP Group 29 * @version CVS: $Id: And.php,v 1.8 2005/04/21 10:01:46 vincentlascaux Exp $ 61 $this->preds = func_get_args(); 71 $this->preds[] = $pred; 78 foreach ($this->preds as $p) { 79 if (!$p->isTrue($source)) {
|
| D | MIME.php | 14 * This library is distributed in the hope that it will be useful, 21 * Foundation, Inc., 59 Temple Place, Suite 330,Boston,MA 02111-1307 USA 26 * @copyright 1997-2005 The PHP Group 28 * @version CVS: $Id: MIME.php,v 1.5 2005/04/21 10:01:46 vincentlascaux Exp $ 50 $this->mimes = explode(",",$mimes); 52 $this->mimes = $mimes; 60 $sourceMIME = $source->getMIME(); 61 foreach ($this->mimes as $mime) {
|
| D | Or.php | 15 * This library is distributed in the hope that it will be useful, 22 * Foundation, Inc., 59 Temple Place, Suite 330,Boston,MA 02111-1307 USA 27 * @copyright 1997-2005 The PHP Group 29 * @version CVS: $Id: Or.php,v 1.8 2005/04/21 10:01:47 vincentlascaux Exp $ 58 $this->preds = func_get_args(); 68 $this->preds[] = $pred; 76 foreach ($this->preds as $p) { 77 if ($p->isTrue($source)) {
|
| /plugin/zip/pear/File/Archive/Reader/ |
| D | Select.php | 14 * This library is distributed in the hope that it will be useful, 21 * Foundation, Inc., 59 Temple Place, Suite 330,Boston,MA 02111-1307 USA 26 * @copyright 1997-2005 The PHP Group 28 * @version CVS: $Id: Select.php,v 1.3 2005/05/26 21:30:18 vincentlascaux Exp $ 51 $this->filename = $filename; 59 return $this->source->select($this->filename, false);
|
| D | Filter.php | 14 * This library is distributed in the hope that it will be useful, 21 * Foundation, Inc., 59 Temple Place, Suite 330,Boston,MA 02111-1307 USA 26 * @copyright 1997-2005 The PHP Group 28 * @version CVS: $Id: Filter.php,v 1.10 2005/07/09 12:54:35 vincentlascaux Exp $ 51 $this->predicate = $predicate; 60 $error = $this->source->next(); 64 } while (!$this->predicate->isTrue($this->source)); 74 $error = $this->close(); 81 $error = $this->source->select($filename, false); 85 } while (!$this->predicate->isTrue($this->source));
|
| D | Archive.php | 14 * This library is distributed in the hope that it will be useful, 21 * Foundation, Inc., 59 Temple Place, Suite 330,Boston,MA 02111-1307 USA 26 * @copyright 1997-2005 The PHP Group 28 * @version CVS: $Id: Archive.php,v 1.12 2005/05/23 19:25:24 vincentlascaux Exp $ 68 if (!$this->sourceOpened && ($error = $this->source->next()) !== true) { 72 $this->sourceOpened = true; 79 $this->source =& $source; 80 $this->sourceOpened = $this->sourceInitiallyOpened = $sourceOpened; 89 if (!$this->sourceInitiallyOpened && $this->sourceOpened) { 90 $this->sourceOpened = false; [all …]
|
| D | Multi.php | 14 * This library is distributed in the hope that it will be useful, 21 * Foundation, Inc., 59 Temple Place, Suite 330,Boston,MA 02111-1307 USA 26 * @copyright 1997-2005 The PHP Group 28 * @version CVS: $Id: Multi.php,v 1.10 2005/05/26 21:30:18 vincentlascaux Exp $ 61 $this->sources[] =& $source; 69 while (array_key_exists($this->currentIndex, $this->sources)) { 70 $this->source =& $this->sources[$this->currentIndex]; 72 if (($error = $this->source->next()) === false) { 73 $error = $this->source->close(); 77 $this->currentIndex++; [all …]
|
| /plugin/zip/pear/File/Archive/ |
| D | Predicate.php | 17 * This library is distributed in the hope that it will be useful, 24 * Foundation, Inc., 59 Temple Place, Suite 330,Boston,MA 02111-1307 USA 29 * @copyright 1997-2005 The PHP Group 31 * @version CVS: $Id: Predicate.php,v 1.7 2005/05/26 21:30:18 vincentlascaux Exp $
|
| /plugin/copypage/ |
| D | README.md | 6 ; 42 … $langUrl = $baseUrl . "lib/plugins/{$pluginName}/3rd/dhtmlxgantt/locale/locale_$lang.js?v=6.3.5"; 51 …eet" href="<?= $baseUrl ?>lib/plugins/<?= $pluginName; ?>/3rd/dhtmlxgantt/dhtmlxgantt.css?v=6.3.5"> 53 .gantt-fullscreen { 61 -webkit-transition: background-color 0.5s, opacity 0.5s; 62 transition: background-color 0.5s, opacity 0.5s; 64 .gantt-fullscreen:hover { 68 <script src="<?= $baseUrl ?>lib/plugins/<?= $pluginName; ?>/3rd/dhtmlxgantt/dhtmlxgantt.js?v=6.3.5"… 69 … ?>lib/plugins/<?= $pluginName; ?>/3rd/dhtmlxgantt/ext/dhtmlxgantt_fullscreen.js?v=6.3.5"></script> [all …]
|
| /plugin/vcard/ |
| D | vcard.php | 15 This program is distributed in the hope that it will be useful, 22 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 53 if ( ($dec == 32) && ($i == ($linlen - 1)) ) { // convert space at eol only 66 if ($j<count($lines)-1) $output .= $linebreak; 80 $key.= ";ENCODING=UTF-8"; 81 $this->properties[$key] = quoted_printable_encode($number); 86 $this->properties["PHOTO;TYPE=$type;ENCODING=BASE64"] = base64_encode($photo); 90 $this->properties["FN"] = quoted_printable_encode($name); 94 $this->properties["N"] = "$family;$first;$additional;$prefix;$suffix"; 95 $this->filename = "$first-$family.vcf"; [all …]
|
| /plugin/eventline/ |
| D | README | 9 -------------------------------------------------------------------- 11 E V E N T L I N E 19 lib/plugins/eventline/ - if the folder is called different it 25 ---- 32 This program is distributed in the hope that it will be useful, 39 -------------------------------------------------------------------- 44 ------------- 45 Timeline is a DHTML-based AJAXy timeline. 48 ---------------------------- 50 http://code.google.com/p/simile-widgets/ [all …]
|
| /plugin/zip/pear/File/Archive/Writer/ |
| D | AddBaseName.php | 14 * This library is distributed in the hope that it will be useful, 21 * Foundation, Inc., 59 Temple Place, Suite 330,Boston,MA 02111-1307 USA 26 * @copyright 1997-2005 The PHP Group 28 * @version CVS: $Id: AddBaseName.php,v 1.1 2005/06/02 22:45:58 vincentlascaux Exp $ 44 if (substr($baseName, -1) == '/') { 45 $this->baseName = $baseName; 47 $this->baseName = $baseName.'/'; 50 $this->writer =& $writer; 56 function newFile($filename, $stat = array(), $mime = "application/octet-stream") 58 $this->writer->newFile($this->baseName.$filename, $stat, $mime); [all …]
|