View pagination.xsl
<?xml version="1.0" encoding="UTF-8"?> | |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<!-- | |
Name: DATA SOURCE PAGINATION | |
Version: 1.4 with custom elements | |
Author: Nick Dunn <nick@nick-dunn.co.uk>, extended by Nils Hörrmann <post@nilshoerrmann.de> | |
URL: http://symphony-cms.com/downloads/xslt/file/20482/ | |
Required Parameters: |
View jquery.equalize-height.js
/* | |
* jQuery Equalize Height 0.2 | |
* Copyright (c) 2012 Simon Ertel (simonertel.net) | |
* Licensed under the MIT LICENSE | |
*/ | |
(function($){ | |
$.fn.equalizeHeight = function(){ | |
var heights = []; | |
return this.each(function(i){ | |
heights.push($(this).height()); |
View getWave
function getWave(min, max, steps) { | |
var stepLength = (max - min) / (steps-1); | |
var roundedStepLength = Math.round(stepLength*10)/10; | |
var rounder = roundedStepLength*10 - Math.floor(roundedStepLength)*10; | |
var curStep = 0, | |
i = 0; | |
var steps = []; | |
for(i = min; i+rounder < max; i += Math.floor(roundedStepLength)) { |
View data.xml
<?xml version="1.0" encoding="utf-8" ?> | |
<data> | |
<contributions> | |
<pagination | |
total-entries="11" | |
total-pages="2" | |
entries-per-page="10" | |
current-page="1" /> | |
</contributions> | |
</data> |
View edit_css.js
var webdeveloper_editCSSIntervalId = null; | |
var webdeveloper_editCSSOldStyleText = new Array(); | |
var webdeveloper_editCSSSelectedTab = 0; | |
var webdeveloper_editCSSUpdateFrequency = 500; | |
// Applies the CSS | |
function webdeveloper_applyCSS() | |
{ | |
var contentDocument = webdeveloper_getContentDocument(); | |
var headElement = webdeveloper_getDocumentHeadElement(contentDocument); |
View prepareStackTrace.js
Error.prepareStackTrace = function(error, structuredStackTrace) { | |
console.log('ok.'); | |
}; | |
// Simple test, ok | |
try { | |
console.log('simple test\u2026'); | |
i_dont_exist(); | |
} catch(e) { | |
var access_stack = e.stack; |
View video_url_to_id.php
<?php | |
// From Robbie Player: https://forrst.com/posts/Grab_Youtube_or_Vimeo_Info_with_PHP-0el#comment-150356 | |
function video_url_to_id($url, $provider) { | |
$video_id = FALSE; | |
$url = parse_url($url); | |
switch ($provider) { | |
case 'youtube': |
View _init-routes.js
// Use it with jQuery history: http://tkyk.github.com/jquery-history-plugin/ | |
// Hashes should begin with #!/ (see hash.slice(2) below) | |
(function($) { | |
$.history.initRoutes = function (routes) { | |
$(function() { | |
$.history.init(function(hash) { | |
hash = hash.slice(2); | |
var routeFound = false; | |
for (var rpath in routes) { | |
if (routes.hasOwnProperty(rpath)) { |
View Makefile
# | |
# css/js minification/compression makefile | |
# | |
# | |
# JS_TARGETS -- js files to minify/gzip | |
# CSS_TARGETS -- css files to minify/gzip | |
# CLEANUP -- additional files to delete during "make clean" | |
# |
View Makefile
# JS files | |
JS_FINAL = js/project-name-all.js | |
JS_TARGETS = js/file1.js \ | |
js/file2.js \ | |
js/file3.js | |
# CSS files | |
CSS_FINAL = css/project-name-all.css | |
STYLUS_TARGETS = css/file1.styl \ |
OlderNewer