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
<!-- | |
This is HTML 4.01 Strict Extended + ARIA | |
Based on r307 of: http://svn.codetalks.org/repos/trunk/tools/ARIA-DTDs/HTML401-strict-ARIA1.dtd | |
With additions from http://github.com/NeilCrosby/frontend-test-suite/blob/master/dtd/401_strict_extended.dtd | |
to support: | |
* `IFRAME` elements | |
* `start` attribute on `OL` elements | |
* `target` attribute with a value of `_top` on `A`, | |
`FORM`, and `BASE` elements |
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
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAwmNtjnx0gF9iCh+GtFIbq60c9maGF9sIDpF7JoRODtyKjWt3fl7dSJPtZEu/7ds15TB7spCzmT78n8y7AceRGNAb1P0CkyP+/Rx3/uydtkNX5MzfkAGVeFziVfF+SxnqaHsIKUUwEXCxd5Oi0blhhJC7j7LNFnnDl6X7PvcLGzXX9y9hmohd1pXwtHmcRiRvW3jBuJ3zYaPvfY7iUxGvRX3E9CZzm5WHTpllLZux0qN96/aocln4YIWfY6w0cyp0eDmXcys9PwIQthUTon6cKlCSCl8cTUtC0ZjDJS7vUOub58bdGZ9TZumz2M4fChqFpb2Pzaf9YoK5rqxdH+X4VQ== [email protected] |
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
function cssColor() { | |
var i, limit, number; | |
if (nexttoken.identifier) { | |
switch (nexttoken.value) { | |
case 'rgb': | |
limit = 3; | |
break; | |
case 'rgba': | |
limit = 4; | |
break; |
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
.read-me { | |
left: -999em; | |
position: absolute; | |
} | |
.comments .footer ul { | |
display: inline; | |
position: relative; | |
} | |
.comments .footer li { |
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
#!/usr/bin/env python | |
# encoding: utf-8; | |
import os | |
import errno | |
import sys | |
import re | |
import subprocess | |
from optparse import OptionParser | |
try: |
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
#!/bin/bash | |
if [ -n "${1}" ] && [ -n "${2}" ]; then | |
LINTEE=$1 | |
REPORT_ROOT=$2 | |
LINTEE_BASENAME=`echo "${LINTEE}" | sed "s#.*\/\(.*\)\.js\\\$#\1#"` | |
TEST_BASENAME="de.sueddeutsche.static.js.${LINTEE_BASENAME}" | |
REPORT_FILENAME="${REPORT_ROOT}/${TEST_BASENAME}.xml" | |
mkdir -p $REPORT_ROOT |
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
<div class="basebox stockchart"> | |
<div class="header"><a href="#TODO">%COMPANY_NAME%</a></div> | |
<p class="body"> | |
<span class="read-me">Current %COMPANY_NAME%</span> | |
<span class="read-me">price is</span> | |
<span class="value">10.389,88€</span> | |
<span class="read-me">, which is a change of </span> | |
<span class="change negative">-2.01%</span> | |
<span class="read-me">.</span> | |
<a href="#KURSLISTE"> |
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
// jslint.js | |
// 2010-01-20 | |
/* | |
Copyright (c) 2002 Douglas Crockford (www.JSLint.com) | |
Permission is hereby granted, free of charge, to any person obtaining a copy of | |
this software and associated documentation files (the "Software"), to deal in | |
the Software without restriction, including without limitation the rights to | |
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies |
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
/*jslint onevar: false, white: false, browser: true, laxbreak: true, undef: true, nomen: false, eqeqeq: true, plusplus: false, bitwise: true, regexp: true, newcap: true, immed: true */ | |
/*global SDE: true, jQuery: false, console: false */ | |
/** | |
* The SDE object is the single global object (that should be) created by the | |
* code written for Sueddeutsche.de. It acts as a namespace for the various | |
* helper functions, classes, and modules that we write, and ought be included | |
* everywhere on the site. | |
* | |
* @module sde | |
* @title SDE Global Object |
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
#!/usr/bin/env python | |
# encoding: utf-8; | |
from __future__ import with_statement | |
import os | |
import errno | |
import sys | |
import re | |
import subprocess |
OlderNewer