This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cat ~/Library/Logs/Homebrew/libxml2/04.python | |
/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/dist.py:251: UserWarning: 'licence' distribution option is deprecated; use 'license' | |
warnings.warn(msg) | |
libxslt stub generator not found, libxslt not built | |
running install | |
running build | |
running build_py | |
creating build | |
creating build/lib.macosx-10.9-intel-2.7 | |
copying libxml2.py -> build/lib.macosx-10.9-intel-2.7 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Template Name Posts: Desktops | |
*/ | |
get_header(); | |
?> | |
<!--sub head container--> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @package WordPress | |
* @subpackage Twenty_Ten | |
* @since Twenty Ten 1.0 | |
* Template Name: Biographies | |
*/ | |
$fields = array(0 => 'ID', 1 => 'user_login'); | |
$args = array('orderby' => 'nicename', 'fields' => $fields); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<title>Mapstraction Text - Microsoft v7</title> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8"/> | |
<script src="http://code.jquery.com/jquery-1.8.2.min.js" type="text/javascript"></script> | |
<script charset="UTF-8" type="text/javascript" src="http://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=7.0"></script> | |
<script src="https://raw.github.com/mapstraction/mxn/release-2.1/source/mxn.js?(microsoft7)" type="text/javascript"></script> | |
<link rel="stylesheet" type="text/css" media="all" href="css/examples.css"> | |
<style type="text/css"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function wpls2_new_ip_check() { | |
$error_status = ini_get('display_errors'); | |
if ($error_status === '1') { | |
ini_set('display_errors', '0'); | |
} | |
global $wpls2_options, $current_user; | |
session_start(); | |
$known = get_option( $wpls2_options['whitelist'] ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter ('wp_biographia_link_item', 'filter_link_item', 10, 2); | |
function filter_link_item ($content, $params) { | |
// $params = array ( | |
// 'type' => 'link type (icon|text)', | |
// 'format' => 'link format string', | |
// 'meta' => 'additional anchor attributes', | |
// 'title' => 'link title', | |
// 'url' => 'link URL', | |
// 'body' => 'link body text', | |
// 'link-class' => 'link CSS class name', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1295,1296c1295 | |
< $alt = 'avatar'; | |
< | |
--- | |
> | |
1401c1400 | |
< $avatar = "<img src='{$src}' class='{$class} avatar-{$size} avatar-default' height='{$size}' width='{$size}' style='width: {$size}px; height: {$size}px;' alt='{$alt}' />"; | |
--- | |
> $avatar = "<img src='{$src}' class='{$class} avatar-{$size} avatar-default' height='{$size}' width='{$size}' style='width: {$size}px; height: {$size}px;' alt='avatar' />"; | |
1413c1412 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// WP Biographia Widget | |
// COMPATIBLE WITH v3.2.1 ONLY - DO NOT USE IN A PRODUCTION ENVIRONMENT | |
class WP_BiographiaWidget extends WP_Widget { | |
static $name_options; | |
private $widget_sem = false; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
70c70 | |
< $xtra = " AND show_where != 'interior'"; | |
--- | |
> $xtra .= " AND show_where != 'interior'"; | |
72c72 | |
< $xtra = " AND show_where != 'home'"; | |
--- | |
> $xtra .= " AND show_where != 'home'"; | |
180,182d179 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
58c58 | |
< define( 'EHU_WEB_URL', $ehu_the_web_url ); | |
--- | |
> define( 'EHU_WEB_URL', $ehu_the_web_add ); |