diff --git a/index.html b/index.html index 8f6c89d2a..276a50b45 100644 --- a/index.html +++ b/index.html @@ -1 +1 @@ - + diff --git a/v2.15.5/DOCTUM_VERSION b/v2.15.5/DOCTUM_VERSION new file mode 100644 index 000000000..0413736d6 --- /dev/null +++ b/v2.15.5/DOCTUM_VERSION @@ -0,0 +1 @@ +5.5.4 \ No newline at end of file diff --git a/v2.15.5/Google.html b/v2.15.5/Google.html new file mode 100644 index 000000000..a19c7736d --- /dev/null +++ b/v2.15.5/Google.html @@ -0,0 +1,132 @@ + + + + + + Google | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + +

Namespaces

+ + +

Classes

+
+ +
+ +

Extension to the regular Google\Model that automatically +exposes the items array for iteration, so you can just +iterate over the object rather than a reference inside.

+
+
+
+ Model
+

This class defines attributes, valid values, and usage which is generated +from a given json schema.

+
+
+ +
+
+
+ + +

Exceptions

+
+
+ +
+
+
+
+
+ + + diff --git a/v2.15.5/Google/AccessToken.html b/v2.15.5/Google/AccessToken.html new file mode 100644 index 000000000..88fbf12a6 --- /dev/null +++ b/v2.15.5/Google/AccessToken.html @@ -0,0 +1,108 @@ + + + + + + Google\AccessToken | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

Classes

+
+
+
+ Revoke
+

Wrapper around Google Access Tokens which provides convenience functions

+
+
+
+ Verify
+

Wrapper around Google Access Tokens which provides convenience functions

+
+
+ + + +
+
+ + + diff --git a/v2.15.5/Google/AccessToken/Revoke.html b/v2.15.5/Google/AccessToken/Revoke.html new file mode 100644 index 000000000..b44cb940a --- /dev/null +++ b/v2.15.5/Google/AccessToken/Revoke.html @@ -0,0 +1,218 @@ + + + + + + Google\AccessToken\Revoke | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + Revoke (View source) +

+ + + + + +
+

Wrapper around Google Access Tokens which provides convenience functions

+ + + + +

Methods

+ +
+
+
+ +
+
+ __construct(ClientInterface $http = null) + +

Instantiates the class, but does not initiate the login flow, leaving it +to the discretion of the caller.

+
+
+
+
+ bool +
+
+ revokeToken(string|array $token) + +

Revoke an OAuth2 access token or refresh token. This method will revoke the current access +token, if a token isn't provided.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(ClientInterface $http = null) + +

+
+ + + +
+

Instantiates the class, but does not initiate the login flow, leaving it +to the discretion of the caller.

+
+
+

Parameters

+ + + + + + + +
ClientInterface$http
+ + + + + +
+
+ +
+
+

+ + bool + revokeToken(string|array $token) + +

+
+ + + +
+

Revoke an OAuth2 access token or refresh token. This method will revoke the current access +token, if a token isn't provided.

+
+
+

Parameters

+ + + + + + + +
string|array$token

The token (access token or a refresh token) that should be revoked.

+ + +

Return Value

+ + + + + + +
bool

Returns True if the revocation was successful, otherwise False.

+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v2.15.5/Google/AccessToken/Verify.html b/v2.15.5/Google/AccessToken/Verify.html new file mode 100644 index 000000000..bc63b7881 --- /dev/null +++ b/v2.15.5/Google/AccessToken/Verify.html @@ -0,0 +1,277 @@ + + + + + + Google\AccessToken\Verify | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + Verify (View source) +

+ + + + + +
+

Wrapper around Google Access Tokens which provides convenience functions

+ + +

Constants

+ + + + + + + + + + + + +
+ FEDERATED_SIGNON_CERT_URL + +

+

+
+ OAUTH2_ISSUER + +

+

+
+ OAUTH2_ISSUER_HTTPS + +

+

+
+ + +

Properties

+ + + + + + + + +
+ JWT + + $jwt
+ + +

Methods

+ +
+
+
+ +
+
+ __construct(ClientInterface $http = null, CacheItemPoolInterface $cache = null, $jwt = null) + +

Instantiates the class, but does not initiate the login flow, leaving it +to the discretion of the caller.

+
+
+
+
+ array|false +
+
+ verifyIdToken(string $idToken, string $audience = null) + +

Verifies an id token and returns the authenticated apiLoginTicket.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(ClientInterface $http = null, CacheItemPoolInterface $cache = null, $jwt = null) + +

+
+ + + +
+

Instantiates the class, but does not initiate the login flow, leaving it +to the discretion of the caller.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
ClientInterface$http
CacheItemPoolInterface$cache
$jwt
+ + + + + +
+
+ +
+
+

+ + array|false + verifyIdToken(string $idToken, string $audience = null) + +

+
+ + + +
+

Verifies an id token and returns the authenticated apiLoginTicket.

Throws an exception if the id token is not valid. +The audience parameter can be used to control which id tokens are +accepted. By default, the id token must have been issued to this OAuth2 client.

+
+
+

Parameters

+ + + + + + + + + + + + +
string$idToken

the ID token in JWT format

string$audience

Optional. The audience to verify against JWt "aud"

+ + +

Return Value

+ + + + + + +
array|false

the token payload, if successful

+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v2.15.5/Google/AuthHandler.html b/v2.15.5/Google/AuthHandler.html new file mode 100644 index 000000000..a7feed35e --- /dev/null +++ b/v2.15.5/Google/AuthHandler.html @@ -0,0 +1,113 @@ + + + + + + Google\AuthHandler | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

Classes

+
+ +
+ +

This supports Guzzle 6

+
+
+ +

This supports Guzzle 7

+
+
+ + + +
+
+ + + diff --git a/v2.15.5/Google/AuthHandler/AuthHandlerFactory.html b/v2.15.5/Google/AuthHandler/AuthHandlerFactory.html new file mode 100644 index 000000000..ac76dc0e2 --- /dev/null +++ b/v2.15.5/Google/AuthHandler/AuthHandlerFactory.html @@ -0,0 +1,183 @@ + + + + + + Google\AuthHandler\AuthHandlerFactory | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + AuthHandlerFactory (View source) +

+ + + + + + + + + +

Methods

+ +
+
+ +
+ build($cache = null, array $cacheConfig = []) + +

Builds out a default http handler for the installed version of guzzle.

+
+
+
+ + +

Details

+ +
+
+

+ + static Guzzle6AuthHandler|Guzzle7AuthHandler + build($cache = null, array $cacheConfig = []) + +

+
+ + + +
+

Builds out a default http handler for the installed version of guzzle.

+
+
+

Parameters

+ + + + + + + + + + + + +
$cache
array$cacheConfig
+ + +

Return Value

+ + + + + + +
Guzzle6AuthHandler|Guzzle7AuthHandler
+ + +

Exceptions

+ + + + + + +
Exception
+ + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v2.15.5/Google/AuthHandler/Guzzle6AuthHandler.html b/v2.15.5/Google/AuthHandler/Guzzle6AuthHandler.html new file mode 100644 index 000000000..c02f26232 --- /dev/null +++ b/v2.15.5/Google/AuthHandler/Guzzle6AuthHandler.html @@ -0,0 +1,407 @@ + + + + + + Google\AuthHandler\Guzzle6AuthHandler | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + Guzzle6AuthHandler (View source) +

+ + + + + +
+

This supports Guzzle 6

+ + + +

Properties

+ + + + + + + + + + + + + + +
+ protected + + $cache
+ protected + + $cacheConfig
+ + +

Methods

+ +
+
+
+ +
+
+ __construct(CacheItemPoolInterface $cache = null, array $cacheConfig = []) + +

No description

+
+
+
+
+
+ +
+
+ attachCredentials(ClientInterface $http, CredentialsLoader $credentials, callable $tokenCallback = null) + +

No description

+
+
+
+
+
+ +
+
+ attachCredentialsCache(ClientInterface $http, FetchAuthTokenCache $credentials, callable $tokenCallback = null) + +

No description

+
+
+
+
+
+ +
+
+ attachToken(ClientInterface $http, array $token, array $scopes) + +

No description

+
+
+
+
+
+ +
+
+ attachKey(ClientInterface $http, $key) + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(CacheItemPoolInterface $cache = null, array $cacheConfig = []) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
CacheItemPoolInterface$cache
array$cacheConfig
+ + + + + +
+
+ +
+
+

+ + + attachCredentials(ClientInterface $http, CredentialsLoader $credentials, callable $tokenCallback = null) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
ClientInterface$http
CredentialsLoader$credentials
callable$tokenCallback
+ + + + + +
+
+ +
+
+

+ + + attachCredentialsCache(ClientInterface $http, FetchAuthTokenCache $credentials, callable $tokenCallback = null) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
ClientInterface$http
FetchAuthTokenCache$credentials
callable$tokenCallback
+ + + + + +
+
+ +
+
+

+ + + attachToken(ClientInterface $http, array $token, array $scopes) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
ClientInterface$http
array$token
array$scopes
+ + + + + +
+
+ +
+
+

+ + + attachKey(ClientInterface $http, $key) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
ClientInterface$http
$key
+ + + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v2.15.5/Google/AuthHandler/Guzzle7AuthHandler.html b/v2.15.5/Google/AuthHandler/Guzzle7AuthHandler.html new file mode 100644 index 000000000..a3952ae3d --- /dev/null +++ b/v2.15.5/Google/AuthHandler/Guzzle7AuthHandler.html @@ -0,0 +1,419 @@ + + + + + + Google\AuthHandler\Guzzle7AuthHandler | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + Guzzle7AuthHandler extends Guzzle6AuthHandler (View source) +

+ + + + + +
+

This supports Guzzle 7

+ + + +

Properties

+ + + + + + + + + + + + + + +
+ protected + + $cachefrom  +Guzzle6AuthHandler
+ protected + + $cacheConfigfrom  +Guzzle6AuthHandler
+ + +

Methods

+ +
+
+
+ +
+
+ __construct(CacheItemPoolInterface $cache = null, array $cacheConfig = []) + +

No description

+
+ +
+
+
+ +
+
+ attachCredentials(ClientInterface $http, CredentialsLoader $credentials, callable $tokenCallback = null) + +

No description

+
+ +
+
+
+ +
+
+ attachCredentialsCache(ClientInterface $http, FetchAuthTokenCache $credentials, callable $tokenCallback = null) + +

No description

+
+ +
+
+
+ +
+
+ attachToken(ClientInterface $http, array $token, array $scopes) + +

No description

+
+ +
+
+
+ +
+
+ attachKey(ClientInterface $http, $key) + +

No description

+
+ +
+
+ + +

Details

+ +
+
+

+ + + __construct(CacheItemPoolInterface $cache = null, array $cacheConfig = []) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
CacheItemPoolInterface$cache
array$cacheConfig
+ + + + + +
+
+ +
+
+

+ + + attachCredentials(ClientInterface $http, CredentialsLoader $credentials, callable $tokenCallback = null) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
ClientInterface$http
CredentialsLoader$credentials
callable$tokenCallback
+ + + + + +
+
+ +
+
+

+ + + attachCredentialsCache(ClientInterface $http, FetchAuthTokenCache $credentials, callable $tokenCallback = null) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
ClientInterface$http
FetchAuthTokenCache$credentials
callable$tokenCallback
+ + + + + +
+
+ +
+
+

+ + + attachToken(ClientInterface $http, array $token, array $scopes) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
ClientInterface$http
array$token
array$scopes
+ + + + + +
+
+ +
+
+

+ + + attachKey(ClientInterface $http, $key) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
ClientInterface$http
$key
+ + + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v2.15.5/Google/Client.html b/v2.15.5/Google/Client.html new file mode 100644 index 000000000..9948fde84 --- /dev/null +++ b/v2.15.5/Google/Client.html @@ -0,0 +1,3349 @@ + + + + + + Google\Client | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + Client (View source) +

+ + + + + + + + +

Constants

+ + + + + + + + + + + + + + + + + + + + + + + + +
+ LIBVER + +

+

+
+ USER_AGENT_SUFFIX + +

+

+
+ OAUTH2_REVOKE_URI + +

+

+
+ OAUTH2_TOKEN_URI + +

+

+
+ OAUTH2_AUTH_URL + +

+

+
+ API_BASE_PATH + +

+

+
+ + +

Properties

+ + + + + + + + +
+ protected array + + $requestedScopes
+ + +

Methods

+ +
+
+
+ +
+
+ __construct(array $config = []) + +

Construct the Google Client.

+
+
+
+
+ string +
+
+ getLibraryVersion() + +

Get a string containing the version of the library.

+
+
+
+
+ array +
+
+ authenticate(string $code) + deprecated +

For backwards compatibility +alias for fetchAccessTokenWithAuthCode

+
+
+
+
+ array +
+
+ fetchAccessTokenWithAuthCode(string $code, string $codeVerifier = null) + +

Attempt to exchange a code for an valid authentication token.

+
+
+
+
+ array +
+
+ refreshTokenWithAssertion() + deprecated +

For backwards compatibility +alias for fetchAccessTokenWithAssertion

+
+
+
+
+ array +
+
+ fetchAccessTokenWithAssertion(ClientInterface $authHttp = null) + +

Fetches a fresh access token with a given assertion token.

+
+
+
+
+ array +
+
+ refreshToken(string $refreshToken) + +

For backwards compatibility +alias for fetchAccessTokenWithRefreshToken

+
+
+
+
+ array +
+
+ fetchAccessTokenWithRefreshToken(string $refreshToken = null) + +

Fetches a fresh OAuth 2.0 access token with the given refresh token.

+
+
+
+
+ string +
+
+ createAuthUrl(string|array $scope = null, array $queryParams = []) + +

Create a URL to obtain user authorization.

+
+
+
+
+ ClientInterface +
+
+ authorize(ClientInterface $http = null) + +

Adds auth listeners to the HTTP client based on the credentials +set in the Google API Client object

+
+
+
+
+ +
+
+ useApplicationDefaultCredentials(bool $useAppCreds = true) + +

Set the configuration to use application default credentials for +authentication

+
+
+
+
+ +
+
+ isUsingApplicationDefaultCredentials() + +

To prevent useApplicationDefaultCredentials from inappropriately being +called in a conditional

+
+
+
+
+ +
+
+ setAccessToken(string|array $token) + +

Set the access token used for requests.

+
+
+
+
+ +
+
+ getAccessToken() + +

No description

+
+
+
+
+
+ string|null +
+
+ getRefreshToken() + +

No description

+
+
+
+
+
+ bool +
+
+ isAccessTokenExpired() + +

Returns if the access_token is expired.

+
+
+
+
+ +
+
+ getAuth() + deprecated +

No description

+
+
+
+
+
+ +
+
+ setAuth($auth) + deprecated +

No description

+
+
+
+
+
+ +
+
+ setClientId(string $clientId) + +

Set the OAuth 2.0 Client ID.

+
+
+
+
+ +
+
+ getClientId() + +

No description

+
+
+
+
+
+ +
+
+ setClientSecret(string $clientSecret) + +

Set the OAuth 2.0 Client Secret.

+
+
+
+
+ +
+
+ getClientSecret() + +

No description

+
+
+
+
+
+ +
+
+ setRedirectUri(string $redirectUri) + +

Set the OAuth 2.0 Redirect URI.

+
+
+
+
+ +
+
+ getRedirectUri() + +

No description

+
+
+
+
+
+ +
+
+ setState(string $state) + +

Set OAuth 2.0 "state" parameter to achieve per-request customization.

+
+
+
+
+ +
+
+ setAccessType(string $accessType) + +

No description

+
+
+
+
+
+ +
+
+ setApprovalPrompt(string $approvalPrompt) + +

No description

+
+
+
+
+
+ +
+
+ setLoginHint(string $loginHint) + +

Set the login hint, email address or sub id.

+
+
+
+
+ +
+
+ setApplicationName(string $applicationName) + +

Set the application name, this is included in the User-Agent HTTP header.

+
+
+
+
+ +
+
+ setRequestVisibleActions(array $requestVisibleActions) + +

If 'plus.login' is included in the list of requested scopes, you can use +this method to define types of app activities that your app will write.

+
+
+
+
+ +
+
+ setDeveloperKey(string $developerKey) + +

Set the developer key to use, these are obtained through the API Console.

+
+
+
+
+ +
+
+ setHostedDomain(string $hd) + +

Set the hd (hosted domain) parameter streamlines the login process for +Google Apps hosted accounts. By including the domain of the user, you +restrict sign-in to accounts at that domain.

+
+
+
+
+ +
+
+ setPrompt(string $prompt) + +

Set the prompt hint. Valid values are none, consent and select_account.

+
+
+
+
+ +
+
+ setOpenidRealm(string $realm) + +

openid.realm is a parameter from the OpenID 2.0 protocol, not from OAuth +2.0. It is used in OpenID 2.0 requests to signify the URL-space for which +an authentication request is valid.

+
+
+
+
+ +
+
+ setIncludeGrantedScopes(bool $include) + +

If this is provided with the value true, and the authorization request is +granted, the authorization will include any previous authorizations +granted to this user/application combination for other scopes.

+
+
+
+
+ +
+
+ setTokenCallback(callable $tokenCallback) + +

sets function to be called when an access token is fetched

+
+
+
+
+ bool +
+
+ revokeToken(string|array|null $token = null) + +

Revoke an OAuth2 access token or refresh token. This method will revoke the current access +token, if a token isn't provided.

+
+
+
+
+ array|false +
+
+ verifyIdToken(string|null $idToken = null) + +

Verify an id_token. This method will verify the current id_token, if one +isn't provided.

+
+
+
+
+ +
+
+ setScopes($scope_or_scopes) + +

Set the scopes to be requested. Must be called before createAuthUrl().

+
+
+
+
+ +
+
+ addScope(string|string[] $scope_or_scopes) + +

This functions adds a scope to be requested as part of the OAuth2.0 flow.

+
+
+
+
+ array +
+
+ getScopes() + +

Returns the list of scopes requested by the client

+
+
+
+
+ string|null +
+
+ prepareScopes() + +

No description

+
+
+
+
+
+ mixed|T|ResponseInterface +
+
+ execute(RequestInterface $request, T>|false|null $expectedClass = null) + +

Helper method to execute deferred HTTP requests.

+
+
+
+
+ +
+
+ setUseBatch(bool $useBatch) + +

Declare whether batch calls should be used. This may increase throughput +by making multiple requests in one connection.

+
+
+
+
+ +
+
+ isAppEngine() + +

Are we running in Google AppEngine? +return bool

+
+
+
+
+ +
+
+ setConfig($name, $value) + +

No description

+
+
+
+
+
+ +
+
+ getConfig($name, $default = null) + +

No description

+
+
+
+
+
+ +
+
+ setAuthConfigFile(string $file) + deprecated +

For backwards compatibility +alias for setAuthConfig

+
+
+
+
+ +
+
+ setAuthConfig(string|array $config) + +

Set the auth config from new or deprecated JSON config.

+
+
+
+
+ +
+
+ setSubject(string $subject) + +

Use when the service account has been delegated domain wide access.

+
+
+
+
+ +
+
+ setDefer(bool $defer) + +

Declare whether making API calls should make the call immediately, or +return a request which can be called with ->execute();

+
+
+
+
+ bool +
+
+ shouldDefer() + +

Whether or not to return raw requests

+
+
+
+
+ OAuth2 +
+
+ getOAuth2Service() + +

No description

+
+
+
+
+
+ +
+
+ createOAuth2Service() + +

create a default google auth object

+
+
+
+
+ +
+
+ setCache(CacheItemPoolInterface $cache) + +

Set the Cache object

+
+
+
+
+ CacheItemPoolInterface +
+
+ getCache() + +

No description

+
+
+
+
+
+ +
+
+ setCacheConfig(array $cacheConfig) + +

No description

+
+
+
+
+
+ +
+
+ setLogger(LoggerInterface $logger) + +

Set the Logger object

+
+
+
+
+ LoggerInterface +
+
+ getLogger() + +

No description

+
+
+
+
+
+ +
+
+ createDefaultLogger() + +

No description

+
+
+
+
+
+ +
+
+ createDefaultCache() + +

No description

+
+
+
+
+
+ +
+
+ setHttpClient(ClientInterface $http) + +

Set the Http Client object

+
+
+
+
+ ClientInterface +
+
+ getHttpClient() + +

No description

+
+
+
+
+
+ +
+
+ setApiFormatV2(bool $value) + +

Set the API format version.

+
+
+
+
+ +
+
+ createDefaultHttpClient() + +

No description

+
+
+
+
+
+ +
+
+ getAuthHandler() + +

No description

+
+
+
+
+
+ +
+
+ getUniverseDomain() + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(array $config = []) + +

+
+ + + +
+

Construct the Google Client.

+
+
+

Parameters

+ + + + + + + +
array$config

{ +An array of required and optional arguments.

+
@type string $application_name
+      The name of your application
+@type string $base_path
+      The base URL for the service. This is only accounted for when calling
+      {[\Google\Client::authorize()}](../Google/Client.html) directly.
+@type string $client_id
+      Your Google Cloud client ID found in https://developers.google.com/console
+@type string $client_secret
+      Your Google Cloud client secret found in https://developers.google.com/console
+@type string|array|CredentialsLoader $credentials
+      Can be a path to JSON credentials or an array representing those
+      credentials ([Google\Client::setAuthConfig),](../Google/Client.html) or an instance of
+      {\Google\Auth\CredentialsLoader}.
+@type string|array $scopes
+      {\Google\Google\Client::setScopes}
+@type string $quota_project
+      Sets X-Goog-User-Project, which specifies a user project to bill
+      for access charges associated with the request.
+@type string $redirect_uri
+@type string $state
+@type string $developer_key
+      Simple API access key, also from the API console. Ensure you get
+      a Server key, and not a Browser key.
+      **NOTE:** The universe domain is assumed to be "googleapis.com" unless
+      explicitly set. When setting an API ley directly via this option, there
+      is no way to verify the universe domain. Be sure to set the
+      "universe_domain" option if "googleapis.com" is not intended.
+@type bool $use_application_default_credentials
+      For use with Google Cloud Platform
+      fetch the ApplicationDefaultCredentials, if applicable
+      {https://developers.google.com/identity/protocols/application-default-credentials}
+@type string $signing_key
+@type string $signing_algorithm
+@type string $subject
+@type string $hd
+@type string $prompt
+@type string $openid
+@type bool $include_granted_scopes
+@type string $login_hint
+@type string $request_visible_actions
+@type string $access_type
+@type string $approval_prompt
+@type array $retry
+      Task Runner retry configuration
+      {\Google\Task\Runner}
+@type array $retry_map
+@type CacheItemPoolInterface $cache
+      Cache class implementing {\Psr\Cache\CacheItemPoolInterface}. Defaults
+      to {\Google\Auth\Cache\MemoryCacheItemPool}.
+@type array $cache_config
+      Cache config for downstream auth caching.
+@type callable $token_callback
+      Function to be called when an access token is fetched. Follows
+      the signature `function (string $cacheKey, string $accessToken)`.
+@type \Firebase\JWT $jwt
+      Service class used in {[\Google\Client::verifyIdToken()}.](../Google/Client.html) Explicitly
+      pass this in to avoid setting {\Firebase\JWT::$leeway}
+@type bool $api_format_v2
+      Setting api_format_v2 will return more detailed error messages
+      from certain APIs.
+@type string $universe_domain
+      Setting the universe domain will change the default rootUrl of the service.
+      If not set explicitly, the universe domain will be the value provided in the
+

. "GOOGLE_CLOUD_UNIVERSE_DOMAIN" environment variable, or "googleapis.com". +}

+ + + + + +
+
+ +
+
+

+ + string + getLibraryVersion() + +

+
+ + + +
+

Get a string containing the version of the library.

+
+
+ +

Return Value

+ + + + + + +
string
+ + + + +
+
+ +
+
+

+ + array + authenticate(string $code) + deprecated +

+
+

+ deprecated + + + + +

+ + + +
+

For backwards compatibility +alias for fetchAccessTokenWithAuthCode

+
+
+

Parameters

+ + + + + + + +
string$code

string code from accounts.google.com

+ + +

Return Value

+ + + + + + +
array

access token

+ + + + +
+
+ +
+
+

+ + array + fetchAccessTokenWithAuthCode(string $code, string $codeVerifier = null) + +

+
+ + + +
+

Attempt to exchange a code for an valid authentication token.

Helper wrapped around the OAuth 2.0 implementation.

+
+
+

Parameters

+ + + + + + + + + + + + +
string$code

code from accounts.google.com

string$codeVerifier

the code verifier used for PKCE (if applicable)

+ + +

Return Value

+ + + + + + +
array

access token

+ + + + +
+
+ +
+
+

+ + array + refreshTokenWithAssertion() + deprecated +

+
+

+ deprecated + + + + +

+ + + +
+

For backwards compatibility +alias for fetchAccessTokenWithAssertion

+
+
+ +

Return Value

+ + + + + + +
array

access token

+ + + + +
+
+ +
+
+

+ + array + fetchAccessTokenWithAssertion(ClientInterface $authHttp = null) + +

+
+ + + +
+

Fetches a fresh access token with a given assertion token.

+
+
+

Parameters

+ + + + + + + +
ClientInterface$authHttpoptional.
+ + +

Return Value

+ + + + + + +
array

access token

+ + + + +
+
+ +
+
+

+ + array + refreshToken(string $refreshToken) + +

+
+ + + +
+

For backwards compatibility +alias for fetchAccessTokenWithRefreshToken

+
+
+

Parameters

+ + + + + + + +
string$refreshToken
+ + +

Return Value

+ + + + + + +
array

access token

+ + + + +
+
+ +
+
+

+ + array + fetchAccessTokenWithRefreshToken(string $refreshToken = null) + +

+
+ + + +
+

Fetches a fresh OAuth 2.0 access token with the given refresh token.

+
+
+

Parameters

+ + + + + + + +
string$refreshToken
+ + +

Return Value

+ + + + + + +
array

access token

+ + + + +
+
+ +
+
+

+ + string + createAuthUrl(string|array $scope = null, array $queryParams = []) + +

+
+ + + +
+

Create a URL to obtain user authorization.

The authorization endpoint allows the user to first +authenticate, and then grant/deny the access request.

+
+
+

Parameters

+ + + + + + + + + + + + +
string|array$scope

The scope is expressed as an array or list of space-delimited strings.

array$queryParams

Querystring params to add to the authorization URL.

+ + +

Return Value

+ + + + + + +
string
+ + + + +
+
+ +
+
+

+ + ClientInterface + authorize(ClientInterface $http = null) + +

+
+ + + +
+

Adds auth listeners to the HTTP client based on the credentials +set in the Google API Client object

+
+
+

Parameters

+ + + + + + + +
ClientInterface$http

the http client object.

+ + +

Return Value

+ + + + + + +
ClientInterface

the http client object

+ + + + +
+
+ +
+
+

+ + + useApplicationDefaultCredentials(bool $useAppCreds = true) + +

+
+ + + +
+

Set the configuration to use application default credentials for +authentication

+
+
+

Parameters

+ + + + + + + +
bool$useAppCreds
+ + + + +

See also

+ + + + + + +
+ https://developers.google.com/identity/protocols/application-default-credentials +
+ + +
+
+ +
+
+

+ + + isUsingApplicationDefaultCredentials() + +

+
+ + + +
+

To prevent useApplicationDefaultCredentials from inappropriately being +called in a conditional

+
+ +
+ +
+
+

+ + + setAccessToken(string|array $token) + +

+
+ + + +
+

Set the access token used for requests.

Note that at the time requests are sent, tokens are cached. A token will be +cached for each combination of service and authentication scopes. If a +cache pool is not provided, creating a new instance of the client will +allow modification of access tokens. If a persistent cache pool is +provided, in order to change the access token, you must clear the cached +token by calling $client->getCache()->clear(). (Use caution in this case, +as calling clear() will remove all cache items, including any items not +related to Google API PHP Client.)

+

NOTE: The universe domain is assumed to be "googleapis.com" unless +explicitly set. When setting an access token directly via this method, there +is no way to verify the universe domain. Be sure to set the "universe_domain" +option if "googleapis.com" is not intended.

+
+
+

Parameters

+ + + + + + + +
string|array$token
+ + + +

Exceptions

+ + + + + + +
InvalidArgumentException
+ + + +
+
+ +
+
+

+ + + getAccessToken() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + string|null + getRefreshToken() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string|null
+ + + + +
+
+ +
+
+

+ + bool + isAccessTokenExpired() + +

+
+ + + +
+

Returns if the access_token is expired.

+
+
+ +

Return Value

+ + + + + + +
bool

Returns True if the access_token is expired.

+ + + + +
+
+ +
+
+

+ + + getAuth() + deprecated +

+
+

+ deprecated + + See + UPGRADING.md for more information + +

+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + + setAuth($auth) + deprecated +

+
+

+ deprecated + + See + UPGRADING.md for more information + +

+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$auth
+ + + + + +
+
+ +
+
+

+ + + setClientId(string $clientId) + +

+
+ + + +
+

Set the OAuth 2.0 Client ID.

+
+
+

Parameters

+ + + + + + + +
string$clientId
+ + + + + +
+
+ +
+
+

+ + + getClientId() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + + setClientSecret(string $clientSecret) + +

+
+ + + +
+

Set the OAuth 2.0 Client Secret.

+
+
+

Parameters

+ + + + + + + +
string$clientSecret
+ + + + + +
+
+ +
+
+

+ + + getClientSecret() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + + setRedirectUri(string $redirectUri) + +

+
+ + + +
+

Set the OAuth 2.0 Redirect URI.

+
+
+

Parameters

+ + + + + + + +
string$redirectUri
+ + + + + +
+
+ +
+
+

+ + + getRedirectUri() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + + setState(string $state) + +

+
+ + + +
+

Set OAuth 2.0 "state" parameter to achieve per-request customization.

+
+
+

Parameters

+ + + + + + + +
string$state
+ + + + +

See also

+ + + + + + +
+ http://tools.ietf.org/html/draft-ietf-oauth-v2-22#section-3.1.2.2 +
+ + +
+
+ +
+
+

+ + + setAccessType(string $accessType) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
string$accessType

Possible values for access_type include: +{@code "offline"} to request offline access from the user. +{@code "online"} to request online access from the user.

+ + + + + +
+
+ +
+
+

+ + + setApprovalPrompt(string $approvalPrompt) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
string$approvalPrompt

Possible values for approval_prompt include: +{@code "force"} to force the approval UI to appear. +{@code "auto"} to request auto-approval when possible. (This is the default value)

+ + + + + +
+
+ +
+
+

+ + + setLoginHint(string $loginHint) + +

+
+ + + +
+

Set the login hint, email address or sub id.

+
+
+

Parameters

+ + + + + + + +
string$loginHint
+ + + + + +
+
+ +
+
+

+ + + setApplicationName(string $applicationName) + +

+
+ + + +
+

Set the application name, this is included in the User-Agent HTTP header.

+
+
+

Parameters

+ + + + + + + +
string$applicationName
+ + + + + +
+
+ +
+
+

+ + + setRequestVisibleActions(array $requestVisibleActions) + +

+
+ + + +
+

If 'plus.login' is included in the list of requested scopes, you can use +this method to define types of app activities that your app will write.

You can find a list of available types here:

+
+
+

Parameters

+ + + + + + + +
array$requestVisibleActions

Array of app activity types

+ + + + + +
+
+ +
+
+

+ + + setDeveloperKey(string $developerKey) + +

+
+ + + +
+

Set the developer key to use, these are obtained through the API Console.

+
+
+

Parameters

+ + + + + + + +
string$developerKey
+ + + + +

See also

+ + + + + + +
+ http://code.google.com/apis/console-help/#generatingdevkeys +
+ + +
+
+ +
+
+

+ + + setHostedDomain(string $hd) + +

+
+ + + +
+

Set the hd (hosted domain) parameter streamlines the login process for +Google Apps hosted accounts. By including the domain of the user, you +restrict sign-in to accounts at that domain.

+
+
+

Parameters

+ + + + + + + +
string$hd

the domain to use.

+ + + + + +
+
+ +
+
+

+ + + setPrompt(string $prompt) + +

+
+ + + +
+

Set the prompt hint. Valid values are none, consent and select_account.

If no value is specified and the user has not previously authorized +access, then the user is shown a consent screen.

+
+
+

Parameters

+ + + + + + + +
string$prompt

{@code "none"} Do not display any authentication or consent screens. Must not be specified with other values. +{@code "consent"} Prompt the user for consent. +{@code "select_account"} Prompt the user to select an account.

+ + + + + +
+
+ +
+
+

+ + + setOpenidRealm(string $realm) + +

+
+ + + +
+

openid.realm is a parameter from the OpenID 2.0 protocol, not from OAuth +2.0. It is used in OpenID 2.0 requests to signify the URL-space for which +an authentication request is valid.

+
+
+

Parameters

+ + + + + + + +
string$realm

the URL-space to use.

+ + + + + +
+
+ +
+
+

+ + + setIncludeGrantedScopes(bool $include) + +

+
+ + + +
+

If this is provided with the value true, and the authorization request is +granted, the authorization will include any previous authorizations +granted to this user/application combination for other scopes.

+
+
+

Parameters

+ + + + + + + +
bool$include

the URL-space to use.

+ + + + + +
+
+ +
+
+

+ + + setTokenCallback(callable $tokenCallback) + +

+
+ + + +
+

sets function to be called when an access token is fetched

+
+
+

Parameters

+ + + + + + + +
callable$tokenCallback
    +
  • function ($cacheKey, $accessToken)
  • +
+ + + + + +
+
+ +
+
+

+ + bool + revokeToken(string|array|null $token = null) + +

+
+ + + +
+

Revoke an OAuth2 access token or refresh token. This method will revoke the current access +token, if a token isn't provided.

+
+
+

Parameters

+ + + + + + + +
string|array|null$token

The token (access token or a refresh token) that should be revoked.

+ + +

Return Value

+ + + + + + +
bool

Returns True if the revocation was successful, otherwise False.

+ + + + +
+
+ +
+
+

+ + array|false + verifyIdToken(string|null $idToken = null) + +

+
+ + + +
+

Verify an id_token. This method will verify the current id_token, if one +isn't provided.

+
+
+

Parameters

+ + + + + + + +
string|null$idToken

The token (id_token) that should be verified.

+ + +

Return Value

+ + + + + + +
array|false

Returns the token payload as an array if the verification was +successful, false otherwise.

+ + +

Exceptions

+ + + + + + + + + + +
LogicException
UnexpectedValueException
+ + + +
+
+ +
+
+

+ + + setScopes($scope_or_scopes) + +

+
+ + + +
+

Set the scopes to be requested. Must be called before createAuthUrl().

Will remove any previously configured scopes.

+
+
+

Parameters

+ + + + + + + +
$scope_or_scopes
+ + + + + +
+
+ +
+
+

+ + + addScope(string|string[] $scope_or_scopes) + +

+
+ + + +
+

This functions adds a scope to be requested as part of the OAuth2.0 flow.

Will append any scopes not previously requested to the scope parameter. +A single string will be treated as a scope to request. An array of strings +will each be appended.

+
+
+

Parameters

+ + + + + + + +
string|string[]$scope_or_scopes

e.g. "profile"

+ + + + + +
+
+ +
+
+

+ + array + getScopes() + +

+
+ + + +
+

Returns the list of scopes requested by the client

+
+
+ +

Return Value

+ + + + + + +
array

the list of scopes

+ + + + +
+
+ +
+
+

+ + string|null + prepareScopes() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string|null
+ + + + +
+
+ +
+
+

+ + mixed|T|ResponseInterface + execute(RequestInterface $request, T>|false|null $expectedClass = null) + +

+
+ + + +
+

Helper method to execute deferred HTTP requests.

+
+
+

Parameters

+ + + + + + + + + + + + +
RequestInterface$request
T>|false|null$expectedClass
+ + +

Return Value

+ + + + + + +
mixed|T|ResponseInterface
+ + +

Exceptions

+ + + + + + +
Exception
+ + + +
+
+ +
+
+

+ + + setUseBatch(bool $useBatch) + +

+
+ + + +
+

Declare whether batch calls should be used. This may increase throughput +by making multiple requests in one connection.

+
+
+

Parameters

+ + + + + + + +
bool$useBatch

True if the batch support should +be enabled. Defaults to False.

+ + + + + +
+
+ +
+
+

+ + + isAppEngine() + +

+
+ + + +
+

Are we running in Google AppEngine? +return bool

+
+
+ + + + +
+
+ +
+
+

+ + + setConfig($name, $value) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
$name
$value
+ + + + + +
+
+ +
+
+

+ + + getConfig($name, $default = null) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
$name
$default
+ + + + + +
+
+ +
+
+

+ + + setAuthConfigFile(string $file) + deprecated +

+
+

+ deprecated + + + + +

+ + + +
+

For backwards compatibility +alias for setAuthConfig

+
+
+

Parameters

+ + + + + + + +
string$file

the configuration file

+ + + +

Exceptions

+ + + + + + +
Exception
+ + + +
+
+ +
+
+

+ + + setAuthConfig(string|array $config) + +

+
+ + + +
+

Set the auth config from new or deprecated JSON config.

This structure should match the file downloaded from +the "Download JSON" button on in the Google Developer +Console.

+
+
+

Parameters

+ + + + + + + +
string|array$config

the configuration json

+ + + +

Exceptions

+ + + + + + +
Exception
+ + + +
+
+ +
+
+

+ + + setSubject(string $subject) + +

+
+ + + +
+

Use when the service account has been delegated domain wide access.

+
+
+

Parameters

+ + + + + + + +
string$subject

an email address account to impersonate

+ + + + + +
+
+ +
+
+

+ + + setDefer(bool $defer) + +

+
+ + + +
+

Declare whether making API calls should make the call immediately, or +return a request which can be called with ->execute();

+
+
+

Parameters

+ + + + + + + +
bool$defer

True if calls should not be executed right away.

+ + + + + +
+
+ +
+
+

+ + bool + shouldDefer() + +

+
+ + + +
+

Whether or not to return raw requests

+
+
+ +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + OAuth2 + getOAuth2Service() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
OAuth2implementation
+ + + + +
+
+ +
+
+

+ + protected + createOAuth2Service() + +

+
+ + + +
+

create a default google auth object

+
+
+ + + + +
+
+ +
+
+

+ + + setCache(CacheItemPoolInterface $cache) + +

+
+ + + +
+

Set the Cache object

+
+
+

Parameters

+ + + + + + + +
CacheItemPoolInterface$cache
+ + + + + +
+
+ +
+
+

+ + CacheItemPoolInterface + getCache() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
CacheItemPoolInterface
+ + + + +
+
+ +
+
+

+ + + setCacheConfig(array $cacheConfig) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
array$cacheConfig
+ + + + + +
+
+ +
+
+

+ + + setLogger(LoggerInterface $logger) + +

+
+ + + +
+

Set the Logger object

+
+
+

Parameters

+ + + + + + + +
LoggerInterface$logger
+ + + + + +
+
+ +
+
+

+ + LoggerInterface + getLogger() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
LoggerInterface
+ + + + +
+
+ +
+
+

+ + protected + createDefaultLogger() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + protected + createDefaultCache() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + + setHttpClient(ClientInterface $http) + +

+
+ + + +
+

Set the Http Client object

+
+
+

Parameters

+ + + + + + + +
ClientInterface$http
+ + + + + +
+
+ +
+
+

+ + ClientInterface + getHttpClient() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
ClientInterface
+ + + + +
+
+ +
+
+

+ + + setApiFormatV2(bool $value) + +

+
+ + + +
+

Set the API format version.

true will use V2, which may return more useful error messages.

+
+
+

Parameters

+ + + + + + + +
bool$value
+ + + + + +
+
+ +
+
+

+ + protected + createDefaultHttpClient() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + protected + getAuthHandler() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + + getUniverseDomain() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v2.15.5/Google/Collection.html b/v2.15.5/Google/Collection.html new file mode 100644 index 000000000..b3ef515df --- /dev/null +++ b/v2.15.5/Google/Collection.html @@ -0,0 +1,1189 @@ + + + + + + Google\Collection | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + Collection extends Model implements Iterator, Countable (View source) +

+ + + + + +
+

Extension to the regular Google\Model that automatically +exposes the items array for iteration, so you can just +iterate over the object rather than a reference inside.

+ + +

Constants

+ + + + +
+ NULL_VALUE + +

If you need to specify a NULL JSON value, use Google\Model::NULL_VALUE +instead - it will be replaced when converting to JSON with a real null.

+

+
+ + +

Properties

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ protected + + $internal_gapi_mappingsfrom  +Model
+ protected + + $modelDatafrom  +Model
+ protected + + $processedfrom  +Model
+ protected + + $collection_key
+ + +

Methods

+ +
+
+
+ +
+
+ __construct() + +

Polymorphic - accepts a variable number of arguments dependent +on the type of the model subclass.

+
from  +Model
+
+
+
+ mixed +
+
+ __get(string $key) + +

Getter that handles passthrough access to the data array, and lazy object creation.

+
from  +Model
+
+
+
+ void +
+
+ mapTypes(array $array) + +

Initialize this object's properties from an array.

+
from  +Model
+
+
+
+ +
+
+ gapiInit() + +

Blank initialiser to be used in subclasses to do post-construction initialisation - this +avoids the need for subclasses to have to implement the variadics handling in their +constructors.

+
from  +Model
+
+
+
+ +
+
+ toSimpleObject() + +

Create a simplified object suitable for straightforward +conversion to JSON. This is relatively expensive +due to the usage of reflection, but shouldn't be called +a whole lot, and is the most straightforward way to filter.

+
from  +Model
+
+
+
+ bool +
+
+ isAssociativeArray(array $array) + +

Returns true only if the array is associative.

+
from  +Model
+
+
+
+ +
+
+ assertIsArray(array $obj, string $method) + +

Verify if $obj is an array.

+
from  +Model
+
+
+
+ bool +
+
+ offsetExists($offset) + +

No description

+
+
+
+
+
+ mixed +
+
+ offsetGet($offset) + +

No description

+
+
+
+
+
+ void +
+
+ offsetSet($offset, $value) + +

No description

+
+
+
+
+
+ void +
+
+ offsetUnset($offset) + +

No description

+
+
+
+
+
+ +
+
+ keyType($key) + +

No description

+
+
from  +Model
+
+
+
+ +
+
+ dataType($key) + +

No description

+
+
from  +Model
+
+
+
+ +
+
+ __isset($key) + +

No description

+
+
from  +Model
+
+
+
+ +
+
+ __unset($key) + +

No description

+
+
from  +Model
+
+
+
+ void +
+
+ rewind() + +

No description

+
+
+
+
+
+ mixed +
+
+ current() + +

No description

+
+
+
+
+
+ mixed +
+
+ key() + +

No description

+
+
+
+
+
+ mixed +
+
+ next() + +

No description

+
+
+
+
+
+ bool +
+
+ valid() + +

No description

+
+
+
+
+
+ int +
+
+ count() + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + final + __construct() + +

+
+ + + +
+

Polymorphic - accepts a variable number of arguments dependent +on the type of the model subclass.

+
+
+ + + + +
+
+ +
+
+

+ + mixed + __get(string $key) + +

+
+ + + +
+

Getter that handles passthrough access to the data array, and lazy object creation.

+
+
+

Parameters

+ + + + + + + +
string$key

Property name.

+ + +

Return Value

+ + + + + + +
mixed

The value if any, or null.

+ + + + +
+
+ +
+
+

+ + protected void + mapTypes(array $array) + +

+
+ + + +
+

Initialize this object's properties from an array.

+
+
+

Parameters

+ + + + + + + +
array$array

Used to seed this object's properties.

+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + protected + gapiInit() + +

+
+ + + +
+

Blank initialiser to be used in subclasses to do post-construction initialisation - this +avoids the need for subclasses to have to implement the variadics handling in their +constructors.

+
+
+ + + + +
+
+ +
+
+

+ + + toSimpleObject() + +

+
+ + + +
+

Create a simplified object suitable for straightforward +conversion to JSON. This is relatively expensive +due to the usage of reflection, but shouldn't be called +a whole lot, and is the most straightforward way to filter.

+
+
+ + + + +
+
+ +
+
+

+ + protected bool + isAssociativeArray(array $array) + +

+
+ + + +
+

Returns true only if the array is associative.

+
+
+

Parameters

+ + + + + + + +
array$array
+ + +

Return Value

+ + + + + + +
bool

True if the array is associative.

+ + + + +
+
+ +
+
+

+ + + assertIsArray(array $obj, string $method) + +

+
+ + + +
+

Verify if $obj is an array.

+
+
+

Parameters

+ + + + + + + + + + + + +
array$obj

Items that should be validated.

string$method

Method expecting an array as an argument.

+ + + +

Exceptions

+ + + + + + +
Exception
+ + + +
+
+ +
+
+

+ + bool + offsetExists($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + mixed + offsetGet($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + +

Return Value

+ + + + + + +
mixed
+ + + + +
+
+ +
+
+

+ + void + offsetSet($offset, $value) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
$offset
$value
+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + void + offsetUnset($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + protected + keyType($key) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$key
+ + + + + +
+
+ +
+
+

+ + protected + dataType($key) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$key
+ + + + + +
+
+ +
+
+

+ + + __isset($key) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$key
+ + + + + +
+
+ +
+
+

+ + + __unset($key) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$key
+ + + + + +
+
+ +
+
+

+ + void + rewind() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + mixed + current() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
mixed
+ + + + +
+
+ +
+
+

+ + mixed + key() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
mixed
+ + + + +
+
+ +
+
+

+ + mixed + next() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
mixed
+ + + + +
+
+ +
+
+

+ + bool + valid() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + int + count() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
int
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v2.15.5/Google/Exception.html b/v2.15.5/Google/Exception.html new file mode 100644 index 000000000..06ce20e1b --- /dev/null +++ b/v2.15.5/Google/Exception.html @@ -0,0 +1,106 @@ + + + + + + Google\Exception | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + Exception extends Exception (View source) +

+ + + + + + + + + + +
+
+ + + diff --git a/v2.15.5/Google/Http.html b/v2.15.5/Google/Http.html new file mode 100644 index 000000000..722bd0a6f --- /dev/null +++ b/v2.15.5/Google/Http.html @@ -0,0 +1,114 @@ + + + + + + Google\Http | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

Classes

+
+
+
+ Batch
+

Class to handle batched requests to the Google API service.

+
+
+ +

Manage large file uploads, which may be media but can be any type +of sizable data.

+
+
+
+ REST
+

This class implements the RESTful transport of apiServiceRequest()'s

+
+
+ + + +
+
+ + + diff --git a/v2.15.5/Google/Http/Batch.html b/v2.15.5/Google/Http/Batch.html new file mode 100644 index 000000000..eb29a5387 --- /dev/null +++ b/v2.15.5/Google/Http/Batch.html @@ -0,0 +1,328 @@ + + + + + + Google\Http\Batch | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + Batch (View source) +

+ + + + + +
+

Class to handle batched requests to the Google API service.

Note that calls to Google\Http\Batch::execute() do not clear the queued +requests. To start a new batch, be sure to create a new instance of this +class.

+ + +

Constants

+ + + + +
+ BATCH_PATH + +

+

+
+ + + +

Methods

+ +
+
+
+ +
+
+ __construct(Client $client, $boundary = false, $rootUrl = null, $batchPath = null) + +

No description

+
+
+
+
+
+ +
+
+ add(RequestInterface $request, $key = false) + +

No description

+
+
+
+
+
+ +
+
+ execute() + +

No description

+
+
+
+
+
+ +
+
+ parseResponse(ResponseInterface $response, $classes = []) + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(Client $client, $boundary = false, $rootUrl = null, $batchPath = null) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + +
Client$client
$boundary
$rootUrl
$batchPath
+ + + + + +
+
+ +
+
+

+ + + add(RequestInterface $request, $key = false) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
RequestInterface$request
$key
+ + + + + +
+
+ +
+
+

+ + + execute() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + + parseResponse(ResponseInterface $response, $classes = []) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
ResponseInterface$response
$classes
+ + + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v2.15.5/Google/Http/MediaFileUpload.html b/v2.15.5/Google/Http/MediaFileUpload.html new file mode 100644 index 000000000..549b4c985 --- /dev/null +++ b/v2.15.5/Google/Http/MediaFileUpload.html @@ -0,0 +1,614 @@ + + + + + + Google\Http\MediaFileUpload | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + MediaFileUpload (View source) +

+ + + + + +
+

Manage large file uploads, which may be media but can be any type +of sizable data.

+ + +

Constants

+ + + + + + + + + + + + +
+ UPLOAD_MEDIA_TYPE + +

+

+
+ UPLOAD_MULTIPART_TYPE + +

+

+
+ UPLOAD_RESUMABLE_TYPE + +

+

+
+ + + +

Methods

+ +
+
+
+ +
+
+ __construct(Client $client, RequestInterface $request, string $mimeType, string $data, bool $resumable = false, int $chunkSize = 0) + +

No description

+
+
+
+
+
+ +
+
+ setFileSize(int $size) + +

Set the size of the file that is being uploaded.

+
+
+
+
+ int +
+
+ getProgress() + +

Return the progress on the upload

+
+
+
+
+ +
+
+ nextChunk(string|bool $chunk = false) + +

Send the next part of the file to upload.

+
+
+
+
+ int +
+
+ getHttpResultCode() + +

Return the HTTP result code from the last call made.

+
+
+
+
+ +
+
+ resume(string $resumeUri) + +

Resume a previously unfinished upload

+
+
+
+
+ string +
+
+ getUploadType(string|false $meta) + +

Valid upload types:

+
    +
  • resumable (UPLOAD_RESUMABLE_TYPE)
  • +
  • media (UPLOAD_MEDIA_TYPE)
  • +
  • multipart (UPLOAD_MULTIPART_TYPE)
  • +

+
+
+
+
+ +
+
+ getResumeUri() + +

No description

+
+
+
+
+
+ +
+
+ setChunkSize($chunkSize) + +

No description

+
+
+
+
+
+ +
+
+ getRequest() + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(Client $client, RequestInterface $request, string $mimeType, string $data, bool $resumable = false, int $chunkSize = 0) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Client$client
RequestInterface$request
string$mimeType
string$data

The bytes you want to upload.

bool$resumable
int$chunkSize

File will be uploaded in chunks of this many bytes. +only used if resumable=True

+ + + + + +
+
+ +
+
+

+ + + setFileSize(int $size) + +

+
+ + + +
+

Set the size of the file that is being uploaded.

+
+
+

Parameters

+ + + + + + + +
int$size
    +
  • int file size in bytes
  • +
+ + + + + +
+
+ +
+
+

+ + int + getProgress() + +

+
+ + + +
+

Return the progress on the upload

+
+
+ +

Return Value

+ + + + + + +
int

progress in bytes uploaded.

+ + + + +
+
+ +
+
+

+ + + nextChunk(string|bool $chunk = false) + +

+
+ + + +
+

Send the next part of the file to upload.

+
+
+

Parameters

+ + + + + + + +
string|bool$chunk

Optional. The next set of bytes to send. If false will +use $data passed at construct time.

+ + + + + +
+
+ +
+
+

+ + int + getHttpResultCode() + +

+
+ + + +
+

Return the HTTP result code from the last call made.

+
+
+ +

Return Value

+ + + + + + +
intcode
+ + + + +
+
+ +
+
+

+ + + resume(string $resumeUri) + +

+
+ + + +
+

Resume a previously unfinished upload

+
+
+

Parameters

+ + + + + + + +
string$resumeUri

the resume-URI of the unfinished, resumable upload.

+ + + + + +
+
+ +
+
+

+ + string + getUploadType(string|false $meta) + +

+
+ + + +
+

Valid upload types:

+
    +
  • resumable (UPLOAD_RESUMABLE_TYPE)
  • +
  • media (UPLOAD_MEDIA_TYPE)
  • +
  • multipart (UPLOAD_MULTIPART_TYPE)
  • +

+
+
+

Parameters

+ + + + + + + +
string|false$meta
+ + +

Return Value

+ + + + + + +
string
+ + + + +
+
+ +
+
+

+ + + getResumeUri() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + + setChunkSize($chunkSize) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$chunkSize
+ + + + + +
+
+ +
+
+

+ + + getRequest() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v2.15.5/Google/Http/REST.html b/v2.15.5/Google/Http/REST.html new file mode 100644 index 000000000..a3a8bccac --- /dev/null +++ b/v2.15.5/Google/Http/REST.html @@ -0,0 +1,344 @@ + + + + + + Google\Http\REST | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + REST (View source) +

+ + + + + +
+

This class implements the RESTful transport of apiServiceRequest()'s

+ + + + +

Methods

+ +
+
+
+ static mixed|T|null +
+
+ execute(ClientInterface $client, RequestInterface $request, T>|false|null $expectedClass = null, array $config = [], array $retryMap = null) + +

Executes a Psr\Http\Message\RequestInterface and (if applicable) automatically retries +when errors occur.

+
+
+
+
+ static mixed|T|null +
+
+ doExecute(ClientInterface $client, RequestInterface $request, T>|false|null $expectedClass = null) + +

Executes a Psr\Http\Message\RequestInterface

+
+
+
+
+ static mixed|T|null +
+
+ decodeHttpResponse(ResponseInterface $response, RequestInterface $request = null, T>|false|null $expectedClass = null) + +

Decode an HTTP Response.

+
+
+
+ + +

Details

+ +
+
+

+ + static mixed|T|null + execute(ClientInterface $client, RequestInterface $request, T>|false|null $expectedClass = null, array $config = [], array $retryMap = null) + +

+
+ + + +
+

Executes a Psr\Http\Message\RequestInterface and (if applicable) automatically retries +when errors occur.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
ClientInterface$client
RequestInterface$request
T>|false|null$expectedClass
array$config
array$retryMap
+ + +

Return Value

+ + + + + + +
mixed|T|null
+ + +

Exceptions

+ + + + + + +
Exception
+ + + +
+
+ +
+
+

+ + static mixed|T|null + doExecute(ClientInterface $client, RequestInterface $request, T>|false|null $expectedClass = null) + +

+
+ + + +
+

Executes a Psr\Http\Message\RequestInterface

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
ClientInterface$client
RequestInterface$request
T>|false|null$expectedClass
+ + +

Return Value

+ + + + + + +
mixed|T|null
+ + +

Exceptions

+ + + + + + +
Exception
+ + + +
+
+ +
+
+

+ + static mixed|T|null + decodeHttpResponse(ResponseInterface $response, RequestInterface $request = null, T>|false|null $expectedClass = null) + +

+
+ + + +
+

Decode an HTTP Response.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
ResponseInterface$response

The http response to be decoded.

RequestInterface$request
T>|false|null$expectedClass
+ + +

Return Value

+ + + + + + +
mixed|T|null
+ + +

Exceptions

+ + + + + + +
Exception
+ + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v2.15.5/Google/Model.html b/v2.15.5/Google/Model.html new file mode 100644 index 000000000..e302189b8 --- /dev/null +++ b/v2.15.5/Google/Model.html @@ -0,0 +1,890 @@ + + + + + + Google\Model | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + Model implements ArrayAccess (View source) +

+ + + + + +
+

This class defines attributes, valid values, and usage which is generated +from a given json schema.

http://tools.ietf.org/html/draft-zyp-json-schema-03#section-5

+ + +

Constants

+ + + + +
+ NULL_VALUE + +

If you need to specify a NULL JSON value, use Google\Model::NULL_VALUE +instead - it will be replaced when converting to JSON with a real null.

+

+
+ + +

Properties

+ + + + + + + + + + + + + + + + + + + + +
+ protected + + $internal_gapi_mappings
+ protected + + $modelData
+ protected + + $processed
+ + +

Methods

+ +
+
+
+ +
+
+ __construct() + +

Polymorphic - accepts a variable number of arguments dependent +on the type of the model subclass.

+
+
+
+
+ mixed +
+
+ __get(string $key) + +

Getter that handles passthrough access to the data array, and lazy object creation.

+
+
+
+
+ void +
+
+ mapTypes(array $array) + +

Initialize this object's properties from an array.

+
+
+
+
+ +
+
+ gapiInit() + +

Blank initialiser to be used in subclasses to do post-construction initialisation - this +avoids the need for subclasses to have to implement the variadics handling in their +constructors.

+
+
+
+
+ +
+
+ toSimpleObject() + +

Create a simplified object suitable for straightforward +conversion to JSON. This is relatively expensive +due to the usage of reflection, but shouldn't be called +a whole lot, and is the most straightforward way to filter.

+
+
+
+
+ bool +
+
+ isAssociativeArray(array $array) + +

Returns true only if the array is associative.

+
+
+
+
+ +
+
+ assertIsArray(array $obj, string $method) + +

Verify if $obj is an array.

+
+
+
+
+ bool +
+
+ offsetExists($offset) + +

No description

+
+
+
+
+
+ mixed +
+
+ offsetGet($offset) + +

No description

+
+
+
+
+
+ void +
+
+ offsetSet($offset, $value) + +

No description

+
+
+
+
+
+ void +
+
+ offsetUnset($offset) + +

No description

+
+
+
+
+
+ +
+
+ keyType($key) + +

No description

+
+
+
+
+
+ +
+
+ dataType($key) + +

No description

+
+
+
+
+
+ +
+
+ __isset($key) + +

No description

+
+
+
+
+
+ +
+
+ __unset($key) + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + final + __construct() + +

+
+ + + +
+

Polymorphic - accepts a variable number of arguments dependent +on the type of the model subclass.

+
+
+ + + + +
+
+ +
+
+

+ + mixed + __get(string $key) + +

+
+ + + +
+

Getter that handles passthrough access to the data array, and lazy object creation.

+
+
+

Parameters

+ + + + + + + +
string$key

Property name.

+ + +

Return Value

+ + + + + + +
mixed

The value if any, or null.

+ + + + +
+
+ +
+
+

+ + protected void + mapTypes(array $array) + +

+
+ + + +
+

Initialize this object's properties from an array.

+
+
+

Parameters

+ + + + + + + +
array$array

Used to seed this object's properties.

+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + protected + gapiInit() + +

+
+ + + +
+

Blank initialiser to be used in subclasses to do post-construction initialisation - this +avoids the need for subclasses to have to implement the variadics handling in their +constructors.

+
+
+ + + + +
+
+ +
+
+

+ + + toSimpleObject() + +

+
+ + + +
+

Create a simplified object suitable for straightforward +conversion to JSON. This is relatively expensive +due to the usage of reflection, but shouldn't be called +a whole lot, and is the most straightforward way to filter.

+
+
+ + + + +
+
+ +
+
+

+ + protected bool + isAssociativeArray(array $array) + +

+
+ + + +
+

Returns true only if the array is associative.

+
+
+

Parameters

+ + + + + + + +
array$array
+ + +

Return Value

+ + + + + + +
bool

True if the array is associative.

+ + + + +
+
+ +
+
+

+ + + assertIsArray(array $obj, string $method) + +

+
+ + + +
+

Verify if $obj is an array.

+
+
+

Parameters

+ + + + + + + + + + + + +
array$obj

Items that should be validated.

string$method

Method expecting an array as an argument.

+ + + +

Exceptions

+ + + + + + +
Exception
+ + + +
+
+ +
+
+

+ + bool + offsetExists($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + mixed + offsetGet($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + +

Return Value

+ + + + + + +
mixed
+ + + + +
+
+ +
+
+

+ + void + offsetSet($offset, $value) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
$offset
$value
+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + void + offsetUnset($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + protected + keyType($key) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$key
+ + + + + +
+
+ +
+
+

+ + protected + dataType($key) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$key
+ + + + + +
+
+ +
+
+

+ + + __isset($key) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$key
+ + + + + +
+
+ +
+
+

+ + + __unset($key) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$key
+ + + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v2.15.5/Google/Service.html b/v2.15.5/Google/Service.html new file mode 100644 index 000000000..dd456e09d --- /dev/null +++ b/v2.15.5/Google/Service.html @@ -0,0 +1,323 @@ + + + + + + Google\Service | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + Service (View source) +

+ + + + + + + + +

Properties

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + $batchPath
+ + + $rootUrl

Only used in getBatch

+ + + $rootUrlTemplate
+ + + $version
+ + + $servicePath
+ + + $serviceName
+ + + $availableScopes
+ + + $resource
+ + +

Methods

+ +
+
+
+ +
+
+ __construct($clientOrConfig = []) + +

No description

+
+
+
+
+
+ Client +
+
+ getClient() + +

Return the associated Google\Client class.

+
+
+
+
+ Batch +
+
+ createBatch() + +

Create a new HTTP Batch handler for this service

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct($clientOrConfig = []) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$clientOrConfig
+ + + + + +
+
+ +
+
+

+ + Client + getClient() + +

+
+ + + +
+

Return the associated Google\Client class.

+
+
+ +

Return Value

+ + + + + + +
Client
+ + + + +
+
+ +
+
+

+ + Batch + createBatch() + +

+
+ + + +
+

Create a new HTTP Batch handler for this service

+
+
+ +

Return Value

+ + + + + + +
Batch
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v2.15.5/Google/Service/Exception.html b/v2.15.5/Google/Service/Exception.html new file mode 100644 index 000000000..9f42ddd6a --- /dev/null +++ b/v2.15.5/Google/Service/Exception.html @@ -0,0 +1,242 @@ + + + + + + Google\Service\Exception | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + Exception extends Exception (View source) +

+ + + + + + + + +

Properties

+ + + + + + + + +
+ protected + + $errors

Optional list of errors returned in a JSON body of an HTTP error response.

+ + +

Methods

+ +
+
+
+ +
+
+ __construct(string $message, int $code = 0, Exception $previous = null, array<string,string>[]|null $errors = []) + +

Override default constructor to add the ability to set $errors and a retry +map.

+
+
+
+
+ array<string,string>[]|null +
+
+ getErrors() + +

An example of the possible errors returned.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(string $message, int $code = 0, Exception $previous = null, array<string,string>[]|null $errors = []) + +

+
+ + + +
+

Override default constructor to add the ability to set $errors and a retry +map.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + +
string$message
int$code
Exception$previous
array<string,string>[]|null$errors

List of errors returned in an HTTP +response or null. Defaults to [].

+ + + + + +
+
+ +
+
+

+ + array<string,string>[]|null + getErrors() + +

+
+ + + +
+

An example of the possible errors returned.

[ +{ +"domain": "global", +"reason": "authError", +"message": "Invalid Credentials", +"locationType": "header", +"location": "Authorization", +} +]

+
+
+ +

Return Value

+ + + + + + +
array<string,string>[]|null

List of errors returned in an HTTP response or null.

+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v2.15.5/Google/Service/Resource.html b/v2.15.5/Google/Service/Resource.html new file mode 100644 index 000000000..1b9eef14b --- /dev/null +++ b/v2.15.5/Google/Service/Resource.html @@ -0,0 +1,372 @@ + + + + + + Google\Service\Resource | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + Resource (View source) +

+ + + + + +
+

Implements the actual methods/resources of the discovered Google API using magic function +calling overloading (__call()), which on call will see if the method name (plus.activities.list) +is available in this service, and if so construct an apiHttpRequest representing it.

+ + + +

Properties

+ + + + + + + + +
+ protected string + + $apiVersion
+ + +

Methods

+ +
+
+
+ +
+
+ __construct($service, $serviceName, $resourceName, $resource) + +

No description

+
+
+
+
+
+ mixed|T|ResponseInterface|RequestInterface +
+
+ call(string $name, array $arguments, T> $expectedClass = null) + +

TODO: This function needs simplifying.

+
+
+
+
+ +
+
+ convertToArrayAndStripNulls($o) + +

No description

+
+
+
+
+
+ static string +
+
+ createRequestUri(string $restPath, array $params) + +

Parse/expand request parameters and create a fully qualified +request uri.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct($service, $serviceName, $resourceName, $resource) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + +
$service
$serviceName
$resourceName
$resource
+ + + + + +
+
+ +
+
+

+ + mixed|T|ResponseInterface|RequestInterface + call(string $name, array $arguments, T> $expectedClass = null) + +

+
+ + + +
+

TODO: This function needs simplifying.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
string$name
array$arguments
T>$expectedClass
    +
  • optional, the expected class name
  • +
+ + +

Return Value

+ + + + + + +
mixed|T|ResponseInterface|RequestInterface
+ + +

Exceptions

+ + + + + + +
Exception
+ + + +
+
+ +
+
+

+ + protected + convertToArrayAndStripNulls($o) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$o
+ + + + + +
+
+ +
+
+

+ + static string + createRequestUri(string $restPath, array $params) + +

+
+ + + +
+

Parse/expand request parameters and create a fully qualified +request uri.

+
+
+

Parameters

+ + + + + + + + + + + + +
string$restPath
array$params
+ + +

Return Value

+ + + + + + +
string$requestUrl
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v2.15.5/Google/Task.html b/v2.15.5/Google/Task.html new file mode 100644 index 000000000..077829f65 --- /dev/null +++ b/v2.15.5/Google/Task.html @@ -0,0 +1,122 @@ + + + + + + Google\Task | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

Classes

+
+
+ +
+
+
+ +
+
+
+
+ Runner
+

A task runner with exponential backoff support.

+
+
+

Interfaces

+
+
+
+ Retryable +
+

Interface for checking how many times a given task can be retried following +a failure.

+
+
+ + +
+
+ + + diff --git a/v2.15.5/Google/Task/Composer.html b/v2.15.5/Google/Task/Composer.html new file mode 100644 index 000000000..c5b9e5347 --- /dev/null +++ b/v2.15.5/Google/Task/Composer.html @@ -0,0 +1,167 @@ + + + + + + Google\Task\Composer | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + Composer (View source) +

+ + + + + + + + + +

Methods

+ +
+
+
+ static  +
+
+ cleanup(Event $event, Filesystem $filesystem = null) + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + static + cleanup(Event $event, Filesystem $filesystem = null) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
Event$event

Composer event passed in for any script method

Filesystem$filesystem

Optional. Used for testing.

+ + + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v2.15.5/Google/Task/Exception.html b/v2.15.5/Google/Task/Exception.html new file mode 100644 index 000000000..0525a5af6 --- /dev/null +++ b/v2.15.5/Google/Task/Exception.html @@ -0,0 +1,106 @@ + + + + + + Google\Task\Exception | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + Exception extends Exception (View source) +

+ + + + + + + + + + +
+
+ + + diff --git a/v2.15.5/Google/Task/Retryable.html b/v2.15.5/Google/Task/Retryable.html new file mode 100644 index 000000000..d3b9fd8c2 --- /dev/null +++ b/v2.15.5/Google/Task/Retryable.html @@ -0,0 +1,109 @@ + + + + + + Google\Task\Retryable | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

interface + Retryable (View source) +

+ + + + + +
+

Interface for checking how many times a given task can be retried following +a failure.

+ + + + + +
+
+ + + diff --git a/v2.15.5/Google/Task/Runner.html b/v2.15.5/Google/Task/Runner.html new file mode 100644 index 000000000..adbba51b6 --- /dev/null +++ b/v2.15.5/Google/Task/Runner.html @@ -0,0 +1,470 @@ + + + + + + Google\Task\Runner | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + Runner (View source) +

+ + + + + +
+

A task runner with exponential backoff support.

+ + +

Constants

+ + + + + + + + + + + + +
+ TASK_RETRY_NEVER + +

+

+
+ TASK_RETRY_ONCE + +

+

+
+ TASK_RETRY_ALWAYS + +

+

+
+ + +

Properties

+ + + + + + + + +
+ protected array + + $retryMap
+ + +

Methods

+ +
+
+
+ +
+
+ __construct(array $config, string $name, callable $action, array $arguments = []) + +

Creates a new task runner with exponential backoff support.

+
+
+
+
+ bool +
+
+ canAttempt() + +

Checks if a retry can be attempted.

+
+
+
+
+ mixed +
+
+ run() + +

Runs the task and (if applicable) automatically retries when errors occur.

+
+
+
+
+ bool +
+
+ attempt() + +

Runs a task once, if possible. This is useful for bypassing the run() +loop.

+
+
+
+
+ int +
+
+ allowedRetries($code, $errors = []) + +

Gets the number of times the associated task can be retried.

+
+
+
+
+ +
+
+ setRetryMap($retryMap) + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(array $config, string $name, callable $action, array $arguments = []) + +

+
+ + + +
+

Creates a new task runner with exponential backoff support.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + +
array$config

The task runner config

string$name

The name of the current task (used for logging)

callable$action

The task to run and possibly retry

array$arguments

The task arguments

+ + + +

Exceptions

+ + + + + + +
Exception
+ + + +
+
+ +
+
+

+ + bool + canAttempt() + +

+
+ + + +
+

Checks if a retry can be attempted.

+
+
+ +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + mixed + run() + +

+
+ + + +
+

Runs the task and (if applicable) automatically retries when errors occur.

+
+
+ +

Return Value

+ + + + + + +
mixed
+ + +

Exceptions

+ + + + + + +
Exception
+ + + +
+
+ +
+
+

+ + bool + attempt() + +

+
+ + + +
+

Runs a task once, if possible. This is useful for bypassing the run() +loop.

NOTE: If this is not the first attempt, this function will sleep in +accordance to the backoff configurations before running the task.

+
+
+ +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + int + allowedRetries($code, $errors = []) + +

+
+ + + +
+

Gets the number of times the associated task can be retried.

NOTE: -1 is returned if the task can be retried indefinitely

+
+
+

Parameters

+ + + + + + + + + + + + +
$code
$errors
+ + +

Return Value

+ + + + + + +
int
+ + + + +
+
+ +
+
+

+ + + setRetryMap($retryMap) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$retryMap
+ + + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v2.15.5/Google/Utils.html b/v2.15.5/Google/Utils.html new file mode 100644 index 000000000..d51f0a564 --- /dev/null +++ b/v2.15.5/Google/Utils.html @@ -0,0 +1,103 @@ + + + + + + Google\Utils | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

Classes

+
+
+ +

Implementation of levels 1-3 of the URI Template spec.

+
+
+ + + +
+
+ + + diff --git a/v2.15.5/Google/Utils/UriTemplate.html b/v2.15.5/Google/Utils/UriTemplate.html new file mode 100644 index 000000000..b255ad3e9 --- /dev/null +++ b/v2.15.5/Google/Utils/UriTemplate.html @@ -0,0 +1,274 @@ + + + + + + Google\Utils\UriTemplate | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + UriTemplate (View source) +

+ + + + + +
+

Implementation of levels 1-3 of the URI Template spec.

+ + +

Constants

+ + + + + + + + + + + + +
+ TYPE_MAP + +

+

+
+ TYPE_LIST + +

+

+
+ TYPE_SCALAR + +

+

+
+ + + +

Methods

+ +
+
+
+ +
+
+ parse($string, array $parameters) + +

No description

+
+
+
+
+
+ +
+
+ combine($key, $parameters, $sep, $combine, $reserved, $tag_empty, $combine_on_empty) + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + + parse($string, array $parameters) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
$string
array$parameters
+ + + + + +
+
+ +
+
+

+ + + combine($key, $parameters, $sep, $combine, $reserved, $tag_empty, $combine_on_empty) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
$key
$parameters
$sep
$combine
$reserved
$tag_empty
$combine_on_empty
+ + + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v2.15.5/PROJECT_VERSION b/v2.15.5/PROJECT_VERSION new file mode 100644 index 000000000..5e27daede --- /dev/null +++ b/v2.15.5/PROJECT_VERSION @@ -0,0 +1 @@ +v2.15.5 \ No newline at end of file diff --git a/v2.15.5/classes.html b/v2.15.5/classes.html new file mode 100644 index 000000000..0e615d9f6 --- /dev/null +++ b/v2.15.5/classes.html @@ -0,0 +1,196 @@ + + + + + + All Classes | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ + +
+
+
+ Revoke
+

Wrapper around Google Access Tokens which provides convenience functions

+
+
+
+ Verify
+

Wrapper around Google Access Tokens which provides convenience functions

+
+ +
+ +

This supports Guzzle 6

+
+
+ +

This supports Guzzle 7

+
+ +
+ +

Extension to the regular Google\Model that automatically +exposes the items array for iteration, so you can just +iterate over the object rather than a reference inside.

+
+
+ +
+
+
+
+ Batch
+

Class to handle batched requests to the Google API service.

+
+
+ +

Manage large file uploads, which may be media but can be any type +of sizable data.

+
+
+
+ REST
+

This class implements the RESTful transport of apiServiceRequest()'s

+
+
+
+ Model
+

This class defines attributes, valid values, and usage which is generated +from a given json schema.

+
+
+ +
+
+
+ +
+
+
+ +

Implements the actual methods/resources of the discovered Google API using magic function +calling overloading (__call()), which on call will see if the method name (plus.activities.list) +is available in this service, and if so construct an apiHttpRequest representing it.

+
+
+ +
+
+
+ +
+
+
+
+ Retryable +
+

Interface for checking how many times a given task can be retried following +a failure.

+
+
+
+ Runner
+

A task runner with exponential backoff support.

+
+
+ +

Implementation of levels 1-3 of the URI Template spec.

+
+
+
+
+ + + diff --git a/v2.15.5/css/bootstrap-theme.min.css b/v2.15.5/css/bootstrap-theme.min.css new file mode 100644 index 000000000..59e7de99c --- /dev/null +++ b/v2.15.5/css/bootstrap-theme.min.css @@ -0,0 +1,7 @@ +/*! + * Generated using the Bootstrap Customizer (https://getbootstrap.com/docs/3.4/customize/) + *//*! + * Bootstrap v3.4.1 (https://getbootstrap.com/) + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */.btn-default,.btn-primary,.btn-success,.btn-info,.btn-warning,.btn-danger{text-shadow:0 -1px 0 rgba(0,0,0,0.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 1px rgba(0,0,0,0.075)}.btn-default:active,.btn-primary:active,.btn-success:active,.btn-info:active,.btn-warning:active,.btn-danger:active,.btn-default.active,.btn-primary.active,.btn-success.active,.btn-info.active,.btn-warning.active,.btn-danger.active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-default.disabled,.btn-primary.disabled,.btn-success.disabled,.btn-info.disabled,.btn-warning.disabled,.btn-danger.disabled,.btn-default[disabled],.btn-primary[disabled],.btn-success[disabled],.btn-info[disabled],.btn-warning[disabled],.btn-danger[disabled],fieldset[disabled] .btn-default,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-success,fieldset[disabled] .btn-info,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-danger{-webkit-box-shadow:none;box-shadow:none}.btn-default .badge,.btn-primary .badge,.btn-success .badge,.btn-info .badge,.btn-warning .badge,.btn-danger .badge{text-shadow:none}.btn:active,.btn.active{background-image:none}.btn-default{background-image:-webkit-linear-gradient(top, #fff 0, #e0e0e0 100%);background-image:-o-linear-gradient(top, #fff 0, #e0e0e0 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), to(#e0e0e0));background-image:linear-gradient(to bottom, #fff 0, #e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#dbdbdb;text-shadow:0 1px 0 #fff;border-color:#ccc}.btn-default:hover,.btn-default:focus{background-color:#e0e0e0;background-position:0 -15px}.btn-default:active,.btn-default.active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top, #428bca 0, #2d6ca2 100%);background-image:-o-linear-gradient(top, #428bca 0, #2d6ca2 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #428bca), to(#2d6ca2));background-image:linear-gradient(to bottom, #428bca 0, #2d6ca2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff2d6ca2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#2b669a}.btn-primary:hover,.btn-primary:focus{background-color:#2d6ca2;background-position:0 -15px}.btn-primary:active,.btn-primary.active{background-color:#2d6ca2;border-color:#2b669a}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#2d6ca2;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top, #5cb85c 0, #419641 100%);background-image:-o-linear-gradient(top, #5cb85c 0, #419641 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #5cb85c), to(#419641));background-image:linear-gradient(to bottom, #5cb85c 0, #419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:hover,.btn-success:focus{background-color:#419641;background-position:0 -15px}.btn-success:active,.btn-success.active{background-color:#419641;border-color:#3e8f3e}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#419641;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top, #5bc0de 0, #2aabd2 100%);background-image:-o-linear-gradient(top, #5bc0de 0, #2aabd2 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #5bc0de), to(#2aabd2));background-image:linear-gradient(to bottom, #5bc0de 0, #2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:hover,.btn-info:focus{background-color:#2aabd2;background-position:0 -15px}.btn-info:active,.btn-info.active{background-color:#2aabd2;border-color:#28a4c9}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#2aabd2;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top, #f0ad4e 0, #eb9316 100%);background-image:-o-linear-gradient(top, #f0ad4e 0, #eb9316 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #f0ad4e), to(#eb9316));background-image:linear-gradient(to bottom, #f0ad4e 0, #eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:hover,.btn-warning:focus{background-color:#eb9316;background-position:0 -15px}.btn-warning:active,.btn-warning.active{background-color:#eb9316;border-color:#e38d13}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#eb9316;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top, #d9534f 0, #c12e2a 100%);background-image:-o-linear-gradient(top, #d9534f 0, #c12e2a 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #d9534f), to(#c12e2a));background-image:linear-gradient(to bottom, #d9534f 0, #c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:hover,.btn-danger:focus{background-color:#c12e2a;background-position:0 -15px}.btn-danger:active,.btn-danger.active{background-color:#c12e2a;border-color:#b92c28}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#c12e2a;background-image:none}.thumbnail,.img-thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.075);box-shadow:0 1px 2px rgba(0,0,0,0.075)}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{background-image:-webkit-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);background-image:-o-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #f5f5f5), to(#e8e8e8));background-image:linear-gradient(to bottom, #f5f5f5 0, #e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x;background-color:#e8e8e8}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{background-image:-webkit-linear-gradient(top, #428bca 0, #357ebd 100%);background-image:-o-linear-gradient(top, #428bca 0, #357ebd 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #428bca), to(#357ebd));background-image:linear-gradient(to bottom, #428bca 0, #357ebd 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);background-repeat:repeat-x;background-color:#357ebd}.navbar-default{background-image:-webkit-linear-gradient(top, #fff 0, #f8f8f8 100%);background-image:-o-linear-gradient(top, #fff 0, #f8f8f8 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), to(#f8f8f8));background-image:linear-gradient(to bottom, #fff 0, #f8f8f8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 5px rgba(0,0,0,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 5px rgba(0,0,0,0.075)}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.active>a{background-image:-webkit-linear-gradient(top, #dbdbdb 0, #e2e2e2 100%);background-image:-o-linear-gradient(top, #dbdbdb 0, #e2e2e2 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #dbdbdb), to(#e2e2e2));background-image:linear-gradient(to bottom, #dbdbdb 0, #e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,0.075);box-shadow:inset 0 3px 9px rgba(0,0,0,0.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,0.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top, #3c3c3c 0, #222 100%);background-image:-o-linear-gradient(top, #3c3c3c 0, #222 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #3c3c3c), to(#222));background-image:linear-gradient(to bottom, #3c3c3c 0, #222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border-radius:4px}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.active>a{background-image:-webkit-linear-gradient(top, #080808 0, #0f0f0f 100%);background-image:-o-linear-gradient(top, #080808 0, #0f0f0f 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #080808), to(#0f0f0f));background-image:linear-gradient(to bottom, #080808 0, #0f0f0f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,0.25);box-shadow:inset 0 3px 9px rgba(0,0,0,0.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-static-top,.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}@media (max-width:767px){.navbar .navbar-nav .open .dropdown-menu>.active>a,.navbar .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-image:-webkit-linear-gradient(top, #428bca 0, #357ebd 100%);background-image:-o-linear-gradient(top, #428bca 0, #357ebd 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #428bca), to(#357ebd));background-image:linear-gradient(to bottom, #428bca 0, #357ebd 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);background-repeat:repeat-x}}.alert{text-shadow:0 1px 0 rgba(255,255,255,0.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.25),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 1px 0 rgba(255,255,255,0.25),0 1px 2px rgba(0,0,0,0.05)}.alert-success{background-image:-webkit-linear-gradient(top, #dff0d8 0, #c8e5bc 100%);background-image:-o-linear-gradient(top, #dff0d8 0, #c8e5bc 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #dff0d8), to(#c8e5bc));background-image:linear-gradient(to bottom, #dff0d8 0, #c8e5bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);background-repeat:repeat-x;border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top, #d9edf7 0, #b9def0 100%);background-image:-o-linear-gradient(top, #d9edf7 0, #b9def0 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #d9edf7), to(#b9def0));background-image:linear-gradient(to bottom, #d9edf7 0, #b9def0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);background-repeat:repeat-x;border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top, #fcf8e3 0, #f8efc0 100%);background-image:-o-linear-gradient(top, #fcf8e3 0, #f8efc0 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #fcf8e3), to(#f8efc0));background-image:linear-gradient(to bottom, #fcf8e3 0, #f8efc0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);background-repeat:repeat-x;border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top, #f2dede 0, #e7c3c3 100%);background-image:-o-linear-gradient(top, #f2dede 0, #e7c3c3 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #f2dede), to(#e7c3c3));background-image:linear-gradient(to bottom, #f2dede 0, #e7c3c3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);background-repeat:repeat-x;border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top, #ebebeb 0, #f5f5f5 100%);background-image:-o-linear-gradient(top, #ebebeb 0, #f5f5f5 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #ebebeb), to(#f5f5f5));background-image:linear-gradient(to bottom, #ebebeb 0, #f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x}.progress-bar{background-image:-webkit-linear-gradient(top, #428bca 0, #3071a9 100%);background-image:-o-linear-gradient(top, #428bca 0, #3071a9 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #428bca), to(#3071a9));background-image:linear-gradient(to bottom, #428bca 0, #3071a9 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3071a9', GradientType=0);background-repeat:repeat-x}.progress-bar-success{background-image:-webkit-linear-gradient(top, #5cb85c 0, #449d44 100%);background-image:-o-linear-gradient(top, #5cb85c 0, #449d44 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #5cb85c), to(#449d44));background-image:linear-gradient(to bottom, #5cb85c 0, #449d44 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);background-repeat:repeat-x}.progress-bar-info{background-image:-webkit-linear-gradient(top, #5bc0de 0, #31b0d5 100%);background-image:-o-linear-gradient(top, #5bc0de 0, #31b0d5 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #5bc0de), to(#31b0d5));background-image:linear-gradient(to bottom, #5bc0de 0, #31b0d5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);background-repeat:repeat-x}.progress-bar-warning{background-image:-webkit-linear-gradient(top, #f0ad4e 0, #ec971f 100%);background-image:-o-linear-gradient(top, #f0ad4e 0, #ec971f 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #f0ad4e), to(#ec971f));background-image:linear-gradient(to bottom, #f0ad4e 0, #ec971f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);background-repeat:repeat-x}.progress-bar-danger{background-image:-webkit-linear-gradient(top, #d9534f 0, #c9302c 100%);background-image:-o-linear-gradient(top, #d9534f 0, #c9302c 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #d9534f), to(#c9302c));background-image:linear-gradient(to bottom, #d9534f 0, #c9302c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);background-repeat:repeat-x}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.075);box-shadow:0 1px 2px rgba(0,0,0,0.075)}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{text-shadow:0 -1px 0 #3071a9;background-image:-webkit-linear-gradient(top, #428bca 0, #3278b3 100%);background-image:-o-linear-gradient(top, #428bca 0, #3278b3 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #428bca), to(#3278b3));background-image:linear-gradient(to bottom, #428bca 0, #3278b3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3278b3', GradientType=0);background-repeat:repeat-x;border-color:#3278b3}.list-group-item.active .badge,.list-group-item.active:hover .badge,.list-group-item.active:focus .badge{text-shadow:none}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);background-image:-o-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #f5f5f5), to(#e8e8e8));background-image:linear-gradient(to bottom, #f5f5f5 0, #e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top, #428bca 0, #357ebd 100%);background-image:-o-linear-gradient(top, #428bca 0, #357ebd 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #428bca), to(#357ebd));background-image:linear-gradient(to bottom, #428bca 0, #357ebd 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);background-repeat:repeat-x}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top, #dff0d8 0, #d0e9c6 100%);background-image:-o-linear-gradient(top, #dff0d8 0, #d0e9c6 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #dff0d8), to(#d0e9c6));background-image:linear-gradient(to bottom, #dff0d8 0, #d0e9c6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);background-repeat:repeat-x}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top, #d9edf7 0, #c4e3f3 100%);background-image:-o-linear-gradient(top, #d9edf7 0, #c4e3f3 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #d9edf7), to(#c4e3f3));background-image:linear-gradient(to bottom, #d9edf7 0, #c4e3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);background-repeat:repeat-x}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top, #fcf8e3 0, #faf2cc 100%);background-image:-o-linear-gradient(top, #fcf8e3 0, #faf2cc 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #fcf8e3), to(#faf2cc));background-image:linear-gradient(to bottom, #fcf8e3 0, #faf2cc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);background-repeat:repeat-x}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top, #f2dede 0, #ebcccc 100%);background-image:-o-linear-gradient(top, #f2dede 0, #ebcccc 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #f2dede), to(#ebcccc));background-image:linear-gradient(to bottom, #f2dede 0, #ebcccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);background-repeat:repeat-x}.well{background-image:-webkit-linear-gradient(top, #e8e8e8 0, #f5f5f5 100%);background-image:-o-linear-gradient(top, #e8e8e8 0, #f5f5f5 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #e8e8e8), to(#f5f5f5));background-image:linear-gradient(to bottom, #e8e8e8 0, #f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x;border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,0.05),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 3px rgba(0,0,0,0.05),0 1px 0 rgba(255,255,255,0.1)} \ No newline at end of file diff --git a/v2.15.5/css/bootstrap.min.css b/v2.15.5/css/bootstrap.min.css new file mode 100644 index 000000000..633f7473d --- /dev/null +++ b/v2.15.5/css/bootstrap.min.css @@ -0,0 +1,7 @@ +/*! + * Generated using the Bootstrap Customizer (https://getbootstrap.com/docs/3.4/customize/) + *//*! + * Bootstrap v3.4.1 (https://getbootstrap.com/) + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,*:before,*:after{color:#000 !important;text-shadow:none !important;background:transparent !important;-webkit-box-shadow:none !important;box-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:400;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#428bca}a.text-primary:hover,a.text-primary:focus{color:#3071a9}.text-success{color:#3c763d}a.text-success:hover,a.text-success:focus{color:#2b542c}.text-info{color:#31708f}a.text-info:hover,a.text-info:focus{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover,a.text-danger:focus{color:#843534}.bg-primary{color:#fff;background-color:#428bca}a.bg-primary:hover,a.bg-primary:focus{background-color:#3071a9}.bg-success{background-color:#dff0d8}a.bg-success:hover,a.bg-success:focus{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover,a.bg-info:focus{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover,a.bg-danger:focus{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:"\2014 \00A0"}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:""}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:"\00A0 \2014"}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.row-no-gutters{margin-right:0;margin-left:0}.row-no-gutters [class*="col-"]{padding-right:0;padding-left:0}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}table col[class*="col-"]{position:static;display:table-column;float:none}table td[class*="col-"],table th[class*="col-"]{position:static;display:table-cell;float:none}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;appearance:none}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#777;opacity:1}.form-control:-ms-input-placeholder{color:#777}.form-control::-webkit-input-placeholder{color:#777}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{line-height:34px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm,.input-group-sm input[type="date"],.input-group-sm input[type="time"],.input-group-sm input[type="datetime-local"],.input-group-sm input[type="month"]{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg,.input-group-lg input[type="date"],.input-group-lg input[type="time"],.input-group-lg input[type="datetime-local"],.input-group-lg input[type="month"]{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-top:4px \9;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm textarea.form-control,.form-group-sm select[multiple].form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg textarea.form-control,.form-group-lg select[multiple].form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.33}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback,.input-group-lg+.form-control-feedback,.form-group-lg .form-control+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback,.input-group-sm+.form-control-feedback,.form-group-sm .form-control+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);opacity:.65;-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;background-image:none;border-color:#adadad}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#3071a9;border-color:#193c5a}.btn-primary:hover{color:#fff;background-color:#3071a9;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#3071a9;background-image:none;border-color:#285e8e}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#285e8e;border-color:#193c5a}.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus{background-color:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;background-image:none;border-color:#398439}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;background-image:none;border-color:#269abc}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;background-image:none;border-color:#d58512}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;background-image:none;border-color:#ac2925}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#428bca;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;-o-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#428bca;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-right:15px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-right:-15px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left !important}.navbar-right{float:right !important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#777}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#777}.navbar-inverse .navbar-nav>li>a{color:#777}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-link{color:#777}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#777}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#428bca;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{z-index:2;color:#2a6496;background-color:#eee;border-color:#ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:3;color:#fff;cursor:default;background-color:#428bca;border-color:#428bca}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.33}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge,.btn-group-xs>.btn .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0%;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#e1edf7}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,button.list-group-item:hover,a.list-group-item:focus,button.list-group-item:focus{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,button.list-group-item-success:hover,a.list-group-item-success:focus,button.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,button.list-group-item-success.active,a.list-group-item-success.active:hover,button.list-group-item-success.active:hover,a.list-group-item-success.active:focus,button.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,button.list-group-item-info:hover,a.list-group-item-info:focus,button.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,button.list-group-item-info.active,a.list-group-item-info.active:hover,button.list-group-item-info.active:hover,a.list-group-item-info.active:focus,button.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,button.list-group-item-warning:hover,a.list-group-item-warning:focus,button.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,button.list-group-item-warning.active,a.list-group-item-warning.active:hover,button.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus,button.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,button.list-group-item-danger:hover,a.list-group-item-danger:focus,button.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,button.list-group-item-danger.active,a.list-group-item-danger.active:hover,button.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus,button.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a,.panel-title>small,.panel-title>.small,.panel-title>small>a,.panel-title>.small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-right:15px;padding-left:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#428bca}.panel-primary>.panel-heading .badge{color:#428bca;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.panel-body:before,.panel-body:after{display:table;content:" "}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.panel-body:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}} \ No newline at end of file diff --git a/v2.15.5/css/doctum.css b/v2.15.5/css/doctum.css new file mode 100644 index 000000000..77796f877 --- /dev/null +++ b/v2.15.5/css/doctum.css @@ -0,0 +1,508 @@ +html, +body, +#content { + height: 100%; +} + +/* Site menu */ + +#site-nav.navbar-default { + margin: 0; + border-radius: 0; + border-bottom: 1px solid #ccc; + background-color: #edf3fe; + background-image: none; +} + +#site-nav.navbar-default .navbar-brand, +#site-nav.navbar-default .navbar-nav > li > a { + color: #000; +} + +#site-nav.navbar-default .navbar-nav > li > a:hover { + text-decoration: underline; +} + +#navbar-elements { + float: right; +} + +@media (max-width: 768px) { + #navbar-elements { + float: none !important; + } +} + +/* Namespace breadcrumbs */ + +.namespace-breadcrumbs .breadcrumb { + margin: 0 0 12px; + border-radius: 0 0 4px 4px; + padding-left: 35px; +} + +.namespace-breadcrumbs .breadcrumb > li + li:before { + content: ""; +} +.namespace-breadcrumbs .breadcrumb > .backslash { + color: #ccc; +} + +/* Site columns */ + +#right-column { + margin-left: 20%; +} + +#page-content { + padding: 0 30px; +} + +#left-column { + width: 20%; + position: fixed; + height: 100%; + border-right: 1px solid #ccc; + line-height: 18px; + font-size: 13px; + display: flex; + flex-flow: column; +} + +@media (max-width: 991px) { + #left-column { + display: none; + } + #right-column { + width: 100%; + margin-left: 0; + } +} + +/* API Tree */ + +#api-tree { + background: linear-gradient(to bottom, #fff, #fff 50%, #edf3fe 50%, #edf3fe); + background-size: 100% 56px; + overflow: auto; + height: 100%; + background-attachment: local; +} + +#api-tree ul { + list-style-type: none; + margin: 0; + padding: 0; +} + +#api-tree ul li { + padding: 0; + margin: 0; +} + +/* Prevents the menu from jittering on lad */ +#api-tree .icon-play { + width: 26px; +} + +#api-tree ul li .hd { + padding: 5px; +} + +#api-tree li .hd:nth-child(even) { + background-color: #edf3fe; +} + +#api-tree ul li.opened > .hd span { + -webkit-transform: rotate(90deg); + -moz-transform: rotate(90deg); + -o-transform: rotate(90deg); + -ms-transform: rotate(90deg); + transform: rotate(90deg); +} + +#api-tree .bd { + display: none; +} + +#api-tree li.opened > .bd { + display: block; +} + +#api-tree li .hd:hover { + background-color: #eee; +} + +#api-tree li.active > .hd { + background-color: #3875d7; +} + +#api-tree li.active > .hd a { + color: #eee; + font-weight: bold; +} + +#api-tree a { + color: #222; +} + +#api-tree div.leaf a { + margin-left: 20px; +} + +#api-tree .hd span { + padding: 0px 8px; + font-size: 15px; + line-height: 85%; +} + +/* Control panel, search form, version drop-down */ + +#control-panel { + background: #e8e8e8; + border-bottom: 1px solid #666; + padding: 4px; +} + +#control-panel form, #control-panel > .search-bar { + margin: 4px 4px 5px 4px; +} + +#control-panel > .search-bar > .progress { + height: 5px; + margin-bottom: 0px; +} + +#control-panel > .search-bar > .progress > .progress-bar { + background: #30a0e0; +} + +/* Source: https://stackoverflow.com/a/38229228/5155484 */ + +.progress-bar.indeterminate { + position: relative; + animation: progress-indeterminate 3s linear infinite; +} + +@keyframes progress-indeterminate { + from { left: -25%; width: 25%; } + to { left: 100%; width: 25%;} +} + +#search-form { + position: relative; +} + +#search-form input { + width: 100%; + padding-left: 28px; +} + +#search-form span.icon-search { + position: absolute; + left: 5px; + top: 8px; + font-size: 20px; + z-index: 2; +} + +/** Typeahead */ + +.auto-complete-results { + width: 100%; + z-index: 1; +} + +.auto-complete-dropdown-menu { + overflow: auto; + max-height: 260px; + margin-top: 9px; + background-color: #fff; + border: 1px solid #ccc; + border-radius: 8px; + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + padding: 8px; +} + +.auto-complete-result { + padding: 8px; + border-bottom: 1px solid #ccc; + font-size: 1.1em; +} + +.auto-complete-selected, .auto-complete-result:hover { + background-color: #3875d7; + color: #fff; +} + +.auto-complete-selected > mark.auto-complete-highlight, .auto-complete-result:hover > mark.auto-complete-highlight { + color: #fff; +} + +.auto-complete-highlight { + padding: 0px; + font-weight: bold; + background-color: transparent; +} + +/** General typography **/ + +.navbar { + border-bottom: 0; +} + +.page-header { + margin: 0 0 20px; +} + +abbr[title], +abbr[data-original-title], +abbr { + border-bottom: none; + cursor: pointer; +} + +a abbr { + cursor: pointer; +} + +.method-description table, +.description table { + border: solid 1px #ccc; + padding: 1em; + margin: 1em; +} + +.method-description td, +.method-description th, +.description td, +.description th { + padding: 0.75em 1.25em; +} + +.method-description tbody tr:nth-child(even), +.description tbody tr:nth-child(even) { + background: #edf3fe; +} + +.method-description tbody tr:nth-child(odd), +.description tbody tr:nth-child(odd) { + background: #fff; +} + +.method-description thead tr, +.description thead tr { + background: #edf3fe; +} + +/** General Doctum styling **/ + +.underlined > .row { + padding: 8px 0; + border-bottom: 1px solid #ddd; +} + +#footer { + text-align: right; + margin: 30px; + font-size: 11px; +} + +.description { + margin: 10px 0; + padding: 10px; + background-color: #efefef; +} + +.description p { + padding: 0; + margin: 8px 0; +} + +.method-description { + margin: 0 0 24px 0; +} + +.details { + padding-left: 30px; +} + +#method-details .method-item { + margin-bottom: 30px; +} + +.method-item h3, +.method-item h3 code { + background-color: #eee; +} + +.method-item h3 { + padding: 4px; + margin-bottom: 20px; + font-size: 20px; +} + +.location { + font-size: 11px; + float: right; + font-style: italic; +} + +.namespace-list a { + padding: 3px 8px; + margin: 0 5px 5px 0; + border: 1px solid #ddd; + background-color: #f9f9f9; + display: inline-block; + border-radius: 4px; +} + +.no-description { + color: #ccc; + font-size: 90%; +} + +.type { + overflow-wrap: break-word; +} + +/* Namespaces page */ + +.namespaces { + clear: both; +} + +.namespaces .namespace-container { + float: left; + margin: 0 14px 14px 0; + min-width: 30%; +} + +.namespaces h2 { + margin: 0 0 20px 0; +} + +.namespace-container > h2 { + background-color: #edf3fe; + padding: 4px 4px 4px 8px; + font-size: 25px; + margin: 20px 0; +} + +@media (max-width: 991px) { + .namespaces .namespace-container { + margin-right: 0; + width: 100%; + } +} + +/** Code and pre tags **/ + +tt, +code, +pre { + font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace; +} + +code { + padding: 0; + padding-top: 0.2em; + padding-bottom: 0.2em; + margin: 0; + font-size: 85%; + background-color: rgba(0, 0, 0, 0.04); + border-radius: 3px; + color: #333; +} + +pre { + padding: 16px; + overflow: auto; + font-size: 85%; + line-height: 1.45; + background-color: #f7f7f7; + border-radius: 3px; +} + +pre.examples { + padding: 1rem; +} + +#page-content > h2 { + background-color: #edf3fe; + padding: 4px 4px 4px 8px; + font-size: 25px; + margin: 20px 0; +} + + +/** Doc index **/ + +dt { + font-weight: normal; +} + +dd { + margin-left: 30px; + line-height: 1.5em; +} + +#doc-index h2 { + font-weight: bold; + margin: 30px 0; +} + +#doc-index .pagination { + margin: 0; +} + +/* Search page */ + +.search-results { + list-style-type: none; + padding: 0; + margin: 0; +} + +.search-results li { + list-style-type: none; + margin: 0; + padding: 14px 0; + border-bottom: 1px solid #ccc; +} + +.search-results > li > h2 { + background: none; + margin: 0; + padding: 0; + font-size: 18px; +} + +.search-results > li > h2 > a { + float: left; + display: block; + margin: 0 0 4px 0; +} + +.search-results .search-type { + float: right; + margin: 0 0 4px 0; +} + +.search-results .search-from { + margin: 0 0 12px 0; + font-size: 12px; + color: #999; +} + +.search-results .search-from a { + font-style: italic; +} + +.search-results .search-description { + margin: 8px 0 0 30px; +} + +.search-description { + white-space: pre; +} diff --git a/v2.15.5/doc-index.html b/v2.15.5/doc-index.html new file mode 100644 index 000000000..e0dee0e23 --- /dev/null +++ b/v2.15.5/doc-index.html @@ -0,0 +1,511 @@ + + + + + + Index | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ + + + +

A

+
AuthHandlerFactoryClass in namespace Google\AuthHandler
+
+Guzzle6AuthHandler::attachCredentials() — Method in class Guzzle6AuthHandler
+
+Guzzle6AuthHandler::attachCredentialsCache() — Method in class Guzzle6AuthHandler
+
+Guzzle6AuthHandler::attachToken() — Method in class Guzzle6AuthHandler
+
+Guzzle6AuthHandler::attachKey() — Method in class Guzzle6AuthHandler
+
+Client::authenticate() — Method in class Client
+

For backwards compatibility +alias for fetchAccessTokenWithAuthCode

+Client::authorize() — Method in class Client
+

Adds auth listeners to the HTTP client based on the credentials +set in the Google API Client object

+Client::addScope() — Method in class Client
+

This functions adds a scope to be requested as part of the OAuth2.0 flow.

+Batch::add() — Method in class Batch
+
+Model::assertIsArray() — Method in class Model
+

Verify if $obj is an array.

$ +Service#availableScopesProperty in class Service
+
$ +Resource#apiVersionProperty in class Resource
+
+Runner::attempt() — Method in class Runner
+

Runs a task once, if possible. This is useful for bypassing the run() +loop.

+Runner::allowedRetries() — Method in class Runner
+

Gets the number of times the associated task can be retried.

B

+
+AuthHandlerFactory::build() — Method in class AuthHandlerFactory
+

Builds out a default http handler for the installed version of guzzle.

BatchClass in namespace Google\Http
+

Class to handle batched requests to the Google API service.

$ +Service#batchPathProperty in class Service
+

C

+
$ +Guzzle6AuthHandler#cacheProperty in class Guzzle6AuthHandler
+
$ +Guzzle6AuthHandler#cacheConfigProperty in class Guzzle6AuthHandler
+
ClientClass in namespace Google
+

The Google API Client +https://github.com/google/google-api-php-client

+Client::createAuthUrl() — Method in class Client
+

Create a URL to obtain user authorization.

+Client::createOAuth2Service() — Method in class Client
+

create a default google auth object

+Client::createDefaultLogger() — Method in class Client
+
+Client::createDefaultCache() — Method in class Client
+
+Client::createDefaultHttpClient() — Method in class Client
+
CollectionClass in namespace Google
+

Extension to the regular Google\Model that automatically +exposes the items array for iteration, so you can just +iterate over the object rather than a reference inside.

$ +Collection#collection_keyProperty in class Collection
+
+Collection::current() — Method in class Collection
+
+Collection::count() — Method in class Collection
+
+Service::createBatch() — Method in class Service
+

Create a new HTTP Batch handler for this service

+Resource::call() — Method in class Resource
+

TODO: This function needs simplifying.

+Resource::convertToArrayAndStripNulls() — Method in class Resource
+
+Resource::createRequestUri() — Method in class Resource
+

Parse/expand request parameters and create a fully qualified +request uri.

ComposerClass in namespace Google\Task
+
+Composer::cleanup() — Method in class Composer
+
+Runner::canAttempt() — Method in class Runner
+

Checks if a retry can be attempted.

+UriTemplate::combine() — Method in class UriTemplate
+

D

+
+REST::doExecute() — Method in class REST
+

Executes a Psr\Http\Message\RequestInterface

+REST::decodeHttpResponse() — Method in class REST
+

Decode an HTTP Response.

+Model::dataType() — Method in class Model
+

E

+
+Client::execute() — Method in class Client
+

Helper method to execute deferred HTTP requests.

ExceptionClass in namespace Google
+
+Batch::execute() — Method in class Batch
+
+REST::execute() — Method in class REST
+

Executes a Psr\Http\Message\RequestInterface and (if applicable) automatically retries +when errors occur.

ExceptionClass in namespace Google\Service
+
$ +Exception#errorsProperty in class Exception
+

Optional list of errors returned in a JSON body of an HTTP error response.

ExceptionClass in namespace Google\Task
+

F

+
+Client::fetchAccessTokenWithAuthCode() — Method in class Client
+

Attempt to exchange a code for an valid authentication token.

+Client::fetchAccessTokenWithAssertion() — Method in class Client
+

Fetches a fresh access token with a given assertion token.

+Client::fetchAccessTokenWithRefreshToken() — Method in class Client
+

Fetches a fresh OAuth 2.0 access token with the given refresh token.

G

+
Guzzle6AuthHandlerClass in namespace Google\AuthHandler
+

This supports Guzzle 6

Guzzle7AuthHandlerClass in namespace Google\AuthHandler
+

This supports Guzzle 7

+Client::getLibraryVersion() — Method in class Client
+

Get a string containing the version of the library.

+Client::getAccessToken() — Method in class Client
+
+Client::getRefreshToken() — Method in class Client
+
+Client::getAuth() — Method in class Client
+
+Client::getClientId() — Method in class Client
+
+Client::getClientSecret() — Method in class Client
+
+Client::getRedirectUri() — Method in class Client
+
+Client::getScopes() — Method in class Client
+

Returns the list of scopes requested by the client

+Client::getConfig() — Method in class Client
+
+Client::getOAuth2Service() — Method in class Client
+
+Client::getCache() — Method in class Client
+
+Client::getLogger() — Method in class Client
+
+Client::getHttpClient() — Method in class Client
+
+Client::getAuthHandler() — Method in class Client
+
+Client::getUniverseDomain() — Method in class Client
+
+MediaFileUpload::getProgress() — Method in class MediaFileUpload
+

Return the progress on the upload

+MediaFileUpload::getHttpResultCode() — Method in class MediaFileUpload
+

Return the HTTP result code from the last call made.

+MediaFileUpload::getUploadType() — Method in class MediaFileUpload
+

Valid upload types:

+
    +
  • resumable (UPLOAD_RESUMABLE_TYPE)
  • +
  • media (UPLOAD_MEDIA_TYPE)
  • +
  • multipart (UPLOAD_MULTIPART_TYPE)
  • +
+MediaFileUpload::getResumeUri() — Method in class MediaFileUpload
+
+MediaFileUpload::getRequest() — Method in class MediaFileUpload
+
+Model::gapiInit() — Method in class Model
+

Blank initialiser to be used in subclasses to do post-construction initialisation - this +avoids the need for subclasses to have to implement the variadics handling in their +constructors.

+Service::getClient() — Method in class Service
+

Return the associated Google\Client class.

+Exception::getErrors() — Method in class Exception
+

An example of the possible errors returned.

I

+
+Client::isUsingApplicationDefaultCredentials() — Method in class Client
+

To prevent useApplicationDefaultCredentials from inappropriately being +called in a conditional

+Client::isAccessTokenExpired() — Method in class Client
+

Returns if the access_token is expired.

+Client::isAppEngine() — Method in class Client
+

Are we running in Google AppEngine? +return bool

$ +Model#internal_gapi_mappingsProperty in class Model
+
+Model::isAssociativeArray() — Method in class Model
+

Returns true only if the array is associative.

J

+
$ +Verify#jwtProperty in class Verify
+

K

+
+Collection::key() — Method in class Collection
+
+Model::keyType() — Method in class Model
+

M

+
MediaFileUploadClass in namespace Google\Http
+

Manage large file uploads, which may be media but can be any type +of sizable data.

ModelClass in namespace Google
+

This class defines attributes, valid values, and usage which is generated +from a given json schema.

$ +Model#modelDataProperty in class Model
+
+Model::mapTypes() — Method in class Model
+

Initialize this object's properties from an array.

N

+
+Collection::next() — Method in class Collection
+
+MediaFileUpload::nextChunk() — Method in class MediaFileUpload
+

Send the next part of the file to upload.

O

+
+Collection::offsetExists() — Method in class Collection
+
+Collection::offsetGet() — Method in class Collection
+
+Collection::offsetSet() — Method in class Collection
+
+Collection::offsetUnset() — Method in class Collection
+
+Model::offsetExists() — Method in class Model
+
+Model::offsetGet() — Method in class Model
+
+Model::offsetSet() — Method in class Model
+
+Model::offsetUnset() — Method in class Model
+

P

+
+Client::prepareScopes() — Method in class Client
+
+Batch::parseResponse() — Method in class Batch
+
$ +Model#processedProperty in class Model
+
+UriTemplate::parse() — Method in class UriTemplate
+

R

+
RevokeClass in namespace Google\AccessToken
+

Wrapper around Google Access Tokens which provides convenience functions

+Revoke::revokeToken() — Method in class Revoke
+

Revoke an OAuth2 access token or refresh token. This method will revoke the current access +token, if a token isn't provided.

$ +Client#requestedScopesProperty in class Client
+
+Client::refreshTokenWithAssertion() — Method in class Client
+

For backwards compatibility +alias for fetchAccessTokenWithAssertion

+Client::refreshToken() — Method in class Client
+

For backwards compatibility +alias for fetchAccessTokenWithRefreshToken

+Client::revokeToken() — Method in class Client
+

Revoke an OAuth2 access token or refresh token. This method will revoke the current access +token, if a token isn't provided.

+Collection::rewind() — Method in class Collection
+
+MediaFileUpload::resume() — Method in class MediaFileUpload
+

Resume a previously unfinished upload

RESTClass in namespace Google\Http
+

This class implements the RESTful transport of apiServiceRequest()'s

$ +Service#rootUrlProperty in class Service
+

Only used in getBatch

$ +Service#rootUrlTemplateProperty in class Service
+
$ +Service#resourceProperty in class Service
+
ResourceClass in namespace Google\Service
+

Implements the actual methods/resources of the discovered Google API using magic function +calling overloading (__call()), which on call will see if the method name (plus.activities.list) +is available in this service, and if so construct an apiHttpRequest representing it.

RetryableClass in namespace Google\Task
+

Interface for checking how many times a given task can be retried following +a failure.

RunnerClass in namespace Google\Task
+

A task runner with exponential backoff support.

$ +Runner#retryMapProperty in class Runner
+
+Runner::run() — Method in class Runner
+

Runs the task and (if applicable) automatically retries when errors occur.

S

+
+Client::setAccessToken() — Method in class Client
+

Set the access token used for requests.

+Client::setAuth() — Method in class Client
+
+Client::setClientId() — Method in class Client
+

Set the OAuth 2.0 Client ID.

+Client::setClientSecret() — Method in class Client
+

Set the OAuth 2.0 Client Secret.

+Client::setRedirectUri() — Method in class Client
+

Set the OAuth 2.0 Redirect URI.

+Client::setState() — Method in class Client
+

Set OAuth 2.0 "state" parameter to achieve per-request customization.

+Client::setAccessType() — Method in class Client
+
+Client::setApprovalPrompt() — Method in class Client
+
+Client::setLoginHint() — Method in class Client
+

Set the login hint, email address or sub id.

+Client::setApplicationName() — Method in class Client
+

Set the application name, this is included in the User-Agent HTTP header.

+Client::setRequestVisibleActions() — Method in class Client
+

If 'plus.login' is included in the list of requested scopes, you can use +this method to define types of app activities that your app will write.

+Client::setDeveloperKey() — Method in class Client
+

Set the developer key to use, these are obtained through the API Console.

+Client::setHostedDomain() — Method in class Client
+

Set the hd (hosted domain) parameter streamlines the login process for +Google Apps hosted accounts. By including the domain of the user, you +restrict sign-in to accounts at that domain.

+Client::setPrompt() — Method in class Client
+

Set the prompt hint. Valid values are none, consent and select_account.

+Client::setOpenidRealm() — Method in class Client
+

openid.realm is a parameter from the OpenID 2.0 protocol, not from OAuth +2.0. It is used in OpenID 2.0 requests to signify the URL-space for which +an authentication request is valid.

+Client::setIncludeGrantedScopes() — Method in class Client
+

If this is provided with the value true, and the authorization request is +granted, the authorization will include any previous authorizations +granted to this user/application combination for other scopes.

+Client::setTokenCallback() — Method in class Client
+

sets function to be called when an access token is fetched

+Client::setScopes() — Method in class Client
+

Set the scopes to be requested. Must be called before createAuthUrl().

+Client::setUseBatch() — Method in class Client
+

Declare whether batch calls should be used. This may increase throughput +by making multiple requests in one connection.

+Client::setConfig() — Method in class Client
+
+Client::setAuthConfigFile() — Method in class Client
+

For backwards compatibility +alias for setAuthConfig

+Client::setAuthConfig() — Method in class Client
+

Set the auth config from new or deprecated JSON config.

+Client::setSubject() — Method in class Client
+

Use when the service account has been delegated domain wide access.

+Client::setDefer() — Method in class Client
+

Declare whether making API calls should make the call immediately, or +return a request which can be called with ->execute();

+Client::shouldDefer() — Method in class Client
+

Whether or not to return raw requests

+Client::setCache() — Method in class Client
+

Set the Cache object

+Client::setCacheConfig() — Method in class Client
+
+Client::setLogger() — Method in class Client
+

Set the Logger object

+Client::setHttpClient() — Method in class Client
+

Set the Http Client object

+Client::setApiFormatV2() — Method in class Client
+

Set the API format version.

+MediaFileUpload::setFileSize() — Method in class MediaFileUpload
+

Set the size of the file that is being uploaded.

+MediaFileUpload::setChunkSize() — Method in class MediaFileUpload
+
ServiceClass in namespace Google
+
$ +Service#servicePathProperty in class Service
+
$ +Service#serviceNameProperty in class Service
+
+Runner::setRetryMap() — Method in class Runner
+

T

+
+Model::toSimpleObject() — Method in class Model
+

Create a simplified object suitable for straightforward +conversion to JSON. This is relatively expensive +due to the usage of reflection, but shouldn't be called +a whole lot, and is the most straightforward way to filter.

U

+
+Client::useApplicationDefaultCredentials() — Method in class Client
+

Set the configuration to use application default credentials for +authentication

UriTemplateClass in namespace Google\Utils
+

Implementation of levels 1-3 of the URI Template spec.

V

+
VerifyClass in namespace Google\AccessToken
+

Wrapper around Google Access Tokens which provides convenience functions

+Verify::verifyIdToken() — Method in class Verify
+

Verifies an id token and returns the authenticated apiLoginTicket.

+Client::verifyIdToken() — Method in class Client
+

Verify an id_token. This method will verify the current id_token, if one +isn't provided.

+Collection::valid() — Method in class Collection
+
$ +Service#versionProperty in class Service
+

_

+
+Revoke::__construct() — Method in class Revoke
+

Instantiates the class, but does not initiate the login flow, leaving it +to the discretion of the caller.

+Verify::__construct() — Method in class Verify
+

Instantiates the class, but does not initiate the login flow, leaving it +to the discretion of the caller.

+Guzzle6AuthHandler::__construct() — Method in class Guzzle6AuthHandler
+
+Client::__construct() — Method in class Client
+

Construct the Google Client.

+Batch::__construct() — Method in class Batch
+
+MediaFileUpload::__construct() — Method in class MediaFileUpload
+
+Model::__construct() — Method in class Model
+

Polymorphic - accepts a variable number of arguments dependent +on the type of the model subclass.

+Model::__get() — Method in class Model
+

Getter that handles passthrough access to the data array, and lazy object creation.

+Model::__isset() — Method in class Model
+
+Model::__unset() — Method in class Model
+
+Service::__construct() — Method in class Service
+
+Exception::__construct() — Method in class Exception
+

Override default constructor to add the ability to set $errors and a retry +map.

+Resource::__construct() — Method in class Resource
+
+Runner::__construct() — Method in class Runner
+

Creates a new task runner with exponential backoff support.

+
+ + + diff --git a/v2.15.5/doctum-search.json b/v2.15.5/doctum-search.json new file mode 100644 index 000000000..48f6ba17f --- /dev/null +++ b/v2.15.5/doctum-search.json @@ -0,0 +1 @@ +{"items":[{"t":"C","n":"Google\\AccessToken\\Revoke","p":"Google/AccessToken/Revoke.html","d":"

Wrapper around Google Access Tokens which provides convenience functions

","f":{"n":"Google\\AccessToken","p":"Google/AccessToken.html"}},{"t":"C","n":"Google\\AccessToken\\Verify","p":"Google/AccessToken/Verify.html","d":"

Wrapper around Google Access Tokens which provides convenience functions

","f":{"n":"Google\\AccessToken","p":"Google/AccessToken.html"}},{"t":"C","n":"Google\\AuthHandler\\AuthHandlerFactory","p":"Google/AuthHandler/AuthHandlerFactory.html","d":null,"f":{"n":"Google\\AuthHandler","p":"Google/AuthHandler.html"}},{"t":"C","n":"Google\\AuthHandler\\Guzzle6AuthHandler","p":"Google/AuthHandler/Guzzle6AuthHandler.html","d":"

This supports Guzzle 6

","f":{"n":"Google\\AuthHandler","p":"Google/AuthHandler.html"}},{"t":"C","n":"Google\\AuthHandler\\Guzzle7AuthHandler","p":"Google/AuthHandler/Guzzle7AuthHandler.html","d":"

This supports Guzzle 7

","f":{"n":"Google\\AuthHandler","p":"Google/AuthHandler.html"}},{"t":"C","n":"Google\\Client","p":"Google/Client.html","d":"

The Google API Client\nhttps://github.com/google/google-api-php-client

","f":{"n":"Google","p":"Google.html"}},{"t":"C","n":"Google\\Collection","p":"Google/Collection.html","d":"

Extension to the regular Google\\Model that automatically\nexposes the items array for iteration, so you can just\niterate over the object rather than a reference inside.

","f":{"n":"Google","p":"Google.html"}},{"t":"C","n":"Google\\Exception","p":"Google/Exception.html","d":null,"f":{"n":"Google","p":"Google.html"}},{"t":"C","n":"Google\\Http\\Batch","p":"Google/Http/Batch.html","d":"

Class to handle batched requests to the Google API service.

","f":{"n":"Google\\Http","p":"Google/Http.html"}},{"t":"C","n":"Google\\Http\\MediaFileUpload","p":"Google/Http/MediaFileUpload.html","d":"

Manage large file uploads, which may be media but can be any type\nof sizable data.

","f":{"n":"Google\\Http","p":"Google/Http.html"}},{"t":"C","n":"Google\\Http\\REST","p":"Google/Http/REST.html","d":"

This class implements the RESTful transport of apiServiceRequest()'s

","f":{"n":"Google\\Http","p":"Google/Http.html"}},{"t":"C","n":"Google\\Model","p":"Google/Model.html","d":"

This class defines attributes, valid values, and usage which is generated\nfrom a given json schema.

","f":{"n":"Google","p":"Google.html"}},{"t":"C","n":"Google\\Service","p":"Google/Service.html","d":null,"f":{"n":"Google","p":"Google.html"}},{"t":"C","n":"Google\\Service\\Exception","p":"Google/Service/Exception.html","d":null,"f":{"n":"Google\\Service","p":"Google/Service.html"}},{"t":"C","n":"Google\\Service\\Resource","p":"Google/Service/Resource.html","d":"

Implements the actual methods/resources of the discovered Google API using magic function\ncalling overloading (__call()), which on call will see if the method name (plus.activities.list)\nis available in this service, and if so construct an apiHttpRequest representing it.

","f":{"n":"Google\\Service","p":"Google/Service.html"}},{"t":"C","n":"Google\\Task\\Composer","p":"Google/Task/Composer.html","d":null,"f":{"n":"Google\\Task","p":"Google/Task.html"}},{"t":"C","n":"Google\\Task\\Exception","p":"Google/Task/Exception.html","d":null,"f":{"n":"Google\\Task","p":"Google/Task.html"}},{"t":"C","n":"Google\\Task\\Retryable","p":"Google/Task/Retryable.html","d":"

Interface for checking how many times a given task can be retried following\na failure.

","f":{"n":"Google\\Task","p":"Google/Task.html"}},{"t":"C","n":"Google\\Task\\Runner","p":"Google/Task/Runner.html","d":"

A task runner with exponential backoff support.

","f":{"n":"Google\\Task","p":"Google/Task.html"}},{"t":"C","n":"Google\\Utils\\UriTemplate","p":"Google/Utils/UriTemplate.html","d":"

Implementation of levels 1-3 of the URI Template spec.

","f":{"n":"Google\\Utils","p":"Google/Utils.html"}},{"t":"I","n":"Google\\Task\\Retryable","p":"Google/Task/Retryable.html","f":{"n":"Google\\Task","p":"Google/Task.html"}},{"t":"M","n":"Google\\AccessToken\\Revoke::__construct","p":"Google/AccessToken/Revoke.html#method___construct","d":"

Instantiates the class, but does not initiate the login flow, leaving it\nto the discretion of the caller.

"},{"t":"M","n":"Google\\AccessToken\\Revoke::revokeToken","p":"Google/AccessToken/Revoke.html#method_revokeToken","d":"

Revoke an OAuth2 access token or refresh token. This method will revoke the current access\ntoken, if a token isn't provided.

"},{"t":"M","n":"Google\\AccessToken\\Verify::__construct","p":"Google/AccessToken/Verify.html#method___construct","d":"

Instantiates the class, but does not initiate the login flow, leaving it\nto the discretion of the caller.

"},{"t":"M","n":"Google\\AccessToken\\Verify::verifyIdToken","p":"Google/AccessToken/Verify.html#method_verifyIdToken","d":"

Verifies an id token and returns the authenticated apiLoginTicket.

"},{"t":"M","n":"Google\\AuthHandler\\AuthHandlerFactory::build","p":"Google/AuthHandler/AuthHandlerFactory.html#method_build","d":"

Builds out a default http handler for the installed version of guzzle.

"},{"t":"M","n":"Google\\AuthHandler\\Guzzle6AuthHandler::__construct","p":"Google/AuthHandler/Guzzle6AuthHandler.html#method___construct","d":null},{"t":"M","n":"Google\\AuthHandler\\Guzzle6AuthHandler::attachCredentials","p":"Google/AuthHandler/Guzzle6AuthHandler.html#method_attachCredentials","d":null},{"t":"M","n":"Google\\AuthHandler\\Guzzle6AuthHandler::attachCredentialsCache","p":"Google/AuthHandler/Guzzle6AuthHandler.html#method_attachCredentialsCache","d":null},{"t":"M","n":"Google\\AuthHandler\\Guzzle6AuthHandler::attachToken","p":"Google/AuthHandler/Guzzle6AuthHandler.html#method_attachToken","d":null},{"t":"M","n":"Google\\AuthHandler\\Guzzle6AuthHandler::attachKey","p":"Google/AuthHandler/Guzzle6AuthHandler.html#method_attachKey","d":null},{"t":"M","n":"Google\\Client::__construct","p":"Google/Client.html#method___construct","d":"

Construct the Google Client.

"},{"t":"M","n":"Google\\Client::getLibraryVersion","p":"Google/Client.html#method_getLibraryVersion","d":"

Get a string containing the version of the library.

"},{"t":"M","n":"Google\\Client::authenticate","p":"Google/Client.html#method_authenticate","d":"

For backwards compatibility\nalias for fetchAccessTokenWithAuthCode

"},{"t":"M","n":"Google\\Client::fetchAccessTokenWithAuthCode","p":"Google/Client.html#method_fetchAccessTokenWithAuthCode","d":"

Attempt to exchange a code for an valid authentication token.

"},{"t":"M","n":"Google\\Client::refreshTokenWithAssertion","p":"Google/Client.html#method_refreshTokenWithAssertion","d":"

For backwards compatibility\nalias for fetchAccessTokenWithAssertion

"},{"t":"M","n":"Google\\Client::fetchAccessTokenWithAssertion","p":"Google/Client.html#method_fetchAccessTokenWithAssertion","d":"

Fetches a fresh access token with a given assertion token.

"},{"t":"M","n":"Google\\Client::refreshToken","p":"Google/Client.html#method_refreshToken","d":"

For backwards compatibility\nalias for fetchAccessTokenWithRefreshToken

"},{"t":"M","n":"Google\\Client::fetchAccessTokenWithRefreshToken","p":"Google/Client.html#method_fetchAccessTokenWithRefreshToken","d":"

Fetches a fresh OAuth 2.0 access token with the given refresh token.

"},{"t":"M","n":"Google\\Client::createAuthUrl","p":"Google/Client.html#method_createAuthUrl","d":"

Create a URL to obtain user authorization.

"},{"t":"M","n":"Google\\Client::authorize","p":"Google/Client.html#method_authorize","d":"

Adds auth listeners to the HTTP client based on the credentials\nset in the Google API Client object

"},{"t":"M","n":"Google\\Client::useApplicationDefaultCredentials","p":"Google/Client.html#method_useApplicationDefaultCredentials","d":"

Set the configuration to use application default credentials for\nauthentication

"},{"t":"M","n":"Google\\Client::isUsingApplicationDefaultCredentials","p":"Google/Client.html#method_isUsingApplicationDefaultCredentials","d":"

To prevent useApplicationDefaultCredentials from inappropriately being\ncalled in a conditional

"},{"t":"M","n":"Google\\Client::setAccessToken","p":"Google/Client.html#method_setAccessToken","d":"

Set the access token used for requests.

"},{"t":"M","n":"Google\\Client::getAccessToken","p":"Google/Client.html#method_getAccessToken","d":null},{"t":"M","n":"Google\\Client::getRefreshToken","p":"Google/Client.html#method_getRefreshToken","d":""},{"t":"M","n":"Google\\Client::isAccessTokenExpired","p":"Google/Client.html#method_isAccessTokenExpired","d":"

Returns if the access_token is expired.

"},{"t":"M","n":"Google\\Client::getAuth","p":"Google/Client.html#method_getAuth","d":""},{"t":"M","n":"Google\\Client::setAuth","p":"Google/Client.html#method_setAuth","d":""},{"t":"M","n":"Google\\Client::setClientId","p":"Google/Client.html#method_setClientId","d":"

Set the OAuth 2.0 Client ID.

"},{"t":"M","n":"Google\\Client::getClientId","p":"Google/Client.html#method_getClientId","d":null},{"t":"M","n":"Google\\Client::setClientSecret","p":"Google/Client.html#method_setClientSecret","d":"

Set the OAuth 2.0 Client Secret.

"},{"t":"M","n":"Google\\Client::getClientSecret","p":"Google/Client.html#method_getClientSecret","d":null},{"t":"M","n":"Google\\Client::setRedirectUri","p":"Google/Client.html#method_setRedirectUri","d":"

Set the OAuth 2.0 Redirect URI.

"},{"t":"M","n":"Google\\Client::getRedirectUri","p":"Google/Client.html#method_getRedirectUri","d":null},{"t":"M","n":"Google\\Client::setState","p":"Google/Client.html#method_setState","d":"

Set OAuth 2.0 "state" parameter to achieve per-request customization.

"},{"t":"M","n":"Google\\Client::setAccessType","p":"Google/Client.html#method_setAccessType","d":""},{"t":"M","n":"Google\\Client::setApprovalPrompt","p":"Google/Client.html#method_setApprovalPrompt","d":""},{"t":"M","n":"Google\\Client::setLoginHint","p":"Google/Client.html#method_setLoginHint","d":"

Set the login hint, email address or sub id.

"},{"t":"M","n":"Google\\Client::setApplicationName","p":"Google/Client.html#method_setApplicationName","d":"

Set the application name, this is included in the User-Agent HTTP header.

"},{"t":"M","n":"Google\\Client::setRequestVisibleActions","p":"Google/Client.html#method_setRequestVisibleActions","d":"

If 'plus.login' is included in the list of requested scopes, you can use\nthis method to define types of app activities that your app will write.

"},{"t":"M","n":"Google\\Client::setDeveloperKey","p":"Google/Client.html#method_setDeveloperKey","d":"

Set the developer key to use, these are obtained through the API Console.

"},{"t":"M","n":"Google\\Client::setHostedDomain","p":"Google/Client.html#method_setHostedDomain","d":"

Set the hd (hosted domain) parameter streamlines the login process for\nGoogle Apps hosted accounts. By including the domain of the user, you\nrestrict sign-in to accounts at that domain.

"},{"t":"M","n":"Google\\Client::setPrompt","p":"Google/Client.html#method_setPrompt","d":"

Set the prompt hint. Valid values are none, consent and select_account.

"},{"t":"M","n":"Google\\Client::setOpenidRealm","p":"Google/Client.html#method_setOpenidRealm","d":"

openid.realm is a parameter from the OpenID 2.0 protocol, not from OAuth\n2.0. It is used in OpenID 2.0 requests to signify the URL-space for which\nan authentication request is valid.

"},{"t":"M","n":"Google\\Client::setIncludeGrantedScopes","p":"Google/Client.html#method_setIncludeGrantedScopes","d":"

If this is provided with the value true, and the authorization request is\ngranted, the authorization will include any previous authorizations\ngranted to this user/application combination for other scopes.

"},{"t":"M","n":"Google\\Client::setTokenCallback","p":"Google/Client.html#method_setTokenCallback","d":"

sets function to be called when an access token is fetched

"},{"t":"M","n":"Google\\Client::revokeToken","p":"Google/Client.html#method_revokeToken","d":"

Revoke an OAuth2 access token or refresh token. This method will revoke the current access\ntoken, if a token isn't provided.

"},{"t":"M","n":"Google\\Client::verifyIdToken","p":"Google/Client.html#method_verifyIdToken","d":"

Verify an id_token. This method will verify the current id_token, if one\nisn't provided.

"},{"t":"M","n":"Google\\Client::setScopes","p":"Google/Client.html#method_setScopes","d":"

Set the scopes to be requested. Must be called before createAuthUrl().

"},{"t":"M","n":"Google\\Client::addScope","p":"Google/Client.html#method_addScope","d":"

This functions adds a scope to be requested as part of the OAuth2.0 flow.

"},{"t":"M","n":"Google\\Client::getScopes","p":"Google/Client.html#method_getScopes","d":"

Returns the list of scopes requested by the client

"},{"t":"M","n":"Google\\Client::prepareScopes","p":"Google/Client.html#method_prepareScopes","d":""},{"t":"M","n":"Google\\Client::execute","p":"Google/Client.html#method_execute","d":"

Helper method to execute deferred HTTP requests.

"},{"t":"M","n":"Google\\Client::setUseBatch","p":"Google/Client.html#method_setUseBatch","d":"

Declare whether batch calls should be used. This may increase throughput\nby making multiple requests in one connection.

"},{"t":"M","n":"Google\\Client::isAppEngine","p":"Google/Client.html#method_isAppEngine","d":"

Are we running in Google AppEngine?\nreturn bool

"},{"t":"M","n":"Google\\Client::setConfig","p":"Google/Client.html#method_setConfig","d":null},{"t":"M","n":"Google\\Client::getConfig","p":"Google/Client.html#method_getConfig","d":null},{"t":"M","n":"Google\\Client::setAuthConfigFile","p":"Google/Client.html#method_setAuthConfigFile","d":"

For backwards compatibility\nalias for setAuthConfig

"},{"t":"M","n":"Google\\Client::setAuthConfig","p":"Google/Client.html#method_setAuthConfig","d":"

Set the auth config from new or deprecated JSON config.

"},{"t":"M","n":"Google\\Client::setSubject","p":"Google/Client.html#method_setSubject","d":"

Use when the service account has been delegated domain wide access.

"},{"t":"M","n":"Google\\Client::setDefer","p":"Google/Client.html#method_setDefer","d":"

Declare whether making API calls should make the call immediately, or\nreturn a request which can be called with ->execute();

"},{"t":"M","n":"Google\\Client::shouldDefer","p":"Google/Client.html#method_shouldDefer","d":"

Whether or not to return raw requests

"},{"t":"M","n":"Google\\Client::getOAuth2Service","p":"Google/Client.html#method_getOAuth2Service","d":""},{"t":"M","n":"Google\\Client::createOAuth2Service","p":"Google/Client.html#method_createOAuth2Service","d":"

create a default google auth object

"},{"t":"M","n":"Google\\Client::setCache","p":"Google/Client.html#method_setCache","d":"

Set the Cache object

"},{"t":"M","n":"Google\\Client::getCache","p":"Google/Client.html#method_getCache","d":""},{"t":"M","n":"Google\\Client::setCacheConfig","p":"Google/Client.html#method_setCacheConfig","d":""},{"t":"M","n":"Google\\Client::setLogger","p":"Google/Client.html#method_setLogger","d":"

Set the Logger object

"},{"t":"M","n":"Google\\Client::getLogger","p":"Google/Client.html#method_getLogger","d":""},{"t":"M","n":"Google\\Client::createDefaultLogger","p":"Google/Client.html#method_createDefaultLogger","d":null},{"t":"M","n":"Google\\Client::createDefaultCache","p":"Google/Client.html#method_createDefaultCache","d":null},{"t":"M","n":"Google\\Client::setHttpClient","p":"Google/Client.html#method_setHttpClient","d":"

Set the Http Client object

"},{"t":"M","n":"Google\\Client::getHttpClient","p":"Google/Client.html#method_getHttpClient","d":""},{"t":"M","n":"Google\\Client::setApiFormatV2","p":"Google/Client.html#method_setApiFormatV2","d":"

Set the API format version.

"},{"t":"M","n":"Google\\Client::createDefaultHttpClient","p":"Google/Client.html#method_createDefaultHttpClient","d":null},{"t":"M","n":"Google\\Client::getAuthHandler","p":"Google/Client.html#method_getAuthHandler","d":null},{"t":"M","n":"Google\\Client::getUniverseDomain","p":"Google/Client.html#method_getUniverseDomain","d":null},{"t":"M","n":"Google\\Collection::rewind","p":"Google/Collection.html#method_rewind","d":""},{"t":"M","n":"Google\\Collection::current","p":"Google/Collection.html#method_current","d":""},{"t":"M","n":"Google\\Collection::key","p":"Google/Collection.html#method_key","d":""},{"t":"M","n":"Google\\Collection::next","p":"Google/Collection.html#method_next","d":""},{"t":"M","n":"Google\\Collection::valid","p":"Google/Collection.html#method_valid","d":""},{"t":"M","n":"Google\\Collection::count","p":"Google/Collection.html#method_count","d":""},{"t":"M","n":"Google\\Collection::offsetExists","p":"Google/Collection.html#method_offsetExists","d":""},{"t":"M","n":"Google\\Collection::offsetGet","p":"Google/Collection.html#method_offsetGet","d":""},{"t":"M","n":"Google\\Collection::offsetSet","p":"Google/Collection.html#method_offsetSet","d":""},{"t":"M","n":"Google\\Collection::offsetUnset","p":"Google/Collection.html#method_offsetUnset","d":""},{"t":"M","n":"Google\\Http\\Batch::__construct","p":"Google/Http/Batch.html#method___construct","d":null},{"t":"M","n":"Google\\Http\\Batch::add","p":"Google/Http/Batch.html#method_add","d":null},{"t":"M","n":"Google\\Http\\Batch::execute","p":"Google/Http/Batch.html#method_execute","d":null},{"t":"M","n":"Google\\Http\\Batch::parseResponse","p":"Google/Http/Batch.html#method_parseResponse","d":null},{"t":"M","n":"Google\\Http\\MediaFileUpload::__construct","p":"Google/Http/MediaFileUpload.html#method___construct","d":""},{"t":"M","n":"Google\\Http\\MediaFileUpload::setFileSize","p":"Google/Http/MediaFileUpload.html#method_setFileSize","d":"

Set the size of the file that is being uploaded.

"},{"t":"M","n":"Google\\Http\\MediaFileUpload::getProgress","p":"Google/Http/MediaFileUpload.html#method_getProgress","d":"

Return the progress on the upload

"},{"t":"M","n":"Google\\Http\\MediaFileUpload::nextChunk","p":"Google/Http/MediaFileUpload.html#method_nextChunk","d":"

Send the next part of the file to upload.

"},{"t":"M","n":"Google\\Http\\MediaFileUpload::getHttpResultCode","p":"Google/Http/MediaFileUpload.html#method_getHttpResultCode","d":"

Return the HTTP result code from the last call made.

"},{"t":"M","n":"Google\\Http\\MediaFileUpload::resume","p":"Google/Http/MediaFileUpload.html#method_resume","d":"

Resume a previously unfinished upload

"},{"t":"M","n":"Google\\Http\\MediaFileUpload::getUploadType","p":"Google/Http/MediaFileUpload.html#method_getUploadType","d":"

Valid upload types:

\n"},{"t":"M","n":"Google\\Http\\MediaFileUpload::getResumeUri","p":"Google/Http/MediaFileUpload.html#method_getResumeUri","d":null},{"t":"M","n":"Google\\Http\\MediaFileUpload::setChunkSize","p":"Google/Http/MediaFileUpload.html#method_setChunkSize","d":null},{"t":"M","n":"Google\\Http\\MediaFileUpload::getRequest","p":"Google/Http/MediaFileUpload.html#method_getRequest","d":null},{"t":"M","n":"Google\\Http\\REST::execute","p":"Google/Http/REST.html#method_execute","d":"

Executes a Psr\\Http\\Message\\RequestInterface and (if applicable) automatically retries\nwhen errors occur.

"},{"t":"M","n":"Google\\Http\\REST::doExecute","p":"Google/Http/REST.html#method_doExecute","d":"

Executes a Psr\\Http\\Message\\RequestInterface

"},{"t":"M","n":"Google\\Http\\REST::decodeHttpResponse","p":"Google/Http/REST.html#method_decodeHttpResponse","d":"

Decode an HTTP Response.

"},{"t":"M","n":"Google\\Model::__construct","p":"Google/Model.html#method___construct","d":"

Polymorphic - accepts a variable number of arguments dependent\non the type of the model subclass.

"},{"t":"M","n":"Google\\Model::__get","p":"Google/Model.html#method___get","d":"

Getter that handles passthrough access to the data array, and lazy object creation.

"},{"t":"M","n":"Google\\Model::mapTypes","p":"Google/Model.html#method_mapTypes","d":"

Initialize this object's properties from an array.

"},{"t":"M","n":"Google\\Model::gapiInit","p":"Google/Model.html#method_gapiInit","d":"

Blank initialiser to be used in subclasses to do post-construction initialisation - this\navoids the need for subclasses to have to implement the variadics handling in their\nconstructors.

"},{"t":"M","n":"Google\\Model::toSimpleObject","p":"Google/Model.html#method_toSimpleObject","d":"

Create a simplified object suitable for straightforward\nconversion to JSON. This is relatively expensive\ndue to the usage of reflection, but shouldn't be called\na whole lot, and is the most straightforward way to filter.

"},{"t":"M","n":"Google\\Model::isAssociativeArray","p":"Google/Model.html#method_isAssociativeArray","d":"

Returns true only if the array is associative.

"},{"t":"M","n":"Google\\Model::assertIsArray","p":"Google/Model.html#method_assertIsArray","d":"

Verify if $obj is an array.

"},{"t":"M","n":"Google\\Model::offsetExists","p":"Google/Model.html#method_offsetExists","d":""},{"t":"M","n":"Google\\Model::offsetGet","p":"Google/Model.html#method_offsetGet","d":""},{"t":"M","n":"Google\\Model::offsetSet","p":"Google/Model.html#method_offsetSet","d":""},{"t":"M","n":"Google\\Model::offsetUnset","p":"Google/Model.html#method_offsetUnset","d":""},{"t":"M","n":"Google\\Model::keyType","p":"Google/Model.html#method_keyType","d":null},{"t":"M","n":"Google\\Model::dataType","p":"Google/Model.html#method_dataType","d":null},{"t":"M","n":"Google\\Model::__isset","p":"Google/Model.html#method___isset","d":null},{"t":"M","n":"Google\\Model::__unset","p":"Google/Model.html#method___unset","d":null},{"t":"M","n":"Google\\Service::__construct","p":"Google/Service.html#method___construct","d":null},{"t":"M","n":"Google\\Service::getClient","p":"Google/Service.html#method_getClient","d":"

Return the associated Google\\Client class.

"},{"t":"M","n":"Google\\Service::createBatch","p":"Google/Service.html#method_createBatch","d":"

Create a new HTTP Batch handler for this service

"},{"t":"M","n":"Google\\Service\\Exception::__construct","p":"Google/Service/Exception.html#method___construct","d":"

Override default constructor to add the ability to set $errors and a retry\nmap.

"},{"t":"M","n":"Google\\Service\\Exception::getErrors","p":"Google/Service/Exception.html#method_getErrors","d":"

An example of the possible errors returned.

"},{"t":"M","n":"Google\\Service\\Resource::__construct","p":"Google/Service/Resource.html#method___construct","d":null},{"t":"M","n":"Google\\Service\\Resource::call","p":"Google/Service/Resource.html#method_call","d":"

TODO: This function needs simplifying.

"},{"t":"M","n":"Google\\Service\\Resource::convertToArrayAndStripNulls","p":"Google/Service/Resource.html#method_convertToArrayAndStripNulls","d":null},{"t":"M","n":"Google\\Service\\Resource::createRequestUri","p":"Google/Service/Resource.html#method_createRequestUri","d":"

Parse/expand request parameters and create a fully qualified\nrequest uri.

"},{"t":"M","n":"Google\\Task\\Composer::cleanup","p":"Google/Task/Composer.html#method_cleanup","d":""},{"t":"M","n":"Google\\Task\\Runner::__construct","p":"Google/Task/Runner.html#method___construct","d":"

Creates a new task runner with exponential backoff support.

"},{"t":"M","n":"Google\\Task\\Runner::canAttempt","p":"Google/Task/Runner.html#method_canAttempt","d":"

Checks if a retry can be attempted.

"},{"t":"M","n":"Google\\Task\\Runner::run","p":"Google/Task/Runner.html#method_run","d":"

Runs the task and (if applicable) automatically retries when errors occur.

"},{"t":"M","n":"Google\\Task\\Runner::attempt","p":"Google/Task/Runner.html#method_attempt","d":"

Runs a task once, if possible. This is useful for bypassing the run()\nloop.

"},{"t":"M","n":"Google\\Task\\Runner::allowedRetries","p":"Google/Task/Runner.html#method_allowedRetries","d":"

Gets the number of times the associated task can be retried.

"},{"t":"M","n":"Google\\Task\\Runner::setRetryMap","p":"Google/Task/Runner.html#method_setRetryMap","d":null},{"t":"M","n":"Google\\Utils\\UriTemplate::parse","p":"Google/Utils/UriTemplate.html#method_parse","d":null},{"t":"M","n":"Google\\Utils\\UriTemplate::combine","p":"Google/Utils/UriTemplate.html#method_combine","d":null},{"t":"N","n":"Google","p":"Google.html"},{"t":"N","n":"Google\\AccessToken","p":"Google/AccessToken.html"},{"t":"N","n":"Google\\AuthHandler","p":"Google/AuthHandler.html"},{"t":"N","n":"Google\\Http","p":"Google/Http.html"},{"t":"N","n":"Google\\Service","p":"Google/Service.html"},{"t":"N","n":"Google\\Task","p":"Google/Task.html"},{"t":"N","n":"Google\\Utils","p":"Google/Utils.html"}]} diff --git a/v2.15.5/doctum.js b/v2.15.5/doctum.js new file mode 100644 index 000000000..e371762a2 --- /dev/null +++ b/v2.15.5/doctum.js @@ -0,0 +1,319 @@ +var Doctum = { + treeJson: {"tree":{"l":0,"n":"","p":"","c":[{"l":1,"n":"Google","p":"Google","c":[{"l":2,"n":"AccessToken","p":"Google/AccessToken","c":[{"l":3,"n":"Revoke","p":"Google/AccessToken/Revoke"},{"l":3,"n":"Verify","p":"Google/AccessToken/Verify"}]},{"l":2,"n":"AuthHandler","p":"Google/AuthHandler","c":[{"l":3,"n":"AuthHandlerFactory","p":"Google/AuthHandler/AuthHandlerFactory"},{"l":3,"n":"Guzzle6AuthHandler","p":"Google/AuthHandler/Guzzle6AuthHandler"},{"l":3,"n":"Guzzle7AuthHandler","p":"Google/AuthHandler/Guzzle7AuthHandler"}]},{"l":2,"n":"Http","p":"Google/Http","c":[{"l":3,"n":"Batch","p":"Google/Http/Batch"},{"l":3,"n":"MediaFileUpload","p":"Google/Http/MediaFileUpload"},{"l":3,"n":"REST","p":"Google/Http/REST"}]},{"l":2,"n":"Service","p":"Google/Service","c":[{"l":3,"n":"Exception","p":"Google/Service/Exception"},{"l":3,"n":"Resource","p":"Google/Service/Resource"}]},{"l":2,"n":"Task","p":"Google/Task","c":[{"l":3,"n":"Composer","p":"Google/Task/Composer"},{"l":3,"n":"Exception","p":"Google/Task/Exception"},{"l":3,"n":"Retryable","p":"Google/Task/Retryable"},{"l":3,"n":"Runner","p":"Google/Task/Runner"}]},{"l":2,"n":"Utils","p":"Google/Utils","c":[{"l":3,"n":"UriTemplate","p":"Google/Utils/UriTemplate"}]},{"l":2,"n":"Client","p":"Google/Client"},{"l":2,"n":"Collection","p":"Google/Collection"},{"l":2,"n":"Exception","p":"Google/Exception"},{"l":2,"n":"Model","p":"Google/Model"},{"l":2,"n":"Service","p":"Google/Service"}]}]},"treeOpenLevel":1}, + /** @var boolean */ + treeLoaded: false, + /** @var boolean */ + listenersRegistered: false, + autoCompleteData: null, + /** @var boolean */ + autoCompleteLoading: false, + /** @var boolean */ + autoCompleteLoaded: false, + /** @var string|null */ + rootPath: null, + /** @var string|null */ + autoCompleteDataUrl: null, + /** @var HTMLElement|null */ + doctumSearchAutoComplete: null, + /** @var HTMLElement|null */ + doctumSearchAutoCompleteProgressBarContainer: null, + /** @var HTMLElement|null */ + doctumSearchAutoCompleteProgressBar: null, + /** @var number */ + doctumSearchAutoCompleteProgressBarPercent: 0, + /** @var autoComplete|null */ + autoCompleteJS: null, + querySearchSecurityRegex: /([^0-9a-zA-Z:\\\\_\s])/gi, + buildTreeNode: function (treeNode, htmlNode, treeOpenLevel) { + var ulNode = document.createElement('ul'); + for (var childKey in treeNode.c) { + var child = treeNode.c[childKey]; + var liClass = document.createElement('li'); + var hasChildren = child.hasOwnProperty('c'); + var nodeSpecialName = (hasChildren ? 'namespace:' : 'class:') + child.p.replace(/\//g, '_'); + liClass.setAttribute('data-name', nodeSpecialName); + + // Create the node that will have the text + var divHd = document.createElement('div'); + var levelCss = child.l - 1; + divHd.className = hasChildren ? 'hd' : 'hd leaf'; + divHd.style.paddingLeft = (hasChildren ? (levelCss * 18) : (8 + (levelCss * 18))) + 'px'; + if (hasChildren) { + if (child.l <= treeOpenLevel) { + liClass.className = 'opened'; + } + var spanIcon = document.createElement('span'); + spanIcon.className = 'icon icon-play'; + divHd.appendChild(spanIcon); + } + var aLink = document.createElement('a'); + + // Edit the HTML link to work correctly based on the current depth + aLink.href = Doctum.rootPath + child.p + '.html'; + aLink.innerText = child.n; + divHd.appendChild(aLink); + liClass.appendChild(divHd); + + // It has children + if (hasChildren) { + var divBd = document.createElement('div'); + divBd.className = 'bd'; + Doctum.buildTreeNode(child, divBd, treeOpenLevel); + liClass.appendChild(divBd); + } + ulNode.appendChild(liClass); + } + htmlNode.appendChild(ulNode); + }, + initListeners: function () { + if (Doctum.listenersRegistered) { + // Quick exit, already registered + return; + } + Doctum.listenersRegistered = true; + }, + loadTree: function () { + if (Doctum.treeLoaded) { + // Quick exit, already registered + return; + } + Doctum.rootPath = document.body.getAttribute('data-root-path'); + Doctum.buildTreeNode(Doctum.treeJson.tree, document.getElementById('api-tree'), Doctum.treeJson.treeOpenLevel); + + // Toggle left-nav divs on click + $('#api-tree .hd span').on('click', function () { + $(this).parent().parent().toggleClass('opened'); + }); + + // Expand the parent namespaces of the current page. + var expected = $('body').attr('data-name'); + + if (expected) { + // Open the currently selected node and its parents. + var container = $('#api-tree'); + var node = $('#api-tree li[data-name="' + expected + '"]'); + // Node might not be found when simulating namespaces + if (node.length > 0) { + node.addClass('active').addClass('opened'); + node.parents('li').addClass('opened'); + var scrollPos = node.offset().top - container.offset().top + container.scrollTop(); + // Position the item nearer to the top of the screen. + scrollPos -= 200; + container.scrollTop(scrollPos); + } + } + Doctum.treeLoaded = true; + }, + pagePartiallyLoaded: function (event) { + Doctum.initListeners(); + Doctum.loadTree(); + Doctum.loadAutoComplete(); + }, + pageFullyLoaded: function (event) { + // it may not have received DOMContentLoaded event + Doctum.initListeners(); + Doctum.loadTree(); + Doctum.loadAutoComplete(); + // Fire the event in the search page too + if (typeof DoctumSearch === 'object') { + DoctumSearch.pageFullyLoaded(); + } + }, + loadAutoComplete: function () { + if (Doctum.autoCompleteLoaded) { + // Quick exit, already loaded + return; + } + Doctum.autoCompleteDataUrl = document.body.getAttribute('data-search-index-url'); + Doctum.doctumSearchAutoComplete = document.getElementById('doctum-search-auto-complete'); + Doctum.doctumSearchAutoCompleteProgressBarContainer = document.getElementById('search-progress-bar-container'); + Doctum.doctumSearchAutoCompleteProgressBar = document.getElementById('search-progress-bar'); + if (Doctum.doctumSearchAutoComplete !== null) { + // Wait for it to be loaded + Doctum.doctumSearchAutoComplete.addEventListener('init', function (_) { + Doctum.autoCompleteLoaded = true; + Doctum.doctumSearchAutoComplete.addEventListener('selection', function (event) { + // Go to selection page + window.location = Doctum.rootPath + event.detail.selection.value.p; + }); + Doctum.doctumSearchAutoComplete.addEventListener('navigate', function (event) { + // Set selection in text box + if (typeof event.detail.selection.value === 'object') { + Doctum.doctumSearchAutoComplete.value = event.detail.selection.value.n; + } + }); + Doctum.doctumSearchAutoComplete.addEventListener('results', function (event) { + Doctum.markProgressFinished(); + }); + }); + } + // Check if the lib is loaded + if (typeof autoComplete === 'function') { + Doctum.bootAutoComplete(); + } + }, + markInProgress: function () { + Doctum.doctumSearchAutoCompleteProgressBarContainer.className = 'search-bar'; + Doctum.doctumSearchAutoCompleteProgressBar.className = 'progress-bar indeterminate'; + if (typeof DoctumSearch === 'object' && DoctumSearch.pageFullyLoaded) { + DoctumSearch.doctumSearchPageAutoCompleteProgressBarContainer.className = 'search-bar'; + DoctumSearch.doctumSearchPageAutoCompleteProgressBar.className = 'progress-bar indeterminate'; + } + }, + markProgressFinished: function () { + Doctum.doctumSearchAutoCompleteProgressBarContainer.className = 'search-bar hidden'; + Doctum.doctumSearchAutoCompleteProgressBar.className = 'progress-bar'; + if (typeof DoctumSearch === 'object' && DoctumSearch.pageFullyLoaded) { + DoctumSearch.doctumSearchPageAutoCompleteProgressBarContainer.className = 'search-bar hidden'; + DoctumSearch.doctumSearchPageAutoCompleteProgressBar.className = 'progress-bar'; + } + }, + makeProgess: function () { + Doctum.makeProgressOnProgressBar( + Doctum.doctumSearchAutoCompleteProgressBarPercent, + Doctum.doctumSearchAutoCompleteProgressBar + ); + if (typeof DoctumSearch === 'object' && DoctumSearch.pageFullyLoaded) { + Doctum.makeProgressOnProgressBar( + Doctum.doctumSearchAutoCompleteProgressBarPercent, + DoctumSearch.doctumSearchPageAutoCompleteProgressBar + ); + } + }, + loadAutoCompleteData: function (query) { + return new Promise(function (resolve, reject) { + if (Doctum.autoCompleteData !== null) { + resolve(Doctum.autoCompleteData); + return; + } + Doctum.markInProgress(); + function reqListener() { + Doctum.autoCompleteLoading = false; + Doctum.autoCompleteData = JSON.parse(this.responseText).items; + Doctum.markProgressFinished(); + + setTimeout(function () { + resolve(Doctum.autoCompleteData); + }, 50);// Let the UI render once before sending the results for processing. This gives time to the progress bar to hide + } + function reqError(err) { + Doctum.autoCompleteLoading = false; + Doctum.autoCompleteData = null; + console.error(err); + reject(err); + } + + var oReq = new XMLHttpRequest(); + oReq.onload = reqListener; + oReq.onerror = reqError; + oReq.onprogress = function (pe) { + if (pe.lengthComputable) { + Doctum.doctumSearchAutoCompleteProgressBarPercent = parseInt(pe.loaded / pe.total * 100, 10); + Doctum.makeProgess(); + } + }; + oReq.onloadend = function (_) { + Doctum.markProgressFinished(); + }; + oReq.open('get', Doctum.autoCompleteDataUrl, true); + oReq.send(); + }); + }, + /** + * Make some progress on a progress bar + * + * @param number percentage + * @param HTMLElement progressBar + * @return void + */ + makeProgressOnProgressBar: function(percentage, progressBar) { + progressBar.className = 'progress-bar'; + progressBar.style.width = percentage + '%'; + progressBar.setAttribute( + 'aria-valuenow', percentage + ); + }, + searchEngine: function (query, record) { + if (typeof query !== 'string') { + return ''; + } + // replace all (mode = g) spaces and non breaking spaces (\s) by pipes + // g = global mode to mark also the second word searched + // i = case insensitive + // how this function works: + // First: search if the query has the keywords in sequence + // Second: replace the keywords by a mark and leave all the text in between non marked + + if (record.match(new RegExp('(' + query.replace(/\s/g, ').*(') + ')', 'gi')) === null) { + return '';// Does not match + } + + var replacedRecord = record.replace(new RegExp('(' + query.replace(/\s/g, '|') + ')', 'gi'), function (group) { + return '' + group + ''; + }); + + if (replacedRecord !== record) { + return replacedRecord;// This should not happen but just in case there was no match done + } + + return ''; + }, + /** + * Clean the search query + * + * @param string|null query + * @return string + */ + cleanSearchQuery: function (query) { + if (typeof query !== 'string') { + return ''; + } + // replace any chars that could lead to injecting code in our regex + // remove start or end spaces + // replace backslashes by an escaped version, use case in search: \myRootFunction + return query.replace(Doctum.querySearchSecurityRegex, '').trim().replace(/\\/g, '\\\\'); + }, + bootAutoComplete: function () { + Doctum.autoCompleteJS = new autoComplete( + { + selector: '#doctum-search-auto-complete', + searchEngine: function (query, record) { + return Doctum.searchEngine(query, record); + }, + submit: true, + data: { + src: function (q) { + Doctum.markInProgress(); + return Doctum.loadAutoCompleteData(q); + }, + keys: ['n'],// Data 'Object' key to be searched + cache: false, // Is not compatible with async fetch of data + }, + query: (input) => { + return Doctum.cleanSearchQuery(input); + }, + trigger: (query) => { + return Doctum.cleanSearchQuery(query).length > 0; + }, + resultsList: { + tag: 'ul', + class: 'auto-complete-dropdown-menu', + destination: '#auto-complete-results', + position: 'afterbegin', + maxResults: 500, + noResults: false, + }, + resultItem: { + tag: 'li', + class: 'auto-complete-result', + highlight: 'auto-complete-highlight', + selected: 'auto-complete-selected' + }, + } + ); + } +}; + + +document.addEventListener('DOMContentLoaded', Doctum.pagePartiallyLoaded, false); +window.addEventListener('load', Doctum.pageFullyLoaded, false); diff --git a/v2.15.5/fonts/doctum-font.css b/v2.15.5/fonts/doctum-font.css new file mode 100644 index 000000000..d022b4c34 --- /dev/null +++ b/v2.15.5/fonts/doctum-font.css @@ -0,0 +1,61 @@ +@font-face { + font-family: "doctum"; + src: url("./doctum.eot?39101248"); + src: url("./doctum.eot?39101248#iefix") format("embedded-opentype"), + url("./doctum.woff2?39101248") format("woff2"), url("./doctum.woff?39101248") format("woff"), + url("./doctum.ttf?39101248") format("truetype"), url("./doctum.svg?39101248#doctum") format("svg"); + font-weight: normal; + font-style: normal; +} +/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */ +/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */ +/* +@media screen and (-webkit-min-device-pixel-ratio:0) { + @font-face { + font-family: 'doctum'; + src: url('./doctum.svg?39101248#doctum') format('svg'); + } +} +*/ + +.icon { + font-family: "doctum"; + font-style: normal; + font-weight: normal; + speak: never; + + display: inline-block; + text-decoration: inherit; + width: 1em; + margin-right: 0.2em; + text-align: center; + /* opacity: .8; */ + + /* For safety - reset parent styles, that can break glyph codes*/ + font-variant: normal; + text-transform: none; + + /* fix buttons height, for twitter bootstrap */ + line-height: 1em; + + /* Animation center compensation - margins should be symmetric */ + /* remove if not needed */ + margin-left: 0.2em; + + /* you can be more comfortable with increased icons size */ + /* font-size: 120%; */ + + /* Font smoothing. That was taken from TWBS */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + + /* Uncomment for 3D effect */ + /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ +} + +.icon-search:before { + content: "\e800"; +} /* '' */ +.icon-play:before { + content: "\e801"; +} /* '' */ diff --git a/v2.15.5/fonts/doctum.eot b/v2.15.5/fonts/doctum.eot new file mode 100644 index 000000000..0daf464c7 Binary files /dev/null and b/v2.15.5/fonts/doctum.eot differ diff --git a/v2.15.5/fonts/doctum.svg b/v2.15.5/fonts/doctum.svg new file mode 100644 index 000000000..341469b6c --- /dev/null +++ b/v2.15.5/fonts/doctum.svg @@ -0,0 +1,14 @@ + + + +Material Design Icons + + + + + + + + + + \ No newline at end of file diff --git a/v2.15.5/fonts/doctum.ttf b/v2.15.5/fonts/doctum.ttf new file mode 100644 index 000000000..cf3f81625 Binary files /dev/null and b/v2.15.5/fonts/doctum.ttf differ diff --git a/v2.15.5/fonts/doctum.woff b/v2.15.5/fonts/doctum.woff new file mode 100644 index 000000000..6e1ca3b57 Binary files /dev/null and b/v2.15.5/fonts/doctum.woff differ diff --git a/v2.15.5/fonts/doctum.woff2 b/v2.15.5/fonts/doctum.woff2 new file mode 100644 index 000000000..e7b1a3e81 Binary files /dev/null and b/v2.15.5/fonts/doctum.woff2 differ diff --git a/v2.15.5/index.html b/v2.15.5/index.html new file mode 100644 index 000000000..c6e77f8d4 --- /dev/null +++ b/v2.15.5/index.html @@ -0,0 +1,99 @@ + + + + + + Namespaces | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ + + +
+
+ + + diff --git a/v2.15.5/interfaces.html b/v2.15.5/interfaces.html new file mode 100644 index 000000000..5042a2135 --- /dev/null +++ b/v2.15.5/interfaces.html @@ -0,0 +1,94 @@ + + + + + + Interfaces | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ + +
+
+
+ Retryable +
+

Interface for checking how many times a given task can be retried following +a failure.

+
+
+
+
+ + + diff --git a/v2.15.5/js/autocomplete.min.js b/v2.15.5/js/autocomplete.min.js new file mode 100644 index 000000000..f7a5838e7 --- /dev/null +++ b/v2.15.5/js/autocomplete.min.js @@ -0,0 +1,5 @@ +/*! + * AutoComplete.js v10.2.6 (https://github.com/TarekRaafat/autoComplete.js) + * Licensed under the Apache 2.0 license + */ +var t,e;t=this,e=function(){"use strict";function t(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function e(e){for(var n=1;nt.length)&&(e=t.length);for(var n=0,r=new Array(e);n=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(t){throw t},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var s,u=!0,a=!1;return{s:function(){n=n.call(t)},n:function(){var t=n.next();return u=t.done,t},e:function(t){a=!0,s=t},f:function(){try{u||null==n.return||n.return()}finally{if(a)throw s}}}}(n.keys);try{for(l.s();!(c=l.n()).done;)a(c.value)}catch(t){l.e(t)}finally{l.f()}}else a()})),n.filter&&(i=n.filter(i));var s=i.slice(0,e.resultsList.maxResults);e.feedback={query:t,matches:i,results:s},f("results",e)},m="aria-expanded",b="aria-activedescendant",y="aria-selected",v=function(t,n){t.feedback.selection=e({index:n},t.feedback.results[n])},g=function(t){t.isOpen||((t.wrapper||t.input).setAttribute(m,!0),t.list.removeAttribute("hidden"),t.isOpen=!0,f("open",t))},w=function(t){t.isOpen&&((t.wrapper||t.input).setAttribute(m,!1),t.input.setAttribute(b,""),t.list.setAttribute("hidden",""),t.isOpen=!1,f("close",t))},O=function(t,e){var n=e.resultItem,r=e.list.getElementsByTagName(n.tag),o=!!n.selected&&n.selected.split(" ");if(e.isOpen&&r.length){var s,u,a=e.cursor;t>=r.length&&(t=0),t<0&&(t=r.length-1),e.cursor=t,a>-1&&(r[a].removeAttribute(y),o&&(u=r[a].classList).remove.apply(u,i(o))),r[t].setAttribute(y,!0),o&&(s=r[t].classList).add.apply(s,i(o)),e.input.setAttribute(b,r[e.cursor].id),e.list.scrollTop=r[t].offsetTop-e.list.clientHeight+r[t].clientHeight+5,e.feedback.cursor=e.cursor,v(e,t),f("navigate",e)}},A=function(t){O(t.cursor+1,t)},k=function(t){O(t.cursor-1,t)},L=function(t,e,n){(n=n>=0?n:t.cursor)<0||(t.feedback.event=e,v(t,n),f("selection",t),w(t))};function j(t,n){var r=this;return new Promise((function(i,o){var s,u;return s=n||((u=t.input)instanceof HTMLInputElement||u instanceof HTMLTextAreaElement?u.value:u.innerHTML),function(t,e,n){return e?e(t):t.length>=n}(s=t.query?t.query(s):s,t.trigger,t.threshold)?d(t,s).then((function(n){try{return t.feedback instanceof Error?i():(h(s,t),t.resultsList&&function(t){var n=t.resultsList,r=t.list,i=t.resultItem,o=t.feedback,s=o.matches,u=o.results;if(t.cursor=-1,r.innerHTML="",s.length||n.noResults){var c=new DocumentFragment;u.forEach((function(t,n){var r=a(i.tag,e({id:"".concat(i.id,"_").concat(n),role:"option",innerHTML:t.match,inside:c},i.class&&{class:i.class}));i.element&&i.element(r,t)})),r.append(c),n.element&&n.element(r,o),g(t)}else w(t)}(t),c.call(r))}catch(t){return o(t)}}),o):(w(t),c.call(r));function c(){return i()}}))}var S=function(t,e){for(var n in t)for(var r in t[n])e(n,r)},T=function(t){var n,r,i,o=t.events,s=(n=function(){return j(t)},r=t.debounce,function(){clearTimeout(i),i=setTimeout((function(){return n()}),r)}),u=t.events=e({input:e({},o&&o.input)},t.resultsList&&{list:o?e({},o.list):{}}),a={input:{input:function(){s()},keydown:function(e){!function(t,e){switch(t.keyCode){case 40:case 38:t.preventDefault(),40===t.keyCode?A(e):k(e);break;case 13:e.submit||t.preventDefault(),e.cursor>=0&&L(e,t);break;case 9:e.resultsList.tabSelect&&e.cursor>=0&&L(e,t);break;case 27:e.input.value="",w(e)}}(e,t)},blur:function(){w(t)}},list:{mousedown:function(t){t.preventDefault()},click:function(e){!function(t,e){var n=e.resultItem.tag.toUpperCase(),r=Array.from(e.list.querySelectorAll(n)),i=t.target.closest(n);i&&i.nodeName===n&&L(e,t,r.indexOf(i))}(e,t)}}};S(a,(function(e,n){(t.resultsList||"input"===n)&&(u[e][n]||(u[e][n]=a[e][n]))})),S(u,(function(e,n){t[e].addEventListener(n,u[e][n])}))};function E(t){var n=this;return new Promise((function(r,i){var o,s,u;if(o=t.placeHolder,u={role:"combobox","aria-owns":(s=t.resultsList).id,"aria-haspopup":!0,"aria-expanded":!1},a(t.input,e(e({"aria-controls":s.id,"aria-autocomplete":"both"},o&&{placeholder:o}),!t.wrapper&&e({},u))),t.wrapper&&(t.wrapper=a("div",e({around:t.input,class:t.name+"_wrapper"},u))),s&&(t.list=a(s.tag,e({dest:[s.destination,s.position],id:s.id,role:"listbox",hidden:"hidden"},s.class&&{class:s.class}))),T(t),t.data.cache)return d(t).then((function(t){try{return c.call(n)}catch(t){return i(t)}}),i);function c(){return f("init",t),r()}return c.call(n)}))}function x(t){var e=t.prototype;e.init=function(){E(this)},e.start=function(t){j(this,t)},e.unInit=function(){if(this.wrapper){var t=this.wrapper.parentNode;t.insertBefore(this.input,this.wrapper),t.removeChild(this.wrapper)}var e;S((e=this).events,(function(t,n){e[t].removeEventListener(n,e.events[t][n])}))},e.open=function(){g(this)},e.close=function(){w(this)},e.goTo=function(t){O(t,this)},e.next=function(){A(this)},e.previous=function(){k(this)},e.select=function(t){L(this,null,t)},e.search=function(t,e,n){return p(t,e,n)}}return function t(e){this.options=e,this.id=t.instances=(t.instances||0)+1,this.name="autoComplete",this.wrapper=1,this.threshold=1,this.debounce=0,this.resultsList={position:"afterend",tag:"ul",maxResults:5},this.resultItem={tag:"li"},function(t){var e=t.name,r=t.options,i=t.resultsList,o=t.resultItem;for(var s in r)if("object"===n(r[s]))for(var a in t[s]||(t[s]={}),r[s])t[s][a]=r[s][a];else t[s]=r[s];t.selector=t.selector||"#"+e,i.destination=i.destination||t.selector,i.id=i.id||e+"_list_"+t.id,o.id=o.id||e+"_result",t.input=u(t.selector)}(this),x.call(this,t),E(this)}},"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).autoComplete=e(); diff --git a/v2.15.5/js/bootstrap.min.js b/v2.15.5/js/bootstrap.min.js new file mode 100644 index 000000000..5c8647b12 --- /dev/null +++ b/v2.15.5/js/bootstrap.min.js @@ -0,0 +1,11 @@ +/*! + * Generated using the Bootstrap Customizer (https://getbootstrap.com/docs/3.4/customize/) + */ + +/*! + * Bootstrap v3.4.1 (https://getbootstrap.com/) + * Copyright 2011-2021 Twitter, Inc. + * Licensed under the MIT license + */ + +if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(t){"use strict";var e=t.fn.jquery.split(" ")[0].split(".");if(e[0]<2&&e[1]<9||1==e[0]&&9==e[1]&&e[2]<1||e[0]>3)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4")}(jQuery),+function(t){"use strict";function e(e){var a=e.attr("data-target");a||(a=e.attr("href"),a=a&&/#[A-Za-z]/.test(a)&&a.replace(/.*(?=#[^\s]*$)/,""));var n="#"!==a?t(document).find(a):null;return n&&n.length?n:e.parent()}function a(a){a&&3===a.which||(t(i).remove(),t(s).each(function(){var n=t(this),i=e(n),s={relatedTarget:this};i.hasClass("open")&&(a&&"click"==a.type&&/input|textarea/i.test(a.target.tagName)&&t.contains(i[0],a.target)||(i.trigger(a=t.Event("hide.bs.dropdown",s)),a.isDefaultPrevented()||(n.attr("aria-expanded","false"),i.removeClass("open").trigger(t.Event("hidden.bs.dropdown",s)))))}))}function n(e){return this.each(function(){var a=t(this),n=a.data("bs.dropdown");n||a.data("bs.dropdown",n=new o(this)),"string"==typeof e&&n[e].call(a)})}var i=".dropdown-backdrop",s='[data-toggle="dropdown"]',o=function(e){t(e).on("click.bs.dropdown",this.toggle)};o.VERSION="3.4.1",o.prototype.toggle=function(n){var i=t(this);if(!i.is(".disabled, :disabled")){var s=e(i),o=s.hasClass("open");if(a(),!o){"ontouchstart"in document.documentElement&&!s.closest(".navbar-nav").length&&t(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(t(this)).on("click",a);var r={relatedTarget:this};if(s.trigger(n=t.Event("show.bs.dropdown",r)),n.isDefaultPrevented())return;i.trigger("focus").attr("aria-expanded","true"),s.toggleClass("open").trigger(t.Event("shown.bs.dropdown",r))}return!1}},o.prototype.keydown=function(a){if(/(38|40|27|32)/.test(a.which)&&!/input|textarea/i.test(a.target.tagName)){var n=t(this);if(a.preventDefault(),a.stopPropagation(),!n.is(".disabled, :disabled")){var i=e(n),o=i.hasClass("open");if(!o&&27!=a.which||o&&27==a.which)return 27==a.which&&i.find(s).trigger("focus"),n.trigger("click");var r=" li:not(.disabled):visible a",l=i.find(".dropdown-menu"+r);if(l.length){var d=l.index(a.target);38==a.which&&d>0&&d--,40==a.which&&d+~]|"+R+")"+R+"*"),U=new RegExp(R+"|>"),V=new RegExp(W),X=new RegExp("^"+B+"$"),Q={ID:new RegExp("^#("+B+")"),CLASS:new RegExp("^\\.("+B+")"),TAG:new RegExp("^("+B+"|[*])"),ATTR:new RegExp("^"+M),PSEUDO:new RegExp("^"+W),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+R+"*(even|odd|(([+-]|)(\\d*)n|)"+R+"*(?:([+-]|)"+R+"*(\\d+)|))"+R+"*\\)|)","i"),bool:new RegExp("^(?:"+I+")$","i"),needsContext:new RegExp("^"+R+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+R+"*((?:-\\d)?\\d*)"+R+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,G=/^(?:input|select|textarea|button)$/i,K=/^h\d$/i,J=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+R+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){C()},ae=xe(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{O.apply(t=P.call(d.childNodes),d.childNodes),t[d.childNodes.length].nodeType}catch(e){O={apply:t.length?function(e,t){q.apply(e,P.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,d=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==d&&9!==d&&11!==d)return n;if(!r&&(C(e),e=e||T,E)){if(11!==d&&(u=Z.exec(t)))if(i=u[1]){if(9===d){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return O.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&p.getElementsByClassName&&e.getElementsByClassName)return O.apply(n,e.getElementsByClassName(i)),n}if(p.qsa&&!k[t+" "]&&(!v||!v.test(t))&&(1!==d||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===d&&(U.test(t)||_.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&p.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=A)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+be(l[o]);c=l.join(",")}try{return O.apply(n,f.querySelectorAll(c)),n}catch(e){k(t,!0)}finally{s===A&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>x.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[A]=!0,e}function ce(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)x.attrHandle[n[r]]=t}function de(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function pe(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in p=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},C=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:d;return r!=T&&9===r.nodeType&&r.documentElement&&(a=(T=r).documentElement,E=!i(T),d!=T&&(n=T.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),p.scope=ce(function(e){return a.appendChild(e).appendChild(T.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),p.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),p.getElementsByTagName=ce(function(e){return e.appendChild(T.createComment("")),!e.getElementsByTagName("*").length}),p.getElementsByClassName=J.test(T.getElementsByClassName),p.getById=ce(function(e){return a.appendChild(e).id=A,!T.getElementsByName||!T.getElementsByName(A).length}),p.getById?(x.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},x.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(x.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},x.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),x.find.TAG=p.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):p.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},x.find.CLASS=p.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(p.qsa=J.test(T.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+R+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+R+"*(?:value|"+I+")"),e.querySelectorAll("[id~="+A+"-]").length||v.push("~="),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+R+"*name"+R+"*="+R+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+A+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=T.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+R+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(p.matchesSelector=J.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){p.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",W)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=J.test(a.compareDocumentPosition),y=t||J.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!p.sortDetached&&t.compareDocumentPosition(e)===n?e==T||e.ownerDocument==d&&y(d,e)?-1:t==T||t.ownerDocument==d&&y(d,t)?1:u?H(u,e)-H(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==T?-1:t==T?1:i?-1:o?1:u?H(u,e)-H(u,t):0;if(i===o)return de(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?de(a[r],s[r]):a[r]==d?-1:s[r]==d?1:0}),T},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(C(e),p.matchesSelector&&E&&!k[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||p.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){k(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return Q.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&V.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+R+")"+e+"("+R+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return b(n)?E.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?E.grep(e,function(e){return e===n!==r}):"string"!=typeof n?E.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(E.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||L,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:j.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof E?t[0]:t,E.merge(this,E.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:w,!0)),k.test(r[1])&&E.isPlainObject(t))for(r in t)b(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=w.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):b(e)?void 0!==n.ready?n.ready(e):e(E):E.makeArray(e,this)}).prototype=E.fn,L=E(w);var q=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}E.fn.extend({has:function(e){var t=E(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,pe=/^$|^module$|\/(?:java|ecma)script/i;le=w.createDocumentFragment().appendChild(w.createElement("div")),(ce=w.createElement("input")).setAttribute("type","radio"),ce.setAttribute("checked","checked"),ce.setAttribute("name","t"),le.appendChild(ce),m.checkClone=le.cloneNode(!0).cloneNode(!0).lastChild.checked,le.innerHTML="",m.noCloneChecked=!!le.cloneNode(!0).lastChild.defaultValue,le.innerHTML="",m.option=!!le.lastChild;var he={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ge(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&S(e,t)?E.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n",""]);var ye=/<|&#?\w+;/;function me(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),d=[],p=0,h=e.length;p\s*$/g;function Le(e,t){return S(e,"table")&&S(11!==t.nodeType?t:t.firstChild,"tr")&&E(e).children("tbody")[0]||e}function je(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n
",2===ft.childNodes.length),E.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(m.createHTMLDocument?((r=(t=w.implementation.createHTMLDocument("")).createElement("base")).href=w.location.href,t.head.appendChild(r)):t=w),o=!n&&[],(i=k.exec(e))?[t.createElement(i[1])]:(i=me([e],t,o),o&&o.length&&E(o).remove(),E.merge([],i.childNodes)));var r,i,o},E.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=E.css(e,"position"),c=E(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=E.css(e,"top"),u=E.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),b(t)&&(t=t.call(e,n,E.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},E.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){E.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===E.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===E.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=E(e).offset()).top+=E.css(e,"borderTopWidth",!0),i.left+=E.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-E.css(r,"marginTop",!0),left:t.left-i.left-E.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===E.css(e,"position"))e=e.offsetParent;return e||re})}}),E.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;E.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),E.each(["top","left"],function(e,n){E.cssHooks[n]=Fe(m.pixelPosition,function(e,t){if(t)return t=We(e,n),Ie.test(t)?E(e).position()[n]+"px":t})}),E.each({Height:"height",Width:"width"},function(a,s){E.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){E.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?E.css(e,t,i):E.style(e,t,n,i)},s,n?e:void 0,n)}})}),E.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),E.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){E.fn[n]=function(e,t){return 0 + + + + + Namespaces | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ + + +
+
+ + + diff --git a/v2.15.5/opensearch.xml b/v2.15.5/opensearch.xml new file mode 100644 index 000000000..e69de29bb diff --git a/v2.15.5/renderer.index b/v2.15.5/renderer.index new file mode 100644 index 000000000..211590526 --- /dev/null +++ b/v2.15.5/renderer.index @@ -0,0 +1 @@ +O:21:"Doctum\Renderer\Index":3:{i:0;a:20:{s:25:"Google\AccessToken\Revoke";s:40:"0c1c42e635f0e6ad9c344ab5b71d7b83eea1ff87";s:25:"Google\AccessToken\Verify";s:40:"8d53aea9b815ff33e9661ec253d3dc136e9067a6";s:37:"Google\AuthHandler\AuthHandlerFactory";s:40:"d4b5e2b62d114092bd88d6566747af41b1726fff";s:37:"Google\AuthHandler\Guzzle6AuthHandler";s:40:"cf0ec671f64dbd410e4692761409fff4605fd7cb";s:37:"Google\AuthHandler\Guzzle7AuthHandler";s:40:"e00c3e89b964653888fd1d085079d396a206ba37";s:13:"Google\Client";s:40:"7fdee52ac822d48fe3cfe4c4f786f385839d9f36";s:17:"Google\Collection";s:40:"43cebf22b391b87eb3f3e0454e7d1aac7a98310b";s:16:"Google\Exception";s:40:"f34a53d74d83c4fa6491710363ada2fc18d87adb";s:17:"Google\Http\Batch";s:40:"8c9ff33b8f902c64a3f03afd77c01c6e580c5b76";s:27:"Google\Http\MediaFileUpload";s:40:"e3ea5db4a861c4bd99c04ff802af5a3e47085ec8";s:16:"Google\Http\REST";s:40:"19561ad4fbfad2cc8f52022cc3d546c21ba8bc82";s:12:"Google\Model";s:40:"e5f7d9a8eac5fda8c90c777be3eee0229d1174af";s:14:"Google\Service";s:40:"de9163e4be6159f4f7e2d752779f51f27bd00d2c";s:24:"Google\Service\Exception";s:40:"8c1841b940b8cc1be07ff508c7e462a7339ca8f9";s:23:"Google\Service\Resource";s:40:"5edd1ff809696cdb2256b44c74782e33ba97fb40";s:20:"Google\Task\Composer";s:40:"462ef8c0bcca0e9d0ebe2a0e385c92f727ac573c";s:21:"Google\Task\Exception";s:40:"2bbfd57e700f3bb0f76ac2b150360063f837fd5c";s:21:"Google\Task\Retryable";s:40:"c962399f5e03481a3ad313f3a8b56d7a12df01f9";s:18:"Google\Task\Runner";s:40:"9bdac287ab4ab7ad98f26596fd8eeac9d2fd31d5";s:24:"Google\Utils\UriTemplate";s:40:"404630c11be73f9678acdfdfefb63a5c1ae46858";}i:1;a:1:{i:0;s:7:"v2.15.5";}i:2;a:7:{i:0;s:6:"Google";i:1;s:18:"Google\AccessToken";i:2;s:18:"Google\AuthHandler";i:3;s:11:"Google\Http";i:4;s:14:"Google\Service";i:5;s:11:"Google\Task";i:6;s:12:"Google\Utils";}} \ No newline at end of file diff --git a/v2.15.5/search.html b/v2.15.5/search.html new file mode 100644 index 000000000..c472da76f --- /dev/null +++ b/v2.15.5/search.html @@ -0,0 +1,294 @@ + + + + + + Search | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ + +

This page allows you to search through the API documentation for + specific terms. Enter your search words into the box below and click + "submit". The search will be performed on namespaces, classes, interfaces, + traits, functions, and methods.

+ +
+
+ + +
+ +
+ +

Search Results

+ +
+
+ + + + +
+
+ + + diff --git a/v2.15.5/traits.html b/v2.15.5/traits.html new file mode 100644 index 000000000..1a49ff0b2 --- /dev/null +++ b/v2.15.5/traits.html @@ -0,0 +1,86 @@ + + + + + + Traits | Google Cloud PHP Client + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+
+
+ + +