code stringlengths 1 2.01M | language stringclasses 1
value |
|---|---|
<?php
require_once 'restclient/RestClient.php';
require_once 'controllers/RestResponseInstrumenter.php';
class RestExplorerController {
private $BASE_REST_URL_PREFIX = '/services';
private $DEFAULT_REQUEST_HEADERS = "Content-Type: application/json; charset=UTF-8\nAccept: application/json";
public $pageS... | PHP |
<?php
require_once 'restclient/RestClient.php';
class StreamingController {
private $restBaseUrl;
private $restApi;
private $selectedTopic;
private $pushTopics;
private $infos;
private $errors;
private $enabled;
private $isAjax;
function __construct() {
$this->restApi = Wo... | PHP |
<?php
class LoginController {
private $errors;
private $loginType;
private $username;
private $userRemembered;
private $subdomain;
private $apiVersion;
private $startUrl;
private $oauthEnabled;
private $oauthRequired;
private $termsRequired;
private $termsFile;
functio... | PHP |
<?php
require_once 'restclient/RestClient.php';
require_once 'controllers/RestExplorerController.php';
require_once 'async/RestExplorerFutureTask.php';
require_once 'session.php';
require_once 'shared.php';
if(!isset($_SESSION['restExplorerController']) || isset($_GET['reset'])) {
$_SESSION['restExplorerController... | PHP |
<?php
include_once 'shared.php';
?>
</div>
<div id='disclaimer'><br />
<?php
if (WorkbenchConfig::get()->value("checkSSL") && !usingSslEndToEnd()) {
print "<div style='font-size: 8pt; color: orange;'>WARNING: Unsecure connection detected</div>";
}
if (WorkbenchContext::isEstablished() && WorkbenchContext::get()-... | PHP |
<?php
require_once 'session.php';
require_once 'shared.php';
require_once 'header.php';
print "<p/>";
if (!WorkbenchContext::get()->isApiVersionAtLeast(10.0)) {
displayError("Metadata API not supported prior to version 10.0", false, true);
exit;
}
require_once 'soapclient/SforceMetadataClient.php';
try {
... | PHP |
<?php
require_once 'session.php';
require_once 'shared.php';
?>
OK | PHP |
<?php
require_once 'shared.php';
require_once 'config/constants.php';
require_once 'config/WorkbenchConfig.php';
require_once 'context/WorkbenchContext.php';
require_once 'soxl/QueryObjects.php';
foreach (scandir('async') as $f) {
if ($f == "." || $f == "..") continue;
require_once "async/$f";
}
// block direc... | PHP |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="Content-Language" content="UTF-8" />
<meta http-equiv="Content-Type" content="text/xhtml; charset=UTF-8" />
<link rel="Shortcut Icon" type="image/png... | PHP |
<?php
require_once 'session.php';
require_once 'shared.php';
require_once 'put.php';
put('undelete');
?>
| PHP |
<?php
require_once "shared.php";
require_once "session.php";
require_once "controllers/LoginController.php";
$c = new LoginController();
if (isset($_POST['uiLogin'])
|| !empty($_REQUEST["pw"])
|| !empty($_REQUEST["sid"])
|| isset($_POST["oauth_Login"])
|| isset($_GET["code"])
|| isset($_POST["signe... | PHP |
<?php
require_once 'session.php';
require_once 'shared.php';
require_once 'header.php';
require_once 'soapclient/SforceApexClient.php';
require_once 'async/ApexExecuteFutureTask.php';
//correction for dynamic magic quotes
if (isset($_POST['scriptInput']) && get_magic_quotes_gpc()) {
$_POST['scriptInput'] = stripsl... | PHP |
<?php
require_once 'session.php';
require_once 'shared.php';
if (isset($_GET['ajaxBurn'])) {
$numToBurn = $_GET['ajaxBurn'];
$burnt = 0;
$burnErrors = array();
for ($b = 0; $b < $numToBurn; $b++) {
try {
WorkbenchContext::get()->getPartnerConnection()->getServerTimestamp();
... | PHP |
<?php
require_once 'JobInfo.php';
require_once 'BatchInfo.php';
/**
* PHP BULK API CLIENT 25.0.0
* @author Ryan Brainard
*
* BulkApiClient.php
* Main client for interacting with the REST-based Force.com Bulk API 25.0
* to asynchronously insert, update, and upsert data to Salesforce.
* Requires PHP cURL library ... | PHP |
<?php
/**
* PHP BULK API CLIENT 25.0.0
* @author Ryan Brainard
*
* JobInfo.php
* Represents a Force.com Bulk API JobInfo object.
*
* For reference, see:
* http://www.salesforce.com/us/developer/docs/api_asynch/Content/asynch_api_reference_jobinfo.htm
*
*
* This client is NOT a supported product of or suppor... | PHP |
<?php
/**
* PHP BULK API CLIENT 25.0.0
* @author Ryan Brainard
*
* BatchInfo.php
* Represents a Force.com Bulk API BatchInfo object.
*
* For reference, see:
* http://www.salesforce.com/us/developer/docs/api_asynch/Content/asynch_api_reference_batchinfo.htm
*
*
* This client is NOT a supported product of or ... | PHP |
<?php
// STEP 1: OBTAIN SESSION ID AND ENDPOINT FROM PARTNER API. REPLACE WITH YOUR ENDPOINT AND SESSION ID.
// For demo purposes, these can just be GET parameters on this page, but should be
// obtained from the login() call using the Force.com Partner API with a username and password.
// In PHP, it is recommended to ... | PHP |
<?php
// STEP 1: OBTAIN SESSION ID AND ENDPOINT FROM PARTNER API. REPLACE WITH YOUR ENDPOINT AND SESSION ID.
// For demo purposes, these can just be GET parameters on this page, but should be
// obtained from the login() call using the Force.com Partner API with a username and password.
// In PHP, it is recommended to ... | PHP |
<!DOCTYPE unspecified PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<style type="text/css">
* {
font-family: sans-serif;
}
p {
font-size: smaller;
}
... | PHP |
<?php
// STEP 1: OBTAIN SESSION ID AND ENDPOINT FROM PARTNER API. REPLACE WITH YOUR ENDPOINT AND SESSION ID.
// For demo purposes, these can just be GET parameters on this page, but should be
// obtained from the login() call using the Force.com Partner API with a username and password.
// In PHP, it is recommended to ... | PHP |
<?php
// STEP 1: OBTAIN SESSION ID AND ENDPOINT FROM PARTNER API. REPLACE WITH YOUR ENDPOINT AND SESSION ID.
// For demo purposes, these can just be GET parameters on this page, but should be
// obtained from the login() call using the Force.com Partner API with a username and password.
// In PHP, it is recommended to ... | PHP |
<?php
// STEP 1: OBTAIN SESSION ID AND ENDPOINT FROM PARTNER API. REPLACE WITH YOUR ENDPOINT AND SESSION ID.
// For demo purposes, these can just be GET parameters on this page, but should be
// obtained from the login() call using the Force.com Partner API with a username and password.
// In PHP, it is recommended to ... | PHP |
<?php
require_once "context/AbstractSoapConnectionProvider.php";
require_once 'soapclient/SforceApexClient.php';
class ApexConnectionProvider extends AbstractSoapConnectionProvider {
function establish(ConnectionConfiguration $connConfig) {
return new SforceApexClient($connConfig->getSessionId(),
... | PHP |
<?php
require_once 'ConnectionConfiguration.php';
require_once 'PartnerConnectionProvider.php';
require_once 'MetadataConnectionProvider.php';
require_once 'ApexConnectionProvider.php';
require_once 'AsyncBulkConnectionProvider.php';
require_once 'RestDataConnectionProvider.php';
require_once 'SfdcVersionsProvider.php'... | PHP |
<?php
require_once 'CacheableValueProvider.php';
class DescribeSObjectsProvider extends CacheableValueProvider {
public $cache;
public function __construct($cacheKey) {
parent::__construct($cacheKey);
$this->cache =& $this->getCacheLocation();
$this->cache = array();
}
public... | PHP |
<?php
require_once "context/AbstractConnectionProvider.php";
require_once "restclient/RestClient.php";
class RestDataConnectionProvider extends AbstractConnectionProvider {
function establish(ConnectionConfiguration $connConfig) {
$restConnection = new RestApiClient($this->buildEndpoint($connConfig), $conn... | PHP |
<?php
require_once 'context/CacheableValueProvider.php';
class CurrentAppVersionProvider extends CacheableValueProvider {
function isCachingEnabled() {
return true;
}
function load($args) {
$versionsResponse = WorkbenchContext::get()->getRestDataConnection()->send("GET", "/services/data",... | PHP |
<?php
require_once 'context/CacheableValueProvider.php';
class UserInfoProvider extends CacheableValueProvider {
function isCachingEnabled() {
return WorkbenchConfig::get()->value('cacheGetUserInfo');
}
function load($args) {
return WorkbenchContext::get()->getPartnerConnection()->getUser... | PHP |
<?php
abstract class CacheableValueProvider {
private $cacheKey;
private $serializableCache;
public function __construct($cacheKey) {
$this->cacheKey = $cacheKey;
}
public function &get($args) {
if ($this->isCachingEnabled()) {
if ($this->isCached($args)) {
... | PHP |
<?php
require_once "context/AbstractConnectionProvider.php";
require_once "bulkclient/BulkApiClient.php";
class AsyncBulkConnectionProvider extends AbstractConnectionProvider {
function establish(ConnectionConfiguration $connConfig) {
$asyncConnection = new BulkApiClient($this->buildEndpoint($connConfig), ... | PHP |
<?php
require_once "context/AbstractConnectionProvider.php";
abstract class AbstractSoapConnectionProvider extends AbstractConnectionProvider {
protected function buildEndpoint(ConnectionConfiguration $connConfig) {
return parent::buildEndpoint($connConfig) .
($connConfig->getSessionId() !=... | PHP |
<?php
class ConnectionConfiguration {
private $sessionId;
private $isSecure;
private $host;
private $apiVersion;
private $overriddenClientId;
function __construct($sessionId, $isSecure, $host, $apiVersion, $overriddenClientId) {
$this->sessionId = crypto_serialize($sessionId);
... | PHP |
<?php
require_once "context/AbstractSoapConnectionProvider.php";
require_once 'soapclient/SforceMetadataClient.php';
class MetadataConnectionProvider extends AbstractSoapConnectionProvider {
function establish(ConnectionConfiguration $connConfig) {
return new SforceMetadataClient($connConfig->getSessionId(... | PHP |
<?php
require_once "context/AbstractSoapConnectionProvider.php";
require_once "soapclient/SforcePartnerClient.php";
class PartnerConnectionProvider extends AbstractSoapConnectionProvider {
function establish(ConnectionConfiguration $connConfig) {
$connection = new SforcePartnerClient();
$connecti... | PHP |
<?php
require_once 'context/ConnectionConfiguration.php';
require_once 'context/CacheableValueProvider.php';
abstract class AbstractConnectionProvider extends CacheableValueProvider {
final function &getCacheLocation() {
return $_REQUEST[WorkbenchContext::INSTANCE][WorkbenchContext::ALL_CONNECTIONS][$thi... | PHP |
<?php
require_once 'context/CacheableValueProvider.php';
class DescribeGlobalProvider extends CacheableValueProvider {
function isCachingEnabled() {
return WorkbenchConfig::get()->value('cacheDescribeGlobal');
}
function load($args) {
$describeGlobalResponse = WorkbenchContext::get()->get... | PHP |
<?php
class PhpReverseProxy {
public $host, $port, $forceSSL, $forward_path, $is_forward_path_static, $content, $content_type, $user_agent,
$XFF, $request_method, $cookie_whitelist, $proxy_settings;
private $http_code, $resultHeader, $cookie;
function __construct() {
$this->headers = array()... | PHP |
<?php
class ExpandableTree {
private $name;
private $nodes;
private $forceCollapse = false;
private $additionalMenus = null;
private $containsIds = false;
private $containsDates = false;
function __construct($name, $nodes) {
$this->name = $name;
$this->nodes = $nodes;
... | PHP |
<?php
require_once 'session.php';
require_once 'shared.php';
if (!isset($_GET['startUrl'])) {
throw new Exception("startUrl param not set");
}
preg_match("@((https?://)((.*)-api)?(.*))/services@", WorkbenchContext::get()->getPartnerConnection()->getLocation(), $sfdcApiHost);
// [1] => https://na4-api.salesforce.... | PHP |
<?php
require_once "context/WorkbenchContext.php";
require_once "util/PhpReverseProxy.php";
require_once "session.php";
if (!WorkbenchContext::isEstablished()) {
httpError("401 Unauthorized", "CometD Proxy only available if Workbench Context has been established.");
exit;
}
// dereference session-based vars s... | PHP |
<?php
require_once 'session.php';
require_once 'shared.php';
try {
if (!isset($_GET['jobId']) || !isset($_GET['batchId']) || !isset($_GET['op'])) {
throw new Exception("'jobId', 'batchId', and 'op' parameters must be specified");
} else if (!in_array($_GET['op'], array('request', 'result'))) {
... | PHP |
<?php
include_once "session.php";
include_once "shared.php";
include_once "async/futures.php";
session_write_close();
set_exception_handler('handleAllExceptionsNoHeaders');
try {
echo FutureResult::fromId($_REQUEST['async_id'])->get((int) $_REQUEST['wait_for']);
} catch (TimeoutExce... | PHP |
<?php
require_once "session.php";
require_once "shared.php";
require_once "controllers/StreamingController.php";
$c = new StreamingController();
if ($c->isAjax()) {
echo $c->getAjaxResponse();
exit;
}
// begin normal page refresh
require_once "header.php";
?>
<p class="instructions">Subscribe to a Push Topic... | PHP |
<?php
class QueryTest extends PHPUnit_Framework_TestCase {
public $WORKBENCH_HOME = "/Users/ryan/Sites/workbench (trunk)/workbench";
public function testQueryRequest() {
require($this->WORKBENCH_HOME . '/soxl/QueryObjects.php');
$source = array();
$source['QB_object_sel'] = "A... | PHP |
<?php
/**
* Include to output configuration errors.
*
* @author Ryan Boyd <rboyd@google.com>
*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* ... | PHP |
<?php
/**
* Model for storing OAuth credentials used for API requests and interaction
* with the OAuth authorization server.
*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a ... | PHP |
<?php
/**
* Configuration for DrEdit PHP. Developers need to define the OAuth
* and databse configuration in constants.
*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy o... | PHP |
<?php
/**
* Handler for API requests from DrEdit PHP frontend. These requests
* retrieve, save or create files in Google Drive using pre-established
* authorization information stored in the session.
*
* @author Ryan Boyd <rboyd@google.com>
*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache Licens... | PHP |
<?php
/**
* Main entry point for web requests to the DrEdit PHP application. Checks
* authentication and authorization using auth_handler.php, checks configuration
* using check_config.php, and then spawns the output_editor.php to load the web
* interface.
*
* @author Ryan Boyd <rboyd@google.com>
*
* Copyright... | PHP |
<?php
/**
* Outputs DrEdit PHP user interface. Needs OAuth URLs and the values of
* query params in order to setup the UI. These are set as javascript
* vars based on PHP processing.
*
* @author Ryan Boyd <rboyd@google.com>
*
* If the user's picture is set, it is included in the interface to mitigate
* potent... | PHP |
<?php
/**
* Class for accessing the Google Drive API, including retrieving,
* creating and updating files stored in Google Drive.
*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtai... | PHP |
<?php
/**
* Class for handling authentication of the user and authorization
* to access Google Drive.
*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*... | PHP |
<?php
/**
* Include for web requests which ensures that all required configuration
* for DrEdit PHP is complete, including the database and OAuth config.
*
* @author Ryan Boyd <rboyd@google.com>
*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not us... | PHP |
<?php
/*
* Copyright 2011 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | PHP |
<?php
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright 2011 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/**
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | PHP |
<?php
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/**
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | PHP |
<?php
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright (c) 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright (c) 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright (c) 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright (c) 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright (c) 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright (c) 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright (c) 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright (c) 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright (c) 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright (c) 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright (c) 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright (c) 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright (c) 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright (c) 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright (c) 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright (c) 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright (c) 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright (c) 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright (c) 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright (c) 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright (c) 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright (c) 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright (c) 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright 2011 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright 2008 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright 2011 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright 2011 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright 2011 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright 2011 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright 2008 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/**
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | PHP |
<?php
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.