- Foo
- Bar
- fix for quux
String.prototype.format = function() { | |
var formatted = this; | |
for(arg in arguments) { | |
formatted = formatted.replace("{" + arg + "}", arguments[arg]); | |
} | |
return formatted; | |
}; | |
$(document).ready(function() { | |
$("#form-book-search").submit(function(event){ |
**RPSO - Sales Order Document | |
PARAMETERS lcFilter, lcDateRange, lcSortRange, lcAdvFilter, lcOtherVariable, lcSortOrder | |
***JDM--CR 80887--3/18/02--Need the following variables. | |
LOCAL lcSql, lcSql1, lcSql2, lcSql3, lcSql4, lcSql5, lcSql6, lcSql7, lcSql8, lcSql9 | |
LOCAL lcSql0, lcSql11, lcSql12, lcSql13, lcSql14, lcSql15, lcSql16, lcSql17, lcSql18, lcSql19 | |
LOCAL lcSql20, lcSql21, lcSql22, lcSql23 | |
LOCAL lnHandle, lnReturn, lcSortRange2 | |
@import "reset.css"; | |
body{ | |
background: url("grid.png") repeat-y; | |
font-family: helvetica, arial; | |
} | |
#header-nav{ | |
position: absolute; | |
right: 20px; | |
top: 85px; | |
font-size: 2em; |
# openERP requirements | |
# | |
# $ apt-get install libldap2-dev libsasl2-dev | |
# $ apt-get install python-libxslt1 python-webdav | |
# $ virtualenv --system-site-packages /var/www/openerp/venv | |
# $ source /var/www/openerp/venv/bin/activate | |
# (venv)$ pip install -r openerp-requirements.txt | |
# install PIL http://www.sandersnewmedia.com/why/2012/04/16/installing-pil-virtualenv-ubuntu-1204-precise-pangolin/ | |
# $ sudo apt-get build-dep python-imaging | |
# $ sudo ln -s /usr/lib/`uname -i`-linux-gnu/libfreetype.so /usr/lib/ |
function test() { | |
var requestURL = "https://api.xero.com/api.xro/2.0/Accounts", | |
timestamp = (new Date().valueOf()/1000).toFixed(0), | |
nonce = createGuid(), | |
key = "consumer key from xero private app", | |
publickey = "content of publickey.cer", | |
requestData = { | |
"method": "GET", | |
"contentType": "application/xml", | |
"headers": { |
import webapp2 | |
from google.appengine.api import urlfetch | |
class MainPage(webapp2.RequestHandler): | |
def get(self): | |
self.response.headers["Content-Type"] = "text/plain" | |
self.response.write("John") | |
app = webapp2.WSGIApplication( |
def getin(d, keys, default=None): | |
''' | |
>>> d = {'foo': {'bar': {'baz': 1}}} | |
>>> getin(d, ['foo', 'bar', 'baz']) | |
1 | |
>>> getin(d, ['foo', 'bar']) | |
{'baz': 1} | |
>>> getin(d, ['foo', 'oops'], default=0) | |
0 | |
''' |
" Delete buffer while keeping window layout (don't close buffer's windows). | |
" Version 2008-11-18 from http://vim.wikia.com/wiki/VimTip165 | |
if v:version < 700 || exists('loaded_bclose') || &cp | |
finish | |
endif | |
let loaded_bclose = 1 | |
if !exists('bclose_multiple') | |
let bclose_multiple = 1 | |
endif |
" Vim color file | |
" | |
" Original Author: Anthony Carapetis <[email protected]> | |
" Author: John Louis Del Rosario @john2x | |
" | |
" Note: Based on github's syntax highlighting theme | |
" Used Brian Mock's darkspectrum as a starting point/template | |
" Thanks to Ryan Heath for an easy list of some of the colours: | |
" http://rpheath.com/posts/356-github-theme-for-syntax-gem | |
" |