From 8ebd3d1a82acd47da390f646eea3607c123ad28d Mon Sep 17 00:00:00 2001 From: Martin Mahner Date: Sat, 12 Apr 2014 11:17:36 -0400 Subject: [PATCH] Fixed indentation in about example. --- dpaste/templates/dpaste/about.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dpaste/templates/dpaste/about.html b/dpaste/templates/dpaste/about.html index b8fd609..ad6c8d6 100644 --- a/dpaste/templates/dpaste/about.html +++ b/dpaste/templates/dpaste/about.html @@ -19,9 +19,9 @@

API

{# Just put the script in dpaste and copy the source node #} -
  1. #!/usr/bin/env python
  2.  
  3. import urllib
  4. import urllib2
  5. import sys
  6.  
  7. def paste_code():
  8.    request = urllib2.Request(
  9.        'https://dpaste.de/api/',
  10.        urllib.urlencode([('content', sys.stdin.read())]),
  11.    )
  12.    response = urllib2.urlopen(request)
  13.    # Strip surrounding quotes (NB: response has no trailing newline)
  14.    print response.read()[1:-1]
  15.  
  16. if __name__ == '__main__':
  17.    paste_code()
- +
  1. #!/usr/bin/env python
  2.  
  3. import urllib
  4. import urllib2
  5. import sys
  6.  
  7. def paste_code():
  8.     request = urllib2.Request(
  9.          'https://dpaste.de/api/',
  10.          urllib.urlencode([('content', sys.stdin.read())]),
  11.     )
  12.     response = urllib2.urlopen(request)
  13.     # Strip surrounding quotes (NB: response has no trailing newline)
  14.     print response.read()[1:-1]
  15.  
  16. if __name__ == '__main__':
  17.     paste_code()

+

Save this script in /usr/local/bin/dpaste and chmod +x ..filepath.

Usage: cat foo.txt | dpaste