- FICHEIRO: /home/transcin/library/Zend/Validate/Hostname.php
- LINHA: 438
- MENSAGEM: iconv_set_encoding(): Use of iconv.internal_encoding is deprecated
- 434. if ((count($domainParts) > 1) && (strlen($value) >= 4) && (strlen($value) <= 254)) {
- 435. $status = false;
- 436.
- 437. $origenc = iconv_get_encoding('internal_encoding');
- 438. iconv_set_encoding('internal_encoding', 'UTF-8');
- 439. do {
- 440. // First check TLD
- 441. $matches = array();
- 442. if (preg_match('/([^.]{2,10})$/i', end($domainParts), $matches) ||
- 443. (end($domainParts) == 'ایران') || (end($domainParts) == '中国') ||
- FICHEIRO: /home/transcin/library/Zend/Validate/Hostname.php
- LINHA: 438
- 434. if ((count($domainParts) > 1) && (strlen($value) >= 4) && (strlen($value) <= 254)) {
- 435. $status = false;
- 436.
- 437. $origenc = iconv_get_encoding('internal_encoding');
- 438. iconv_set_encoding('internal_encoding', 'UTF-8');
- 439. do {
- 440. // First check TLD
- 441. $matches = array();
- 442. if (preg_match('/([^.]{2,10})$/i', end($domainParts), $matches) ||
- 443. (end($domainParts) == 'ایران') || (end($domainParts) == '中国') ||
- FICHEIRO: /home/transcin/library/Zend/Validate/EmailAddress.php
- LINHA: 201
- 197. }
- 198.
- 199. // Match hostname part
- 200. $hostnameResult = $this->hostnameValidator->setTranslator($this->getTranslator())
- 201. ->isValid($this->_hostname);
- 202. if (!$hostnameResult) {
- 203. $this->_error(self::INVALID_HOSTNAME);
- 204.
- 205. // Get messages and errors from hostnameValidator
- 206. foreach ($this->hostnameValidator->getMessages() as $code => $message) {
- FICHEIRO: /home/transcin/library/Zend/Feed/Builder/Header.php
- LINHA: 251
- 247. * @see Zend_Validate_EmailAddress
- 248. */
- 249. require_once 'Zend/Validate/EmailAddress.php';
- 250. $validate = new Zend_Validate_EmailAddress();
- 251. if (!$validate->isValid($webmaster)) {
- 252. /**
- 253. * @see Zend_Feed_Builder_Exception
- 254. */
- 255. require_once 'Zend/Feed/Builder/Exception.php';
- 256. throw new Zend_Feed_Builder_Exception("you have to set a valid email address into the webmaster property");
- FICHEIRO: /home/transcin/library/Zend/Feed/Builder.php
- LINHA: 244
- 240. if (isset($data['email'])) {
- 241. $this->_header->setEmail($data['email']);
- 242. }
- 243. if (isset($data['webmaster'])) {
- 244. $this->_header->setWebmaster($data['webmaster']);
- 245. }
- 246. if (isset($data['copyright'])) {
- 247. $this->_header->setCopyright($data['copyright']);
- 248. }
- 249. if (isset($data['image'])) {
- FICHEIRO: /home/transcin/library/Zend/Feed/Builder.php
- LINHA: 180
- 176. */
- 177. public function __construct(array $data)
- 178. {
- 179. $this->_data = $data;
- 180. $this->_createHeader($data);
- 181. if (isset($data['entries'])) {
- 182. $this->_createEntries($data['entries']);
- 183. }
- 184. }
- 185.
- FICHEIRO: /home/transcin/library/Zend/Feed.php
- LINHA: 392
- 388. /**
- 389. * @see Zend_Feed_Builder
- 390. */
- 391. require_once 'Zend/Feed/Builder.php';
- 392. return new $obj(null, null, new Zend_Feed_Builder($data));
- 393. }
- 394.
- 395. /**
- 396. * Construct a new Zend_Feed_Abstract object from a Zend_Feed_Builder_Interface data source
- 397. *
- FICHEIRO: /home/transcin/application/Noticias/GenericController.php
- LINHA: 379
- 375. );
- 376. }
- 377. }
- 378. goweb::loadClass('Zend_Feed');
- 379. $feed = Zend_Feed::importArray($channel, $format);
- 380. $feed->send();
- 381. }
- 382.
- 383. /**
- 384. * Resultado da pesquisa
- FICHEIRO: /home/transcin/library/Goweb/Controller/Action.php
- LINHA: 276
- 272. */
- 273. /*if ($this->getInvokeArg('useCaseSensitiveActions')) {
- 274. trigger_error('Using case sensitive actions without word separators is deprecated; please do not rely on this "feature"');
- 275. }*/
- 276. $this->$action();
- 277. } else {
- 278. $this->__call($action, array());
- 279. }
- 280. $this->postDispatch();
- 281. }
- FICHEIRO: /home/transcin/library/Zend/Controller/Dispatcher/Standard.php
- LINHA: 289
- 285. ob_start();
- 286. }
- 287.
- 288. try {
- 289. $controller->dispatch($action);
- 290. } catch (Exception $e) {
- 291. // Clean output buffer on error
- 292. $curObLevel = ob_get_level();
- 293. if ($curObLevel > $obLevel) {
- 294. do {
- FICHEIRO: /home/transcin/library/Zend/Controller/Front.php
- LINHA: 946
- 942. /**
- 943. * Dispatch request
- 944. */
- 945. try {
- 946. $dispatcher->dispatch($this->_request, $this->_response);
- 947. } catch (Exception $e) {
- 948. if ($this->throwExceptions()) {
- 949. throw $e;
- 950. }
- 951. $this->_response->setException($e);
- FICHEIRO: /home/transcin/library/Goweb/Application.php
- LINHA: 428
- 424. }
- 425.
- 426. public function runApp(){
- 427. $frontController = Zend_Controller_Front::getInstance();
- 428. $frontController->dispatch();
- 429. }
- 430. }
- FICHEIRO: /home/transcin/public_html/index.php
- LINHA: 53
- 49. $application->initSession('_FRONT', true);
- 50. $application->initPainel();
- 51. $application->initLanguage(isset($_GET['lang']) ? $_GET['lang'] : null, true, false);
- 52. $application->initLanguageAdmin(isset($_GET['lang']) ? $_GET['lang'] : null, true, true);
- 53. $application->runApp();
- 54.
- 55.
- 56. /**
- 57. * Efectua a traducao de uma string.
- 58. */