text
stringlengths
0
14.1k
\ifpdf
\usepackage[pdftex]{graphicx}
\else
\usepackage[dvips]{graphicx}
\fi
\begin{document}
% special variable used for calculating some widths.
\newlength{\tmplength}
\chapter{Introduction}
Full table of contents:
Table of contents to level 0 (should be empty):
Table of contents to level 1 (only top{-}level sections):
Table of contents to level 2:
Table of contents to level 3 (should be equivalent to full toc):
\section{Section 1}
\section{Section 2}
\subsection*{Section 2.1}
\subsection*{Section 2.2}
\subsubsection*{\large{\textbf{Section 2.2.1}}\normalsize\hspace{1ex}\hfill}
\section{Section 3}
\chapter{Unit ok{\_}table{\_}of{\_}contents{\_}unit}
\end{document}
" gpl-2.0
linzw07/campuspecs wp-content/plugins/appointments/includes/twitteroauth/twitteroauth.php 8014 "<?php
/*
* Abraham Williams ([email protected]) http://abrah.am
*
* The first PHP Library to support OAuth for Twitter's REST API.
*/
/* Load OAuth lib. You can find it at http://oauth.net */
require_once('OAuth.php');
/**
* Twitter OAuth class
*/
class TwitterOAuth {
/* Contains the last HTTP status code returned. */
public $http_code;
/* Contains the last API call. */
public $url;
/* Set up the API root URL. */
public $host = ""https://api.twitter.com/1.1/"";
/* Set timeout default. */
public $timeout = 30;
/* Set connect timeout. */
public $connecttimeout = 30;
/* Verify SSL Cert. */
public $ssl_verifypeer = FALSE;
/* Respons format. */
public $format = 'json';
/* Decode returned json data. */
public $decode_json = TRUE;
/* Contains the last HTTP headers returned. */
public $http_info;
/* Set the useragnet. */
public $useragent = 'TwitterOAuth v0.2.0-beta2';
/* Immediately retry the API call if the response was not successful. */
//public $retry = TRUE;
/**
* Set API URLS
*/
function accessTokenURL() { return 'https://api.twitter.com/oauth/access_token'; }
function authenticateURL() { return 'https://api.twitter.com/oauth/authenticate'; }
function authorizeURL() { return 'https://api.twitter.com/oauth/authorize'; }
function requestTokenURL() { return 'https://api.twitter.com/oauth/request_token'; }
/**