PageRenderTime 1250ms queryTime 223ms sortTime 109ms getByIdsTime 278ms findMatchingLines 129ms

100+ results results for 'php split repo:organicdevelopment/joomla-2.5' (1250 ms)

Not the results you expected?
arr.php https://gitlab.com/ken3/bluSky | PHP | 602 lines
                    
1<?php defined('SYSPATH') or die('No direct script access.');
                    
2/**
                    
121
                    
122			// Split the keys by delimiter
                    
123			$keys = explode($delimiter, $path);
                    
209
                    
210		// Split the keys by delimiter
                    
211		$keys = explode($delimiter, $path);
                    
351	/**
                    
352	 * Recursive version of [array_map](http://php.net/array_map), applies one or more
                    
353	 * callbacks to all elements in an array, including sub-arrays.
                    
403	 * Merges one or more arrays recursively and preserves all keys.
                    
404	 * Note that this does not work the same as [array_merge_recursive](http://php.net/array_merge_recursive)!
                    
405	 *
                    
539				// param,param
                    
540				$params = preg_split('/(?<!\\\\),/', $match[2]);
                    
541				$params = str_replace('\,', ',', $params);
                    
                
rpcconsole.cpp https://gitlab.com/Quetzalcoatl/VekitaCoin | C++ | 433 lines
                    
2// Distributed under the MIT/X11 software license, see the accompanying
                    
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
                    
4
                    
55/**
                    
56 * Split shell command line into a list of arguments. Aims to emulate \c bash and friends.
                    
57 *
                    
66 * @param[out]   args        Parsed arguments will be appended to this list
                    
67 * @param[in]    strCommand  Command line to split
                    
68 */
                    
                
Selection.js https://github.com/StephanHoyer/DJsAdmin.git | JavaScript | 445 lines
                    
11     LGPL: http://www.gnu.org/licenses/lgpl.html
                    
12     EPL: http://www.eclipse.org/org/documents/epl-v10.php
                    
13     See the LICENSE file in the project's top-level directory for details.
                    
103        // get the selected part and split it by linebreaks
                    
104        var split = qx.util.StringSplit.split(selectedValue, /\r\n/);
                    
105
                    
108        // -> harmonize this to one char per linebreak
                    
109        return selectedValue.length - (split.length - 1);
                    
110      },
                    
113      {
                    
114        var selectedValue, selectedLength, split;
                    
115
                    
130        // get the selected part and split it by linebreaks
                    
131        split = qx.util.StringSplit.split(selectedValue, /\r\n/);
                    
132
                    
                
PhpTransliteration.php https://gitlab.com/leoplanxxi/dr7-web-buap-2016 | PHP | 288 lines
                    
24 * transliteration character tables are searched (see
                    
25 * PhpTransliteration::readGenericData()). If looking up the character in the
                    
26 * generic table results in a NULL value, or an illegal character is
                    
59   * character code. This is set up as needed in PhpTransliteration::replace()
                    
60   * by calling PhpTransliteration::readGenericData().
                    
61   *
                    
70   *   (optional) The directory where data files reside. If omitted, defaults
                    
71   *   to subdirectory 'data' underneath the directory where the class's PHP
                    
72   *   file resides.
                    
83
                    
84    foreach (preg_split('//u', $string, 0, PREG_SPLIT_NO_EMPTY) as $character) {
                    
85      $code = self::ordUTF8($character);
                    
115    // Split into Unicode characters and transliterate each one.
                    
116    foreach (preg_split('//u', $string, 0, PREG_SPLIT_NO_EMPTY) as $character) {
                    
117      $code = self::ordUTF8($character);
                    
                
schema.php https://gitlab.com/alexprowars/bitrix | PHP | 414 lines
                    
1<?php
                    
2namespace Bitrix\Perfmon\Sql;
                    
8\Bitrix\Main\Loader::includeModule('perfmon');
                    
9$dir = new \Bitrix\Main\IO\Directory("/opt/php03.cp1251.www/mercurial/bitrix/modules");
                    
10foreach ($dir->getChildren()  as $child)
                    
53	 * @param string $str DDL text.
                    
54	 * @param string $delimiter How to split DDL into statements.
                    
55	 *
                    
61		$tokenizer = Tokenizer::createFromString($str);
                    
62		foreach ($this->splitStatements($tokenizer, $delimiter) as $statement)
                    
63		{
                    
68	/**
                    
69	 * Splits tokens array into bunch of individual DDL statements.
                    
70	 *
                    
71	 * @param Tokenizer $tokenizer Tokens container.
                    
72	 * @param string $delimiter How to split DDL into statements.
                    
73	 *
                    
                
Statement.php https://github.com/cosmocommerce/magento-mirror.git | PHP | 488 lines
                    
1<?php
                    
2/**
                    
83    /**
                    
84     * SQL string split into an array at placeholders.
                    
85     *
                    
87     */
                    
88    protected $_sqlSplit = array();
                    
89
                    
90    /**
                    
91     * Parameter placeholders in the SQL string by position in the split array.
                    
92     *
                    
139        // split into text and params
                    
140        $this->_sqlSplit = preg_split('/(\?|\:[a-zA-Z0-9_]+)/',
                    
141            $sql, -1, PREG_SPLIT_DELIM_CAPTURE|PREG_SPLIT_NO_EMPTY);
                    
150                     */
                    
151                    #require_once 'Zend/Db/Statement/Exception.php';
                    
152                    throw new Zend_Db_Statement_Exception("Invalid bind-variable position '$val'");
                    
                
BakeShell.php https://gitlab.com/alexandresgv/siteentec | PHP | 317 lines
                    
1<?php
                    
2/**
                    
2/**
                    
3 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
                    
4 * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
                    
10 * @copyright     Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
                    
11 * @link          http://cakephp.org CakePHP(tm) Project
                    
12 * @since         0.1.0
                    
12 * @since         0.1.0
                    
13 * @license       http://www.opensource.org/licenses/mit-license.php MIT License
                    
14 */
                    
27 *
                    
28 * Bake is CakePHP's code generation script, which can help you kickstart
                    
29 * application development by writing fully functional skeleton controllers,
                    
31 *
                    
32 * @link http://book.cakephp.org/3.0/en/console-and-shells/code-generation-with-bake.html
                    
33 */
                    
                
js.js https://gitlab.com/edward.pattillo/phpCourseExamples | JavaScript | 363 lines
                    
133    $('#' + trackId).fadeOut(100);
                    
134    var temp = trackId.split("-");
                    
135    var numericID = parseInt(temp[1]);
                    
240      // specifices where the AJAX request will be sent to on the server
                    
241      url: "ajaxSubmit.php",
                    
242
                    
275    // .fail defines what will happen when the ajax request fails and doesn't return a JSON object
                    
276    // we will have it present the error message returned from PHP at the top of the page
                    
277    .fail(function(returnData) {
                    
290      // specifices where the AJAX request will be sent to on the server
                    
291      url: "ajax.php",
                    
292
                    
326    // .fail defines what will happen when the ajax request fails and doesn't return a JSON object
                    
327    // we will have it present the error message returned from PHP at the top of the page
                    
328    .fail(function(returnData) {
                    
                
toolbar.php https://gitlab.com/michield/dokuwiki | PHP | 255 lines
                    
1<?php
                    
2/**
                    
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
                    
6 * @author     Andreas Gohr <andi@splitbrain.org>
                    
7 */
                    
15 * @param  string $varname Name of the JS variable to fill
                    
16 * @author Andreas Gohr <andi@splitbrain.org>
                    
17 */
                    
198                'icon'   => 'image.png',
                    
199                'url'    => 'lib/exe/mediamanager.php?ns=',
                    
200                'name'   => 'mediaselect',
                    
238 *
                    
239 * @author Andreas Gohr <andi@splitbrain.org>
                    
240 */
                    
                
Part.php https://bitbucket.org/freddixx/e-business-vcrm-plugin.git | PHP | 486 lines
                    
1<?php
                    
2/**
                    
18 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
19 * @version    $Id: Part.php 9099 2008-03-30 19:35:47Z thomas $
                    
20 */
                    
25 */
                    
26require_once 'Zend/Mime/Decode.php';
                    
27
                    
30 */
                    
31require_once 'Zend/Mail/Part/Interface.php';
                    
32
                    
110                 */
                    
111                require_once 'Zend/Mail/Exception.php';
                    
112                throw new Zend_Mail_Exception('handler is not a valid mail handler');
                    
117                 */
                    
118                require_once 'Zend/Mail/Exception.php';
                    
119                throw new Zend_Mail_Exception('need a message id with a handler');
                    
                
makeXMLForOneService.php https://gitlab.com/florianocomercial/centreon | PHP | 287 lines
                    
1<?php
                    
2/*
                    
38 */
                    
39require_once realpath(dirname(__FILE__) . "/../../../../../../config/centreon.config.php");
                    
40
                    
40
                    
41include_once $centreon_path . "www/class/centreonUtils.class.php";
                    
42
                    
45 */
                    
46include_once _CENTREON_PATH_ . "www/class/centreonXMLBGRequest.class.php";
                    
47include_once _CENTREON_PATH_ . "www/class/centreonLang.class.php";
                    
84
                    
85$tab = preg_split('/\_/', $svc_id);
                    
86$host_id = $tab[0];
                    
132if ($data = $DBRESULT->fetchRow()) {
                    
133    /* Split the plugin_output */
                    
134    $outputLines = explode('\n', $data['output']);
                    
                
string.rst https://gitlab.com/albertkeba/docs | ReStructuredText | 300 lines
                    
42
                    
43.. php:staticmethod:: tokenize($data, $separator = ',', $leftBound = '(', $rightBound = ')')
                    
44
                    
50
                    
51        $data = "cakephp 'great framework' php";
                    
52        $result = String::tokenize($data, ' ', "'", "'");
                    
53        // result contains
                    
54        array('cakephp', "'great framework'", 'php');
                    
55
                    
55
                    
56.. php:staticmethod:: insert($string, $data, $options = array())
                    
57
                    
63
                    
64.. php:staticmethod:: cleanInsert($string, $options = array())
                    
65
                    
                
functions.inc.php https://gitlab.com/boxnia/NFU_MOVIL | PHP | 346 lines
                    
1<?php
                    
2
                    
162function valida_dates($start_day, $daylight) {
                    
163    // list($mes_one, $dia_one, $anio_one) = split('/', $start_day);
                    
164    //list($mes_two, $dia_two, $anio_two)= split('/', $daylight);
                    
                
class-wp-customize-setting.php https://gitlab.com/Gashler/dp | PHP | 439 lines
                    
1<?php
                    
2/**
                    
46		// Parse the ID for array keys.
                    
47		$this->id_data[ 'keys' ] = preg_split( '/\[/', str_replace( ']', '', $this->id ) );
                    
48		$this->id_data[ 'base' ] = array_shift( $this->id_data[ 'keys' ] );
                    
                
cdat_domain.py https://gitlab.com/rbax81/VisTrails | Python | 289 lines
                    
12## Licensing requirements will be met:
                    
13## http://www.opensource.org/licenses/gpl-license.php
                    
14##
                    
48        self._actions = actions
                    
49        (self._namespace, self._name) = self.split(codepath)
                    
50
                    
51    @staticmethod
                    
52    def split(codepath):
                    
53        dot = codepath.rfind('.')
                    
74        for t in CDATModule._extra_modules:
                    
75            namespace,name = CDATModule.split(t)
                    
76            lines.append("%s = new_module(Module,'%s')\n"%(name,name))
                    
224        self._doc = doc
                    
225        self._instance = [i.strip(" \t\n") for i in instance.split('/')]
                    
226        self._valid_instances = []
                    
                
CookieJar.php https://gitlab.com/unofficial-mirrors/moodle | PHP | 385 lines
                    
21 *
                    
22 * @file     CAS/CookieJar.php
                    
23 * @category Authentication
                    
23 * @category Authentication
                    
24 * @package  PhpCAS
                    
25 * @author   Adam Franco <afranco@middlebury.edu>
                    
26 * @license  http://www.apache.org/licenses/LICENSE-2.0  Apache License 2.0
                    
27 * @link     https://wiki.jasig.org/display/CASC/phpCAS
                    
28 */
                    
38 * @license  http://www.apache.org/licenses/LICENSE-2.0  Apache License 2.0
                    
39 * @link     https://wiki.jasig.org/display/CASC/phpCAS
                    
40 */
                    
127     * Parse Cookies without PECL
                    
128     * From the comments in http://php.net/manual/en/function.http-parse-cookie.php
                    
129     *
                    
                
class-vc-backend-editor.php https://gitlab.com/mattswann/launch-housing | PHP | 356 lines
                    
1<?php
                    
2if ( ! defined( 'ABSPATH' ) ) {
                    
55		), 5 );
                    
56		add_action( 'admin_print_scripts-post.php', array(
                    
57			&$this,
                    
59		) );
                    
60		add_action( 'admin_print_scripts-post-new.php', array(
                    
61			&$this,
                    
106		$this->post_custom_css = $post_custom_css;
                    
107		vc_include_template( 'editors/backend_editor.tpl.php', array(
                    
108			'editor' => $this,
                    
125	public function renderEditorFooter() {
                    
126		vc_include_template( 'editors/partials/backend_editor_footer.tpl.php', array(
                    
127			'editor' => $this,
                    
254		wp_register_script( 'vc_accordion_script', vc_asset_url( 'lib/vc_accordion/vc-accordion.min.js' ), array( 'jquery' ), WPB_VC_VERSION, true );
                    
255		wp_register_script( 'wpb_php_js', vc_asset_url( 'lib/php.default/php.default.min.js' ), array( 'jquery' ), WPB_VC_VERSION, true );
                    
256		// used as polyfill for JSON.stringify and etc
                    
                
date.php https://github.com/2bj/kohana-core.git | PHP | 566 lines
                    
1<?php defined('SYSPATH') or die('No direct script access.');
                    
2/**
                    
8 * @copyright  (c) 2007-2009 Kohana Team
                    
9 * @license    http://kohanaphp.com/license
                    
10 */
                    
28	 * Timezone for formatted_time
                    
29	 * @link http://uk2.php.net/manual/en/timezones.php
                    
30	 * @var  string
                    
39	 *
                    
40	 * [!!] A list of time zones that PHP supports can be found at
                    
41	 * <http://php.net/timezones>.
                    
315		// Array with the output formats
                    
316		$output = preg_split('/[^a-z]+/', $output);
                    
317
                    
548	 *
                    
549	 * @see     http://php.net/manual/en/datetime.construct.php
                    
550	 * @param   string  datetime_str     datetime string
                    
                
qrsplit.php https://gitlab.com/Ltaimao/wecenter | PHP | 311 lines
                    
9 *
                    
10 * PHP QR Code is distributed under LGPL 3
                    
11 * Copyright (C) 2010 Dominik Dzienia <deltalab at poczta dot fm>
                    
32 */
                    
33    class QRsplit {
                    
34
                    
168
                    
169            $ret = $this->input->append(QR_MODE_AN, $run, str_split($this->dataStr));
                    
170            if($ret < 0)
                    
303
                    
304            $split = new QRsplit($string, $input, $modeHint);
                    
305            
                    
308                
                    
309            return $split->splitString();
                    
310        }
                    
                
index.py https://gitlab.com/xiaok/SaltAdmin | Python | 237 lines
                    
23def decryptUID(uStr):
                    
24    return int(uStr.split('a')[1])
                    
25
                    
62    Location = 'Localhost'
                    
63    ip = LoginHost.split('.')
                    
64    if ip[0]+ip[1] in ['17216','192168','1270'] or ip[0] == '10':
                    
67        # 这里要从公网去解析
                    
68        url = "http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=json&ip=" + LoginHost
                    
69        response = urllib2.urlopen(url)
                    
                
paypal-return-in-web-accept-sp.inc.php https://gitlab.com/Gashler/sg | PHP | 148 lines
                    
1<?php
                    
2/**
                    
58
                    
59					list (, $paypal['sp_ids'], $paypal['hours']) = preg_split('/\:/', $paypal['item_number'], 3);
                    
60
                    
75
                    
76						if($processing && ($code = $GLOBALS['WS_PLUGIN__']['s2member']['o']['sp_tracking_codes']) && is_array($cv = preg_split('/\|/', $paypal['custom'])))
                    
77						{
                    
                
emogrifier.php https://gitlab.com/endomorphosis/OLAAaction | PHP | 228 lines
                    
1<?php defined('_JEXEC') or die('Restricted access'); ?>
                    
2<?php
                    
17    2009-11-04  Explicitly declared static functions static to get rid of E_STRICT notices.
                    
18    2010-05-18  Fixed bug where full url filenames with protocols wouldn't get split improperly when we explode on ':'... Thanks Mark!
                    
19                Added two new attribute selectors
                    
20    2010-06-16  Added static caching for less processing overhead in situations where multiple emogrification takes place
                    
21    2010-07-26  Fixed bug where '0' values were getting discarded because of php's empty() function... Thanks Scott!
                    
22    2010-09-03  Added checks to invisible node removal to ensure that we don't try to remove non-existent child nodes of parents that have already been deleted
                    
95
                    
96                // else split by commas and duplicate attributes so we can sort by selector precedence
                    
97                $selectors = explode(',',$selectorString);
                    
                
pmetis.c https://bitbucket.org/pecchia/libnegf.git | C | 341 lines
                    
131  if (nparts > 2) {
                    
132    SplitGraphPart(ctrl, graph, &lgraph, &rgraph);
                    
133    /* printf("%d %d\n", lgraph.nvtxs, rgraph.nvtxs); */
                    
189**************************************************************************/
                    
190void SplitGraphPart(CtrlType *ctrl, GraphType *graph, GraphType *lgraph, GraphType *rgraph)
                    
191{
                    
199
                    
200  IFSET(ctrl->dbglvl, DBG_TIME, starttimer(ctrl->SplitTmr));
                    
201
                    
225
                    
226  SetUpSplitGraph(graph, lgraph, snvtxs[0], snedges[0]);
                    
227  sxadj[0] = lgraph->xadj;
                    
299
                    
300  IFSET(ctrl->dbglvl, DBG_TIME, stoptimer(ctrl->SplitTmr));
                    
301
                    
                
Fuzzy.php https://bitbucket.org/acidel/buykoala.git | PHP | 287 lines
                    
1<?php
                    
2/**
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: Fuzzy.php 20096 2010-01-06 02:05:09Z bkarwin $
                    
21 */
                    
24/** Zend_Search_Lucene_Search_Query_Processing */
                    
25#require_once 'Zend/Search/Lucene/Search/Query/Preprocessing.php';
                    
26
                    
98        if ($this->_field === null) {
                    
99            #require_once 'Zend/Search/Lucene/Search/Query/Boolean.php';
                    
100            $query = new Zend_Search_Lucene_Search_Query_Boolean();
                    
103
                    
104            #require_once 'Zend/Search/Lucene.php';
                    
105            if (Zend_Search_Lucene::getDefaultSearchField() === null) {
                    
110
                    
111            #require_once 'Zend/Search/Lucene/Search/Query/Preprocessing/Fuzzy.php';
                    
112            foreach ($searchFields as $fieldName) {
                    
                
AbstractPaginator.php https://gitlab.com/zan_zan/laravel_sample | PHP | 487 lines
                    
1<?php
                    
2
                    
271    /**
                    
272     * Determine if there are enough items to split into multiple pages.
                    
273     *
                    
                
ScopeIndentSniff.php https://gitlab.com/michield/dokuwiki | PHP | 319 lines
                    
9 * @package   PHP_CodeSniffer
                    
10 * @author    Andreas Gohr <andi@splitbrain.org>
                    
11 * @author    Greg Sherwood <gsherwood@squiz.net>
                    
15 * @version   CVS: $Id: ScopeIndentSniff.php 270281 2008-12-02 02:38:34Z squiz $
                    
16 * @link      http://pear.php.net/package/PHP_CodeSniffer
                    
17 */
                    
31 * @version   Release: 1.2.0
                    
32 * @link      http://pear.php.net/package/PHP_CodeSniffer
                    
33 */
                    
76     *
                    
77     * @param PHP_CodeSniffer_File $phpcsFile All the tokens found in the document.
                    
78     * @param int                  $stackPtr  The position of the current token
                    
82     */
                    
83    public function process(PHP_CodeSniffer_File $phpcsFile, $stackPtr)
                    
84    {
                    
                
Route.php https://github.com/jpratt/cal.git | PHP | 313 lines
                    
1<?php
                    
2/**
                    
17 * @copyright  Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
                    
18 * @version    $Id: Route.php 11073 2008-08-26 16:29:59Z dasprid $
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
22/** Zend_Controller_Router_Route_Abstract */
                    
23#require_once 'Zend/Controller/Router/Route/Abstract.php';
                    
24
                    
106    /**
                    
107     * Prepares the route for mapping by splitting (exploding) it
                    
108     * to a corresponding atomic parts. These parts are assigned
                    
256                } else {
                    
257                    #require_once 'Zend/Controller/Router/Exception.php';
                    
258                    throw new Zend_Controller_Router_Exception($name . ' is not specified');
                    
                
csv.php https://github.com/edmondscommerce/XAMPP-Magento-Demo-Site.git | PHP | 323 lines
                    
1<?php
                    
2/* vim: set expandtab sw=4 ts=4 sts=4: */
                    
3/**
                    
4 * CSV import plugin for phpMyAdmin
                    
5 *
                    
6 * @todo    add an option for handling NULL values
                    
7 * @version $Id: csv.php 11336 2008-06-21 15:01:27Z lem9 $
                    
8 */
                    
8 */
                    
9if (! defined('PHPMYADMIN')) {
                    
10    exit;
                    
92    $fields = array();
                    
93    $tmp   = split(',( ?)', $csv_columns);
                    
94    foreach ($tmp as $key => $val) {
                    
                
c.py https://gitlab.com/envieidoc/Clover | Python | 387 lines
                    
145        if FuncDeclPattern.match(var.Declarator):
                    
146            DeclSplitList = var.Declarator.split('(')
                    
147            FuncName = DeclSplitList[0]
                    
147            FuncName = DeclSplitList[0]
                    
148            FuncNamePartList = FuncName.split()
                    
149            if len(FuncNamePartList) > 1:
                    
245    ParamIdList = []
                    
246    DeclSplitList = FuncDeclarator.split('(')
                    
247    if len(DeclSplitList) < 2:
                    
249    FuncName = DeclSplitList[0]
                    
250    ParamStr = DeclSplitList[1].rstrip(')')
                    
251    LineSkipped = 0
                    
318        FuncDef.Declarator = FuncDef.Declarator.lstrip('*')
                    
319        DeclSplitList = FuncDef.Declarator.split('(')
                    
320        if len(DeclSplitList) < 2:
                    
                
style.css https://gitlab.com/github-cloud-corp/aws-sdk-php | CSS | 672 lines
                    
355
                    
356/* Splitter
                    
357 -------------------------------------*/
                    
357 -------------------------------------*/
                    
358#splitter {
                    
359  position: fixed;
                    
366
                    
367#splitter.active {
                    
368  opacity: .5;
                    
438
                    
439.php-keyword1 {
                    
440  color: #468847;
                    
490
                    
491span.l .php-var a:hover, span.l .php-var a:active, span.l .php-var a:focus {
                    
492  color: #c09853 !important;
                    
                
bench_internal.c https://gitlab.com/vectorci/rippled | C | 318 lines
                    
3 * Distributed under the MIT software license, see the accompanying   *
                    
4 * file COPYING or http://www.opensource.org/licenses/mit-license.php.*
                    
5 **********************************************************************/
                    
92#ifdef USE_ENDOMORPHISM
                    
93void bench_scalar_split(void* arg) {
                    
94    int i;
                    
98        secp256k1_scalar_t l, r;
                    
99        secp256k1_scalar_split_lambda_var(&l, &r, &data->scalar_x);
                    
100        secp256k1_scalar_add(&data->scalar_x, &data->scalar_x, &data->scalar_y);
                    
293#ifdef USE_ENDOMORPHISM
                    
294    if (have_flag(argc, argv, "scalar") || have_flag(argc, argv, "split")) run_benchmark("scalar_split", bench_scalar_split, bench_setup, NULL, &data, 10, 20000);
                    
295#endif
                    
                
jquery.serializejson.js https://gitlab.com/Mirros/cdnjs | JavaScript | 193 lines
                    
6  Copyright (c) 2014 Mario Izquierdo
                    
7  Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
                    
8  and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
                    
22    $.each(formAsArray, function (i, input) {
                    
23      keys = f.splitInputNameIntoKeysArray(input.name); // "some[deep][key]" => ['some', 'deep', 'key']
                    
24      value = f.parseValue(input.value, opts); // string, number, boolean or null
                    
79
                    
80    // Split the input name in programatically readable keys
                    
81    // "foo"              => ['foo']
                    
85    // "arr[][val]"       => ['arr', '', 'val']
                    
86    splitInputNameIntoKeysArray: function (name) {
                    
87      var keys, last, f;
                    
89      if (f.isUndefined(name)) { throw new Error("ArgumentError: param 'name' expected to be a string, found undefined"); }
                    
90      keys = $.map(name.split('['), function (key) {
                    
91        last = key[key.length - 1];
                    
                
gecko.js https://github.com/canercandan/agat-engine.git | JavaScript | 295 lines
                    
14 * 
                    
15 * Read the full licence: http://www.opensource.org/licenses/lgpl-license.php
                    
16 */
                    
79	
                    
80	// split big files, highlighting parts of it
                    
81	split : function(code,flag) {
                    
114		o = o.replace(/<.*?>/g,'');
                    
115		x = z = this.split(o,flag);
                    
116		x = x.replace(/\n/g,'<br>');
                    
122
                    
123		editor.innerHTML = this.actions.history[this.actions.next()] = (flag=='scroll') ? x : o.split(z).join(x);
                    
124		if(flag!='init') this.findString();
                    
129		words = rangeAndCaret[0].substring(rangeAndCaret[1]-40,rangeAndCaret[1]);
                    
130		words = words.replace(/[\s\n\r\);\W]/g,'\n').split('\n');
                    
131		return words[words.length-1].replace(/[\W]/gi,'').toLowerCase();
                    
                
index.php git://git.savannah.nongnu.org/savane-cleanup.git | PHP | 363 lines
                    
1<?php
                    
2# Manage user preferences
                    
22
                    
23# we need to define the theme before loading the pre.php init script,
                    
24# otherwise the page needs to be reloaded for the change to take effect.
                    
25# see bug #1987
                    
26require_once('../../include/sane.php');
                    
27extract(sane_import('post',
                    
40
                    
41require_once('../../include/init.php');
                    
42require_once('../../include/timezones.php');
                    
139
                    
140print '<form action="'.$_SERVER["PHP_SELF"].'" method="post">';
                    
141
                    
146
                    
147print "\n".html_splitpage(1);
                    
148
                    
                
social.js https://gitlab.com/Mirros/jsdelivr | JavaScript | 452 lines
                    
50
                    
51		// comments.php
                    
52		if ($('#social').length) {
                    
98					if (prevLink !== null) {
                    
99						var _prevLink = prevLink.split('#comments');
                    
100						if (_prevLink.indexOf('?') == -1) {
                    
109					if (nextLink !== null) {
                    
110						var _nextLink = nextLink.split('#comments');
                    
111						if (_nextLink.indexOf('?') == -1) {
                    
220							if (content.substr(0, 1) == '@') {
                    
221								username = content.split(' ')[0].substr(1);
                    
222							}
                    
230							var $author = $parent.find('.social-comment-author a'),
                    
231								author_rel = $author.attr('rel').split(' ');
                    
232							$('#in_reply_to_status_id').val(author_rel[0]);
                    
                
Route.php https://github.com/sitengine/sitengine.git | PHP | 313 lines
                    
1<?php
                    
2/**
                    
17 * @copyright  Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
                    
18 * @version    $Id: Route.php 11073 2008-08-26 16:29:59Z dasprid $
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
22/** Zend_Controller_Router_Route_Abstract */
                    
23require_once 'Zend/Controller/Router/Route/Abstract.php';
                    
24
                    
106    /**
                    
107     * Prepares the route for mapping by splitting (exploding) it
                    
108     * to a corresponding atomic parts. These parts are assigned
                    
256                } else {
                    
257                    require_once 'Zend/Controller/Router/Exception.php';
                    
258                    throw new Zend_Controller_Router_Exception($name . ' is not specified');
                    
                
CFDBFilterParser.php https://gitlab.com/mattswann/launch-housing | PHP | 302 lines
                    
1<?php

                    
2/*

                    
21

                    
22include_once('CFDBEvaluator.php');

                    
23require_once('CFDBParserBase.php');

                    
28 * Individual expressions (like 'field1=value1') are of the form $name . $operator . $value where

                    
29 * $operator is any PHP comparison operator or '=' which is interpreted as '=='.

                    
30 * $value has a special case where if it is 'null' it is interpreted as the value null

                    
137     * @param  $comparisonExpression string in the form 'value1' . 'operator' . 'value2' where

                    
138     * operator is a php comparison operator or '='

                    
139     * @return array of string [ value1, operator, value2 ]

                    
145        return preg_split('/(===)|(==)|(=)|(!==)|(!=)|(<>)|(<=)|(<)|(>=)|(>)|(~~)/',

                    
146                $comparisonExpression, -1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE);

                    
147    }

                    
232     * @param  $left mixed

                    
233     * @param  $operator string representing any PHP comparison operator or '=' which is taken to mean '=='

                    
234     * @param  $right $mixed. SPECIAL CASE: if it is the string 'null' it is taken to be the value null

                    
                
Phrase.php https://gitlab.com/Ltaimao/wecenter | PHP | 270 lines
                    
1<?php
                    
2/**
                    
24/** Zend_Search_Lucene_Search_Query_Processing */
                    
25//require_once 'Zend/Search/Lucene/Search/Query/Preprocessing.php';
                    
26
                    
127//        if (strpos($this->_phrase, '?') !== false || strpos($this->_phrase, '*') !== false) {
                    
128//            //require_once 'Zend/Search/Lucene/Search/QueryParserException.php';
                    
129//            throw new Zend_Search_Lucene_Search_QueryParserException('Wildcards are only allowed in a single terms.');
                    
131
                    
132        // Split query into subqueries if field name is not specified
                    
133        if ($this->_field === null) {
                    
133        if ($this->_field === null) {
                    
134            //require_once 'Zend/Search/Lucene/Search/Query/Boolean.php';
                    
135            $query = new Zend_Search_Lucene_Search_Query_Boolean();
                    
137
                    
138            //require_once 'Zend/Search/Lucene.php';
                    
139            if (Zend_Search_Lucene::getDefaultSearchField() === null) {
                    
                
bookmark-template.php https://gitlab.com/endomorphosis/reservationtelco | PHP | 256 lines
                    
1<?php
                    
2/**
                    
218	if ( $categorize ) {
                    
219		//Split the bookmarks into ul's for each category
                    
220		$cats = get_terms('link_category', array('name__like' => $category_name, 'include' => $category, 'exclude' => $exclude_category, 'orderby' => $category_orderby, 'order' => $category_order, 'hierarchical' => 0));
                    
                
AutoParagraphTest.php https://gitlab.com/Griffolion/Game-Embargo-Tracker | PHP | 577 lines
                    
1<?php
                    
2
                    
220
                    
221    public function testSplitUpInternalsOfPTagInBlockNode()
                    
222    {
                    
232
                    
233    public function testSplitUpInlineNodesInPTagInBlockNode()
                    
234    {
                    
                
CakeTestFixture.php https://gitlab.com/manuperazafa/elsartenbackend | PHP | 328 lines
                    
1<?php
                    
2/**
                    
2/**
                    
3 * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
                    
4 * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
                    
10 * @copyright     Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
                    
11 * @link          http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
                    
12 * @package       Cake.TestSuite.Fixture
                    
12 * @package       Cake.TestSuite.Fixture
                    
13 * @since         CakePHP(tm) v 1.2.0.4667
                    
14 * @license       http://www.opensource.org/licenses/mit-license.php MIT License
                    
34/**
                    
35 * CakePHP's DBO driver (e.g: DboMysql).
                    
36 *
                    
137			if (isset($import['model'])) {
                    
138				list($plugin, $modelClass) = pluginSplit($import['model'], true);
                    
139				App::uses($modelClass, $plugin . 'Model');
                    
                
XmlFileLoader.php https://gitlab.com/fiesta-framework/Documentation | PHP | 256 lines
                    
1<?php
                    
2
                    
128
                    
129        $schemes = preg_split('/[\s,\|]++/', $node->getAttribute('schemes'), -1, PREG_SPLIT_NO_EMPTY);
                    
130        $methods = preg_split('/[\s,\|]++/', $node->getAttribute('methods'), -1, PREG_SPLIT_NO_EMPTY);
                    
156        $host = $node->hasAttribute('host') ? $node->getAttribute('host') : null;
                    
157        $schemes = $node->hasAttribute('schemes') ? preg_split('/[\s,\|]++/', $node->getAttribute('schemes'), -1, PREG_SPLIT_NO_EMPTY) : null;
                    
158        $methods = $node->hasAttribute('methods') ? preg_split('/[\s,\|]++/', $node->getAttribute('methods'), -1, PREG_SPLIT_NO_EMPTY) : null;
                    
                
Data.php https://bitbucket.org/mengqing/magento-mirror.git | PHP | 478 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
                    
23 * @copyright   Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
                    
24 * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
                    
25 */
                    
188    /**
                    
189     * Split SKU of an item by dashes and spaces
                    
190     * Words will not be broken, unless thir length is greater than $length
                    
195     */
                    
196    public function splitSku($sku, $length = 30)
                    
197    {
                    
197    {
                    
198        return Mage::helper('core/string')->str_split($sku, $length, true, false, '[\-\s]');
                    
199    }
                    
                
html.php https://gitlab.com/Bartwillemsen/aurora-framework | PHP | 376 lines
                    
1<?php
                    
2namespace Aurora;
                    
37
                    
38		return '<script src="'.$url.'"'.static::attributes($attributes).'></script>'.PHP_EOL;
                    
39	}
                    
69
                    
70		return '<link href="'.$url.'"'.static::attributes($attributes).'>'.PHP_EOL;
                    
71	}
                    
320
                    
321		foreach (str_split($value) as $letter)
                    
322		{
                    
                
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 * 
                    
115MergeCells			: "? ???",
                    
116SplitCell			: "? ???",
                    
117TableDelete			: "Delete Table",	//MISSING
                    
                
behat_grade.php https://gitlab.com/unofficial-mirrors/moodle | PHP | 302 lines
                    
1<?php
                    
2// This file is part of Moodle - http://moodle.org/
                    
25
                    
26// NOTE: no MOODLE_INTERNAL test here, this file may be required by behat before including /config.php.
                    
27
                    
27
                    
28require_once(__DIR__ . '/../../../lib/behat/behat_base.php');
                    
29
                    
252    protected function select_in_gradebook_tabs($gradepath) {
                    
253        $gradepath = preg_split('/\s*>\s*/', trim($gradepath));
                    
254        if (count($gradepath) > 2) {
                    
                
inputfilter.php https://gitlab.com/endomorphosis/OLAAaction | PHP | 551 lines
                    
1<?php
                    
2/**
                    
2/**
                    
3 *  @class: InputFilter (PHP4 & PHP5, with comments)
                    
4 * @project: PHP Input Filter
                    
5 * @date: 10-05-2005
                    
6 * @version: 1.2.2_php4/php5
                    
7 * @author: Daniel Morris
                    
58	/**
                    
59	 * Method to be called by another php script. Processes for XSS and
                    
60	 * specified bad code.
                    
354			/*
                    
355			 * Split into name/value pairs
                    
356			 */
                    
462	/**
                    
463	 * Method to be called by another php script. Processes for SQL injection
                    
464	 *
                    
                
Entity.php https://gitlab.com/LisovyiEvhenii/ismextensions | PHP | 354 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
                    
23 * @copyright  Copyright (c) 2006-2016 X.commerce, Inc. and affiliates (http://www.magento.com)
                    
24 * @license    http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
                    
25 */
                    
106                    if (strpos($k, $key . '/') === 0) {
                    
107                        $split = explode('/', $k);
                    
108                        $filters[$key][$split[1]] = $v;
                    
                
jquery.tagsinput.js https://gitlab.com/techniconline/kmc | JavaScript | 358 lines
                    
10 Licensed under the MIT license:
                    
11 http://www.opensource.org/licenses/mit-license.php
                    
12
                    
82
                    
83            var tagslist = $(this).val().split(delimiter[id]);
                    
84            if (tagslist[0] == '') {
                    
143
                    
144            var old = $(this).val().split(delimiter[id]);
                    
145
                    
166        var id = $(this).attr('id');
                    
167        var tagslist = $(this).val().split(delimiter[id]);
                    
168        return (jQuery.inArray(val, tagslist) >= 0); //true when tag exists, false when not
                    
347        var id = $(obj).attr('id');
                    
348        var tags = val.split(delimiter[id]);
                    
349        for (i = 0; i < tags.length; i++) {
                    
                
function.html_select_date.php https://github.com/kiang/olc_baker.git | PHP | 328 lines
                    
1<?php
                    
2/**
                    
30 *
                    
31 * @link http://smarty.php.net/manual/en/language.function.html.select.date.php {html_select_date}
                    
32 *      (Smarty online manual)
                    
41{
                    
42    require_once(SMARTY_PLUGINS_DIR . 'shared.escape_special_chars.php');
                    
43    require_once(SMARTY_PLUGINS_DIR . 'shared.make_timestamp.php');
                    
43    require_once(SMARTY_PLUGINS_DIR . 'shared.make_timestamp.php');
                    
44    require_once(SMARTY_PLUGINS_DIR . 'function.html_options.php');
                    
45
                    
61    $reverse_years = false;
                    
62    /* Should the select boxes be part of an array when returned from PHP?
                    
63       e.g. setting it to "birthday", would create "birthday[Day]",
                    
150    }
                    
151    // Now split this in pieces, which later can be used to set the select
                    
152    $time = explode("-", $time);
                    
                
SimpleWikiHelper.java https://gitlab.com/brian0218/rk3066_r-box_android4.2.2_sdk | Java | 214 lines
                    
49    /**
                    
50     * Regular expression that splits "Word of the day" entry into word
                    
51     * name, word type, and the first description bullet point.
                    
61    private static final String WIKTIONARY_PAGE =
                    
62            "http://en.wiktionary.org/w/api.php?action=query&prop=revisions&titles=%s&" +
                    
63            "rvprop=content&format=json%s";
                    
                
filter.php https://bitbucket.org/moodle/moodle.git | PHP | 235 lines
                    
1<?php
                    
2// This file is part of Moodle - http://moodle.org/
                    
80        // Looking for tags.
                    
81        $matches = preg_split('/(<[^>]*>)/i', $text, -1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE);
                    
82
                    
158
                    
159        // Split provided URL into alternatives.
                    
160        $urls = $mediamanager->split_alternatives($matches[1], $width, $height);
                    
                
tripal_feature_interpro_results.tpl.php https://gitlab.com/vijaya.tsavatapalli/drupal7 | PHP | 235 lines
                    
1<?php
                    
2$feature = $variables['node']->feature;
                    
149            
                    
150            // the Prosite databases are split into two libraries for InterProScan. But
                    
151            // we can just use the PROSITE database for both of them, so rename it here.
                    
230    
                    
231    <div class="tripal_feature-interpro_results_subtitle">Summary of Annotated IPR terms</div> <?php 
                    
232    print $resultsHTML;?>
                    
232    print $resultsHTML;?>
                    
233    </div> <?php 
                    
234  }
                    
                
umeditor.config.js https://gitlab.com/0072016/0072016-mmzrb- | JavaScript | 257 lines
                    
103
                    
104            parsedStack = parsedStack.split( this.localSeparator );
                    
105            parsedStack.length = parsedStack.length - 1;
                    
139        //图片上传配置区
                    
140        ,imageUrl:"../admin/upload.php?infImgUpload=1"             //图片上传提交地址
                    
141        ,imagePath:URL                     //图片修正地址,引用了fixedImagePath,如有特殊需求,可自行配置
                    
                
thread.js https://github.com/canercandan/agat-engine.git | JavaScript | 423 lines
                    
13		{
                    
14			var post_ids = quoted.split("|");
                    
15			post_ids.each(function(post_id) {
                    
36		{
                    
37			var post_ids = quoted.split("|");
                    
38			post_ids.each(function(post_id) {
                    
77			this.spinner = new ActivityIndicator("body", {image: imagepath + "/spinner_big.gif"});
                    
78			new Ajax.Request('xmlhttp.php?action=get_multiquoted&load_all=1', {method: 'get', onComplete: function(request) {Thread.multiQuotedLoaded(request); }});
                    
79			return false;
                    
132		{
                    
133			var post_ids = quoted.split("|");
                    
134			post_ids.each(function(post_id) {
                    
151			form.setAttribute("method", "post");
                    
152			form.setAttribute("action", "editpost.php?action=deletepost&delete=1");
                    
153			form.setAttribute("style", "display: none;");
                    
                
TargetTxtClassObject.py https://gitlab.com/envieidoc/Clover | Python | 190 lines
                    
7# which accompanies this distribution.  The full text of the license may be found at
                    
8# http://opensource.org/licenses/bsd-license.php
                    
9#
                    
73    # @param CommentCharacter:     Comment char, be used to ignore comment content
                    
74    # @param KeySplitCharacter:    Key split char, between key name and key value. Key1 = Value1, '=' is the key split char
                    
75    #
                    
78    #
                    
79    def ConvertTextFileToDict(self, FileName, CommentCharacter, KeySplitCharacter):
                    
80        F = None
                    
93
                    
94            LineList = Line.split(KeySplitCharacter, 1)
                    
95            Key = LineList[0].strip()
                    
125                         DataType.TAB_TAT_DEFINES_TOOL_CHAIN_TAG]:
                    
126                self.TargetTxtDictionary[Key] = Value.split()
                    
127            elif Key == DataType.TAB_TAT_DEFINES_MAX_CONCURRENT_THREAD_NUMBER:
                    
                
qrmask.php https://bitbucket.org/Sinfin/pawtucket.git | PHP | 328 lines
                    
1<?php
                    
2/*
                    
2/*
                    
3 * PHP QR Code encoder
                    
4 *
                    
9 *
                    
10 * PHP QR Code is distributed under LGPL 3
                    
11 * Copyright (C) 2010 Dominik Dzienia <deltalab at poczta dot fm>
                    
134            foreach ($codeLines as $line)
                    
135                $codeArr[] = str_split($line);
                    
136            
                    
286        {
                    
287            $minDemerit = PHP_INT_MAX;
                    
288            $bestMaskNum = 0;
                    
                
TestFixture.php https://gitlab.com/vannh/portal_training | PHP | 325 lines
                    
1<?php
                    
2/**
                    
2/**
                    
3 * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
                    
4 * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
                    
11 * @since         1.2.0
                    
12 * @license       http://www.opensource.org/licenses/mit-license.php MIT License
                    
13 */
                    
116        if ($this->table === null) {
                    
117            list(, $class) = namespaceSplit(get_class($this));
                    
118            preg_match('/^(.*)Fixture$/', $class, $matches);
                    
                
Math.php https://bitbucket.org/brunoMaurice/youfood.git | PHP | 312 lines
                    
25 * otherwise to PHP builtin math operators, with limited detection of overflow conditions.
                    
26 * Sampling of PHP environments and platforms suggests that at least 80% to 90% support bcmath.
                    
27 * Thus, this file should be as light as possible.
                    
56     * Surprisingly, the results of this implementation of round()
                    
57     * prove better than the native PHP round(). For example, try:
                    
58     *   round(639.795, 2);
                    
147     * Localizes an input from standard english notation
                    
148     * Fixes a problem of BCMath with setLocale which is PHP related
                    
149     *
                    
182        if (count($split) > 1) {
                    
183            $value = bcmul($split[0], bcpow(10, $split[1], $scale), $scale);
                    
184        }
                    
309    || !extension_loaded('bcmath')) {
                    
310    require_once 'Zend/Locale/Math/PhpMath.php';
                    
311    Zend_Locale_Math_PhpMath::disable();
                    
                
Entity.php https://bitbucket.org/mengqing/magento-mirror.git | PHP | 354 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
                    
23 * @copyright   Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
                    
24 * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
                    
25 */
                    
106                    if (strpos($k, $key . '/') === 0) {
                    
107                        $split = explode('/', $k);
                    
108                        $filters[$key][$split[1]] = $v;
                    
                
tax_watch_export_pdf(3).php https://gitlab.com/vince.omega/PDF-PHP-Scripts | PHP | 534 lines
                    
1<?php
                    
2ini_set('max_execution_time', 0); //300 seconds = 5 minutes
                    
2ini_set('max_execution_time', 0); //300 seconds = 5 minutes
                    
3require_once('fpdf/fpdf/fpdf.php');
                    
4require_once('../../header.inc.php');
                    
7@author: Larry Stanfield
                    
8PHP PDF generation script written by Larry Stanfield
                    
9Contact @ vince.omega@gmail.com
                    
9Contact @ vince.omega@gmail.com
                    
10Powered by the open source pdf php class fpdf
                    
11www.fpdf.org
                    
97				$conArray = array();
                    
98				$conArray = str_split($content, 23);
                    
99				$k = sizeof($conArray);
                    
186
                    
187$filename = 'c:/php_temp/download_' . preg_replace('/[^a-z0-9]/i', '_', $DB->cleanString($_GET['custcodes'])) . '.pdf';
                    
188
                    
                
date.php https://github.com/gallery/gallery3-vendor.git | PHP | 395 lines
                    
1<?php defined('SYSPATH') OR die('No direct access allowed.');
                    
2/**
                    
7 * @copyright  (c) 2007-2009 Kohana Team
                    
8 * @license    http://kohanaphp.com/license
                    
9 */
                    
55	 * Returns the offset (in seconds) between two time zones.
                    
56	 * @see     http://php.net/timezones
                    
57	 *
                    
277		// Array with the output formats
                    
278		$output = preg_split('/[^a-z]+/', strtolower((string) $output));
                    
279
                    
                
productos.php https://gitlab.com/merintec/barvo | PHP | 311 lines
                    
1<?php
                    
2include("../comunes/variables.php");
                    
3include("verificar_admin.php");
                    
3include("verificar_admin.php");
                    
4include("../comunes/conexion.php");
                    
5$tabla='productos';
                    
33    <link type="text/css" rel="stylesheet" href="../js/whatyouseeiswhatyouget/jquery-te-1.4.0.css">
                    
34    <title><?php echo $nom_pagina; ?></title>
                    
35  </head>
                    
179<body>
                    
180    <?php
                    
181        include("menu_backend.php");
                    
280               
                    
281                <div align="center"> <a href="<?php echo $_PHP_SELF; ?>"><button id="cancelar" type="button" class="btn btn_form oculto" >Cancelar</button></a>  <input type="submit" name="guardar"  id="guardar" value="Guardar" class="btn btn_form" > </div>
                    
282           
                    
                
RelativeLayoutRuleTest.java https://gitlab.com/Codeaurora/platform_sdk | Java | 166 lines
                    
7 *
                    
8 *      http://www.eclipse.org/org/documents/epl-v10.php
                    
9 *
                    
143            for (String attachment : attachments) {
                    
144                String[] elements = attachment.split("=");
                    
145                String name = "layout_" + elements[0];
                    
                
license2rtf.js https://gitlab.com/CORP-RESELLER/node | JavaScript | 332 lines
                    
10 */
                    
11function LineSplitter() {
                    
12  const self = this;
                    
18  this.write = function(data) {
                    
19    var lines = (buffer + data).split(/\r\n|\n\r|\n|\r/);
                    
20    for (var i = 0; i < lines.length - 1; i++) {
                    
34}
                    
35inherits(LineSplitter, Stream);
                    
36
                    
40 */
                    
41function ParagraphParser() {
                    
42  const self = this;
                    
319const stdout = process.stdout;
                    
320const line_splitter = new LineSplitter();
                    
321const paragraph_parser = new ParagraphParser();
                    
                
kixtart.php https://gitlab.com/billyprice1/Stikked | PHP | 327 lines
                    
1<?php
                    
2/*************************************************************************************
                    
2/*************************************************************************************
                    
3 * kixtart.php
                    
4 * --------
                    
9 *
                    
10 * PHP language file for GeSHi.
                    
11 *
                    
172            'SRnd',
                    
173            'Split',
                    
174            'SidToName',
                    
311    'OOLANG' => true,
                    
312    'OBJECT_SPLITTERS' => array(
                    
313        1 => '.'
                    
                
loader.php https://gitlab.com/phamngsinh/baitaplon_sinhvien | PHP | 367 lines
                    
1<?php
                    
2/**
                    
74
                    
75				// Only load for php files.
                    
76				// Note: DirectoryIterator::getExtension only available PHP >= 5.3.6
                    
76				// Note: DirectoryIterator::getExtension only available PHP >= 5.3.6
                    
77				if ($file->isFile() && substr($fileName, strrpos($fileName, '.') + 1) == 'php')
                    
78				{
                    
79					// Get the class name and full path for each file.
                    
80					$class = strtolower($classPrefix . preg_replace('#\.php$#', '', $fileName));
                    
81
                    
147				// Only register the class for autoloading if the file exists.
                    
148				if (is_file($base . '/' . $path . '.php'))
                    
149				{
                    
149				{
                    
150					self::$classes[strtolower($class)] = $base . '/' . $path . '.php';
                    
151					$success = true;
                    
                
SugarFieldDatetime.php https://gitlab.com/tjaafar/SuiteCRM | PHP | 215 lines
                    
1<?php
                    
2/*********************************************************************************
                    
39
                    
40require_once('include/SugarFields/Fields/Base/SugarFieldBase.php');
                    
41
                    
158        if ( !$timedate->check_matching_format($value, $format) ) {
                    
159            $parts = $timedate->split_date_time($value);
                    
160            if(empty($parts[0])) {
                    
                
Categories.php https://github.com/imagecms/ImageCMS.git | PHP | 302 lines
                    
1<?php
                    
2
                    
127
                    
128            // splitting on those which need to be updated and new (by external id)
                    
129            if (FALSE == $this->categoryExists($externalId)) {
                    
                
Manager.js https://github.com/flomotlik/grails-qooxdoo.git | JavaScript | 450 lines
                    
11     LGPL: http://www.gnu.org/licenses/lgpl.html
                    
12     EPL: http://www.eclipse.org/org/documents/epl-v10.php
                    
13     See the LICENSE file in the project's top-level directory for details.
                    
208    getTerritory : function() {
                    
209      return this.getLocale().split("_")[1] || "";
                    
210    },
                    
                
jqplot.canvasAxisTickRenderer.js https://github.com/qbranchcode/Qanban.git | JavaScript | 232 lines
                    
8 * use of jqPlot.  You can reach the author at: chris dot leonello at gmail 
                    
9 * dot com or see http://www.jqplot.com/info.php .  This is, of course, 
                    
10 * not required.
                    
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 *
                    
119            if ($.browser.safari) {
                    
120                var p = $.browser.version.split('.');
                    
121                for (var i=0; i<p.length; i++) { p[i] = Number(p[i]); }
                    
126            else if ($.browser.mozilla) {
                    
127                var p = $.browser.version.split(".");
                    
128                if (p[0] > 1 || (p[0] == 1 &&  p[1] >= 9 && p[2] > 0) ) {
                    
                
Pop3.php https://gitlab.com/Ltaimao/wecenter | PHP | 328 lines
                    
1<?php
                    
2/**
                    
26 */
                    
27//require_once 'Zend/Mail/Storage/Abstract.php';
                    
28
                    
31 */
                    
32//require_once 'Zend/Mail/Protocol/Pop3.php';
                    
33
                    
36 */
                    
37//require_once 'Zend/Mail/Message.php';
                    
38
                    
114             */
                    
115            //require_once 'Zend/Mail/Storage/Exception.php';
                    
116            throw new Zend_Mail_Storage_Exception('not implemented');
                    
137             */
                    
138            //require_once 'Zend/Mail/Storage/Exception.php';
                    
139            throw new Zend_Mail_Storage_Exception('not implemented');
                    
                
url.py https://gitlab.com/abhi1tb/build | Python | 310 lines
                    
5# This module is part of SQLAlchemy and is released under
                    
6# the MIT License: http://www.opensource.org/licenses/mit-license.php
                    
7
                    
143        else:
                    
144            return self.drivername.split("+")[0]
                    
145
                    
149        else:
                    
150            return self.drivername.split("+")[1]
                    
151
                    
257        if components["database"] is not None:
                    
258            tokens = components["database"].split("?", 2)
                    
259            components["database"] = tokens[0]
                    
                
State.php https://github.com/wrobel/horde-fw3.git | PHP | 416 lines
                    
1<?php
                    
2
                    
4 * SyncML_State object and its property objects from the session. */
                    
5require_once 'SyncML/DeviceInfo.php';
                    
6require_once 'SyncML/Device.php';
                    
6require_once 'SyncML/Device.php';
                    
7require_once 'SyncML/Constants.php';
                    
8require_once 'SyncML/Command/SyncElement.php';
                    
12 *
                    
13 * $Horde: framework/SyncML/SyncML/State.php,v 1.17.2.19 2009-04-07 11:12:54 jan Exp $
                    
14 *
                    
29     *
                    
30     * This is not to confuse with the PHP session id, though it is part of
                    
31     * the generated PHP session id.
                    
56     *
                    
57     * Can be used to identify the client and is part of the PHP session id.
                    
58     *
                    
                
CodeFormatter.php https://gitlab.com/nmhieucoder/laravel_tintuc | PHP | 320 lines
                    
1<?php
                    
2
                    
109        $spans = self::tokenizeSpans($code);
                    
110        $lines = self::splitLines($spans, $startLine, $endLine);
                    
111        $lines = self::formatLines($lines);
                    
139    /**
                    
140     * Split code into highlight spans.
                    
141     *
                    
144     *
                    
145     * @todo consider switching \token_get_all() out for PHP-Parser-based formatting at some point.
                    
146     *
                    
211     */
                    
212    private static function splitLines(\Generator $spans, $startLine = 1, $endLine = null)
                    
213    {
                    
217        foreach ($spans as list($spanType, $spanText)) {
                    
218            foreach (\preg_split('/(\r\n?|\n)/', $spanText) as $index => $spanLine) {
                    
219                if ($index > 0) {
                    
                
TableParser.php https://gitlab.com/madwanz64/laravel | PHP | 284 lines
                    
1<?php
                    
2
                    
111    {
                    
112        $cells = $this->split(new Cursor(\trim($line)));
                    
113
                    
144     */
                    
145    private function split(Cursor $cursor): array
                    
146    {
                    
                
search.php https://github.com/severnaya99/Sg-2010.git | PHP | 222 lines
                    
1<?php
                    
2// $Id: search.php,v 4.04 2008/06/05 15:35:59 wishcraft Exp $
                    
3//  ------------------------------------------------------------------------ //
                    
4//                XOOPS - PHP Content Management System                      //
                    
5//                    Copyright (c) 2000 XOOPS.org                           //
                    
30//  ------------------------------------------------------------------------ //
                    
31include 'header.php';
                    
32forum_load_lang_file("search");
                    
35if ($xoopsConfigSearch['enable_search'] != 1) {
                    
36    header('Location: '.XOOPS_URL.'/modules/xforum/index.php');
                    
37    exit();
                    
41$xoopsOption['template_main']= 'xforum_search.html';
                    
42include XOOPS_ROOT_PATH.'/header.php';
                    
43
                    
43
                    
44include_once XOOPS_ROOT_PATH.'/modules/xforum/include/search.inc.php';
                    
45$limit = $xoopsModuleConfig['topics_per_page'];
                    
                
RakString.h https://gitlab.com/computerphilly/openblox | C Header | 354 lines
                    
215
                    
216	/// URL Encode the string. See http://www.codeguru.com/cpp/cpp/cpp_mfc/article.php/c4029/
                    
217	RakNet::RakString& URLEncode(void);
                    
222	/// https://servers.api.rackspacecloud.com/v1.0 to https://,  servers.api.rackspacecloud.com, /v1.0
                    
223	void SplitURI(RakNet::RakString &header, RakNet::RakString &domain, RakNet::RakString &path);
                    
224
                    
                
class-Shoestrap_Color.php https://gitlab.com/aristath/shoestrap-3 | PHP | 481 lines
                    
1<?php
                    
2
                    
11		 * Sanitises a HEX value.
                    
12		 * The way this works is by splitting the string in 6 substrings.
                    
13		 * Each sub-string is individually sanitized, and the result is then returned.
                    
                
Math.php https://github.com/guiohm/magento-french.git | PHP | 312 lines
                    
25 * otherwise to PHP builtin math operators, with limited detection of overflow conditions.
                    
26 * Sampling of PHP environments and platforms suggests that at least 80% to 90% support bcmath.
                    
27 * Thus, this file should be as light as possible.
                    
56     * Surprisingly, the results of this implementation of round()
                    
57     * prove better than the native PHP round(). For example, try:
                    
58     *   round(639.795, 2);
                    
147     * Localizes an input from standard english notation
                    
148     * Fixes a problem of BCMath with setLocale which is PHP related
                    
149     *
                    
182        if (count($split) > 1) {
                    
183            $value = bcmul($split[0], bcpow(10, $split[1], $scale), $scale);
                    
184        }
                    
309    || !extension_loaded('bcmath')) {
                    
310    #require_once 'Zend/Locale/Math/PhpMath.php';
                    
311    Zend_Locale_Math_PhpMath::disable();
                    
                
ajax.js https://gitlab.com/phamngsinh/baitaplon_sinhvien | JavaScript | 533 lines
                    
68	var sec = dte.getSeconds();
                    
69	ajaxLoad('aindex.php?act=dathangmoi&t=1&sid='+hrs+''+min+''+sec+'','dathang');
                    
70}
                    
80	var sec = dte.getSeconds();
                    
81	ajaxLoad('aindex.php?act=dathangmoi&t=0&sid='+hrs+''+min+''+sec+'','dathang');
                    
82}
                    
102url=window.location.href;
                    
103c_url=url.split('&page');
                    
104
                    
220        {
                    
221        Load2('aindex.php?act=action&stv=checkso&sosim='+field.value+'');	
                    
222        }
                    
224        {
                    
225        Load2('aindex.php?act=action&stv=checkso&sosim='+field.value+'');	
                    
226        }
                    
                
Data.php https://gitlab.com/LisovyiEvhenii/ismextensions | PHP | 478 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
                    
23 * @copyright  Copyright (c) 2006-2016 X.commerce, Inc. and affiliates (http://www.magento.com)
                    
24 * @license    http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
                    
25 */
                    
188    /**
                    
189     * Split SKU of an item by dashes and spaces
                    
190     * Words will not be broken, unless thir length is greater than $length
                    
195     */
                    
196    public function splitSku($sku, $length = 30)
                    
197    {
                    
197    {
                    
198        return Mage::helper('core/string')->str_split($sku, $length, true, false, '[\-\s]');
                    
199    }
                    
                
preprocessors.py https://gitlab.com/Haritiana/Python-Markdown | Python | 346 lines
                    
39        Each subclass of Preprocessor should override the `run` method, which
                    
40        takes the document as a list of strings split by newlines and returns
                    
41        the (possibly modified) list of lines.
                    
55        source = re.sub(r'(?<=\n) +\n', '\n', source)
                    
56        return source.split('\n')
                    
57
                    
99        else:
                    
100            tag = block[1:].split(">", 1)[0].lower()
                    
101            return tag, len(tag)+2, {}
                    
131    def _equal_tags(self, left_tag, right_tag):
                    
132        if left_tag[0] in ['?', '@', '%']:  # handle PHP, etc.
                    
133            return True
                    
191        new_blocks = []
                    
192        text = text.rsplit("\n\n")
                    
193        items = []
                    
                
base_vat.py https://gitlab.com/thanhchatvn/cloud-odoo | Python | 330 lines
                    
60
                    
61    def _split_vat(self, vat):
                    
62        vat_country, vat_number = vat[:2].lower(), vat[2:].replace(' ', '')
                    
67        Check the VAT number depending of the country.
                    
68        http://sima-pc.com/nif.php
                    
69        '''
                    
108                continue
                    
109            vat_country, vat_number = self._split_vat(partner.vat)
                    
110            if not check_func(cr, uid, vat_country, vat_number, context=context):
                    
120            return cn[0] in string.ascii_lowercase and cn[1] in string.ascii_lowercase
                    
121        vat_country, vat_number = self._split_vat(self.browse(cr, uid, ids)[0].vat)
                    
122        vat_no = "'CC##' (CC=Country Code, ##=VAT Number)"
                    
                
demo.js https://gitlab.com/link233/bootmw | JavaScript | 491 lines
                    
37	] );
                    
38	this.jsPhpSelect = new OO.ui.ButtonGroupWidget().addItems( [
                    
39		new OO.ui.ButtonWidget( { label: 'JS' } ).setActive( true ),
                    
40		new OO.ui.ButtonWidget( {
                    
41			label: 'PHP',
                    
42			href: 'demos.php' +
                    
63			this.directionSelect.$element,
                    
64			this.jsPhpSelect.$element
                    
65		);
                    
276OO.ui.Demo.prototype.getCurrentFactorValues = function () {
                    
277	return location.hash.slice( 1 ).split( '-' );
                    
278};
                    
                
kodoc.php https://github.com/dyron/userguide-de.git | PHP | 357 lines
                    
1<?php defined('SYSPATH') or die('No direct script access.');
                    
2/**
                    
8 * @copyright  (c) 2008-2009 Kohana Team
                    
9 * @license    http://kohanaphp.com/license
                    
10 */
                    
216
                    
217		// Remove the phpdoc open/close tags and split
                    
218		$comment = array_slice(explode("\n", $comment), 1, -1);
                    
246					case 'link':
                    
247						$text = preg_split('/\s+/', $text, 2);
                    
248						$text = HTML::anchor($text[0], isset($text[1]) ? $text[1] : $text[0]);
                    
                
bp-groups-ajax.php https://github.com/alvaropereyra/shrekcms.git | PHP | 271 lines
                    
94				<div class="item">
                    
95					<div class="item-title"><a href="<?php echo bp_get_group_permalink( $group ) ?>" title="<?php echo bp_get_group_name( $group ) ?>"><?php echo bp_get_group_name( $group ) ?></a></div>
                    
96					<div class="item-meta">
                    
113			</li>
                    
114			<?php	
                    
115		}
                    
155		<div id="message" class="info">
                    
156			<p><?php _e( 'This group has no members.', 'buddypress' ) ?></p>
                    
157		</div>
                    
187
                    
188					<h5><?php bp_group_member_link() ?> <?php _e( '(banned)', 'buddypress' ) ?> <span class="small"> &mdash; <a href="<?php bp_group_member_unban_link() ?>" title="<?php _e( 'Kick and ban this member', 'buddypress' ) ?>"><?php _e( 'Remove Ban', 'buddypress' ) ?></a> </h5>
                    
189			<?php else : ?>
                    
191					<?php bp_group_member_avatar_mini() ?>
                    
192					<h5><?php bp_group_member_link() ?>  <span class="small"> &mdash; <a href="<?php bp_group_member_ban_link() ?>" title="<?php _e( 'Kick and ban this member', 'buddypress' ) ?>"><?php _e( 'Kick &amp; Ban', 'buddypress' ) ?></a> | <a href="<?php bp_group_member_promote_link() ?>" title="<?php _e( 'Promote this member', 'buddypress' ) ?>"><?php _e( 'Promote to Moderator', 'buddypress' ) ?></a></span></h5>
                    
193
                    
                
ScoutControllerRaider.java https://github.com/hoijui/HughAI.git | Java | 279 lines
                    
18// You can find the licence also on the web at:
                    
19// http://www.opensource.org/licenses/gpl-license.php
                    
20//
                    
145      @Override
                    
146      public void commandReceived( String cmdline, String[]splitString, int player )
                    
147      {
                    
                
CsvBulkLoader.php https://gitlab.com/djpmedia/silverstripe-framework | PHP | 453 lines
                    
1<?php
                    
2
                    
45    /**
                    
46     * Number of lines to split large CSV files into.
                    
47     *
                    
123            }
                    
124            print $failedMessage . PHP_EOL;
                    
125        } finally {
                    
149    /**
                    
150     * Splits a large file up into many smaller files.
                    
151     *
                    
151     *
                    
152     * @param string $path Path to large file to split
                    
153     * @param int $lines Number of lines per file
                    
156     */
                    
157    protected function splitFile($path, $lines = null)
                    
158    {
                    
                
WireLog.php git://github.com/ryancramerdesign/ProcessWire.git | PHP | 362 lines
                    
1<?php
                    
2
                    
196	/**
                    
197	 * Same as getLines() but returns each log line as an associative array of each part of the line split up
                    
198	 * 
                    
                
Fuzzy.php https://github.com/mridgway/zf2.git | PHP | 286 lines
                    
1<?php
                    
2/**
                    
183        if (@preg_match('/\pL/u', 'a') == 1) {
                    
184            $subPatterns = preg_split('/[*?]/u', iconv($this->_encoding, 'UTF-8', $this->_word));
                    
185        } else {
                    
185        } else {
                    
186            $subPatterns = preg_split('/[*?]/', $this->_word);
                    
187        }
                    
233        if (@preg_match('/\pL/u', 'a') == 1) {
                    
234            $subPatterns = preg_split('/[*?]/u', iconv($this->_encoding, 'UTF-8', $this->_word));
                    
235        } else {
                    
235        } else {
                    
236            $subPatterns = preg_split('/[*?]/', $this->_word);
                    
237        }
                    
                
Sync.php https://github.com/wrobel/horde.git | PHP | 339 lines
                    
1<?php
                    
2/**
                    
97     * Whether a <MoreData> element has indicated that the sync command is
                    
98     * split into several SyncML message chunks.
                    
99     *
                    
                
vCard.php https://github.com/nerdystudmuffin/dashlet-subpanels.git | PHP | 301 lines
                    
1<?php
                    
2if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
                    
165				}
                    
166				$keyvalue = split(':',$line);
                    
167				if(sizeof($keyvalue)==2){
                    
172					}
                    
173					$values = split(';',$value );
                    
174					$key = strtoupper($keyvalue[0]);
                    
176					$key = strtr($key, ',',';');
                    
177					$keys = split(';' ,$key);
                    
178					
                    
                
Loader.php https://github.com/bhaumik25/zend-framework.git | PHP | 298 lines
                    
1<?php
                    
2/**
                    
43     * Loads a class from a PHP file.  The filename must be formatted
                    
44     * as "$class.php".
                    
45     *
                    
50     * generate a path hierarchy (e.g., "Zend_Example_Class" will map
                    
51     * to "Zend/Example/Class.php").
                    
52     *
                    
53     * If the file was not found in the $dirs, or if no $dirs were specified,
                    
54     * it will attempt to load it from PHP's include_path.
                    
55     *
                    
102    /**
                    
103     * Loads a PHP file.  This is a wrapper for PHP's include() function.
                    
104     *
                    
161     * Returns TRUE if the $filename is readable, or FALSE otherwise.
                    
162     * This function uses the PHP include_path, where PHP's is_readable()
                    
163     * does not.
                    
                
hybi.js https://gitlab.com/blocknotary/IonicInterviews | JavaScript | 474 lines
                    
20  if (typeof this._protocols === 'string')
                    
21    this._protocols = this._protocols.split(/ *, */);
                    
22
                    
34  if (protos !== undefined) {
                    
35    if (typeof protos === 'string') protos = protos.split(/ *, */);
                    
36    this.protocol = protos.filter(function(p) { return supported.indexOf(p) >= 0 })[0];
                    
100
                    
101  // http://www.w3.org/International/questions/qa-forms-utf-8.en.php
                    
102  UTF8_MATCH: /^([\x00-\x7F]|[\xC2-\xDF][\x80-\xBF]|\xE0[\xA0-\xBF][\x80-\xBF]|[\xE1-\xEC\xEE\xEF][\x80-\xBF]{2}|\xED[\x80-\x9F][\x80-\xBF]|\xF0[\x90-\xBF][\x80-\xBF]{2}|[\xF1-\xF3][\x80-\xBF]{3}|\xF4[\x80-\x8F][\x80-\xBF]{2})*$/,
                    
                
ext_string.h https://gitlab.com/Blueprint-Marketing/hhvm | C Header | 346 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   +----------------------------------------------------------------------+
                    
22#include "hphp/runtime/ext/extension.h"
                    
23#include "hphp/runtime/base/zend-string.h"
                    
24#include "hphp/runtime/base/zend-printf.h"
                    
24#include "hphp/runtime/base/zend-printf.h"
                    
25#include "hphp/runtime/base/bstring.h"
                    
26#include <langinfo.h>
                    
27
                    
28namespace HPHP {
                    
29///////////////////////////////////////////////////////////////////////////////
                    
31
                    
32extern const HPHP::StaticString k_HPHP_TRIM_CHARLIST;
                    
33extern const int64_t k_STR_PAD_RIGHT;
                    
                
AppTabsPanel.js https://gitlab.com/rsilveira1987/Expresso | JavaScript | 380 lines
                    
12 * 
                    
13 * NOTE: Tab panels are not sortable yet {@see http://www.extjs.com/forum/showthread.php?p=55045#post55045}
                    
14 * 
                    
54        if(itemEl){
                    
55            item = this.getComponent(itemEl.id.split(this.idDelimiter)[1]);
                    
56            if(item && item.disabled){
                    
364        if (Ext.isString(id)) {
                    
365            return id.split('-').pop();
                    
366        }
                    
                
box_graph_invoices_permonth.php git://github.com/Dolibarr/dolibarr.git | PHP | 293 lines
                    
1<?php
                    
2/* Copyright (C) 2013 Laurent Destailleur  <eldy@users.sourceforge.net>
                    
18/**
                    
19 *	\file       htdocs/core/boxes/box_graph_invoices_permonth.php
                    
20 *	\ingroup    factures
                    
22 */
                    
23include_once DOL_DOCUMENT_ROOT.'/core/boxes/modules_boxes.php';
                    
24
                    
75
                    
76		//include_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
                    
77		//$facturestatic=new Facture($this->db);
                    
112
                    
113			include_once DOL_DOCUMENT_ROOT.'/core/class/dolgraph.class.php';
                    
114			include_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facturestats.class.php';
                    
114			include_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facturestats.class.php';
                    
115			$autosetarray = preg_split("/[,;:]+/", GETPOST('DOL_AUTOSET_COOKIE'));
                    
116			if (in_array('DOLUSERCOOKIE_box_'.$this->boxcode, $autosetarray)) {
                    
                
Filter.php https://github.com/m-fuji-0616/vtigercrm-5.1.x-ja.git | PHP | 291 lines
                    
1<?php
                    
2/*+**********************************************************************************
                    
9 ************************************************************************************/
                    
10include_once('vtlib/Vtiger/Utils.php');
                    
11include_once('vtlib/Vtiger/Version.php');
                    
128	function __getColumnValue($fieldInstance) {
                    
129		$tod = split('~', $fieldInstance->typeofdata);
                    
130		$displayinfo = $fieldInstance->getModuleName().'_'.str_replace(' ','_',$fieldInstance->label).':'.$tod[0];
                    
                
InfBinarySectionTest.py https://gitlab.com/envieidoc/Clover | Python | 386 lines
                    
8# distribution. The full text of the license may be found at 
                    
9# http://opensource.org/licenses/bsd-license.php
                    
10#
                    
246def StringToSectionString(String):
                    
247    Lines = String.split('\n')
                    
248    LineNo = 0
                    
261    for Item in SectionString:
                    
262        ValueList = Item[0].split('|')
                    
263        for count in range(len(ValueList)):
                    
                
Timezone.php https://gitlab.com/rsilveira1987/Expresso | PHP | 352 lines
                    
1<?php
                    
2class qCal_Timezone {
                    
34	/**
                    
35	 * @var array An array of timezone metacharacters that this class allows (see PHP's date() function)
                    
36	 * @access protected
                    
53	 * @param boolean $daylightsavings Set to true if this timezone observes daylight savings
                    
54	 * @todo When $abbreviation isn't specified, and $name is a valid pre-defined PHP timezone identifier, use its
                    
55	 * 		 corresponding abbreviation rather than the name itself
                    
133	 * @access public
                    
134	 * @link http://php.net/manual/en/timezones.php A directory of valid timezones
                    
135	 * @todo This method is FUGLY. Rewrite it and make it make sense. This is sort of nonsensical.
                    
301	 * @return $this
                    
302	 * @link http://php.net/manual/en/timezones.php A directory of valid timezones
                    
303	 * @access public
                    
315	 * @return string The formatted timezone
                    
316	 * @link http://php.net/manual/en/timezones.php A directory of valid timezones
                    
317	 * @access public
                    
                
atlres.h https://gitlab.com/quyse/crashfix | C Header | 263 lines
                    
5// The use and distribution terms for this software are covered by the
                    
6// Common Public License 1.0 (http://opensource.org/licenses/cpl1.0.php)
                    
7// which can be found in the file CPL.TXT at the root of this distribution.
                    
93
                    
94  #define ATL_IDW_SIZE_BOX              0xEA20  // size box for splitters
                    
95  #define ATL_IDW_PANE_SAVE             0xEA21  // to shift ATL_IDW_PANE_FIRST
                    
159#define ID_WINDOW_TILE_VERT             0xE134
                    
160#define ID_WINDOW_SPLIT                 0xE135
                    
161#ifndef RC_INVOKED      // code only
                    
                
 

Source

Language