Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5de2a52d4d |
@@ -1,6 +0,0 @@
|
|||||||
npm-debug.log
|
|
||||||
node_modules
|
|
||||||
*.swp
|
|
||||||
*.swo
|
|
||||||
data
|
|
||||||
*.DS_Store
|
|
||||||
@@ -1,170 +0,0 @@
|
|||||||
# Haste
|
|
||||||
|
|
||||||
Haste is an open-source pastebin software written in node.js, which is easily
|
|
||||||
installable in any network. It can be backed by either redis or filesystem,
|
|
||||||
and has a very easy adapter interface for other stores. A publicly available
|
|
||||||
version can be found at [hastebin.com](http://hastebin.com)
|
|
||||||
|
|
||||||
Major design objectives:
|
|
||||||
|
|
||||||
* Be really pretty
|
|
||||||
* Be really simple
|
|
||||||
* Be easy to set up and use
|
|
||||||
|
|
||||||
Haste works really well with a little utility called
|
|
||||||
[haste-client](https://github.com/seejohnrun/haste-client), allowing you
|
|
||||||
to do things like:
|
|
||||||
|
|
||||||
`cat something | haste`
|
|
||||||
|
|
||||||
which will output a URL to share containing the contents of `cat something`'s
|
|
||||||
STDOUT. Check the README there for more details and usages.
|
|
||||||
|
|
||||||
## Tested Browsers
|
|
||||||
|
|
||||||
* Firefox 8
|
|
||||||
* Chrome 17
|
|
||||||
* Safari 5.3
|
|
||||||
|
|
||||||
## Installation
|
|
||||||
|
|
||||||
1. Download the package, and expand it
|
|
||||||
2. Explore the settings inside of config.js, but the defaults should be good
|
|
||||||
3. `npm install`
|
|
||||||
4. `npm start`
|
|
||||||
|
|
||||||
## Settings
|
|
||||||
|
|
||||||
* `host` - the host the server runs on (default localhost)
|
|
||||||
* `port` - the port the server runs on (default 7777)
|
|
||||||
* `keyLength` - the length of the keys to user (default 10)
|
|
||||||
* `maxLength` - maximum length of a paste (default none)
|
|
||||||
* `staticMaxAge` - max age for static assets (86400)
|
|
||||||
* `recompressStatisAssets` - whether or not to compile static js assets (true)
|
|
||||||
* `documents` - static documents to serve (ex: http://hastebin.com/about.com)
|
|
||||||
in addition to static assets. These will never expire.
|
|
||||||
* `storage` - storage options (see below)
|
|
||||||
* `logging` - logging preferences
|
|
||||||
* `keyGenerator` - key generator options (see below)
|
|
||||||
|
|
||||||
## Key Generation
|
|
||||||
|
|
||||||
### Phonetic
|
|
||||||
|
|
||||||
Attempts to generate phonetic keys, similar to `pwgen`
|
|
||||||
|
|
||||||
``` json
|
|
||||||
{
|
|
||||||
"type": "phonetic"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Random
|
|
||||||
|
|
||||||
Generates a random key
|
|
||||||
|
|
||||||
``` json
|
|
||||||
{
|
|
||||||
"type": "random",
|
|
||||||
"keyspace": "abcdef"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
The _optional_ keySpace argument is a string of acceptable characters
|
|
||||||
for the key.
|
|
||||||
|
|
||||||
## Storage
|
|
||||||
|
|
||||||
### File
|
|
||||||
|
|
||||||
To use file storage (the default) change the storage section in `config.js` to
|
|
||||||
something like:
|
|
||||||
|
|
||||||
``` json
|
|
||||||
{
|
|
||||||
"path": "./data",
|
|
||||||
"type": "file"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
Where `path` represents where you want the files stored
|
|
||||||
|
|
||||||
### Redis
|
|
||||||
|
|
||||||
To use redis storage you must install the redis package in npm
|
|
||||||
|
|
||||||
`npm install redis`
|
|
||||||
|
|
||||||
Once you've done that, your config section should look like:
|
|
||||||
|
|
||||||
``` json
|
|
||||||
{
|
|
||||||
"type": "redis",
|
|
||||||
"host": "localhost",
|
|
||||||
"port": 6379,
|
|
||||||
"db": 2
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
You can also set an `expire` option to the number of seconds to expire keys in.
|
|
||||||
This is off by default, but will constantly kick back expirations on each view
|
|
||||||
or post.
|
|
||||||
|
|
||||||
All of which are optional except `type` with very logical default values.
|
|
||||||
|
|
||||||
### Memcached
|
|
||||||
|
|
||||||
To use memcached storage you must install the `memcache` package via npm
|
|
||||||
|
|
||||||
`npm install memcache`
|
|
||||||
|
|
||||||
Once you've done that, your config section should look like:
|
|
||||||
|
|
||||||
``` json
|
|
||||||
{
|
|
||||||
"type": "memcached",
|
|
||||||
"host": "127.0.0.1",
|
|
||||||
"port": 11211
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
You can also set an `expire` option to the number of seconds to expire keys in.
|
|
||||||
This behaves just like the redis expirations, but does not push expirations
|
|
||||||
forward on GETs.
|
|
||||||
|
|
||||||
All of which are optional except `type` with very logical default values.
|
|
||||||
|
|
||||||
|
|
||||||
## Author
|
|
||||||
|
|
||||||
John Crepezzi <john.crepezzi@gmail.com>
|
|
||||||
|
|
||||||
## License
|
|
||||||
|
|
||||||
(The MIT License)
|
|
||||||
|
|
||||||
Copyright © 2011 John Crepezzi
|
|
||||||
|
|
||||||
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
|
|
||||||
of the Software, and to permit persons to whom the Software is furnished to do
|
|
||||||
so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE
|
|
||||||
|
|
||||||
### Other components:
|
|
||||||
|
|
||||||
* jQuery: MIT/GPL license
|
|
||||||
* highlight.js: Copyright © 2006, Ivan Sagalaev
|
|
||||||
* highlightjs-coffeescript: WTFPL - Copyright © 2011, Dmytrii Nagirniak
|
|
||||||
@@ -1,60 +0,0 @@
|
|||||||
# Haste
|
|
||||||
|
|
||||||
Sharing code is a good thing, and it should be _really_ easy to do it.
|
|
||||||
A lot of times, I want to show you something I'm seeing - and that's where we
|
|
||||||
use pastebins.
|
|
||||||
|
|
||||||
Haste is the prettiest, easiest to use pastebin ever made.
|
|
||||||
|
|
||||||
## Basic Usage
|
|
||||||
|
|
||||||
Type what you want me to see, click "Save", and then copy the URL. Send that
|
|
||||||
URL to someone and they'll see what you see.
|
|
||||||
|
|
||||||
To make a new entry, click "New" (or type 'control + n')
|
|
||||||
|
|
||||||
## From the Console
|
|
||||||
|
|
||||||
Most of the time I want to show you some text, its coming from my current
|
|
||||||
console session. We should make it really easy to take code from the console
|
|
||||||
and send it to people.
|
|
||||||
|
|
||||||
`cat something | haste` # http://hastebin.com/1238193
|
|
||||||
|
|
||||||
You can even take this a step further, and cut out the last step of copying the
|
|
||||||
URL with:
|
|
||||||
|
|
||||||
* osx: `cat something | haste | pbcopy`
|
|
||||||
* linux: `cat something | haste | xsel`
|
|
||||||
* windows: check out [WinHaste](https://github.com/ajryan/WinHaste)
|
|
||||||
|
|
||||||
After running that, the STDOUT output of `cat something` will show up at a URL
|
|
||||||
which has been conveniently copied to your clipboard.
|
|
||||||
|
|
||||||
That's all there is to that, and you can install it with `gem install haste`
|
|
||||||
right now.
|
|
||||||
* osx: you will need to have an up to date version of Xcode
|
|
||||||
* linux: you will need to have rubygems and ruby-devel installed
|
|
||||||
|
|
||||||
## Duration
|
|
||||||
|
|
||||||
Pastes will stay for 30 days from their last view.
|
|
||||||
|
|
||||||
## Privacy
|
|
||||||
|
|
||||||
While the contents of hastebin.com are not directly crawled by any search robot
|
|
||||||
that obeys "robots.txt", there should be no great expectation of privacy. Post
|
|
||||||
things at your own risk. Not responsible for any loss of data or removed
|
|
||||||
pastes.
|
|
||||||
|
|
||||||
## Open Source
|
|
||||||
|
|
||||||
Haste can easily be installed behind your network, and its all open source!
|
|
||||||
|
|
||||||
* [haste-client](https://github.com/seejohnrun/haste-client)
|
|
||||||
* [haste-server](https://github.com/seejohnrun/haste-server)
|
|
||||||
|
|
||||||
## Author
|
|
||||||
|
|
||||||
Code by John Crepezzi <john.crepezzi@gmail.com>
|
|
||||||
Key Design by Brian Dawson <bridawson@gmail.com>
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
{
|
|
||||||
|
|
||||||
"host": "localhost",
|
|
||||||
"port": 7777,
|
|
||||||
|
|
||||||
"keyLength": 10,
|
|
||||||
|
|
||||||
"maxLength": 400000,
|
|
||||||
|
|
||||||
"staticMaxAge": 86400,
|
|
||||||
|
|
||||||
"recompressStaticAssets": true,
|
|
||||||
|
|
||||||
"logging": [
|
|
||||||
{
|
|
||||||
"level": "verbose",
|
|
||||||
"type": "Console",
|
|
||||||
"colorize": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
|
|
||||||
"keyGenerator": {
|
|
||||||
"type": "phonetic"
|
|
||||||
},
|
|
||||||
|
|
||||||
"storage": {
|
|
||||||
"type": "redis",
|
|
||||||
"host": "localhost",
|
|
||||||
"port": 6379,
|
|
||||||
"db": 2,
|
|
||||||
"expire": 2592000
|
|
||||||
},
|
|
||||||
|
|
||||||
"documents": {
|
|
||||||
"about": "./about.md"
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
+43
@@ -0,0 +1,43 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="chrome=1">
|
||||||
|
<title>Haste-server by seejohnrun</title>
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="stylesheets/styles.css">
|
||||||
|
<link rel="stylesheet" href="stylesheets/pygment_trac.css">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
||||||
|
<!--[if lt IE 9]>
|
||||||
|
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
||||||
|
<![endif]-->
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="wrapper">
|
||||||
|
<header>
|
||||||
|
<h1>Haste-server</h1>
|
||||||
|
<p>open source pastebin written in node.js</p>
|
||||||
|
<p class="view"><a href="https://github.com/seejohnrun/haste-server">View the Project on GitHub <small>seejohnrun/haste-server</small></a></p>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://github.com/seejohnrun/haste-server/zipball/master">Download <strong>ZIP File</strong></a></li>
|
||||||
|
<li><a href="https://github.com/seejohnrun/haste-server/tarball/master">Download <strong>TAR Ball</strong></a></li>
|
||||||
|
<li><a href="https://github.com/seejohnrun/haste-server">Fork On <strong>GitHub</strong></a></li>
|
||||||
|
</ul>
|
||||||
|
</header>
|
||||||
|
<section>
|
||||||
|
<h1>Pastebin</h1>
|
||||||
|
|
||||||
|
<p>haste-server is an open source pastebin. You can see an example at <a href="http://hastebin.com">hastebin.com</a>, and it's easy to install locally.</p>
|
||||||
|
|
||||||
|
<h2>GitHub</h2>
|
||||||
|
|
||||||
|
<p>Check out the project on <a href="https://github.com/seejohnrun/haste-server">github</a></p>
|
||||||
|
</section>
|
||||||
|
<footer>
|
||||||
|
<p>This project is maintained by <a href="https://github.com/seejohnrun">seejohnrun</a></p>
|
||||||
|
<p><small>Hosted on GitHub Pages — Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
|
<script src="javascripts/scale.fix.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
var metas = document.getElementsByTagName('meta');
|
||||||
|
var i;
|
||||||
|
if (navigator.userAgent.match(/iPhone/i)) {
|
||||||
|
for (i=0; i<metas.length; i++) {
|
||||||
|
if (metas[i].name == "viewport") {
|
||||||
|
metas[i].content = "width=device-width, minimum-scale=1.0, maximum-scale=1.0";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
document.addEventListener("gesturestart", gestureStart, false);
|
||||||
|
}
|
||||||
|
function gestureStart() {
|
||||||
|
for (i=0; i<metas.length; i++) {
|
||||||
|
if (metas[i].name == "viewport") {
|
||||||
|
metas[i].content = "width=device-width, minimum-scale=0.25, maximum-scale=1.6";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,108 +0,0 @@
|
|||||||
var winston = require('winston');
|
|
||||||
|
|
||||||
// For handling serving stored documents
|
|
||||||
|
|
||||||
var DocumentHandler = function(options) {
|
|
||||||
if (!options) {
|
|
||||||
options = {};
|
|
||||||
}
|
|
||||||
this.keyLength = options.keyLength || DocumentHandler.defaultKeyLength;
|
|
||||||
this.maxLength = options.maxLength; // none by default
|
|
||||||
this.store = options.store;
|
|
||||||
this.keyGenerator = options.keyGenerator;
|
|
||||||
};
|
|
||||||
|
|
||||||
DocumentHandler.defaultKeyLength = 10;
|
|
||||||
|
|
||||||
// Handle retrieving a document
|
|
||||||
DocumentHandler.prototype.handleGet = function(key, response, skipExpire) {
|
|
||||||
this.store.get(key, function(ret) {
|
|
||||||
if (ret) {
|
|
||||||
winston.verbose('retrieved document', { key: key });
|
|
||||||
response.writeHead(200, { 'content-type': 'application/json' });
|
|
||||||
response.end(JSON.stringify({ data: ret, key: key }));
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
winston.warn('document not found', { key: key });
|
|
||||||
response.writeHead(404, { 'content-type': 'application/json' });
|
|
||||||
response.end(JSON.stringify({ message: 'Document not found.' }));
|
|
||||||
}
|
|
||||||
}, skipExpire);
|
|
||||||
};
|
|
||||||
|
|
||||||
// Handle retrieving the raw version of a document
|
|
||||||
DocumentHandler.prototype.handleRawGet = function(key, response, skipExpire) {
|
|
||||||
this.store.get(key, function(ret) {
|
|
||||||
if (ret) {
|
|
||||||
winston.verbose('retrieved raw document', { key: key });
|
|
||||||
response.writeHead(200, { 'content-type': 'text/plain' });
|
|
||||||
response.end(ret);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
winston.warn('raw document not found', { key: key });
|
|
||||||
response.writeHead(404, { 'content-type': 'application/json' });
|
|
||||||
response.end(JSON.stringify({ message: 'Document not found.' }));
|
|
||||||
}
|
|
||||||
}, skipExpire);
|
|
||||||
};
|
|
||||||
|
|
||||||
// Handle adding a new Document
|
|
||||||
DocumentHandler.prototype.handlePost = function(request, response) {
|
|
||||||
var _this = this;
|
|
||||||
var buffer = '';
|
|
||||||
var cancelled = false;
|
|
||||||
request.on('data', function(data) {
|
|
||||||
if (!buffer) {
|
|
||||||
response.writeHead(200, { 'content-type': 'application/json' });
|
|
||||||
}
|
|
||||||
buffer += JSON.parse(data.toString()).data;
|
|
||||||
if (_this.maxLength && buffer.length > _this.maxLength) {
|
|
||||||
cancelled = true;
|
|
||||||
winston.warn('document >maxLength', { maxLength: _this.maxLength });
|
|
||||||
response.writeHead(400, { 'content-type': 'application/json' });
|
|
||||||
response.end(
|
|
||||||
JSON.stringify({ message: 'Document exceeds maximum length.' })
|
|
||||||
);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
request.on('end', function(end) {
|
|
||||||
if (cancelled) return;
|
|
||||||
_this.chooseKey(function(key) {
|
|
||||||
_this.store.set(key, buffer, function(res) {
|
|
||||||
if (res) {
|
|
||||||
winston.verbose('added document', { key: key });
|
|
||||||
response.end(JSON.stringify({ key: key }));
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
winston.verbose('error adding document');
|
|
||||||
response.writeHead(500, { 'content-type': 'application/json' });
|
|
||||||
response.end(JSON.stringify({ message: 'Error adding document.' }));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
request.on('error', function(error) {
|
|
||||||
winston.error('connection error: ' + error.message);
|
|
||||||
response.writeHead(500, { 'content-type': 'application/json' });
|
|
||||||
response.end(JSON.stringify({ message: 'Connection error.' }));
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
// Keep choosing keys until one isn't taken
|
|
||||||
DocumentHandler.prototype.chooseKey = function(callback) {
|
|
||||||
var key = this.acceptableKey();
|
|
||||||
var _this = this;
|
|
||||||
this.store.get(key, function(ret) {
|
|
||||||
if (ret) {
|
|
||||||
_this.chooseKey(callback);
|
|
||||||
} else {
|
|
||||||
callback(key);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
DocumentHandler.prototype.acceptableKey = function() {
|
|
||||||
return this.keyGenerator.createKey(this.keyLength);
|
|
||||||
};
|
|
||||||
|
|
||||||
module.exports = DocumentHandler;
|
|
||||||
@@ -1,63 +0,0 @@
|
|||||||
var fs = require('fs');
|
|
||||||
var crypto = require('crypto');
|
|
||||||
|
|
||||||
var winston = require('winston');
|
|
||||||
|
|
||||||
// For storing in files
|
|
||||||
// options[type] = file
|
|
||||||
// options[path] - Where to store
|
|
||||||
|
|
||||||
var FileDocumentStore = function(options) {
|
|
||||||
this.basePath = options.path || './data';
|
|
||||||
this.expire = options.expire;
|
|
||||||
};
|
|
||||||
|
|
||||||
// Generate md5 of a string
|
|
||||||
FileDocumentStore.md5 = function(str) {
|
|
||||||
var md5sum = crypto.createHash('md5');
|
|
||||||
md5sum.update(str);
|
|
||||||
return md5sum.digest('hex');
|
|
||||||
};
|
|
||||||
|
|
||||||
// Save data in a file, key as md5 - since we don't know what we could
|
|
||||||
// be passed here
|
|
||||||
FileDocumentStore.prototype.set = function(key, data, callback, skipExpire) {
|
|
||||||
try {
|
|
||||||
var _this = this;
|
|
||||||
fs.mkdir(this.basePath, '700', function() {
|
|
||||||
var fn = _this.basePath + '/' + FileDocumentStore.md5(key);
|
|
||||||
fs.writeFile(fn, data, 'utf8', function(err) {
|
|
||||||
if (err) {
|
|
||||||
callback(false);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
callback(true);
|
|
||||||
if (_this.expire && !skipExpire) {
|
|
||||||
winston.warn('file store cannot set expirations on keys');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
} catch(err) {
|
|
||||||
callback(false);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
// Get data from a file from key
|
|
||||||
FileDocumentStore.prototype.get = function(key, callback, skipExpire) {
|
|
||||||
var _this = this;
|
|
||||||
var fn = this.basePath + '/' + FileDocumentStore.md5(key);
|
|
||||||
fs.readFile(fn, 'utf8', function(err, data) {
|
|
||||||
if (err) {
|
|
||||||
callback(false);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
callback(data);
|
|
||||||
if (_this.expire && !skipExpire) {
|
|
||||||
winston.warn('file store cannot set expirations on keys');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
module.exports = FileDocumentStore;
|
|
||||||
@@ -1,45 +0,0 @@
|
|||||||
var memcached = require('memcache');
|
|
||||||
var winston = require('winston');
|
|
||||||
|
|
||||||
// Create a new store with options
|
|
||||||
var MemcachedDocumentStore = function(options) {
|
|
||||||
this.expire = options.expire;
|
|
||||||
if (!MemcachedDocumentStore.client) {
|
|
||||||
MemcachedDocumentStore.connect(options);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
// Create a connection
|
|
||||||
MemcachedDocumentStore.connect = function(options) {
|
|
||||||
var host = options.host || '127.0.0.1';
|
|
||||||
var port = options.port || 11211;
|
|
||||||
this.client = new memcached.Client(port, host);
|
|
||||||
this.client.connect();
|
|
||||||
this.client.on('connect', function() {
|
|
||||||
winston.info('connected to memcached on ' + host + ':' + port);
|
|
||||||
});
|
|
||||||
this.client.on('error', function(e) {
|
|
||||||
winston.info('error connecting to memcached', { error: e });
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
// Save file in a key
|
|
||||||
MemcachedDocumentStore.prototype.set =
|
|
||||||
function(key, data, callback, skipExpire) {
|
|
||||||
MemcachedDocumentStore.client.set(key, data, function(err, reply) {
|
|
||||||
err ? callback(false) : callback(true);
|
|
||||||
}, skipExpire ? 0 : this.expire);
|
|
||||||
};
|
|
||||||
|
|
||||||
// Get a file from a key
|
|
||||||
MemcachedDocumentStore.prototype.get = function(key, callback, skipExpire) {
|
|
||||||
var _this = this;
|
|
||||||
MemcachedDocumentStore.client.get(key, function(err, reply) {
|
|
||||||
callback(err ? false : reply);
|
|
||||||
if (_this.expire && !skipExpire) {
|
|
||||||
winston.warn('store does not currently push forward expirations on GET');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
module.exports = MemcachedDocumentStore;
|
|
||||||
@@ -1,76 +0,0 @@
|
|||||||
var redis = require('redis');
|
|
||||||
var winston = require('winston');
|
|
||||||
|
|
||||||
// For storing in redis
|
|
||||||
// options[type] = redis
|
|
||||||
// options[host] - The host to connect to (default localhost)
|
|
||||||
// options[port] - The port to connect to (default 5379)
|
|
||||||
// options[db] - The db to use (default 0)
|
|
||||||
// options[expire] - The time to live for each key set (default never)
|
|
||||||
|
|
||||||
var RedisDocumentStore = function(options) {
|
|
||||||
this.expire = options.expire;
|
|
||||||
if (!RedisDocumentStore.client) {
|
|
||||||
RedisDocumentStore.connect(options);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
// Create a connection according to config
|
|
||||||
RedisDocumentStore.connect = function(options) {
|
|
||||||
var host = options.host || '127.0.0.1';
|
|
||||||
var port = options.port || 6379;
|
|
||||||
var index = options.db || 0;
|
|
||||||
RedisDocumentStore.client = redis.createClient(port, host);
|
|
||||||
RedisDocumentStore.client.select(index, function(err, reply) {
|
|
||||||
if (err) {
|
|
||||||
winston.error(
|
|
||||||
'error connecting to redis index ' + index,
|
|
||||||
{ error: err.message }
|
|
||||||
);
|
|
||||||
process.exit(1);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
winston.info('connected to redis on ' + host + ':' + port + '/' + index);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
// Save file in a key
|
|
||||||
RedisDocumentStore.prototype.set = function(key, data, callback, skipExpire) {
|
|
||||||
var _this = this;
|
|
||||||
RedisDocumentStore.client.set(key, data, function(err, reply) {
|
|
||||||
if (err) {
|
|
||||||
callback(false);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if (!skipExpire) {
|
|
||||||
_this.setExpiration(key);
|
|
||||||
}
|
|
||||||
callback(true);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
// Expire a key in expire time if set
|
|
||||||
RedisDocumentStore.prototype.setExpiration = function(key) {
|
|
||||||
if (this.expire) {
|
|
||||||
RedisDocumentStore.client.expire(key, this.expire, function(err, reply) {
|
|
||||||
if (err) {
|
|
||||||
winston.error('failed to set expiry on key: ' + key);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
// Get a file from a key
|
|
||||||
RedisDocumentStore.prototype.get = function(key, callback, skipExpire) {
|
|
||||||
var _this = this;
|
|
||||||
RedisDocumentStore.client.get(key, function(err, reply) {
|
|
||||||
if (!err && !skipExpire) {
|
|
||||||
_this.setExpiration(key);
|
|
||||||
}
|
|
||||||
callback(err ? false : reply);
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
module.exports = RedisDocumentStore;
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
// Draws inspiration from pwgen and http://tools.arantius.com/password
|
|
||||||
var PhoneticKeyGenerator = function(options) {
|
|
||||||
// No options
|
|
||||||
};
|
|
||||||
|
|
||||||
// Generate a phonetic key
|
|
||||||
PhoneticKeyGenerator.prototype.createKey = function(keyLength) {
|
|
||||||
var text = '';
|
|
||||||
for (var i = 0; i < keyLength; i++) {
|
|
||||||
text += (i % 2 == 0) ? this.randConsonant() : this.randVowel();
|
|
||||||
}
|
|
||||||
return text;
|
|
||||||
};
|
|
||||||
|
|
||||||
PhoneticKeyGenerator.consonants = 'bcdfghjklmnpqrstvwxy';
|
|
||||||
PhoneticKeyGenerator.vowels = 'aeiou';
|
|
||||||
|
|
||||||
// Get an random vowel
|
|
||||||
PhoneticKeyGenerator.prototype.randVowel = function() {
|
|
||||||
return PhoneticKeyGenerator.vowels[
|
|
||||||
Math.floor(Math.random() * PhoneticKeyGenerator.vowels.length)
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
// Get an random consonant
|
|
||||||
PhoneticKeyGenerator.prototype.randConsonant = function() {
|
|
||||||
return PhoneticKeyGenerator.consonants[
|
|
||||||
Math.floor(Math.random() * PhoneticKeyGenerator.consonants.length)
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
module.exports = PhoneticKeyGenerator;
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
var RandomKeyGenerator = function(options) {
|
|
||||||
if (!options) {
|
|
||||||
options = {};
|
|
||||||
}
|
|
||||||
this.keyspace = options.keyspace || 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
|
|
||||||
};
|
|
||||||
|
|
||||||
// Generate a random key
|
|
||||||
RandomKeyGenerator.prototype.createKey = function(keyLength) {
|
|
||||||
var text = '';
|
|
||||||
var index;
|
|
||||||
for (var i = 0; i < keyLength; i++) {
|
|
||||||
index = Math.floor(Math.random() * this.keyspace.length);
|
|
||||||
text += this.keyspace.charAt(index);
|
|
||||||
}
|
|
||||||
return text;
|
|
||||||
};
|
|
||||||
|
|
||||||
module.exports = RandomKeyGenerator;
|
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
{
|
|
||||||
|
|
||||||
"name": "haste",
|
|
||||||
"version": "0.0.1",
|
|
||||||
|
|
||||||
"private": true,
|
|
||||||
|
|
||||||
"description": "Private Paste",
|
|
||||||
|
|
||||||
"keywords": [ "paste", "pastebin" ],
|
|
||||||
|
|
||||||
"author": {
|
|
||||||
"name": "John Crepezzi",
|
|
||||||
"email": "john.crepezzi@gmail.com",
|
|
||||||
"url": "http://seejohncode.com/"
|
|
||||||
},
|
|
||||||
|
|
||||||
"main": "haste",
|
|
||||||
|
|
||||||
"dependencies": {
|
|
||||||
"winston": "*",
|
|
||||||
"connect": "< 2",
|
|
||||||
"uglify-js": "*"
|
|
||||||
},
|
|
||||||
|
|
||||||
"devDependencies": {
|
|
||||||
"mocha": "*",
|
|
||||||
"should": "*"
|
|
||||||
},
|
|
||||||
|
|
||||||
"bundledDependencies": [],
|
|
||||||
|
|
||||||
"engines": {
|
|
||||||
"node": "*"
|
|
||||||
},
|
|
||||||
|
|
||||||
"bin": {
|
|
||||||
"haste-server": "./server.js"
|
|
||||||
},
|
|
||||||
|
|
||||||
"files": [ "server.js", "lib", "static" ],
|
|
||||||
|
|
||||||
"directories": {
|
|
||||||
"lib": "./lib"
|
|
||||||
},
|
|
||||||
|
|
||||||
"scripts": {
|
|
||||||
"start": "node server.js",
|
|
||||||
"test": "mocha -r should spec/*"
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"name":"Haste-server","body":"# Pastebin\r\n\r\nhaste-server is an open source pastebin. You can see an example at [hastebin.com](http://hastebin.com), and it's easy to install locally.\r\n\r\n## GitHub\r\n\r\nCheck out the project on [github](https://github.com/seejohnrun/haste-server)","tagline":"open source pastebin written in node.js","google":"","note":"Don't delete this file! It's used internally to help with page regeneration."}
|
||||||
@@ -1,132 +0,0 @@
|
|||||||
var http = require('http');
|
|
||||||
var url = require('url');
|
|
||||||
var fs = require('fs');
|
|
||||||
|
|
||||||
var winston = require('winston');
|
|
||||||
var connect = require('connect');
|
|
||||||
|
|
||||||
var DocumentHandler = require('./lib/document_handler');
|
|
||||||
|
|
||||||
// Load the configuration and set some defaults
|
|
||||||
var config = JSON.parse(fs.readFileSync('config.js', 'utf8'));
|
|
||||||
config.port = config.port || 7777;
|
|
||||||
config.host = config.host || 'localhost';
|
|
||||||
|
|
||||||
// Set up the logger
|
|
||||||
if (config.logging) {
|
|
||||||
try {
|
|
||||||
winston.remove(winston.transports.Console);
|
|
||||||
} catch(er) { }
|
|
||||||
var detail, type;
|
|
||||||
for (var i = 0; i < config.logging.length; i++) {
|
|
||||||
detail = config.logging[i];
|
|
||||||
type = detail.type;
|
|
||||||
delete detail.type;
|
|
||||||
winston.add(winston.transports[type], detail);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// build the store from the config on-demand - so that we don't load it
|
|
||||||
// for statics
|
|
||||||
if (!config.storage) {
|
|
||||||
config.storage = { type: 'file' };
|
|
||||||
}
|
|
||||||
if (!config.storage.type) {
|
|
||||||
config.storage.type = 'file';
|
|
||||||
}
|
|
||||||
var Store = require('./lib/document_stores/' + config.storage.type);
|
|
||||||
var preferredStore = new Store(config.storage);
|
|
||||||
|
|
||||||
// Compress the static javascript assets
|
|
||||||
if (config.recompressStaticAssets) {
|
|
||||||
var jsp = require("uglify-js").parser;
|
|
||||||
var pro = require("uglify-js").uglify;
|
|
||||||
var list = fs.readdirSync('./static');
|
|
||||||
for (var i = 0; i < list.length; i++) {
|
|
||||||
var item = list[i];
|
|
||||||
var orig_code, ast;
|
|
||||||
if ((item.indexOf('.js') === item.length - 3) &&
|
|
||||||
(item.indexOf('.min.js') === -1)) {
|
|
||||||
dest = item.substring(0, item.length - 3) + '.min' +
|
|
||||||
item.substring(item.length - 3);
|
|
||||||
orig_code = fs.readFileSync('./static/' + item, 'utf8');
|
|
||||||
ast = jsp.parse(orig_code);
|
|
||||||
ast = pro.ast_mangle(ast);
|
|
||||||
ast = pro.ast_squeeze(ast);
|
|
||||||
fs.writeFileSync('./static/' + dest, pro.gen_code(ast), 'utf8');
|
|
||||||
winston.info('compressed ' + item + ' into ' + dest);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Send the static documents into the preferred store, skipping expirations
|
|
||||||
for (var name in config.documents) {
|
|
||||||
var path = config.documents[name];
|
|
||||||
fs.readFile(path, 'utf8', function(err, data) {
|
|
||||||
if (data && !err) {
|
|
||||||
preferredStore.set(name, data, function(cb) {
|
|
||||||
winston.info('loaded static document', { name: name, path: path });
|
|
||||||
}, true);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
winston.warn(
|
|
||||||
'failed to load static document',
|
|
||||||
{ name: name, path: path }
|
|
||||||
);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// Pick up a key generator
|
|
||||||
var pwOptions = config.keyGenerator || {};
|
|
||||||
pwOptions.type = pwOptions.type || 'random';
|
|
||||||
var gen = require('./lib/key_generators/' + pwOptions.type);
|
|
||||||
var keyGenerator = new gen(pwOptions);
|
|
||||||
|
|
||||||
// Configure the document handler
|
|
||||||
var documentHandler = new DocumentHandler({
|
|
||||||
store: preferredStore,
|
|
||||||
maxLength: config.maxLength,
|
|
||||||
keyLength: config.keyLength,
|
|
||||||
keyGenerator: keyGenerator
|
|
||||||
});
|
|
||||||
|
|
||||||
// Set the server up with a static cache
|
|
||||||
connect.createServer(
|
|
||||||
// First look for api calls
|
|
||||||
connect.router(function(app) {
|
|
||||||
// get raw documents - support getting with extension
|
|
||||||
app.get('/raw/:id', function(request, response, next) {
|
|
||||||
var skipExpire = !!config.documents[request.params.id];
|
|
||||||
var key = request.params.id.split('.')[0];
|
|
||||||
return documentHandler.handleRawGet(key, response, skipExpire);
|
|
||||||
});
|
|
||||||
// add documents
|
|
||||||
app.post('/documents', function(request, response, next) {
|
|
||||||
return documentHandler.handlePost(request, response);
|
|
||||||
});
|
|
||||||
// get documents
|
|
||||||
app.get('/documents/:id', function(request, response, next) {
|
|
||||||
var skipExpire = !!config.documents[request.params.id];
|
|
||||||
return documentHandler.handleGet(
|
|
||||||
request.params.id,
|
|
||||||
response,
|
|
||||||
skipExpire
|
|
||||||
);
|
|
||||||
});
|
|
||||||
}),
|
|
||||||
// Otherwise, static
|
|
||||||
connect.staticCache(),
|
|
||||||
connect.static(__dirname + '/static', { maxAge: config.staticMaxAge }),
|
|
||||||
// Then we can loop back - and everything else should be a token,
|
|
||||||
// so route it back to /index.html
|
|
||||||
connect.router(function(app) {
|
|
||||||
app.get('/:id', function(request, response, next) {
|
|
||||||
request.url = request.originalUrl = '/index.html';
|
|
||||||
next();
|
|
||||||
});
|
|
||||||
}),
|
|
||||||
connect.static(__dirname + '/static', { maxAge: config.staticMaxAge })
|
|
||||||
).listen(config.port, config.host);
|
|
||||||
|
|
||||||
winston.info('listening on ' + config.host + ':' + config.port);
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
var DocumentHandler = require('../lib/document_handler');
|
|
||||||
var Generator = require('../lib/key_generators/random');
|
|
||||||
|
|
||||||
describe('document_handler', function() {
|
|
||||||
|
|
||||||
describe('randomKey', function() {
|
|
||||||
|
|
||||||
it('should choose a key of the proper length', function() {
|
|
||||||
var gen = new Generator();
|
|
||||||
var dh = new DocumentHandler({ keyLength: 6, keyGenerator: gen });
|
|
||||||
dh.acceptableKey().length.should.equal(6);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should choose a default key length', function() {
|
|
||||||
var gen = new Generator();
|
|
||||||
var dh = new DocumentHandler({ keyGenerator: gen });
|
|
||||||
dh.keyLength.should.equal(DocumentHandler.defaultKeyLength);
|
|
||||||
});
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
});
|
|
||||||
@@ -1,50 +0,0 @@
|
|||||||
var RedisDocumentStore = require('../lib/document_stores/redis');
|
|
||||||
|
|
||||||
var winston = require('winston');
|
|
||||||
winston.remove(winston.transports.Console);
|
|
||||||
|
|
||||||
describe('redis_document_store', function() {
|
|
||||||
|
|
||||||
/* reconnect to redis on each test */
|
|
||||||
afterEach(function() {
|
|
||||||
if (RedisDocumentStore.client) {
|
|
||||||
RedisDocumentStore.client.quit();
|
|
||||||
RedisDocumentStore.client = false;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('set', function() {
|
|
||||||
|
|
||||||
it('should be able to set a key and have an expiration set', function(done) {
|
|
||||||
var store = new RedisDocumentStore({ expire: 10 });
|
|
||||||
store.set('hello1', 'world', function() {
|
|
||||||
RedisDocumentStore.client.ttl('hello1', function(err, res) {
|
|
||||||
res.should.be.above(1);
|
|
||||||
done();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should not set an expiration when told not to', function(done) {
|
|
||||||
var store = new RedisDocumentStore({ expire: 10 });
|
|
||||||
store.set('hello2', 'world', function() {
|
|
||||||
RedisDocumentStore.client.ttl('hello2', function(err, res) {
|
|
||||||
res.should.equal(-1);
|
|
||||||
done();
|
|
||||||
});
|
|
||||||
}, true);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should not set an expiration when expiration is off', function(done) {
|
|
||||||
var store = new RedisDocumentStore({ expire: false });
|
|
||||||
store.set('hello3', 'world', function(worked) {
|
|
||||||
RedisDocumentStore.client.ttl('hello3', function(err, res) {
|
|
||||||
res.should.equal(-1);
|
|
||||||
done();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
});
|
|
||||||
@@ -1,201 +0,0 @@
|
|||||||
html, body, div, pre, textarea, header, h1, a, nav, ul, li {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
font: 13px monospace;
|
|
||||||
}
|
|
||||||
|
|
||||||
header {
|
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
|
||||||
z-index: 1000;
|
|
||||||
}
|
|
||||||
|
|
||||||
header h1 {
|
|
||||||
background: #00222b;
|
|
||||||
padding: 5px 22px;
|
|
||||||
}
|
|
||||||
|
|
||||||
header h1 a {
|
|
||||||
background: transparent url('logo.png') no-repeat top center;
|
|
||||||
display: block;
|
|
||||||
overflow: hidden;
|
|
||||||
text-indent: -9999px;
|
|
||||||
width: 126px;
|
|
||||||
height: 42px;
|
|
||||||
}
|
|
||||||
|
|
||||||
header h1 a:hover {
|
|
||||||
background-position: bottom center;
|
|
||||||
}
|
|
||||||
|
|
||||||
header ul {
|
|
||||||
background: #08323c;
|
|
||||||
font-size: 0;
|
|
||||||
list-style: none;
|
|
||||||
/*overflow: hidden;*/
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
header ul li {
|
|
||||||
display: inline-block;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
header ul li .pointer {
|
|
||||||
background: transparent url('hover-dropdown-tip.png') no-repeat;
|
|
||||||
display: inline-block;
|
|
||||||
text-align: center;
|
|
||||||
width: 10px;
|
|
||||||
height: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
header ul li a {
|
|
||||||
background: transparent url('function-icons.png');
|
|
||||||
display: block;
|
|
||||||
overflow: hidden;
|
|
||||||
text-indent: -9999px;
|
|
||||||
width: 32px;
|
|
||||||
height: 37px;
|
|
||||||
}
|
|
||||||
|
|
||||||
header ul li a.disabled {
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
|
|
||||||
header li a.save { background-position: -5px center; }
|
|
||||||
header li a.save:hover { background-position: -5px bottom; }
|
|
||||||
header li a.save.disabled { background-position: -5px top; }
|
|
||||||
|
|
||||||
header li a.new { background-position: -42px center; }
|
|
||||||
header li a.new:hover { background-position: -42px bottom; }
|
|
||||||
header li a.new.disabled { background-position: -42px top; }
|
|
||||||
|
|
||||||
header li a.edit { background-position: -79px center; }
|
|
||||||
header li a.edit:hover { background-position: -79px bottom; }
|
|
||||||
header li a.edit.disabled { background-position: -79px top; }
|
|
||||||
|
|
||||||
header li a.raw { background-position: -116px center; }
|
|
||||||
header li a.raw:hover { background-position: -116px bottom; }
|
|
||||||
header li a.raw.disabled { background-position: -116px top; }
|
|
||||||
|
|
||||||
header li a.twitter { background-position: -153px center; }
|
|
||||||
header li a.twitter:hover { background-position: -153px bottom; }
|
|
||||||
header li a.twitter.disabled { background-position: -153px top; }
|
|
||||||
|
|
||||||
#editor {
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror {
|
|
||||||
line-height: 1em;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror-scroll {
|
|
||||||
height: 100%;
|
|
||||||
overflow: auto;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror-gutter {
|
|
||||||
height: 100%;
|
|
||||||
min-width: 2em;
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror-gutter-text {
|
|
||||||
text-align: right;
|
|
||||||
padding: 0.4em 0.2em 0.4em 0.4em;
|
|
||||||
white-space: pre;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror-lines {
|
|
||||||
padding: 0.4em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror textarea {
|
|
||||||
outline: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror pre.CodeMirror-cursor {
|
|
||||||
position: absolute;
|
|
||||||
visibility: hidden;
|
|
||||||
z-index: 10;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror-focused pre.CodeMirror-cursor {
|
|
||||||
visibility: visible;
|
|
||||||
}
|
|
||||||
|
|
||||||
span.cm-header, span.cm-strong {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
span.cm-em {
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
|
|
||||||
span.cm-emstrong {
|
|
||||||
font-style: italic; font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
span.cm-link {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Solarized (dark) theme */
|
|
||||||
|
|
||||||
.cm-s-solarized-dark {
|
|
||||||
background: #002b36;
|
|
||||||
color: #839496;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cm-s-solarized-dark div.CodeMirror-selected {
|
|
||||||
background: #586e75;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cm-s-solarized-dark .CodeMirror-gutter {
|
|
||||||
background: #073642;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cm-s-solarized-dark .CodeMirror-gutter-text {
|
|
||||||
color: #586e75;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cm-s-solarized-dark .CodeMirror-cursor {
|
|
||||||
border-left: 1px solid #839496;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cm-s-solarized-dark span.cm-keyword { color: #268bd2; }
|
|
||||||
.cm-s-solarized-dark span.cm-atom { color: #b58900; }
|
|
||||||
.cm-s-solarized-dark span.cm-number { color: #2aa198; }
|
|
||||||
.cm-s-solarized-dark span.cm-def { color: #839496; }
|
|
||||||
.cm-s-solarized-dark span.cm-variable { color: #839496; }
|
|
||||||
.cm-s-solarized-dark span.cm-variable-2 { color: #b58900; }
|
|
||||||
.cm-s-solarized-dark span.cm-variable-3 { color: #268bd2; }
|
|
||||||
.cm-s-solarized-dark span.cm-property { color: #859900; }
|
|
||||||
.cm-s-solarized-dark span.cm-operator { color: #2aa198; }
|
|
||||||
.cm-s-solarized-dark span.cm-comment { color: #586e75; }
|
|
||||||
.cm-s-solarized-dark span.cm-string { color: #2aa198; }
|
|
||||||
.cm-s-solarized-dark span.cm-string-2 { color: #2aa198; }
|
|
||||||
.cm-s-solarized-dark span.cm-meta { color: #586e75; }
|
|
||||||
.cm-s-solarized-dark span.cm-error { color: #dc322f; }
|
|
||||||
.cm-s-solarized-dark span.cm-qualifier { color: #268bd2; }
|
|
||||||
.cm-s-solarized-dark span.cm-builtin { color: #b58900; }
|
|
||||||
.cm-s-solarized-dark span.cm-bracket { color: #dc322f; }
|
|
||||||
.cm-s-solarized-dark span.cm-tag { color: #268bd2; }
|
|
||||||
.cm-s-solarized-dark span.cm-attribute { color: #839496; }
|
|
||||||
.cm-s-solarized-dark span.cm-header { color: #cb4b16; }
|
|
||||||
.cm-s-solarized-dark span.cm-quote { color: #586e75; }
|
|
||||||
.cm-s-solarized-dark span.cm-hr { color: #cb4b16; }
|
|
||||||
.cm-s-solarized-dark span.cm-link { color: #6c71c4; }
|
|
||||||
@@ -1,171 +0,0 @@
|
|||||||
window.Haste = {
|
|
||||||
Models: {},
|
|
||||||
Views: {},
|
|
||||||
Routers: {},
|
|
||||||
|
|
||||||
extensionMap: {
|
|
||||||
clj: 'clojure', coffee: 'coffeescript', css: 'css', diff: 'diff', go: 'go',
|
|
||||||
hs: 'haskell', html: 'htmlmixed', js: 'javascript', lua: 'lua',
|
|
||||||
md: 'markdown', markdown: 'markdown', sql: 'mysql', pl: 'perl', php: 'php',
|
|
||||||
py: 'python', r: 'r', rb: 'ruby', scm: 'scheme', xml: 'xml', yml: 'yaml'
|
|
||||||
},
|
|
||||||
|
|
||||||
init: function() {
|
|
||||||
new Haste.Routers.Document();
|
|
||||||
Backbone.history.start({ pushState: true });
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
Haste.Models.Document = Backbone.Model.extend({
|
|
||||||
idAttribute: 'key',
|
|
||||||
urlRoot: '/documents'
|
|
||||||
});
|
|
||||||
|
|
||||||
Haste.Routers.Document = Backbone.Router.extend({
|
|
||||||
routes: {
|
|
||||||
':id.:extension': 'show',
|
|
||||||
':id': 'show',
|
|
||||||
'': 'new'
|
|
||||||
},
|
|
||||||
|
|
||||||
initialize: function() {
|
|
||||||
this.editor = new Haste.Views.EditorView();
|
|
||||||
},
|
|
||||||
|
|
||||||
show: function(id, extension) {
|
|
||||||
this.editor.load(id, extension);
|
|
||||||
},
|
|
||||||
|
|
||||||
new: function() {
|
|
||||||
this.editor.new();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Haste.Views.ActionsView = Backbone.View.extend({
|
|
||||||
el: 'header',
|
|
||||||
|
|
||||||
events: {
|
|
||||||
'click .new': 'new',
|
|
||||||
'click .save': 'save',
|
|
||||||
'click .edit': 'edit',
|
|
||||||
'click .raw': 'raw',
|
|
||||||
'click .twitter': 'raw'
|
|
||||||
},
|
|
||||||
|
|
||||||
initialize: function() {
|
|
||||||
this.parent = this.options.parent;
|
|
||||||
},
|
|
||||||
|
|
||||||
toggleActions: function() {
|
|
||||||
var klass = 'disabled';
|
|
||||||
|
|
||||||
if (this.parent.model.isNew()) {
|
|
||||||
$('.save', this.el).removeClass(klass);
|
|
||||||
$('.edit, .raw, .twitter', this.el).addClass(klass);
|
|
||||||
} else {
|
|
||||||
$('.save', this.el).addClass(klass);
|
|
||||||
$('.edit, .raw, .twitter', this.el).removeClass(klass);
|
|
||||||
}
|
|
||||||
|
|
||||||
this.setLink('.raw', 'raw/' + this.parent.model.id);
|
|
||||||
this.setLink('.twitter', 'https://twitter.com/share?url=' + encodeURI(window.location.href));
|
|
||||||
},
|
|
||||||
|
|
||||||
setLink: function(el, href) {
|
|
||||||
if (this.parent.model.isNew()) {
|
|
||||||
href = '#';
|
|
||||||
}
|
|
||||||
|
|
||||||
$(el, this.el).attr('href', href);
|
|
||||||
},
|
|
||||||
|
|
||||||
new: function(event) {
|
|
||||||
event.preventDefault();
|
|
||||||
this.parent.new();
|
|
||||||
Backbone.history.navigate('');
|
|
||||||
},
|
|
||||||
|
|
||||||
save: function(event) {
|
|
||||||
event.preventDefault();
|
|
||||||
|
|
||||||
if (!this.parent.model.isNew()) { return; }
|
|
||||||
|
|
||||||
this.parent.save();
|
|
||||||
},
|
|
||||||
|
|
||||||
edit: function(event) {
|
|
||||||
event.preventDefault();
|
|
||||||
|
|
||||||
if (this.parent.model.isNew()) { return; }
|
|
||||||
|
|
||||||
this.parent.model.set('key', null);
|
|
||||||
Backbone.history.navigate('/');
|
|
||||||
},
|
|
||||||
|
|
||||||
raw: function(event) {
|
|
||||||
if (this.model.isNew()) {
|
|
||||||
event.preventDefault();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
Haste.Views.EditorView = Backbone.View.extend({
|
|
||||||
el: 'textarea',
|
|
||||||
|
|
||||||
initialize: function() {
|
|
||||||
this.codeMirror = CodeMirror.fromTextArea(this.el, {
|
|
||||||
mode: 'null',
|
|
||||||
lineNumbers: true,
|
|
||||||
theme: 'solarized-dark'
|
|
||||||
});
|
|
||||||
|
|
||||||
this.actionsView = new Haste.Views.ActionsView({ parent: this });
|
|
||||||
},
|
|
||||||
|
|
||||||
render: function() {
|
|
||||||
this.codeMirror.setOption('mode', this.model.get('mode') || 'null');
|
|
||||||
this.codeMirror.setValue(this.model.get('data') || '');
|
|
||||||
|
|
||||||
return this;
|
|
||||||
},
|
|
||||||
|
|
||||||
new: function() {
|
|
||||||
this.model = new Haste.Models.Document();
|
|
||||||
|
|
||||||
this.model.on('change', this.render, this);
|
|
||||||
this.model.on('change', this.toggleLock, this);
|
|
||||||
this.model.on('change', this.actionsView.toggleActions, this.actionsView);
|
|
||||||
|
|
||||||
this.model.trigger('change');
|
|
||||||
},
|
|
||||||
|
|
||||||
load: function(key, extension) {
|
|
||||||
this.new();
|
|
||||||
|
|
||||||
var mode = Haste.extensionMap[extension];
|
|
||||||
this.model.set({ key: key, mode: mode }, { silent: true });
|
|
||||||
|
|
||||||
this.model.fetch();
|
|
||||||
},
|
|
||||||
|
|
||||||
save: function() {
|
|
||||||
var data = this.codeMirror.getValue();
|
|
||||||
|
|
||||||
if (!data) { return; }
|
|
||||||
|
|
||||||
this.model.save('data', data, {
|
|
||||||
success: function(model, response) {
|
|
||||||
Backbone.history.navigate(model.id);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
toggleLock: function() {
|
|
||||||
this.codeMirror.setOption('readOnly', !this.model.isNew());
|
|
||||||
this.actionsView.toggleActions();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
$(function() {
|
|
||||||
Haste.init();
|
|
||||||
});
|
|
||||||
Vendored
-1
@@ -1 +0,0 @@
|
|||||||
window.Haste={Models:{},Views:{},Routers:{},extensionMap:{clj:"clojure",coffee:"coffeescript",css:"css",diff:"diff",go:"go",hs:"haskell",html:"htmlmixed",js:"javascript",lua:"lua",md:"markdown",markdown:"markdown",sql:"mysql",pl:"perl",php:"php",py:"python",r:"r",rb:"ruby",scm:"scheme",xml:"xml",yml:"yaml"},init:function(){new Haste.Routers.Document,Backbone.history.start({pushState:!0})}},Haste.Models.Document=Backbone.Model.extend({idAttribute:"key",urlRoot:"/documents"}),Haste.Routers.Document=Backbone.Router.extend({routes:{":id.:extension":"show",":id":"show","":"new"},initialize:function(){this.editor=new Haste.Views.EditorView},show:function(a,b){this.editor.load(a,b)},"new":function(){this.editor.new()}}),Haste.Views.ActionsView=Backbone.View.extend({el:"header",events:{"click .new":"new","click .save":"save","click .edit":"edit","click .raw":"raw","click .twitter":"raw"},initialize:function(){this.parent=this.options.parent},toggleActions:function(){var a="disabled";this.parent.model.isNew()?($(".save",this.el).removeClass(a),$(".edit, .raw, .twitter",this.el).addClass(a)):($(".save",this.el).addClass(a),$(".edit, .raw, .twitter",this.el).removeClass(a)),this.setLink(".raw","raw/"+this.parent.model.id),this.setLink(".twitter","https://twitter.com/share?url="+encodeURI(window.location.href))},setLink:function(a,b){this.parent.model.isNew()&&(b="#"),$(a,this.el).attr("href",b)},"new":function(a){a.preventDefault(),this.parent.new(),Backbone.history.navigate("")},save:function(a){a.preventDefault();if(!this.parent.model.isNew())return;this.parent.save()},edit:function(a){a.preventDefault();if(this.parent.model.isNew())return;this.parent.model.set("key",null),Backbone.history.navigate("/")},raw:function(a){this.model.isNew()&&a.preventDefault()}}),Haste.Views.EditorView=Backbone.View.extend({el:"textarea",initialize:function(){this.codeMirror=CodeMirror.fromTextArea(this.el,{mode:"null",lineNumbers:!0,theme:"solarized-dark"}),this.actionsView=new Haste.Views.ActionsView({parent:this})},render:function(){return this.codeMirror.setOption("mode",this.model.get("mode")||"null"),this.codeMirror.setValue(this.model.get("data")||""),this},"new":function(){this.model=new Haste.Models.Document,this.model.on("change",this.render,this),this.model.on("change",this.toggleLock,this),this.model.on("change",this.actionsView.toggleActions,this.actionsView),this.model.trigger("change")},load:function(a,b){this.new();var c=Haste.extensionMap[b];this.model.set({key:a,mode:c},{silent:!0}),this.model.fetch()},save:function(){var a=this.codeMirror.getValue();if(!a)return;this.model.save("data",a,{success:function(a,b){Backbone.history.navigate(a.id)}})},toggleLock:function(){this.codeMirror.setOption("readOnly",!this.model.isNew()),this.actionsView.toggleActions()}}),$(function(){Haste.init()})
|
|
||||||
Vendored
-37
@@ -1,37 +0,0 @@
|
|||||||
// Backbone.js 0.9.1
|
|
||||||
|
|
||||||
// (c) 2010-2012 Jeremy Ashkenas, DocumentCloud Inc.
|
|
||||||
// Backbone may be freely distributed under the MIT license.
|
|
||||||
// For all details and documentation:
|
|
||||||
// http://backbonejs.org
|
|
||||||
(function(){var i=this,r=i.Backbone,s=Array.prototype.slice,t=Array.prototype.splice,g;g="undefined"!==typeof exports?exports:i.Backbone={};g.VERSION="0.9.1";var f=i._;!f&&"undefined"!==typeof require&&(f=require("underscore"));var h=i.jQuery||i.Zepto||i.ender;g.setDomLibrary=function(a){h=a};g.noConflict=function(){i.Backbone=r;return this};g.emulateHTTP=!1;g.emulateJSON=!1;g.Events={on:function(a,b,c){for(var d,a=a.split(/\s+/),e=this._callbacks||(this._callbacks={});d=a.shift();){d=e[d]||(e[d]=
|
|
||||||
{});var f=d.tail||(d.tail=d.next={});f.callback=b;f.context=c;d.tail=f.next={}}return this},off:function(a,b,c){var d,e,f;if(a){if(e=this._callbacks)for(a=a.split(/\s+/);d=a.shift();)if(f=e[d],delete e[d],b&&f)for(;(f=f.next)&&f.next;)if(!(f.callback===b&&(!c||f.context===c)))this.on(d,f.callback,f.context)}else delete this._callbacks;return this},trigger:function(a){var b,c,d,e;if(!(d=this._callbacks))return this;e=d.all;for((a=a.split(/\s+/)).push(null);b=a.shift();)e&&a.push({next:e.next,tail:e.tail,
|
|
||||||
event:b}),(c=d[b])&&a.push({next:c.next,tail:c.tail});for(e=s.call(arguments,1);c=a.pop();){b=c.tail;for(d=c.event?[c.event].concat(e):e;(c=c.next)!==b;)c.callback.apply(c.context||this,d)}return this}};g.Events.bind=g.Events.on;g.Events.unbind=g.Events.off;g.Model=function(a,b){var c;a||(a={});b&&b.parse&&(a=this.parse(a));if(c=j(this,"defaults"))a=f.extend({},c,a);b&&b.collection&&(this.collection=b.collection);this.attributes={};this._escapedAttributes={};this.cid=f.uniqueId("c");if(!this.set(a,
|
|
||||||
{silent:!0}))throw Error("Can't create an invalid model");delete this._changed;this._previousAttributes=f.clone(this.attributes);this.initialize.apply(this,arguments)};f.extend(g.Model.prototype,g.Events,{idAttribute:"id",initialize:function(){},toJSON:function(){return f.clone(this.attributes)},get:function(a){return this.attributes[a]},escape:function(a){var b;if(b=this._escapedAttributes[a])return b;b=this.attributes[a];return this._escapedAttributes[a]=f.escape(null==b?"":""+b)},has:function(a){return null!=
|
|
||||||
this.attributes[a]},set:function(a,b,c){var d,e;f.isObject(a)||null==a?(d=a,c=b):(d={},d[a]=b);c||(c={});if(!d)return this;d instanceof g.Model&&(d=d.attributes);if(c.unset)for(e in d)d[e]=void 0;if(!this._validate(d,c))return!1;this.idAttribute in d&&(this.id=d[this.idAttribute]);var b=this.attributes,k=this._escapedAttributes,n=this._previousAttributes||{},h=this._setting;this._changed||(this._changed={});this._setting=!0;for(e in d)if(a=d[e],f.isEqual(b[e],a)||delete k[e],c.unset?delete b[e]:b[e]=
|
|
||||||
a,this._changing&&!f.isEqual(this._changed[e],a)&&(this.trigger("change:"+e,this,a,c),this._moreChanges=!0),delete this._changed[e],!f.isEqual(n[e],a)||f.has(b,e)!=f.has(n,e))this._changed[e]=a;h||(!c.silent&&this.hasChanged()&&this.change(c),this._setting=!1);return this},unset:function(a,b){(b||(b={})).unset=!0;return this.set(a,null,b)},clear:function(a){(a||(a={})).unset=!0;return this.set(f.clone(this.attributes),a)},fetch:function(a){var a=a?f.clone(a):{},b=this,c=a.success;a.success=function(d,
|
|
||||||
e,f){if(!b.set(b.parse(d,f),a))return!1;c&&c(b,d)};a.error=g.wrapError(a.error,b,a);return(this.sync||g.sync).call(this,"read",this,a)},save:function(a,b,c){var d,e;f.isObject(a)||null==a?(d=a,c=b):(d={},d[a]=b);c=c?f.clone(c):{};c.wait&&(e=f.clone(this.attributes));a=f.extend({},c,{silent:!0});if(d&&!this.set(d,c.wait?a:c))return!1;var k=this,h=c.success;c.success=function(a,b,e){b=k.parse(a,e);c.wait&&(b=f.extend(d||{},b));if(!k.set(b,c))return!1;h?h(k,a):k.trigger("sync",k,a,c)};c.error=g.wrapError(c.error,
|
|
||||||
k,c);b=this.isNew()?"create":"update";b=(this.sync||g.sync).call(this,b,this,c);c.wait&&this.set(e,a);return b},destroy:function(a){var a=a?f.clone(a):{},b=this,c=a.success,d=function(){b.trigger("destroy",b,b.collection,a)};if(this.isNew())return d();a.success=function(e){a.wait&&d();c?c(b,e):b.trigger("sync",b,e,a)};a.error=g.wrapError(a.error,b,a);var e=(this.sync||g.sync).call(this,"delete",this,a);a.wait||d();return e},url:function(){var a=j(this.collection,"url")||j(this,"urlRoot")||o();return this.isNew()?
|
|
||||||
a:a+("/"==a.charAt(a.length-1)?"":"/")+encodeURIComponent(this.id)},parse:function(a){return a},clone:function(){return new this.constructor(this.attributes)},isNew:function(){return null==this.id},change:function(a){if(this._changing||!this.hasChanged())return this;this._moreChanges=this._changing=!0;for(var b in this._changed)this.trigger("change:"+b,this,this._changed[b],a);for(;this._moreChanges;)this._moreChanges=!1,this.trigger("change",this,a);this._previousAttributes=f.clone(this.attributes);
|
|
||||||
delete this._changed;this._changing=!1;return this},hasChanged:function(a){return!arguments.length?!f.isEmpty(this._changed):this._changed&&f.has(this._changed,a)},changedAttributes:function(a){if(!a)return this.hasChanged()?f.clone(this._changed):!1;var b,c=!1,d=this._previousAttributes,e;for(e in a)if(!f.isEqual(d[e],b=a[e]))(c||(c={}))[e]=b;return c},previous:function(a){return!arguments.length||!this._previousAttributes?null:this._previousAttributes[a]},previousAttributes:function(){return f.clone(this._previousAttributes)},
|
|
||||||
isValid:function(){return!this.validate(this.attributes)},_validate:function(a,b){if(b.silent||!this.validate)return!0;var a=f.extend({},this.attributes,a),c=this.validate(a,b);if(!c)return!0;b&&b.error?b.error(this,c,b):this.trigger("error",this,c,b);return!1}});g.Collection=function(a,b){b||(b={});b.comparator&&(this.comparator=b.comparator);this._reset();this.initialize.apply(this,arguments);a&&this.reset(a,{silent:!0,parse:b.parse})};f.extend(g.Collection.prototype,g.Events,{model:g.Model,initialize:function(){},
|
|
||||||
toJSON:function(){return this.map(function(a){return a.toJSON()})},add:function(a,b){var c,d,e,g,h,i={},j={};b||(b={});a=f.isArray(a)?a.slice():[a];for(c=0,d=a.length;c<d;c++){if(!(e=a[c]=this._prepareModel(a[c],b)))throw Error("Can't add an invalid model to a collection");if(i[g=e.cid]||this._byCid[g]||null!=(h=e.id)&&(j[h]||this._byId[h]))throw Error("Can't add the same model to a collection twice");i[g]=j[h]=e}for(c=0;c<d;c++)(e=a[c]).on("all",this._onModelEvent,this),this._byCid[e.cid]=e,null!=
|
|
||||||
e.id&&(this._byId[e.id]=e);this.length+=d;t.apply(this.models,[null!=b.at?b.at:this.models.length,0].concat(a));this.comparator&&this.sort({silent:!0});if(b.silent)return this;for(c=0,d=this.models.length;c<d;c++)if(i[(e=this.models[c]).cid])b.index=c,e.trigger("add",e,this,b);return this},remove:function(a,b){var c,d,e,g;b||(b={});a=f.isArray(a)?a.slice():[a];for(c=0,d=a.length;c<d;c++)if(g=this.getByCid(a[c])||this.get(a[c]))delete this._byId[g.id],delete this._byCid[g.cid],e=this.indexOf(g),this.models.splice(e,
|
|
||||||
1),this.length--,b.silent||(b.index=e,g.trigger("remove",g,this,b)),this._removeReference(g);return this},get:function(a){return null==a?null:this._byId[null!=a.id?a.id:a]},getByCid:function(a){return a&&this._byCid[a.cid||a]},at:function(a){return this.models[a]},sort:function(a){a||(a={});if(!this.comparator)throw Error("Cannot sort a set without a comparator");var b=f.bind(this.comparator,this);1==this.comparator.length?this.models=this.sortBy(b):this.models.sort(b);a.silent||this.trigger("reset",
|
|
||||||
this,a);return this},pluck:function(a){return f.map(this.models,function(b){return b.get(a)})},reset:function(a,b){a||(a=[]);b||(b={});for(var c=0,d=this.models.length;c<d;c++)this._removeReference(this.models[c]);this._reset();this.add(a,{silent:!0,parse:b.parse});b.silent||this.trigger("reset",this,b);return this},fetch:function(a){a=a?f.clone(a):{};void 0===a.parse&&(a.parse=!0);var b=this,c=a.success;a.success=function(d,e,f){b[a.add?"add":"reset"](b.parse(d,f),a);c&&c(b,d)};a.error=g.wrapError(a.error,
|
|
||||||
b,a);return(this.sync||g.sync).call(this,"read",this,a)},create:function(a,b){var c=this,b=b?f.clone(b):{},a=this._prepareModel(a,b);if(!a)return!1;b.wait||c.add(a,b);var d=b.success;b.success=function(e,f){b.wait&&c.add(e,b);d?d(e,f):e.trigger("sync",a,f,b)};a.save(null,b);return a},parse:function(a){return a},chain:function(){return f(this.models).chain()},_reset:function(){this.length=0;this.models=[];this._byId={};this._byCid={}},_prepareModel:function(a,b){a instanceof g.Model?a.collection||
|
|
||||||
(a.collection=this):(b.collection=this,a=new this.model(a,b),a._validate(a.attributes,b)||(a=!1));return a},_removeReference:function(a){this==a.collection&&delete a.collection;a.off("all",this._onModelEvent,this)},_onModelEvent:function(a,b,c,d){("add"==a||"remove"==a)&&c!=this||("destroy"==a&&this.remove(b,d),b&&a==="change:"+b.idAttribute&&(delete this._byId[b.previous(b.idAttribute)],this._byId[b.id]=b),this.trigger.apply(this,arguments))}});f.each("forEach,each,map,reduce,reduceRight,find,detect,filter,select,reject,every,all,some,any,include,contains,invoke,max,min,sortBy,sortedIndex,toArray,size,first,initial,rest,last,without,indexOf,shuffle,lastIndexOf,isEmpty,groupBy".split(","),
|
|
||||||
function(a){g.Collection.prototype[a]=function(){return f[a].apply(f,[this.models].concat(f.toArray(arguments)))}});g.Router=function(a){a||(a={});a.routes&&(this.routes=a.routes);this._bindRoutes();this.initialize.apply(this,arguments)};var u=/:\w+/g,v=/\*\w+/g,w=/[-[\]{}()+?.,\\^$|#\s]/g;f.extend(g.Router.prototype,g.Events,{initialize:function(){},route:function(a,b,c){g.history||(g.history=new g.History);f.isRegExp(a)||(a=this._routeToRegExp(a));c||(c=this[b]);g.history.route(a,f.bind(function(d){d=
|
|
||||||
this._extractParameters(a,d);c&&c.apply(this,d);this.trigger.apply(this,["route:"+b].concat(d));g.history.trigger("route",this,b,d)},this));return this},navigate:function(a,b){g.history.navigate(a,b)},_bindRoutes:function(){if(this.routes){var a=[],b;for(b in this.routes)a.unshift([b,this.routes[b]]);b=0;for(var c=a.length;b<c;b++)this.route(a[b][0],a[b][1],this[a[b][1]])}},_routeToRegExp:function(a){a=a.replace(w,"\\$&").replace(u,"([^/]+)").replace(v,"(.*?)");return RegExp("^"+a+"$")},_extractParameters:function(a,
|
|
||||||
b){return a.exec(b).slice(1)}});g.History=function(){this.handlers=[];f.bindAll(this,"checkUrl")};var m=/^[#\/]/,x=/msie [\w.]+/,l=!1;f.extend(g.History.prototype,g.Events,{interval:50,getFragment:function(a,b){if(null==a)if(this._hasPushState||b){var a=window.location.pathname,c=window.location.search;c&&(a+=c)}else a=window.location.hash;a=decodeURIComponent(a);a.indexOf(this.options.root)||(a=a.substr(this.options.root.length));return a.replace(m,"")},start:function(a){if(l)throw Error("Backbone.history has already been started");
|
|
||||||
this.options=f.extend({},{root:"/"},this.options,a);this._wantsHashChange=!1!==this.options.hashChange;this._wantsPushState=!!this.options.pushState;this._hasPushState=!(!this.options.pushState||!window.history||!window.history.pushState);var a=this.getFragment(),b=document.documentMode;if(b=x.exec(navigator.userAgent.toLowerCase())&&(!b||7>=b))this.iframe=h('<iframe src="javascript:0" tabindex="-1" />').hide().appendTo("body")[0].contentWindow,this.navigate(a);this._hasPushState?h(window).bind("popstate",
|
|
||||||
this.checkUrl):this._wantsHashChange&&"onhashchange"in window&&!b?h(window).bind("hashchange",this.checkUrl):this._wantsHashChange&&(this._checkUrlInterval=setInterval(this.checkUrl,this.interval));this.fragment=a;l=!0;a=window.location;b=a.pathname==this.options.root;if(this._wantsHashChange&&this._wantsPushState&&!this._hasPushState&&!b)return this.fragment=this.getFragment(null,!0),window.location.replace(this.options.root+"#"+this.fragment),!0;this._wantsPushState&&this._hasPushState&&b&&a.hash&&
|
|
||||||
(this.fragment=a.hash.replace(m,""),window.history.replaceState({},document.title,a.protocol+"//"+a.host+this.options.root+this.fragment));if(!this.options.silent)return this.loadUrl()},stop:function(){h(window).unbind("popstate",this.checkUrl).unbind("hashchange",this.checkUrl);clearInterval(this._checkUrlInterval);l=!1},route:function(a,b){this.handlers.unshift({route:a,callback:b})},checkUrl:function(){var a=this.getFragment();a==this.fragment&&this.iframe&&(a=this.getFragment(this.iframe.location.hash));
|
|
||||||
if(a==this.fragment||a==decodeURIComponent(this.fragment))return!1;this.iframe&&this.navigate(a);this.loadUrl()||this.loadUrl(window.location.hash)},loadUrl:function(a){var b=this.fragment=this.getFragment(a);return f.any(this.handlers,function(a){if(a.route.test(b))return a.callback(b),!0})},navigate:function(a,b){if(!l)return!1;if(!b||!0===b)b={trigger:b};var c=(a||"").replace(m,"");this.fragment==c||this.fragment==decodeURIComponent(c)||(this._hasPushState?(0!=c.indexOf(this.options.root)&&(c=
|
|
||||||
this.options.root+c),this.fragment=c,window.history[b.replace?"replaceState":"pushState"]({},document.title,c)):this._wantsHashChange?(this.fragment=c,this._updateHash(window.location,c,b.replace),this.iframe&&c!=this.getFragment(this.iframe.location.hash)&&(b.replace||this.iframe.document.open().close(),this._updateHash(this.iframe.location,c,b.replace))):window.location.assign(this.options.root+a),b.trigger&&this.loadUrl(a))},_updateHash:function(a,b,c){c?a.replace(a.toString().replace(/(javascript:|#).*$/,
|
|
||||||
"")+"#"+b):a.hash=b}});g.View=function(a){this.cid=f.uniqueId("view");this._configure(a||{});this._ensureElement();this.initialize.apply(this,arguments);this.delegateEvents()};var y=/^(\S+)\s*(.*)$/,p="model,collection,el,id,attributes,className,tagName".split(",");f.extend(g.View.prototype,g.Events,{tagName:"div",$:function(a){return this.$el.find(a)},initialize:function(){},render:function(){return this},remove:function(){this.$el.remove();return this},make:function(a,b,c){a=document.createElement(a);
|
|
||||||
b&&h(a).attr(b);c&&h(a).html(c);return a},setElement:function(a,b){this.$el=h(a);this.el=this.$el[0];!1!==b&&this.delegateEvents();return this},delegateEvents:function(a){if(a||(a=j(this,"events"))){this.undelegateEvents();for(var b in a){var c=a[b];f.isFunction(c)||(c=this[a[b]]);if(!c)throw Error('Event "'+a[b]+'" does not exist');var d=b.match(y),e=d[1],d=d[2],c=f.bind(c,this),e=e+(".delegateEvents"+this.cid);""===d?this.$el.bind(e,c):this.$el.delegate(d,e,c)}}},undelegateEvents:function(){this.$el.unbind(".delegateEvents"+
|
|
||||||
this.cid)},_configure:function(a){this.options&&(a=f.extend({},this.options,a));for(var b=0,c=p.length;b<c;b++){var d=p[b];a[d]&&(this[d]=a[d])}this.options=a},_ensureElement:function(){if(this.el)this.setElement(this.el,!1);else{var a=j(this,"attributes")||{};this.id&&(a.id=this.id);this.className&&(a["class"]=this.className);this.setElement(this.make(this.tagName,a),!1)}}});g.Model.extend=g.Collection.extend=g.Router.extend=g.View.extend=function(a,b){var c=z(this,a,b);c.extend=this.extend;return c};
|
|
||||||
var A={create:"POST",update:"PUT","delete":"DELETE",read:"GET"};g.sync=function(a,b,c){var d=A[a],e={type:d,dataType:"json"};c.url||(e.url=j(b,"url")||o());if(!c.data&&b&&("create"==a||"update"==a))e.contentType="application/json",e.data=JSON.stringify(b.toJSON());g.emulateJSON&&(e.contentType="application/x-www-form-urlencoded",e.data=e.data?{model:e.data}:{});if(g.emulateHTTP&&("PUT"===d||"DELETE"===d))g.emulateJSON&&(e.data._method=d),e.type="POST",e.beforeSend=function(a){a.setRequestHeader("X-HTTP-Method-Override",
|
|
||||||
d)};"GET"!==e.type&&!g.emulateJSON&&(e.processData=!1);return h.ajax(f.extend(e,c))};g.wrapError=function(a,b,c){return function(d,e){e=d===b?e:d;a?a(b,e,c):b.trigger("error",b,e,c)}};var q=function(){},z=function(a,b,c){var d;d=b&&b.hasOwnProperty("constructor")?b.constructor:function(){a.apply(this,arguments)};f.extend(d,a);q.prototype=a.prototype;d.prototype=new q;b&&f.extend(d.prototype,b);c&&f.extend(d,c);d.prototype.constructor=d;d.__super__=a.prototype;return d},j=function(a,b){return!a||!a[b]?
|
|
||||||
null:f.isFunction(a[b])?a[b]():a[b]},o=function(){throw Error('A "url" property or function must be specified');}}).call(this);
|
|
||||||
Vendored
-1
File diff suppressed because one or more lines are too long
Binary file not shown.
|
Before Width: | Height: | Size: 2.9 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 6.1 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 2.8 KiB |
@@ -1,35 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
|
|
||||||
<title>Hastebin</title>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="application.css" />
|
|
||||||
|
|
||||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
|
|
||||||
<script src="codemirror.min.js"></script>
|
|
||||||
<script src="underscore.min.js"></script>
|
|
||||||
<script src="backbone.min.js"></script>
|
|
||||||
<script src="application.min.js"></script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<header>
|
|
||||||
<h1><a href="about.md">Hastebin</a></h1>
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<ul>
|
|
||||||
<li><a href="#" class="save">Save</a></li>
|
|
||||||
<li><a href="#" class="new">New</a></li>
|
|
||||||
<li><a href="#" class="edit">Edit</a></li>
|
|
||||||
<li><a href="#" class="raw">Raw</a></li>
|
|
||||||
<li><a href="#" class="twitter">Twitter</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<div id="editor">
|
|
||||||
<textarea></textarea>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 4.6 KiB |
@@ -1,4 +0,0 @@
|
|||||||
User-agent: *
|
|
||||||
Disallow: /*
|
|
||||||
Allow: /?okparam=
|
|
||||||
Allow: /$
|
|
||||||
Vendored
-31
@@ -1,31 +0,0 @@
|
|||||||
// Underscore.js 1.3.1
|
|
||||||
// (c) 2009-2012 Jeremy Ashkenas, DocumentCloud Inc.
|
|
||||||
// Underscore is freely distributable under the MIT license.
|
|
||||||
// Portions of Underscore are inspired or borrowed from Prototype,
|
|
||||||
// Oliver Steele's Functional, and John Resig's Micro-Templating.
|
|
||||||
// For all details and documentation:
|
|
||||||
// http://documentcloud.github.com/underscore
|
|
||||||
(function(){function q(a,c,d){if(a===c)return a!==0||1/a==1/c;if(a==null||c==null)return a===c;if(a._chain)a=a._wrapped;if(c._chain)c=c._wrapped;if(a.isEqual&&b.isFunction(a.isEqual))return a.isEqual(c);if(c.isEqual&&b.isFunction(c.isEqual))return c.isEqual(a);var e=l.call(a);if(e!=l.call(c))return false;switch(e){case "[object String]":return a==String(c);case "[object Number]":return a!=+a?c!=+c:a==0?1/a==1/c:a==+c;case "[object Date]":case "[object Boolean]":return+a==+c;case "[object RegExp]":return a.source==
|
|
||||||
c.source&&a.global==c.global&&a.multiline==c.multiline&&a.ignoreCase==c.ignoreCase}if(typeof a!="object"||typeof c!="object")return false;for(var f=d.length;f--;)if(d[f]==a)return true;d.push(a);var f=0,g=true;if(e=="[object Array]"){if(f=a.length,g=f==c.length)for(;f--;)if(!(g=f in a==f in c&&q(a[f],c[f],d)))break}else{if("constructor"in a!="constructor"in c||a.constructor!=c.constructor)return false;for(var h in a)if(b.has(a,h)&&(f++,!(g=b.has(c,h)&&q(a[h],c[h],d))))break;if(g){for(h in c)if(b.has(c,
|
|
||||||
h)&&!f--)break;g=!f}}d.pop();return g}var r=this,G=r._,n={},k=Array.prototype,o=Object.prototype,i=k.slice,H=k.unshift,l=o.toString,I=o.hasOwnProperty,w=k.forEach,x=k.map,y=k.reduce,z=k.reduceRight,A=k.filter,B=k.every,C=k.some,p=k.indexOf,D=k.lastIndexOf,o=Array.isArray,J=Object.keys,s=Function.prototype.bind,b=function(a){return new m(a)};if(typeof exports!=="undefined"){if(typeof module!=="undefined"&&module.exports)exports=module.exports=b;exports._=b}else r._=b;b.VERSION="1.3.1";var j=b.each=
|
|
||||||
b.forEach=function(a,c,d){if(a!=null)if(w&&a.forEach===w)a.forEach(c,d);else if(a.length===+a.length)for(var e=0,f=a.length;e<f;e++){if(e in a&&c.call(d,a[e],e,a)===n)break}else for(e in a)if(b.has(a,e)&&c.call(d,a[e],e,a)===n)break};b.map=b.collect=function(a,c,b){var e=[];if(a==null)return e;if(x&&a.map===x)return a.map(c,b);j(a,function(a,g,h){e[e.length]=c.call(b,a,g,h)});if(a.length===+a.length)e.length=a.length;return e};b.reduce=b.foldl=b.inject=function(a,c,d,e){var f=arguments.length>2;a==
|
|
||||||
null&&(a=[]);if(y&&a.reduce===y)return e&&(c=b.bind(c,e)),f?a.reduce(c,d):a.reduce(c);j(a,function(a,b,i){f?d=c.call(e,d,a,b,i):(d=a,f=true)});if(!f)throw new TypeError("Reduce of empty array with no initial value");return d};b.reduceRight=b.foldr=function(a,c,d,e){var f=arguments.length>2;a==null&&(a=[]);if(z&&a.reduceRight===z)return e&&(c=b.bind(c,e)),f?a.reduceRight(c,d):a.reduceRight(c);var g=b.toArray(a).reverse();e&&!f&&(c=b.bind(c,e));return f?b.reduce(g,c,d,e):b.reduce(g,c)};b.find=b.detect=
|
|
||||||
function(a,c,b){var e;E(a,function(a,g,h){if(c.call(b,a,g,h))return e=a,true});return e};b.filter=b.select=function(a,c,b){var e=[];if(a==null)return e;if(A&&a.filter===A)return a.filter(c,b);j(a,function(a,g,h){c.call(b,a,g,h)&&(e[e.length]=a)});return e};b.reject=function(a,c,b){var e=[];if(a==null)return e;j(a,function(a,g,h){c.call(b,a,g,h)||(e[e.length]=a)});return e};b.every=b.all=function(a,c,b){var e=true;if(a==null)return e;if(B&&a.every===B)return a.every(c,b);j(a,function(a,g,h){if(!(e=
|
|
||||||
e&&c.call(b,a,g,h)))return n});return e};var E=b.some=b.any=function(a,c,d){c||(c=b.identity);var e=false;if(a==null)return e;if(C&&a.some===C)return a.some(c,d);j(a,function(a,b,h){if(e||(e=c.call(d,a,b,h)))return n});return!!e};b.include=b.contains=function(a,c){var b=false;if(a==null)return b;return p&&a.indexOf===p?a.indexOf(c)!=-1:b=E(a,function(a){return a===c})};b.invoke=function(a,c){var d=i.call(arguments,2);return b.map(a,function(a){return(b.isFunction(c)?c||a:a[c]).apply(a,d)})};b.pluck=
|
|
||||||
function(a,c){return b.map(a,function(a){return a[c]})};b.max=function(a,c,d){if(!c&&b.isArray(a))return Math.max.apply(Math,a);if(!c&&b.isEmpty(a))return-Infinity;var e={computed:-Infinity};j(a,function(a,b,h){b=c?c.call(d,a,b,h):a;b>=e.computed&&(e={value:a,computed:b})});return e.value};b.min=function(a,c,d){if(!c&&b.isArray(a))return Math.min.apply(Math,a);if(!c&&b.isEmpty(a))return Infinity;var e={computed:Infinity};j(a,function(a,b,h){b=c?c.call(d,a,b,h):a;b<e.computed&&(e={value:a,computed:b})});
|
|
||||||
return e.value};b.shuffle=function(a){var b=[],d;j(a,function(a,f){f==0?b[0]=a:(d=Math.floor(Math.random()*(f+1)),b[f]=b[d],b[d]=a)});return b};b.sortBy=function(a,c,d){return b.pluck(b.map(a,function(a,b,g){return{value:a,criteria:c.call(d,a,b,g)}}).sort(function(a,b){var c=a.criteria,d=b.criteria;return c<d?-1:c>d?1:0}),"value")};b.groupBy=function(a,c){var d={},e=b.isFunction(c)?c:function(a){return a[c]};j(a,function(a,b){var c=e(a,b);(d[c]||(d[c]=[])).push(a)});return d};b.sortedIndex=function(a,
|
|
||||||
c,d){d||(d=b.identity);for(var e=0,f=a.length;e<f;){var g=e+f>>1;d(a[g])<d(c)?e=g+1:f=g}return e};b.toArray=function(a){return!a?[]:a.toArray?a.toArray():b.isArray(a)?i.call(a):b.isArguments(a)?i.call(a):b.values(a)};b.size=function(a){return b.toArray(a).length};b.first=b.head=function(a,b,d){return b!=null&&!d?i.call(a,0,b):a[0]};b.initial=function(a,b,d){return i.call(a,0,a.length-(b==null||d?1:b))};b.last=function(a,b,d){return b!=null&&!d?i.call(a,Math.max(a.length-b,0)):a[a.length-1]};b.rest=
|
|
||||||
b.tail=function(a,b,d){return i.call(a,b==null||d?1:b)};b.compact=function(a){return b.filter(a,function(a){return!!a})};b.flatten=function(a,c){return b.reduce(a,function(a,e){if(b.isArray(e))return a.concat(c?e:b.flatten(e));a[a.length]=e;return a},[])};b.without=function(a){return b.difference(a,i.call(arguments,1))};b.uniq=b.unique=function(a,c,d){var d=d?b.map(a,d):a,e=[];b.reduce(d,function(d,g,h){if(0==h||(c===true?b.last(d)!=g:!b.include(d,g)))d[d.length]=g,e[e.length]=a[h];return d},[]);
|
|
||||||
return e};b.union=function(){return b.uniq(b.flatten(arguments,true))};b.intersection=b.intersect=function(a){var c=i.call(arguments,1);return b.filter(b.uniq(a),function(a){return b.every(c,function(c){return b.indexOf(c,a)>=0})})};b.difference=function(a){var c=b.flatten(i.call(arguments,1));return b.filter(a,function(a){return!b.include(c,a)})};b.zip=function(){for(var a=i.call(arguments),c=b.max(b.pluck(a,"length")),d=Array(c),e=0;e<c;e++)d[e]=b.pluck(a,""+e);return d};b.indexOf=function(a,c,
|
|
||||||
d){if(a==null)return-1;var e;if(d)return d=b.sortedIndex(a,c),a[d]===c?d:-1;if(p&&a.indexOf===p)return a.indexOf(c);for(d=0,e=a.length;d<e;d++)if(d in a&&a[d]===c)return d;return-1};b.lastIndexOf=function(a,b){if(a==null)return-1;if(D&&a.lastIndexOf===D)return a.lastIndexOf(b);for(var d=a.length;d--;)if(d in a&&a[d]===b)return d;return-1};b.range=function(a,b,d){arguments.length<=1&&(b=a||0,a=0);for(var d=arguments[2]||1,e=Math.max(Math.ceil((b-a)/d),0),f=0,g=Array(e);f<e;)g[f++]=a,a+=d;return g};
|
|
||||||
var F=function(){};b.bind=function(a,c){var d,e;if(a.bind===s&&s)return s.apply(a,i.call(arguments,1));if(!b.isFunction(a))throw new TypeError;e=i.call(arguments,2);return d=function(){if(!(this instanceof d))return a.apply(c,e.concat(i.call(arguments)));F.prototype=a.prototype;var b=new F,g=a.apply(b,e.concat(i.call(arguments)));return Object(g)===g?g:b}};b.bindAll=function(a){var c=i.call(arguments,1);c.length==0&&(c=b.functions(a));j(c,function(c){a[c]=b.bind(a[c],a)});return a};b.memoize=function(a,
|
|
||||||
c){var d={};c||(c=b.identity);return function(){var e=c.apply(this,arguments);return b.has(d,e)?d[e]:d[e]=a.apply(this,arguments)}};b.delay=function(a,b){var d=i.call(arguments,2);return setTimeout(function(){return a.apply(a,d)},b)};b.defer=function(a){return b.delay.apply(b,[a,1].concat(i.call(arguments,1)))};b.throttle=function(a,c){var d,e,f,g,h,i=b.debounce(function(){h=g=false},c);return function(){d=this;e=arguments;var b;f||(f=setTimeout(function(){f=null;h&&a.apply(d,e);i()},c));g?h=true:
|
|
||||||
a.apply(d,e);i();g=true}};b.debounce=function(a,b){var d;return function(){var e=this,f=arguments;clearTimeout(d);d=setTimeout(function(){d=null;a.apply(e,f)},b)}};b.once=function(a){var b=false,d;return function(){if(b)return d;b=true;return d=a.apply(this,arguments)}};b.wrap=function(a,b){return function(){var d=[a].concat(i.call(arguments,0));return b.apply(this,d)}};b.compose=function(){var a=arguments;return function(){for(var b=arguments,d=a.length-1;d>=0;d--)b=[a[d].apply(this,b)];return b[0]}};
|
|
||||||
b.after=function(a,b){return a<=0?b():function(){if(--a<1)return b.apply(this,arguments)}};b.keys=J||function(a){if(a!==Object(a))throw new TypeError("Invalid object");var c=[],d;for(d in a)b.has(a,d)&&(c[c.length]=d);return c};b.values=function(a){return b.map(a,b.identity)};b.functions=b.methods=function(a){var c=[],d;for(d in a)b.isFunction(a[d])&&c.push(d);return c.sort()};b.extend=function(a){j(i.call(arguments,1),function(b){for(var d in b)a[d]=b[d]});return a};b.defaults=function(a){j(i.call(arguments,
|
|
||||||
1),function(b){for(var d in b)a[d]==null&&(a[d]=b[d])});return a};b.clone=function(a){return!b.isObject(a)?a:b.isArray(a)?a.slice():b.extend({},a)};b.tap=function(a,b){b(a);return a};b.isEqual=function(a,b){return q(a,b,[])};b.isEmpty=function(a){if(b.isArray(a)||b.isString(a))return a.length===0;for(var c in a)if(b.has(a,c))return false;return true};b.isElement=function(a){return!!(a&&a.nodeType==1)};b.isArray=o||function(a){return l.call(a)=="[object Array]"};b.isObject=function(a){return a===Object(a)};
|
|
||||||
b.isArguments=function(a){return l.call(a)=="[object Arguments]"};if(!b.isArguments(arguments))b.isArguments=function(a){return!(!a||!b.has(a,"callee"))};b.isFunction=function(a){return l.call(a)=="[object Function]"};b.isString=function(a){return l.call(a)=="[object String]"};b.isNumber=function(a){return l.call(a)=="[object Number]"};b.isNaN=function(a){return a!==a};b.isBoolean=function(a){return a===true||a===false||l.call(a)=="[object Boolean]"};b.isDate=function(a){return l.call(a)=="[object Date]"};
|
|
||||||
b.isRegExp=function(a){return l.call(a)=="[object RegExp]"};b.isNull=function(a){return a===null};b.isUndefined=function(a){return a===void 0};b.has=function(a,b){return I.call(a,b)};b.noConflict=function(){r._=G;return this};b.identity=function(a){return a};b.times=function(a,b,d){for(var e=0;e<a;e++)b.call(d,e)};b.escape=function(a){return(""+a).replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/"/g,""").replace(/'/g,"'").replace(/\//g,"/")};b.mixin=function(a){j(b.functions(a),
|
|
||||||
function(c){K(c,b[c]=a[c])})};var L=0;b.uniqueId=function(a){var b=L++;return a?a+b:b};b.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};var t=/.^/,u=function(a){return a.replace(/\\\\/g,"\\").replace(/\\'/g,"'")};b.template=function(a,c){var d=b.templateSettings,d="var __p=[],print=function(){__p.push.apply(__p,arguments);};with(obj||{}){__p.push('"+a.replace(/\\/g,"\\\\").replace(/'/g,"\\'").replace(d.escape||t,function(a,b){return"',_.escape("+
|
|
||||||
u(b)+"),'"}).replace(d.interpolate||t,function(a,b){return"',"+u(b)+",'"}).replace(d.evaluate||t,function(a,b){return"');"+u(b).replace(/[\r\n\t]/g," ")+";__p.push('"}).replace(/\r/g,"\\r").replace(/\n/g,"\\n").replace(/\t/g,"\\t")+"');}return __p.join('');",e=new Function("obj","_",d);return c?e(c,b):function(a){return e.call(this,a,b)}};b.chain=function(a){return b(a).chain()};var m=function(a){this._wrapped=a};b.prototype=m.prototype;var v=function(a,c){return c?b(a).chain():a},K=function(a,c){m.prototype[a]=
|
|
||||||
function(){var a=i.call(arguments);H.call(a,this._wrapped);return v(c.apply(b,a),this._chain)}};b.mixin(b);j("pop,push,reverse,shift,sort,splice,unshift".split(","),function(a){var b=k[a];m.prototype[a]=function(){var d=this._wrapped;b.apply(d,arguments);var e=d.length;(a=="shift"||a=="splice")&&e===0&&delete d[0];return v(d,this._chain)}});j(["concat","join","slice"],function(a){var b=k[a];m.prototype[a]=function(){return v(b.apply(this._wrapped,arguments),this._chain)}});m.prototype.chain=function(){this._chain=
|
|
||||||
true;return this};m.prototype.value=function(){return this._wrapped}}).call(this);
|
|
||||||
@@ -0,0 +1,69 @@
|
|||||||
|
.highlight { background: #ffffff; }
|
||||||
|
.highlight .c { color: #999988; font-style: italic } /* Comment */
|
||||||
|
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
||||||
|
.highlight .k { font-weight: bold } /* Keyword */
|
||||||
|
.highlight .o { font-weight: bold } /* Operator */
|
||||||
|
.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
|
||||||
|
.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
|
||||||
|
.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
|
||||||
|
.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
|
||||||
|
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
|
||||||
|
.highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
|
||||||
|
.highlight .ge { font-style: italic } /* Generic.Emph */
|
||||||
|
.highlight .gr { color: #aa0000 } /* Generic.Error */
|
||||||
|
.highlight .gh { color: #999999 } /* Generic.Heading */
|
||||||
|
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
|
||||||
|
.highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
|
||||||
|
.highlight .go { color: #888888 } /* Generic.Output */
|
||||||
|
.highlight .gp { color: #555555 } /* Generic.Prompt */
|
||||||
|
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||||||
|
.highlight .gu { color: #800080; font-weight: bold; } /* Generic.Subheading */
|
||||||
|
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
|
||||||
|
.highlight .kc { font-weight: bold } /* Keyword.Constant */
|
||||||
|
.highlight .kd { font-weight: bold } /* Keyword.Declaration */
|
||||||
|
.highlight .kn { font-weight: bold } /* Keyword.Namespace */
|
||||||
|
.highlight .kp { font-weight: bold } /* Keyword.Pseudo */
|
||||||
|
.highlight .kr { font-weight: bold } /* Keyword.Reserved */
|
||||||
|
.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
|
||||||
|
.highlight .m { color: #009999 } /* Literal.Number */
|
||||||
|
.highlight .s { color: #d14 } /* Literal.String */
|
||||||
|
.highlight .na { color: #008080 } /* Name.Attribute */
|
||||||
|
.highlight .nb { color: #0086B3 } /* Name.Builtin */
|
||||||
|
.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
|
||||||
|
.highlight .no { color: #008080 } /* Name.Constant */
|
||||||
|
.highlight .ni { color: #800080 } /* Name.Entity */
|
||||||
|
.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
|
||||||
|
.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
|
||||||
|
.highlight .nn { color: #555555 } /* Name.Namespace */
|
||||||
|
.highlight .nt { color: #000080 } /* Name.Tag */
|
||||||
|
.highlight .nv { color: #008080 } /* Name.Variable */
|
||||||
|
.highlight .ow { font-weight: bold } /* Operator.Word */
|
||||||
|
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
||||||
|
.highlight .mf { color: #009999 } /* Literal.Number.Float */
|
||||||
|
.highlight .mh { color: #009999 } /* Literal.Number.Hex */
|
||||||
|
.highlight .mi { color: #009999 } /* Literal.Number.Integer */
|
||||||
|
.highlight .mo { color: #009999 } /* Literal.Number.Oct */
|
||||||
|
.highlight .sb { color: #d14 } /* Literal.String.Backtick */
|
||||||
|
.highlight .sc { color: #d14 } /* Literal.String.Char */
|
||||||
|
.highlight .sd { color: #d14 } /* Literal.String.Doc */
|
||||||
|
.highlight .s2 { color: #d14 } /* Literal.String.Double */
|
||||||
|
.highlight .se { color: #d14 } /* Literal.String.Escape */
|
||||||
|
.highlight .sh { color: #d14 } /* Literal.String.Heredoc */
|
||||||
|
.highlight .si { color: #d14 } /* Literal.String.Interpol */
|
||||||
|
.highlight .sx { color: #d14 } /* Literal.String.Other */
|
||||||
|
.highlight .sr { color: #009926 } /* Literal.String.Regex */
|
||||||
|
.highlight .s1 { color: #d14 } /* Literal.String.Single */
|
||||||
|
.highlight .ss { color: #990073 } /* Literal.String.Symbol */
|
||||||
|
.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
|
||||||
|
.highlight .vc { color: #008080 } /* Name.Variable.Class */
|
||||||
|
.highlight .vg { color: #008080 } /* Name.Variable.Global */
|
||||||
|
.highlight .vi { color: #008080 } /* Name.Variable.Instance */
|
||||||
|
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
|
||||||
|
|
||||||
|
.type-csharp .highlight .k { color: #0000FF }
|
||||||
|
.type-csharp .highlight .kt { color: #0000FF }
|
||||||
|
.type-csharp .highlight .nf { color: #000000; font-weight: normal }
|
||||||
|
.type-csharp .highlight .nc { color: #2B91AF }
|
||||||
|
.type-csharp .highlight .nn { color: #000000 }
|
||||||
|
.type-csharp .highlight .s { color: #A31515 }
|
||||||
|
.type-csharp .highlight .sc { color: #A31515 }
|
||||||
@@ -0,0 +1,255 @@
|
|||||||
|
@import url(https://fonts.googleapis.com/css?family=Lato:300italic,700italic,300,700);
|
||||||
|
|
||||||
|
body {
|
||||||
|
padding:50px;
|
||||||
|
font:14px/1.5 Lato, "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
|
color:#777;
|
||||||
|
font-weight:300;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6 {
|
||||||
|
color:#222;
|
||||||
|
margin:0 0 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
p, ul, ol, table, pre, dl {
|
||||||
|
margin:0 0 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3 {
|
||||||
|
line-height:1.1;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size:28px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
color:#393939;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3, h4, h5, h6 {
|
||||||
|
color:#494949;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color:#39c;
|
||||||
|
font-weight:400;
|
||||||
|
text-decoration:none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a small {
|
||||||
|
font-size:11px;
|
||||||
|
color:#777;
|
||||||
|
margin-top:-0.6em;
|
||||||
|
display:block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrapper {
|
||||||
|
width:860px;
|
||||||
|
margin:0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
border-left:1px solid #e5e5e5;
|
||||||
|
margin:0;
|
||||||
|
padding:0 0 0 20px;
|
||||||
|
font-style:italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
code, pre {
|
||||||
|
font-family:Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal;
|
||||||
|
color:#333;
|
||||||
|
font-size:12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
padding:8px 15px;
|
||||||
|
background: #f8f8f8;
|
||||||
|
border-radius:5px;
|
||||||
|
border:1px solid #e5e5e5;
|
||||||
|
overflow-x: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
width:100%;
|
||||||
|
border-collapse:collapse;
|
||||||
|
}
|
||||||
|
|
||||||
|
th, td {
|
||||||
|
text-align:left;
|
||||||
|
padding:5px 10px;
|
||||||
|
border-bottom:1px solid #e5e5e5;
|
||||||
|
}
|
||||||
|
|
||||||
|
dt {
|
||||||
|
color:#444;
|
||||||
|
font-weight:700;
|
||||||
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
color:#444;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
max-width:100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
width:270px;
|
||||||
|
float:left;
|
||||||
|
position:fixed;
|
||||||
|
}
|
||||||
|
|
||||||
|
header ul {
|
||||||
|
list-style:none;
|
||||||
|
height:40px;
|
||||||
|
|
||||||
|
padding:0;
|
||||||
|
|
||||||
|
background: #eee;
|
||||||
|
background: -moz-linear-gradient(top, #f8f8f8 0%, #dddddd 100%);
|
||||||
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8f8f8), color-stop(100%,#dddddd));
|
||||||
|
background: -webkit-linear-gradient(top, #f8f8f8 0%,#dddddd 100%);
|
||||||
|
background: -o-linear-gradient(top, #f8f8f8 0%,#dddddd 100%);
|
||||||
|
background: -ms-linear-gradient(top, #f8f8f8 0%,#dddddd 100%);
|
||||||
|
background: linear-gradient(top, #f8f8f8 0%,#dddddd 100%);
|
||||||
|
|
||||||
|
border-radius:5px;
|
||||||
|
border:1px solid #d2d2d2;
|
||||||
|
box-shadow:inset #fff 0 1px 0, inset rgba(0,0,0,0.03) 0 -1px 0;
|
||||||
|
width:270px;
|
||||||
|
}
|
||||||
|
|
||||||
|
header li {
|
||||||
|
width:89px;
|
||||||
|
float:left;
|
||||||
|
border-right:1px solid #d2d2d2;
|
||||||
|
height:40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
header ul a {
|
||||||
|
line-height:1;
|
||||||
|
font-size:11px;
|
||||||
|
color:#999;
|
||||||
|
display:block;
|
||||||
|
text-align:center;
|
||||||
|
padding-top:6px;
|
||||||
|
height:40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
strong {
|
||||||
|
color:#222;
|
||||||
|
font-weight:700;
|
||||||
|
}
|
||||||
|
|
||||||
|
header ul li + li {
|
||||||
|
width:88px;
|
||||||
|
border-left:1px solid #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
header ul li + li + li {
|
||||||
|
border-right:none;
|
||||||
|
width:89px;
|
||||||
|
}
|
||||||
|
|
||||||
|
header ul a strong {
|
||||||
|
font-size:14px;
|
||||||
|
display:block;
|
||||||
|
color:#222;
|
||||||
|
}
|
||||||
|
|
||||||
|
section {
|
||||||
|
width:500px;
|
||||||
|
float:right;
|
||||||
|
padding-bottom:50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
small {
|
||||||
|
font-size:11px;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
border:0;
|
||||||
|
background:#e5e5e5;
|
||||||
|
height:1px;
|
||||||
|
margin:0 0 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
width:270px;
|
||||||
|
float:left;
|
||||||
|
position:fixed;
|
||||||
|
bottom:50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media print, screen and (max-width: 960px) {
|
||||||
|
|
||||||
|
div.wrapper {
|
||||||
|
width:auto;
|
||||||
|
margin:0;
|
||||||
|
}
|
||||||
|
|
||||||
|
header, section, footer {
|
||||||
|
float:none;
|
||||||
|
position:static;
|
||||||
|
width:auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
padding-right:320px;
|
||||||
|
}
|
||||||
|
|
||||||
|
section {
|
||||||
|
border:1px solid #e5e5e5;
|
||||||
|
border-width:1px 0;
|
||||||
|
padding:20px 0;
|
||||||
|
margin:0 0 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
header a small {
|
||||||
|
display:inline;
|
||||||
|
}
|
||||||
|
|
||||||
|
header ul {
|
||||||
|
position:absolute;
|
||||||
|
right:50px;
|
||||||
|
top:52px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media print, screen and (max-width: 720px) {
|
||||||
|
body {
|
||||||
|
word-wrap:break-word;
|
||||||
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
padding:0;
|
||||||
|
}
|
||||||
|
|
||||||
|
header ul, header p.view {
|
||||||
|
position:static;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre, code {
|
||||||
|
word-wrap:normal;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media print, screen and (max-width: 480px) {
|
||||||
|
body {
|
||||||
|
padding:15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
header ul {
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media print {
|
||||||
|
body {
|
||||||
|
padding:0.4in;
|
||||||
|
font-size:12pt;
|
||||||
|
color:#444;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user