code stringlengths 1 2.01M | repo_name stringlengths 3 62 | path stringlengths 1 267 | language stringclasses 231
values | license stringclasses 13
values | size int64 1 2.01M |
|---|---|---|---|---|---|
package graph;
import java.util.*;
public class main {
public static void main(String[] args)
{
function n=new function();
element[] arr = null;
int r = 5;
element [] mas=new element[5];
n.add(mas ,new element(1), null);
n.add(mas ,new element(2), new element (4));
n.add(mas ,new elemen... | 12pi-algs | trunk/AntonPozdeev/Самый наикривейший граф, если это граф, конечно/main.java | Java | mit | 565 |
public class binnarysearch {
public static int binarySearch(int[] a, int key) {
int lo = 0;
int hi = a.length-1;
while (lo <= hi) {
int mid = lo + (hi - lo) / 2;
if (key < a[mid])
hi = mid - 1;
else {
if (key > a[mid])
... | 12pi-algs | trunk/AntonPozdeev/5.binnary_search/binnarysearch.java | Java | mit | 472 |
public class ARR {
public static void Ar(){
int [][] arr = new int[5][5];
for (int i = 0; i < 5; i++)
for (int j=0; j < 5; j++)
arr[i][j] = 0;
for (int i=0; i<5; i++) {
for (int j=0; j<5; j++) {
System.out.print(arr[i][j] + " ");
}
System.out.println();
}
}}
| 12pi-algs | trunk/AntonPozdeev/7.chess/ARR.java | Java | mit | 296 |
import java.util.*;
public class slojenie {
static int length=5;
static int len=length;
public static void sloj(){
int [] arr1 = new int [length];
int [] arr2 = new int [length];
int [] arr3= new int [length + 1];
for(int i=length-1; i>=0; i--){
arr1[i] = (int) (Math.random()*10);
arr... | 12pi-algs | trunk/AntonPozdeev/8.1.сложение столбиком/slojenie.java | Java | mit | 1,528 |
import java.util.*;
public class slojenie {
static int length=10;
static int len=length;
public static void sloj(){
int [] arr1= new int [length];
int [] arr2 = new int [length];
int [] arr3 = new int [length+1];
for(int i=length; i>0; i--){
arr1[length-1] = (int)(Math.random()*9);
... | 12pi-algs | trunk/AntonPozdeev/8.умножение столбиком/slojenie.java | Java | mit | 1,118 |
package graph;
import java.util.*;
public class main {
public static void main(String[] args)
{
function n=new function();
element[] arr = null;
int r = 5;
element [] mas=new element[5];
n.add(mas ,new element(1), null);
n.add(mas ,new element(2), new element (4));
n.add(mas ,new elemen... | 12pi-algs | trunk/AntonPozdeev/16.Самый наикривейший граф, если это граф, конечно/main.java | Java | mit | 565 |
import java.util.Random;
public class QuickSort {
public static int ARRAY_LENGTH = 30;
private static int[] array = new int[ARRAY_LENGTH];
private static Random generator = new Random();
public static void initArray() {
for (int i=0; i<ARRAY_LENGTH; i++) {
array[i] = ge... | 12pi-algs | trunk/DmitryTsykunov/sort_buble+quick+best_buble/QuickSort.java | Java | mit | 1,829 |
package BiTree;
public class elementtree {
public elementtree right;
public elementtree left;
public int key;
public String value;
elementtree(String Value)
{
this.value=Value;
//this.key=Key;
this.key=ConvertToInt32(Value);
}
elementtree(int Value)
{
String buf="";
//this.valu... | 12pi-algs | trunk/DmitryTsykunov/tree/elementtree.java | Java | mit | 862 |
package algorithm;
import java.util.ArrayList;
import java.util.Collections;
public class merge_sort_arraylist {
public static int num = 19;
public static ArrayList<Integer> list = new ArrayList<Integer> (num);
public static void main(String[] args)
{
for (int i = 0; i < num; i++)
... | 12pi-algs | trunk/DmitryTsykunov/merge_sort_simp/merge_sort_arraylist.java | Java | mit | 2,004 |
package Sum_large_num;
import java.util.Random;
public class main {
public static void main(String[] args) {
int num = 6;
int[] array_1=new int[num];
int[] array_2=new int[num];
int[] array_3=new int[num];
Random random = new Random();
for(int i=0;i<num;i++)
{
array_1[i]=... | 12pi-algs | trunk/DmitryTsykunov/sum_large_num/main.java | Java | mit | 721 |
package Horse;
import java.util.Scanner;
public class scan_something {
public static String scanstr(String str)
{
Scanner sc;
sc= new Scanner(System.in);
str=sc.next();
return str;
}
public static int scanint()
{
Scanner sc;
sc= new Scanner(System.in);
int a=sc.nextInt();
ret... | 12pi-algs | trunk/DmitryTsykunov/crawl_horse/scan_something.java | Java | mit | 335 |
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JSeparator;
import javax.swing.JTextField;
import javax.swing.WindowConstants;
/**
* This code was edited or ge... | 1-2-segundaentrega | trunk/Laboratorio/src/DlgInscribir.java | Java | mit | 5,498 |
public enum EstadoEstudiante {
Aprobado, Reprobado, NoAsignado
}
| 1-2-segundaentrega | trunk/Laboratorio/src/EstadoEstudiante.java | Java | mit | 69 |
public interface EvaluadorEstudiante {
public void evaluarEstudiante(Estudiante e);
}
| 1-2-segundaentrega | trunk/Laboratorio/src/EvaluadorEstudiante.java | Java | mit | 90 |
import java.util.*;
import java.io.*;
public class Seccion implements Serializable {
static final long serialVersionUID = 2034476302601696839L;
private TreeMap<String, Estudiante> estudiantes = new TreeMap<String, Estudiante>();
private Profesor profesor = null;
private String numero;
private boolean e... | 1-2-segundaentrega | trunk/Laboratorio/src/Seccion.java | Java | mit | 1,659 |
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JSeparator;
import javax.swing.JTextField;
import javax.swing.WindowConstants;
/**
* This code was edited or gen... | 1-2-segundaentrega | trunk/Laboratorio/src/DlgRetirar.java | Java | mit | 5,450 |
public interface PresentadorEvaluaciones {
public void presentarEvaluaciones();
}
| 1-2-segundaentrega | trunk/Laboratorio/src/PresentadorEvaluaciones.java | Java | mit | 86 |
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JSeparator;
import javax.swing.JTextField;
import javax.swing.WindowConstants;
/**
* This code was edited or gene... | 1-2-segundaentrega | trunk/Laboratorio/src/DlgProfesor.java | Java | mit | 6,104 |
public class Profesor extends Persona implements EvaluadorEstudiante {
static final long serialVersionUID = -1838816915858461L;
private String titulo;
public Profesor(String cedula, String nombre, String apellido, String titulo) {
super(cedula, nombre, apellido);
this.titulo = titulo;
}
public St... | 1-2-segundaentrega | trunk/Laboratorio/src/Profesor.java | Java | mit | 672 |
import java.io.Serializable;
public class Persona implements Serializable {
static final long serialVersionUID = 2633438392859658290L;
private String cedula, nombre, apellido;
public Persona(String cedula, String nombre, String apellido) {
super();
this.cedula = cedula;
this.nombre = nombre;
... | 1-2-segundaentrega | trunk/Laboratorio/src/Persona.java | Java | mit | 747 |
public class Estudiante extends Persona implements PresentadorEvaluaciones {
static final long serialVersionUID = -7855765101016696913L;
private double nota1, nota2, nota3, notaFinal;
EstadoEstudiante estado;
public Estudiante(String cedula, String nombre, String apellido) {
super(cedula, nombre, ape... | 1-2-segundaentrega | trunk/Laboratorio/src/Estudiante.java | Java | mit | 1,298 |
<?php
defined('PROJECT_PATH') || define('PROJECT_PATH', realpath(dirname(__FILE__)));
define('__ROOT__', dirname(dirname(__FILE__)));
/*
*---------------------------------------------------------------
* APPLICATION ENVIRONMENT
*---------------------------------------------------------------
*
* You can load dif... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/index.php | PHP | oos | 6,485 |
<html>
<head>
<title>403 Forbidden</title>
<meta name="robots" content="noindex" />
</head>
<body bgcolor="white">
<center><h1>403 Forbidden</h1></center>
<hr><center>nginx</center>
</body>
</html> | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/data/index.html | HTML | oos | 210 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/core/Output.php | PHP | oos | 12,935 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/core/CodeIgniter.php | PHP | oos | 11,483 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/core/Loader.php | PHP | oos | 30,576 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/core/Config.php | PHP | oos | 8,157 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codeig... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/core/Security.php | PHP | oos | 22,010 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/core/URI.php | PHP | oos | 14,443 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/core/Benchmark.php | PHP | oos | 2,949 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/core/Lang.php | PHP | oos | 3,632 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/core/Input.php | PHP | oos | 18,324 |
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html> | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/core/index.html | HTML | oos | 114 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/core/Exceptions.php | PHP | oos | 4,695 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/core/Router.php | PHP | oos | 12,394 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/core/Common.php | PHP | oos | 13,417 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/core/Controller.php | PHP | oos | 1,567 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/core/Hooks.php | PHP | oos | 4,697 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/core/Model.php | PHP | oos | 1,190 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/core/Utf8.php | PHP | oos | 3,584 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/helpers/directory_helper.php | PHP | oos | 2,062 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/helpers/cookie_helper.php | PHP | oos | 2,591 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/helpers/download_helper.php | PHP | oos | 2,747 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/helpers/text_helper.php | PHP | oos | 13,134 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/helpers/number_helper.php | PHP | oos | 1,859 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/helpers/array_helper.php | PHP | oos | 2,509 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/helpers/html_helper.php | PHP | oos | 8,796 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/helpers/file_helper.php | PHP | oos | 11,384 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/helpers/date_helper.php | PHP | oos | 12,971 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/helpers/string_helper.php | PHP | oos | 6,433 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/helpers/typography_helper.php | PHP | oos | 2,239 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/helpers/inflector_helper.php | PHP | oos | 5,367 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/helpers/xml_helper.php | PHP | oos | 1,788 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/helpers/language_helper.php | PHP | oos | 1,409 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/helpers/security_helper.php | PHP | oos | 2,675 |
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html> | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/helpers/index.html | HTML | oos | 114 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/helpers/path_helper.php | PHP | oos | 1,779 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/helpers/smiley_helper.php | PHP | oos | 6,466 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/helpers/captcha_helper.php | PHP | oos | 6,169 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/helpers/email_helper.php | PHP | oos | 1,483 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/helpers/url_helper.php | PHP | oos | 12,478 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/helpers/form_helper.php | PHP | oos | 21,772 |
<?php
$lang['email_must_be_array'] = "The email validation method must be passed an array.";
$lang['email_invalid_address'] = "Invalid email address: %s";
$lang['email_attachment_missing'] = "Unable to locate the following email attachment: %s";
$lang['email_attachment_unreadable'] = "Unable to open this attachment: %... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/language/english/email_lang.php | PHP | oos | 1,707 |
<?php
$lang['ftp_no_connection'] = "Unable to locate a valid connection ID. Please make sure you are connected before peforming any file routines.";
$lang['ftp_unable_to_connect'] = "Unable to connect to your FTP server using the supplied hostname.";
$lang['ftp_unable_to_login'] = "Unable to login to your FTP serv... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/language/english/ftp_lang.php | PHP | oos | 1,285 |
<?php
$lang['imglib_source_image_required'] = "You must specify a source image in your preferences.";
$lang['imglib_gd_required'] = "The GD image library is required for this feature.";
$lang['imglib_gd_required_for_props'] = "Your server must support the GD image library in order to determine the image properties.";
... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/language/english/imglib_lang.php | PHP | oos | 2,011 |
<?php
$lang['db_invalid_connection_str'] = 'Unable to determine the database settings based on the connection string you submitted.';
$lang['db_unable_to_connect'] = 'Unable to connect to your database server using the provided settings.';
$lang['db_unable_to_select'] = 'Unable to select the specified database: %s';
$... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/language/english/db_lang.php | PHP | oos | 2,273 |
<?php
$lang['ut_test_name'] = 'Test Name';
$lang['ut_test_datatype'] = 'Test Datatype';
$lang['ut_res_datatype'] = 'Expected Datatype';
$lang['ut_result'] = 'Result';
$lang['ut_undefined'] = 'Undefined Test Name';
$lang['ut_file'] = 'File Name';
$lang['ut_line'] = 'Line Number';
$lang['ut_passed'] = 'Passed'... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/language/english/unit_test_lang.php | PHP | oos | 808 |
<?php
$lang['cal_su'] = "Su";
$lang['cal_mo'] = "Mo";
$lang['cal_tu'] = "Tu";
$lang['cal_we'] = "We";
$lang['cal_th'] = "Th";
$lang['cal_fr'] = "Fr";
$lang['cal_sa'] = "Sa";
$lang['cal_sun'] = "Sun";
$lang['cal_mon'] = "Mon";
$lang['cal_tue'] = "Tue";
$lang['cal_wed'] = "Wed";
$lang['cal_thu'] = "Th... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/language/english/calendar_lang.php | PHP | oos | 1,437 |
<?php
$lang['migration_none_found'] = "No migrations were found.";
$lang['migration_not_found'] = "This migration could not be found.";
$lang['migration_multiple_version'] = "This are multiple migrations with the same version number: %d.";
$lang['migration_class_doesnt_exist'] = "The migration class \"%s\" could ... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/language/english/migration_lang.php | PHP | oos | 715 |
<?php
$lang['upload_userfile_not_set'] = "Unable to find a post variable called userfile.";
$lang['upload_file_exceeds_limit'] = "The uploaded file exceeds the maximum allowed size in your PHP configuration file.";
$lang['upload_file_exceeds_form_limit'] = "The uploaded file exceeds the maximum size allowed by the sub... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/language/english/upload_lang.php | PHP | oos | 1,619 |
<?php
$lang['profiler_database'] = 'DATABASE';
$lang['profiler_controller_info'] = 'CLASS/METHOD';
$lang['profiler_benchmarks'] = 'BENCHMARKS';
$lang['profiler_queries'] = 'QUERIES';
$lang['profiler_get_data'] = 'GET DATA';
$lang['profiler_post_data'] = 'POST DATA';
$lang['profiler_uri_string'] = 'URI STRING';
$la... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/language/english/profiler_lang.php | PHP | oos | 1,117 |
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html> | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/language/english/index.html | HTML | oos | 114 |
<?php
$lang['date_year'] = "Year";
$lang['date_years'] = "Years";
$lang['date_month'] = "Month";
$lang['date_months'] = "Months";
$lang['date_week'] = "Week";
$lang['date_weeks'] = "Weeks";
$lang['date_day'] = "Day";
$lang['date_days'] = "Days";
$lang['date_hour'] = "Hour";
$lang['date_hours'] = "Hours";
$lang['date_m... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/language/english/date_lang.php | PHP | oos | 3,177 |
<?php
$lang['required'] = "%s không được để trống.";
$lang['isset'] = "The %s field must have a value.";
$lang['valid_email'] = "The %s field must contain a valid email address.";
$lang['valid_emails'] = "The %s field must contain all valid email addresses.";
$lang['valid_url'] = "The %s field must contain a ... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/language/english/form_validation_lang.php | PHP | oos | 1,827 |
<?php
$lang['terabyte_abbr'] = "TB";
$lang['gigabyte_abbr'] = "GB";
$lang['megabyte_abbr'] = "MB";
$lang['kilobyte_abbr'] = "KB";
$lang['bytes'] = "Bytes";
/* End of file number_lang.php */
/* Location: ./system/language/english/number_lang.php */ | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/language/english/number_lang.php | PHP | oos | 249 |
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html> | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/language/index.html | HTML | oos | 114 |
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html> | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/index.html | HTML | oos | 114 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/libraries/Encrypt.php | PHP | oos | 11,522 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/libraries/Ftp.php | PHP | oos | 12,570 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/libraries/Image_lib.php | PHP | oos | 37,341 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/libraries/Calendar.php | PHP | oos | 12,667 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 4.3.2 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://www.... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/libraries/javascript/Jquery.php | PHP | oos | 24,193 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/libraries/Profiler.php | PHP | oos | 19,299 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author EllisLab Dev Team
* @copyright Copyright (c) 2006 - 2012, EllisLab, Inc.
* @license http://codeigniter.c... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/libraries/Driver.php | PHP | oos | 5,415 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/libraries/Pagination.php | PHP | oos | 9,086 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/libraries/Form_validation.php | PHP | oos | 29,594 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/libraries/Zip.php | PHP | oos | 10,164 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/libraries/Xmlrpcs.php | PHP | oos | 15,552 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/libraries/Unit_test.php | PHP | oos | 8,200 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/libraries/Email.php | PHP | oos | 47,983 |
<?php defined('BASEPATH') OR exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author EllisLab Dev Team
* @copyright Copyright (c) 2006 - 2012, EllisLab, Inc.
* @license http://codeigniter.com/use... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/libraries/Migration.php | PHP | oos | 7,993 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/libraries/User_agent.php | PHP | oos | 10,508 |
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html> | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/libraries/index.html | HTML | oos | 114 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/libraries/Sha1.php | PHP | oos | 4,995 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/libraries/Session.php | PHP | oos | 19,266 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/libraries/Upload.php | PHP | oos | 27,548 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/libraries/Typography.php | PHP | oos | 12,720 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/libraries/Log.php | PHP | oos | 2,696 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/libraries/Pagination_.php | PHP | oos | 9,347 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | 0014006002014-d-s-p-l-n-n-h-a-t-n-v | trunk/system/libraries/Xmlrpc.php | PHP | oos | 33,567 |