code
stringlengths
1
1.72M
language
stringclasses
1 value
#!/usr/bin/python # -*- coding: utf-8 -*- ## # (C) Copyright 2011 Jose Blanco <jose.blanco[a]vikuit.com> # # This file is part of "vikuit". # # "vikuit" is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ## # (C) Copyright 2011 Jose Blanco <jose.blanco[a]vikuit.com> # # This file is part of "vikuit". # # "vikuit" is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ## # (C) Copyright 2011 Jose Blanco <jose.blanco[a]vikuit.com> # # This file is part of "vikuit". # # "vikuit" is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software ...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ## # (C) Copyright 2011 Jose Blanco <jose.blanco[a]vikuit.com> # # This file is part of "vikuit". # # "vikuit" is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ## # (C) Copyright 2011 Jose Blanco <jose.blanco[a]vikuit.com> # # This file is part of "vikuit". # # "vikuit" is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ## # (C) Copyright 2011 Jose Carrasco <jose.carrasco[a]vikuit.com> # (C) Copyright 2011 Jose Blanco <jose.blanco[a]vikuit.com> # # This file is part of "vikuit". # # "vikuit" is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero Gener...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- # # (C) Copyright 2008 Alberto Gimeno <gimenete at gmail dot com> # (C) Copyright 2008 Ignacio Andreu <plunchete at gmail dot com> # (C) Copyright 2008 Néstor Salceda <nestor.salceda at gmail dot com> # # This file is part of "debug_mode_on". # # "debug_mode_on" is free soft...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- # # (C) Copyright 2008 Juan Luis Belmonte <jlbelmonte at gmail dot com> # # This file is part of "debug_mode_on". # # "debug_mode_on" is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Fr...
Python
"""Beautiful Soup Elixir and Tonic "The Screen-Scraper's Friend" http://www.crummy.com/software/BeautifulSoup/ Beautiful Soup parses a (possibly invalid) XML or HTML document into a tree representation. It provides methods and Pythonic idioms that make it easy to navigate, search, and modify the tree. A well-formed X...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ## # (C) Copyright 2011 Jose Blanco <jose.blanco[a]vikuit.com> # # This file is part of "vikuit". # # "vikuit" is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation...
Python
""" Copyright (c) 2008, appengine-utilities project All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and ...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ## # (C) Copyright 2011 John Cube <jonh.cube[a]vikuit.com> # # This file is part of "vikuit". # # "vikuit" is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foun...
Python
""" Copyright (c) 2008, appengine-utilities project All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and ...
Python
""" Copyright (c) 2008, appengine-utilities project All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and ...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ## # (C) Copyright 2011 Jose Blanco <jose.blanco[a]vikuit.com> # # This file is part of "vikuit". # # "vikuit" is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ## # (C) Copyright 2011 Jose Blanco <jose.blanco[a]vikuit.com> # # This file is part of "vikuit". # # "vikuit" is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation...
Python
""" Copyright (c) 2008, appengine-utilities project All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and ...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ## # (C) Copyright 2011 Jose Blanco <jose.blanco[a]vikuit.com> # (C) Copyright 2011 Jose Carrasco <jose.carrasco[a]vikuit.com> # # This file is part of "vikuit". # # "vikuit" is free software: you can redistribute it and/or modify # it under the terms of the GNU Aff...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ## # (C) Copyright 2011 Jose Blanco <jose.blanco[a]vikuit.com> # # This file is part of "vikuit". # # "vikuit" is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation...
Python
""" Implementation of JSONEncoder """ import re try: from simplejson import _speedups except ImportError: _speedups = None ESCAPE = re.compile(r'[\x00-\x1f\\"\b\f\n\r\t]') ESCAPE_ASCII = re.compile(r'([\\"/]|[^\ -~])') ESCAPE_DCT = { '\\': '\\\\', '"': '\\"', '\b': '\\b', '\f': '...
Python
import simplejson import cgi class JSONFilter(object): def __init__(self, app, mime_type='text/x-json'): self.app = app self.mime_type = mime_type def __call__(self, environ, start_response): # Read JSON POST input to jsonfilter.json if matching mime type response = {...
Python
""" Implementation of JSONDecoder """ import re import sys from simplejson.scanner import Scanner, pattern try: from simplejson import _speedups except: _speedups = None FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL def _floatconstants(): import struct import sys _BYTES = '7FF800...
Python
r""" A simple, fast, extensible JSON encoder and decoder JSON (JavaScript Object Notation) <http://json.org> is a subset of JavaScript syntax (ECMA-262 3rd edition) used as a lightweight data interchange format. simplejson exposes an API familiar to uses of the standard library marshal and pickle modules. ...
Python
""" Iterator based sre token scanner """ import sre_parse, sre_compile, sre_constants from sre_constants import BRANCH, SUBPATTERN from re import VERBOSE, MULTILINE, DOTALL import re __all__ = ['Scanner', 'pattern'] FLAGS = (VERBOSE | MULTILINE | DOTALL) class Scanner(object): def __init__(self, lexic...
Python
#!/usr/bin/env python import struct from StringIO import StringIO from google.appengine.api import images def resize(image, maxwidth, maxheight): imageinfo = getimageinfo(image) width = float(imageinfo[1]) height = float(imageinfo[2]) ratio = width / height dwidth = maxheight * ratio dheight = ma...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ## # (C) Copyright 2011 Jose Blanco <jose.blanco[a]vikuit.com> # # This file is part of "vikuit". # # "vikuit" is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software ...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ## # (C) Copyright 2011 Jose Carrasco <jose.carrasco[a]vikuit.com> # (C) Copyright 2011 Jose Blanco <jose.blanco[a]vikuit.com> # # This file is part of "vikuit". # # "vikuit" is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero Gener...
Python
import urllib from google.appengine.api import urlfetch """ Adapted from http://pypi.python.org/pypi/recaptcha-client to use with Google App Engine by Joscha Feth <joscha@feth.com> Version 0.1 """ API_SSL_SERVER ="https://api-secure.recaptcha.net" API_SERVER ="http://api.recaptcha.net" VERIFY_SE...
Python
#!/usr/bin/env python version = "1.7" version_info = (1,7,0,"rc-2") __revision__ = "$Rev: 72 $" """ Python-Markdown =============== Converts Markdown to HTML. Basic usage as a module: import markdown md = Markdown() html = md.convert(your_text_string) See http://www.freewisdom.org/projects/python-mark...
Python
# setup.py build bdist_wininst from distutils.core import setup, Extension # get src root info import os p = '/'.join(os.path.abspath('.').split(os.path.sep)) p = p[:p.rfind('/wrapper/python')] # extract version info from dicom.i v = [l for l in file('dicom.i').readlines() if 'DICOMSDL_VER' in l] # com...
Python
# GET DICOMSDL VERSION import re version = 'UNKNOWN' for l in file('../../CMakeLists.txt').readlines(): version = re.findall(r'\(dicomsdl_version (\S+)\)', l) if version: version = version[0].strip() break release = version print >>file('Doxyfile', 'w'), r''' DOXYFILE_ENCODING ...
Python
import re, csv # # # Annex E Command Dictionary --------------------------------------------- # # chunku = [] commands = r'''0001H C-STORE-RQ 8001H C-STORE-RSP 0010H C-GET-RQ 8010H C-GET-RSP 0020H C-FIND-RQ 8020H C-FIND-RSP 0021H C-MOVE-RQ 8021H C-MOVE-RSP 0030H C-ECHO-RQ 8030H C-ECHO-RSP 0100H...
Python
#-*- coding: MS949 -*- ''' Copyright 2010, Kim, Tae-Sung. All rights reserved. See copyright.txt for details ''' __author__ = 'Kim Tae-Sung' __id__ = '$Id$' import sys import glob import dicom def extractimage(): pass #def extractimage(filename, outputfilename): # dcmfile = dicom.file(filen...
Python
import dicom def ex_dicom_to_pil(fn): dfo = dicom.dicomfile(fn) im = dfo.to_pil_image() im.show() def ex_dicom_to_numpy(fn): dfo = dicom.dicomfile(fn) a = dfo.to_numpy_array()
Python
''' /* ----------------------------------------------------------------------- * * $Id$ * * Copyright 2010, Kim, Tae-Sung. All rights reserved. * See copyright.txt for details * * -------------------------------------------------------------------- */ ''' import sys import dicom def example_01_lo...
Python
import dicom #zipfn = r'E:\StorageA\Program.Free\zip\zip30.zip' #fnlist = dicom.zipfile_get_list(zipfn).split() #print '-'*80 #print fnlist[4] #print '-'*80 #print dicom.zipfile_extract_file(zipfn, fnlist[4]) dr = dicom.dicomdir() import os basepath = r'\lab\img\images\PET' basepath = r'\lab\sample' ba...
Python
import dicom def ex_dicom_to_pil(fn): dfo = dicom.dicomfile(fn) im = dfo.to_pil_image() im.show() def ex_dicom_to_numpy(fn): dfo = dicom.dicomfile(fn) a = dfo.to_numpy_array()
Python
#-*- coding: MS949 -*- ''' Copyright 2010, Kim, Tae-Sung. All rights reserved. See copyright.txt for details ''' __author__ = 'Kim Tae-Sung' __id__ = '$Id$' import sys import dicom if len(sys.argv) < 3: print 'python makedicomdir.py basedirpath dicomdir_name' sys.exit() try: ddobj ...
Python
#-*- coding: MS949 -*- ''' Copyright 2010, Kim, Tae-Sung. All rights reserved. See copyright.txt for details ''' __author__ = 'Kim Tae-Sung' __id__ = '$Id$' import dicom import os, sys import re, glob _NCCNMUIDROOT_ = '1.2.826.0.1.3680043.8.417' if len(sys.argv) == 1: print 'USAGE: %s /writ...
Python
#-*- coding: MS949 -*- ''' Copyright 2010, Kim, Tae-Sung. All rights reserved. See copyright.txt for details ''' __author__ = 'Kim Tae-Sung' __id__ = '$Id$' import sys import dicom if len(sys.argv) < 2: print 'python dumpdicomdir.py dicomdir_name' sys.exit() dfo = dicom.dicomfile(sys.ar...
Python
# Python script to get both the data and resource fork from a BinHex encoded # file. # Author: MURAOKA Taro <koron.kaoriya@gmail.com> # Last Change: 2012 Jun 29 # # Copyright (C) 2003,12 MURAOKA Taro <koron.kaoriya@gmail.com> # THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE. import sys import binhex input = sys.argv[...
Python
dir = "before"
Python
# empty file
Python
# empty file
Python
import before_2 dir = "after"
Python
import before_1 dir = '3'
Python
import before_1 dir = '2'
Python
dir = 'x'
Python
raise ImportError
Python
raise NotImplementedError
Python
#
Python
#
Python
#
Python
#
Python
ddir = 'xx'
Python
'''Copyright 2011 Google Inc. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in ...
Python
'''Copyright 2011 Google Inc. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in ...
Python
'''Copyright 2011 Google Inc. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in ...
Python
'''Copyright 2011 Google Inc. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in ...
Python
#!/usr/bin/env python import optparse import jwt import sys import json import time __prog__ = 'jwt' __version__ = '0.1' """ JSON Web Token implementation Minimum implementation based on this spec: http://self-issued.info/docs/draft-jones-json-web-token-01.html """ import base64 import hashlib import hmac try: ...
Python
'''Copyright 2011 Google Inc. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in ...
Python
'''Copyright 2011 Google Inc. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in ...
Python
import logging # Change default log level to debug in dev_appserver to match production logging.getLogger().setLevel(logging.DEBUG) # but leave the default for App Engine APIs logging.getLogger('google.appengine').setLevel(logging.INFO)
Python
#!/usr/bin/env python2.7 import json import logging import os import pprint as pp import sys import unittest import urllib2 try: from webtest import TestApp except: print """Please install webtest from http://webtest.pythonpaste.org/""" sys.exit(1) # Attempt to locate the App Engine SDK based on the system PAT...
Python
#!/usr/bin/env python2.7 import json import logging import os import pprint as pp import sys import unittest import urllib2 try: from webtest import TestApp except: print """Please install webtest from http://webtest.pythonpaste.org/""" sys.exit(1) # Attempt to locate the App Engine SDK based on the system PAT...
Python
#!/usr/bin/python import sys, getopt, time, os import pexpect, re import telnetlib import atexit import __main__ ## do not add code here. #BEGIN_VERSION_GENERATION RELEASE_VERSION="3.0.17" BUILD_DATE="(built Thu Oct 7 07:06:21 UTC 2010)" REDHAT_COPYRIGHT="Copyright (C) Red Hat, Inc. 2004-2010 All rights reserved." #E...
Python
#!/usr/bin/python # ############################################################################# # Copyright 2011 Matt Clark # This file is part of fence-xenserver # # fence-xenserver is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Fr...
Python
#!/usr/bin/python import sys, getopt, time, os import pexpect, re import telnetlib import atexit import __main__ ## do not add code here. #BEGIN_VERSION_GENERATION RELEASE_VERSION="3.0.17" BUILD_DATE="(built Thu Oct 7 07:06:21 UTC 2010)" REDHAT_COPYRIGHT="Copyright (C) Red Hat, Inc. 2004-2010 All rights reserved." #E...
Python
#!/usr/bin/env python # ############################################################################# # Copyright 2011 Matt Clark # This file is part of fence-xenserver # # fence-xenserver is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # th...
Python
#!/usr/bin/env python # ############################################################################# # Copyright 2011 Matt Clark # This file is part of fence-xenserver # # fence-xenserver is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # th...
Python
#============================================================================ # This library is free software; you can redistribute it and/or # modify it under the terms of version 2.1 of the GNU Lesser General Public # License as published by the Free Software Foundation. # # This library is distributed in the hope th...
Python
#!/usr/bin/python # ############################################################################# # Copyright 2011 Matt Clark # This file is part of fence-xenserver # # fence-xenserver is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Fr...
Python
#!/usr/bin/python import sys, getopt, time, os import pexpect, re import telnetlib import atexit import __main__ ## do not add code here. #BEGIN_VERSION_GENERATION RELEASE_VERSION="3.0.17" BUILD_DATE="(built Thu Oct 7 07:06:21 UTC 2010)" REDHAT_COPYRIGHT="Copyright (C) Red Hat, Inc. 2004-2010 All rights reserved." #E...
Python
#!/usr/bin/python # ############################################################################# # Copyright 2011 Matt Clark # This file is part of fence-xenserver # # fence-xenserver is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Fr...
Python
#!/usr/bin/python import sys, getopt, time, os import pexpect, re import telnetlib import atexit import __main__ ## do not add code here. #BEGIN_VERSION_GENERATION RELEASE_VERSION="3.0.17" BUILD_DATE="(built Thu Oct 7 07:06:21 UTC 2010)" REDHAT_COPYRIGHT="Copyright (C) Red Hat, Inc. 2004-2010 All rights reserved." #E...
Python
#!/usr/bin/env python # ############################################################################# # Copyright 2011 Matt Clark # This file is part of fence-xenserver # # fence-xenserver is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # th...
Python
#!/usr/bin/env python # ############################################################################# # Copyright 2011 Matt Clark # This file is part of fence-xenserver # # fence-xenserver is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # th...
Python
#============================================================================ # This library is free software; you can redistribute it and/or # modify it under the terms of version 2.1 of the GNU Lesser General Public # License as published by the Free Software Foundation. # # This library is distributed in the hope th...
Python
#!/usr/bin/python # ############################################################################# # Copyright 2011 Matt Clark # This file is part of fence-xenserver # # fence-xenserver is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Fr...
Python
#!/usr/bin/python # It's only just begun... # Current status: completely unusable, try the fence_cxs.py script for the moment. This Red # Hat compatible version is just in its' infancy. # Copyright 2011 Matt Clark # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU G...
Python
#!/usr/bin/env python # Copyright 2011 Matt Clark # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is d...
Python
#!/usr/bin/env python # Copyright 2011 Matt Clark # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is d...
Python
#!/usr/bin/python # It's only just begun... # Current status: completely unusable, try the fence_cxs.py script for the moment. This Red # Hat compatible version is just in its' infancy. # Copyright 2011 Matt Clark # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU G...
Python
#!/usr/bin/python import sys, getopt, time, os import pexpect, re import telnetlib import atexit import __main__ ## do not add code here. #BEGIN_VERSION_GENERATION RELEASE_VERSION="3.0.17" BUILD_DATE="(built Thu Oct 7 07:06:21 UTC 2010)" REDHAT_COPYRIGHT="Copyright (C) Red Hat, Inc. 2004-2010 All rights reserved." #E...
Python
#!/usr/bin/python # It's only just begun... # Current status: completely unusable, try the fence_cxs.py script for the moment. This Red # Hat compatible version is just in its' infancy. # Copyright 2011 Matt Clark # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU G...
Python
#!/usr/bin/python import sys, getopt, time, os import pexpect, re import telnetlib import atexit import __main__ ## do not add code here. #BEGIN_VERSION_GENERATION RELEASE_VERSION="3.0.17" BUILD_DATE="(built Thu Oct 7 07:06:21 UTC 2010)" REDHAT_COPYRIGHT="Copyright (C) Red Hat, Inc. 2004-2010 All rights reserved." #E...
Python
#!/usr/bin/env python # Copyright 2011 Matt Clark # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is d...
Python
#!/usr/bin/env python # Copyright 2011 Matt Clark # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is d...
Python
#!/usr/bin/python # It's only just begun... # Current status: completely unusable, try the fence_cxs.py script for the moment. This Red # Hat compatible version is just in its' infancy. # Copyright 2011 Matt Clark # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU G...
Python
#!/usr/bin/python import sys, getopt, time, os import pexpect, re import telnetlib import atexit import __main__ ## do not add code here. #BEGIN_VERSION_GENERATION RELEASE_VERSION="3.0.17" BUILD_DATE="(built Thu Oct 7 07:06:21 UTC 2010)" REDHAT_COPYRIGHT="Copyright (C) Red Hat, Inc. 2004-2010 All rights reserved." #E...
Python
#!/usr/bin/python # ############################################################################# # Copyright 2011 Matt Clark # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of ...
Python
#!/usr/bin/python import sys, getopt, time, os import pexpect, re import telnetlib import atexit import __main__ ## do not add code here. #BEGIN_VERSION_GENERATION RELEASE_VERSION="3.0.17" BUILD_DATE="(built Thu Oct 7 07:06:21 UTC 2010)" REDHAT_COPYRIGHT="Copyright (C) Red Hat, Inc. 2004-2010 All rights reserved." #E...
Python
#!/usr/bin/env python # ############################################################################# # Copyright 2011 Matt Clark # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3...
Python
#!/usr/bin/env python # ############################################################################# # Copyright 2011 Matt Clark # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3...
Python
#!/usr/bin/python # ############################################################################# # Copyright 2011 Matt Clark # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of ...
Python
#!/usr/bin/python import sys, getopt, time, os import pexpect, re import telnetlib import atexit import __main__ ## do not add code here. #BEGIN_VERSION_GENERATION RELEASE_VERSION="3.0.17" BUILD_DATE="(built Thu Oct 7 07:06:21 UTC 2010)" REDHAT_COPYRIGHT="Copyright (C) Red Hat, Inc. 2004-2010 All rights reserved." #E...
Python
#!/usr/bin/python # It's only just begun... # Current status: completely unusable, try the fence_cxs.py script for the moment. This Red # Hat compatible version is just in its' infancy. # Copyright 2011 Matt Clark # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU G...
Python
#!/usr/bin/python import sys, getopt, time, os import pexpect, re import telnetlib import atexit import __main__ ## do not add code here. #BEGIN_VERSION_GENERATION RELEASE_VERSION="3.0.17" BUILD_DATE="(built Thu Oct 7 07:06:21 UTC 2010)" REDHAT_COPYRIGHT="Copyright (C) Red Hat, Inc. 2004-2010 All rights reserved." #E...
Python
#!/usr/bin/env python # Copyright 2011 Matt Clark # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is d...
Python
#!/usr/bin/env python # Copyright 2011 Matt Clark # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is d...
Python