copyright add to php files

git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@13186 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
akasima 2013-11-08 05:52:51 +00:00
parent e0879ea45c
commit bce0a0b6d4
373 changed files with 402 additions and 47 deletions

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
if(!defined('FOLLOW_REQUEST_SSL')) define('FOLLOW_REQUEST_SSL',0);
if(!defined('ENFORCE_SSL')) define('ENFORCE_SSL',1);

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
if(!defined('__XE__')) require dirname(__FILE__).'/../../Bootstrap.php';

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class Helper {
static function cleanString($query){
@ -20,4 +21,4 @@
}
?>
?>

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
// Only supports queries inside modules for now
@ -317,4 +318,4 @@
}
?>
?>

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Test class for ConditionWithArgument.

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Test class for Table.

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Test class for Argument.

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Test class for ConditionArgument.

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* @file common/lang/en.lang.php
* @author NAVER (developers@xpressengine.com)
@ -319,4 +320,4 @@ $lang->filter->invalid_number = "The format of %s is invalid. Please input numbe
$lang->security_warning_embed = "Due to security concern, administrators are not allowed to view embedded items.<BR /> To view them, please use another non-administrator ID.";
$lang->msg_pc_to_mobile = '이 페이지는 모바일 보기가 있습니다. 모바일 보기로 이동하시겠습니까?';
?>
?>

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Test class for QueryArgument.

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Test class for ConditionTag.

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Test class for TableTag.
*/
@ -129,4 +130,4 @@
$this->assertEquals("modules", $tag->getTableName());
}
}
}

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Test class for TablesTag.
*/
@ -109,4 +110,4 @@
$this->assertTrue(is_a($tables[0], 'TableTag'));
$this->assertTrue(is_a($tables[1], 'TableTag'));
}
}
}

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
error_reporting(E_ALL ^ E_NOTICE);
define('_XE_PATH_', str_replace('tests/classes/db/config/config.inc.php', '', str_replace('\\', '/', __FILE__)));
define('_TEST_PATH_', _XE_PATH_ . 'tests/classes/db/');
@ -59,4 +60,4 @@
require_once(_XE_PATH_.'classes/xml/xmlquery/tags/condition/ConditionTag.class.php');
require_once(_XE_PATH_.'classes/xml/xmlquery/queryargument/QueryArgument.class.php');
require_once(_XE_PATH_.'classes/xml/xmlquery/queryargument/SortQueryArgument.class.php');
?>
?>

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Base class for tests for CUBRID SQL syntax

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Base class for tests for CUBRID SQL syntax

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class DBTest extends PHPUnit_Framework_TestCase {

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class ExpressionParserTest extends PHPUnit_Framework_TestCase {
/* Escape char for:
@ -106,4 +107,4 @@
$this->_test("abs(score) + abs(totalscore)", NULL
, 'abs('.$this->dbLeftEscapeChar.'score'.$this->dbRightEscapeChar.') + abs('.$this->dbLeftEscapeChar.'totalscore'.$this->dbRightEscapeChar.')');
}
}
}

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* @brief Mock database base class
@ -78,4 +79,4 @@
}
}
?>
?>

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Base class for tests for MSSQL SQL syntax

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/*
* To change this template, choose Tools | Templates

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Base class for tests for Mysql SQL syntax

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Base class for tests for Sqlite SQL syntax

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class CubridDeleteTest extends CubridTest {
@ -17,4 +18,4 @@
and "act" = \'tata\'';
$this->_test($xml_file, $argsString, $expected);
}
}
}

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class CubridIndexHintTest extends CubridTest {
var $xmlPath = 'data/';

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class CubridInsertOnlineTest extends CubridOnlineTest {
@ -82,4 +83,4 @@
}
}
}

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class CubridInsertTest extends CubridTest {
@ -124,4 +125,4 @@
$this->_test($xml_file, $argsString, $expected);
}
}
}

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class CubridSelectOnlineTest extends CubridOnlineTest {

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class CubridSelectTest extends CubridTest {
@ -452,4 +453,4 @@
$this->_test($xml_file, $argsString, $expected);
}
}
}

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/*
* To change this template, choose Tools | Templates

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class CubridUpdateTest extends CubridTest {
@ -94,4 +95,4 @@
// $queryTester->test_module_insertModule();
}
}

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class MssqlIndexHintTest extends MssqlTest {
var $xmlPath = 'data/';

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class MssqlSelectOnlineTest extends MssqlOnlineTest {
function test_syndication_getGrantedModule(){
@ -8,4 +9,4 @@
}
}
?>
?>

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class MssqlSelectTest extends MssqlTest {
@ -167,4 +168,4 @@
or [group_srl] = -2)';
$this->_test($xml_file, $argsString, $expected, array(67));
}
}
}

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class MssqlUpdateOnlineTest extends MssqlOnlineTest {
function test_counter_updateCounterUnique(){
@ -9,4 +10,4 @@
}
}
?>
?>

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class MssqlUpdateTest extends MssqlTest {
@ -19,4 +20,4 @@ class MssqlUpdateTest extends MssqlTest {
}
?>
?>

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class MysqlIndexHintTest extends MysqlTest {
var $xmlPath = 'data/';

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* @class MysqlInsertTest

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class MysqlSelectTest extends MysqlTest {

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class MysqlUpdateTest extends MysqlTest {
@ -72,4 +73,4 @@
where `session_key` = \'339321\'';
$this->_test($xml_file, $argsString, $expected);
}
}
}

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class SqliteDeleteTest extends SqliteTest {
@ -14,4 +15,4 @@
$this->_test($xml_file, $argsString, $expected);
}
}
}

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class SqliteUpdateTest extends SqliteTest {
@ -18,4 +19,4 @@
$this->_test($xml_file, $argsString, $expected);
}
}
}

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
if(!defined('__XE__')) require dirname(__FILE__).'/../../Bootstrap.php';

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
if(!defined('__XE__')) require dirname(__FILE__).'/../../Bootstrap.php';

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
if(!defined('__XE__')) require dirname(__FILE__).'/../../Bootstrap.php';

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
if(!defined('__XE__')) require dirname(__FILE__).'/../../Bootstrap.php';

View file

@ -1,4 +1,5 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
if(!defined('__XE__')) require dirname(__FILE__).'/../../Bootstrap.php';
require_once _XE_PATH_.'classes/xml/XmlParser.class.php';