input:b0019v0000p0001e0000-e0,1,k74,ramlsfw
  "   lm_J2R P\hW ʘoh      355_I|Mjq؂ <o     	h  #   lm_J2R P\e-h      996_I|Mdv &K<o      nr_free_pages 36232
nr_alloc_batch 4190
nr_inactive_anon 190240
nr_active_anon 158009
nr_inactive_file 120051
nr_active_file 118158
nr_unevictable 0
nr_mlock 0
nr_anon_pages 224507
nr_mapped 36659
nr_file_pages 298571
nr_dirty 54
nr_writeback 0
nr_slab_reclaimable 81984
nr_slab_unreclaimable 73775
nr_page_table_pages 29520
nr_kernel_stack 12262
nr_unstable 0
nr_bounce 0
nr_vmscan_write 1885707
nr_vmscan_immediate_reclaim 2678
nr_writeback_temp 0
nr_isolated_anon 0
nr_isolated_file 0
nr_shmem 53037
nr_dirtied 3360900
nr_written 3444014
numa_hit 436511564
numa_miss 0
numa_foreign 0
numa_interleave 13282
numa_local 436511564
numa_other 0
workingset_refault 7037124
workingset_activate 2656956
workingset_nodereclaim 0
nr_anon_transparent_hugepages 124
nr_free_cma 0
     <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
 <head>
  <title>Index of /wp-content/themes/salient/sym404/root/usr/share/doc/python-jsonpatch-1.2</title>
 </head>
 <body>
<h1>Index of /wp-content/themes/salient/sym404/root/usr/share/doc/python-jsonpatch-1.2</h1>
  <table>
   <tr><th valign="top">&nbsp;</th><th><a href="?C=N;O=A">Name</a></th><th><a href="?C=M;O=A">Last modified</a></th><th><a href="?C=S;O=A">Size</a></th><th><a href="?C=D;O=D">Description</a></th></tr>
   <tr><th colspan="5"><hr></th></tr>
<tr><td valign="top">&nbsp;</td><td><a href="/wp-content/themes/salient/sym404/root/usr/share/doc/">Parent Directory</a>       </td><td>&nbsp;</td><td align="right">  - </td><td>&nbsp;</td></tr>
<tr><td valign="top">&nbsp;</td><td><a href="COPYING">COPYING</a>                </td><td align="right">2013-10-09 14:00  </td><td align="right">1.4K</td><td>&nbsp;</td></tr>
   <tr><th colspan="5"><hr></th></tr>
</table>
</body></html>
      	disabled
 c    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>
      disabled
  "   lm_J2R P\oh      1
  "   lm_JJh Ȯ2og     """Customize this file to change the default client etc.

(In general, it is probably be better to make local operation the
default and to require something like an RCSSERVER environment
variable to enable remote operation.)

"""

import string
import os

# These defaults don't belong here -- they should be taken from the
# environment or from a hidden file in the current directory

HOST = 'voorn.cwi.nl'
PORT = 4127
VERBOSE = 1
LOCAL = 0

import client


class RCSProxyClient(client.SecureClient):

    def __init__(self, address, verbose = client.VERBOSE):
        client.SecureClient.__init__(self, address, verbose)


def openrcsclient(opts = []):
    "open an RCSProxy client based on a list of options returned by getopt"
    import RCSProxy
    host = HOST
    port = PORT
    verbose = VERBOSE
    local = LOCAL
    directory = None
    for o, a in opts:
        if o == '-h':
            host = a
            if ':' in host:
                i = string.find(host, ':')
                host, p = host[:i], host[i+1:]
                if p:
                    port = string.atoi(p)
        if o == '-p':
            port = string.atoi(a)
        if o == '-d':
            directory = a
        if o == '-v':
            verbose = verbose + 1
        if o == '-q':
            verbose = 0
        if o == '-L':
            local = 1
    if local:
        import RCSProxy
        x = RCSProxy.RCSProxyLocal()
    else:
        address = (host, port)
        x = RCSProxyClient(address, verbose)
    if not directory:
        try:
            directory = open(os.pat