Please see: https://github.com/kevinSuttle/html-meta-tags, thanks for the idea @dandv!
Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/
<html> | |
<head> | |
<title>jsonp test</title> | |
<script src="http://code.jquery.com/jquery-1.6.2.min.js"></script> | |
<script type="text/javascript"> | |
$(function(){ | |
$('#select_link').click(function(e){ | |
e.preventDefault(); | |
console.log('select_link clicked'); | |
// http://paulirish.com/2011/requestanimationframe-for-smart-animating/ | |
// http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating | |
// requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel | |
// MIT license | |
(function() { | |
var lastTime = 0; | |
var vendors = ['ms', 'moz', 'webkit', 'o']; |
language: ruby | |
rvm: | |
- 1.9.3 | |
env: | |
- DB=sqlite | |
- DB=mysql | |
- DB=postgresql |
This is how we test that all translation keys match up between locales.
Stuff that only goes in one locale (such as an admin section) or that can't be translated yet (if you use external translators) can simply go in files that don't match the path "config/locales/??.yml", like "config/locales/wip.fo.yml".
;(function ( $, window, document, undefined ) { | |
// Create the defaults once | |
var pluginName = 'defaultPluginName', | |
defaults = { | |
propertyName: "value" | |
}; | |
// The actual plugin constructor | |
function Plugin( element, options ) { |
HTTP Headers | |
------------ | |
-H "X-PAYPAL-SECURITY-USERID: insert_developer_user_name_here" | |
-H "X-PAYPAL-SECURITY-PASSWORD: insert_developer_password_here" | |
-H "X-PAYPAL-SECURITY-SIGNATURE: insert_developer_signature_here" | |
-H "X-PAYPAL-REQUEST-DATA-FORMAT: NV" | |
-H "X-PAYPAL-RESPONSE-DATA-FORMAT: NV" | |
-H "X-PAYPAL-APPLICATION-ID: APP-80W284485P519543T" #Standard Sandbox App ID | |
Endpoint |
# BEGIN WordPress | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
RewriteRule ^index\.php$ - [L] | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule . /index.php [L] | |
</IfModule> |
Update: please note that I have since switched to using a set of bash scripts instead of poluting the Git repository with git svn
.
Author: Kaspars Dambis
kaspars.net / @konstruktors
@Grapes([ | |
@Grab("org.codehaus.geb:geb-core:0.7.2"), | |
@Grab("org.seleniumhq.selenium:selenium-chrome-driver:2.28.0"), | |
@Grab("org.seleniumhq.selenium:selenium-support:2.28.0") | |
]) | |
import geb.Browser | |
import org.openqa.selenium.chrome.ChromeDriver | |
b = new Browser(driver: new ChromeDriver()) |