code
stringlengths
1
1.72M
language
stringclasses
1 value
""" Implementation of JSONEncoder """ # NOTE(kgibbs): This line must be added to make this file work under # Python 2.2, which is commonly used at Google. from __future__ import generators # NOTE(kgibbs): End changes. import re # this should match any kind of infinity INFCHARS = re.compile(r'[infINF]') ESCAPE = re.com...
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. Encoding b...
Python
import web.home, web.game, web.gameroom from google.appengine.ext import webapp from google.appengine.ext.webapp.util import run_wsgi_app app = webapp.WSGIApplication([ ('/', web.home.HomeAction) ,('/g', web.gameroom.GameroomAction) ,('/game', web.game.GameAction) ], debug=False) def main(): run_wsgi...
Python
import os, domain.model from google.appengine.ext import webapp from google.appengine.api import users from google.appengine.ext.webapp import template class HomeAction(webapp.RequestHandler): def get(self): user = users.get_current_user() if (user): query = domain.model.Player.all() ...
Python
import domain.model import simplejson from google.appengine.ext import webapp, db from google.appengine.api import users class GameAction(webapp.RequestHandler): def post(self): user = users.get_current_user() if (user): query = domain.model.Player.all() query.filter("user =...
Python
import os, domain.model from google.appengine.ext import webapp, db from google.appengine.api import users from google.appengine.ext.webapp import template import simplejson class GameroomAction(webapp.RequestHandler): def get(self): user = users.get_current_user() if (user): query = do...
Python
from google.appengine.ext import db from google.appengine.api import users class Player(db.Model): user = db.UserProperty() alias = db.StringProperty() class Team(db.Model): name = db.StringProperty() player1 = db.ReferenceProperty(Player, collection_name="teams1") player2 = db.ReferenceProperty(...
Python
import subprocess import sys import shlex from optparse import OptionParser import lib.common import lib.constants import lib.functions APP_TITLE = "State Report" parser = OptionParser() parser.add_option("-n","--node", dest="node",help="Specify the Node to want to report state on") parser.add_option("-g","...
Python
# -*- coding: utf-8 -*- # # jQuery File Upload Plugin GAE Python Example 2.1.0 # https://github.com/blueimp/jQuery-File-Upload # # Copyright 2011, Sebastian Tschan # https://blueimp.net # # Licensed under the MIT license: # http://www.opensource.org/licenses/MIT # from __future__ import with_statement from google.appe...
Python
#!/usr/bin/env python #******************************************************************** # Filename: FINally.py # Authors: Daniel Sisco # Date Created: 4-20-2007 # # Abstract: This is the primary file for the FINally expense analysis tool. It is responsible for # handling read/write access to the...
Python
#!/usr/bin/env python #******************************************************************** # Filename: utils.py # Authors: Daniel Sisco # Date Created: 1-22-2008 # # Abstract: A collection of utilities for the Fin-ally project. This # file should include most generic utilities. Examples include ...
Python
#!/usr/bin/env python #******************************************************************** # Filename: schema_2_0.py # Authors: Daniel Sisco # Date Created: 9/19/2010 # # Abstract: Version 1.0 of the FINally database schema # # Version History: See repository # # Copyright 2...
Python
#!/usr/bin/env python #******************************************************************** # Filename: expenseDialogue.py # Authors: Daniel Sisco # Date Created: 10/31/2010 # # Abstract: This is the primary file for the FINally expense analysis tool. It is responsible for # hand...
Python
import wx.grid as gridlib #******************************************************************** class columnInfo: """This class defines the information required to create and modify columns in a grid. This keeps all columns definition data together, but adding information here does complete t...
Python
#!/usr/bin/env python #******************************************************************** # Filename: userDialog.py # Authors: Daniel Sisco # Date Created: 11/5/2010 # # Abstract: This files contains the user add/edit/delete dialog. # # Copyright 2008-2010 Daniel Sisco # This...
Python
#!/usr/bin/env python #******************************************************************** # Filename: migrate.py # Authors: Daniel Sisco # Date Created: 9-19-010 # # Abstract: This is the Model/Controller component of the FINally SQLite finance tool. # This file provides driver...
Python
#!/usr/bin/env python #******************************************************************** # Filename: database.py # Authors: Daniel Sisco, Matt Van Kirk # Date Created: 4-20-2007 # # Abstract: This is the Model/Controller component of the FINally SQLite finance tool. # This file provides driver level f...
Python
#!/usr/bin/env python #******************************************************************** # Filename: menuBar.py # Authors: Daniel Sisco # Date Created: 10-3-2010 # # Abstract: This is the primary file for the FINally expense analysis tool. It is responsible for # handling read...
Python
#!/usr/bin/env python #******************************************************************** # Filename: cfg.py # Authors: Daniel Sisco # Date Created: 7-20-2010 # # Abstract: Global variables for the Fin-ally project, hopefully just configuration variables # # Copyright 2008 Dan...
Python
#!/usr/bin/env python #******************************************************************** # Filename: schema_2_2.py # Authors: Daniel Sisco # Date Created: 11/27/2010 # # Abstract: Version 2.2 of the FINally database schema # # Version History: See repository # # Copyright ...
Python
#!/usr/bin/env python #******************************************************************** # Filename: SQLiteCommands.py # Authors: Daniel Sisco # Date Created: 1-23-2008 # # Abstract: The actual SQLite commands in string format. These can be # quite lengthy and there are many of them, so we h...
Python
#!/usr/bin/env python #******************************************************************** # Filename: schema_2_1.py # Authors: Daniel Sisco # Date Created: 10/10/2010 # # Abstract: Version 1.0 of the FINally database schema # # Version History: See repository # # Copyright ...
Python
#!/usr/bin/env python #******************************************************************** # Filename: FINally.py # Authors: Daniel Sisco # Date Created: 4-20-2007 # # Abstract: This is the primary file for the FINally expense analysis tool. It is responsible for # handling read/writ...
Python
#!/usr/bin/env python #******************************************************************** # Filename: threads.py # Authors: Daniel Sisco # Date Created: 12-22-2010 # # Abstract: provides common 'thread' classes for various FINally objects. # # Copyright 2010 Daniel Sisco # Th...
Python
#!/usr/bin/env python #******************************************************************** # Filename: filterControl.py # Authors: Daniel Sisco # Date Created: 10-3-2010 # # Abstract: This is the primary file for the FINally expense analysis tool. It is responsible for # handlin...
Python
#!/usr/bin/env python #******************************************************************** # Filename: FINally.py # Authors: Daniel Sisco # Date Created: 4-20-2007 # # Abstract: This is the primary file for the FINally expense analysis tool. It is responsible for # handling read/writ...
Python
#!/usr/bin/env python #******************************************************************** # Filename: schema_1_0.py # Authors: Daniel Sisco # Date Created: 9/19/2010 # # Abstract: Version 1.0 of the FINally database schema # # Version History: See repository # # Copyright 2...
Python
import wx from database import Database def EditPreferences(self, event): """fires when the new user button is clicked, this method creates a new user object""" dia = PreferenceDialog(self, -1, 'Edit Preferences') dia.ShowModal() dia.Destroy() event.Skip() #**************************...
Python
#!/usr/bin/env python #******************************************************************** # Filename: expenseTypeDialog.py # Authors: Daniel Sisco # Date Created: 11/5/2010 # # Abstract: This files contains the user add/edit/delete dialog. # # Copyright 2008-2010 Daniel Sisco ...
Python
import os # This imports the global environment -- such as environment # variables. Without this, the PATH to javac (/s/std/bin) would # not be available. env = Environment(ENV = os.environ) # Abbreviate these so you can change them easier source_dir = 'src' build_dir = 'bin' env['GEN_DIR'] = 'gen' env['ANTLR_JAR']...
Python
# these are from MARS, and in fact taken almost verbitim instructions = [ ("nop", "No operation"), ("add $dest,$left,$right", "Addition with overflow : set $dest to ($left plus $right)"), ("sub $dest,$left,$right", "Subtraction with overflow : set $dest to ($left minus $right)"), ("addi $des...
Python
import logging, sys LOCALPATH = sys.path[0]+"/../" #################################### # Log configuration LOG_LEVEL = logging.INFO LOG_ID = "bloomberg-{istance}" LOG_DIR = LOCALPATH+"log" #################################### #################################### # Lock coonfiguration LOCK_FILE_NAME = LOCALPATH+"blo...
Python
from subprocess import call class Nagios: nagios_command = None nagios_host = None nagios_service = None log = None OK = 0 WARN = 1 CRITICAL = 2 def __init__(self, nagios_command, nagios_host, nagios_service, log): if nagios_command!=None and nagios_host!=None and nagios_serv...
Python
import commands import sys import codecs,os, os.path # LOCK AND UNLOCK # class Lock: log=None NAME_FILE_LOCK = None MAX_TRY = None MAX_TRY = 3 def __init__(self, argv, log, namefilelock=".lock"): if log!=None: self.log=log self.init(argv, namefilelock); def init...
Python
#!/usr/bin/python # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. # print grid of all colors and brightnesses # uses stdout.write to write chars with no newline nor spaces between them # This should run more-or-less identically on Windows and Unix. from __future__ import print_function impor...
Python
#!/usr/bin/python # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. # Simple demo of changing foreground, background and brightness. from __future__ import print_function import fixpath from colorama import init, Fore, Back, Style init() print(Fore.GREEN + 'green, ' + Fore.RED + 'red, '...
Python
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. from __future__ import print_function import fixpath import colorama from colorama import Fore, Back, Style from random import randint, choice from string import printable # Fore, Back and Style are convenience classes for the constant ...
Python
#!/usr/bin/python # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. # check that stripped ANSI in redirected stderr does not affect stdout from __future__ import print_function import sys import fixpath from colorama import init, Fore init() print(Fore.GREEN + 'GREEN set on stdout. ', end='')...
Python
#!/usr/bin/python # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. # Demonstrate the difference between colorama intialized with wrapping on and off. # The point of the demonstration is to show how the ANSI wrapping on Windows can be disabled. # The unwrapped cases will be interpreted with AN...
Python
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. # Add demo dir's parent to sys path, so that 'import colorama' always finds # the local source in preference to any installed version of colorama. import sys from os.path import normpath, dirname, join local_colorama_module = normpath(join(dirn...
Python
#!/usr/bin/python # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. # Demonstrate the different behavior when autoreset is True and False. from __future__ import print_function import fixpath from colorama import init, Fore, Back, Style init(autoreset=True) print(Fore.CYAN + Back.MAGENTA + S...
Python
#!/usr/bin/env python # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. from os.path import dirname, join from distutils.core import setup from colorama import VERSION NAME = 'colorama' def get_long_description(filename): readme = join(dirname(__file__), filename) return open(readm...
Python
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. from . import win32 # from wincon.h class WinColor(object): BLACK = 0 BLUE = 1 GREEN = 2 CYAN = 3 RED = 4 MAGENTA = 5 YELLOW = 6 GREY = 7 # from wincon.h class WinStyle(object)...
Python
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. ''' This module generates ANSI character codes to printing colors to terminals. See: http://en.wikipedia.org/wiki/ANSI_escape_code ''' CSI = '\033[' def code_to_chars(code): return CSI + str(code) + 'm' class AnsiCodes(object):...
Python
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. import atexit import sys from .ansitowin32 import AnsiToWin32 orig_stdout = sys.stdout orig_stderr = sys.stderr wrapped_stdout = sys.stdout wrapped_stderr = sys.stderr atexit_done = False def reset_all(): AnsiToWin32(...
Python
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. # from winbase.h STDOUT = -11 STDERR = -12 try: from ctypes import windll from ctypes import wintypes except ImportError: windll = None SetConsoleTextAttribute = lambda *_: None else: from ctypes import ( byref, Str...
Python
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. from mock import Mock, patch try: from unittest2 import TestCase, main except ImportError: from unittest import TestCase, main from ..winterm import WinColor, WinStyle, WinTerm class WinTermTest(TestCase): @patch('c...
Python
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. import sys try: from unittest2 import TestCase, main except ImportError: from unittest import TestCase, main from mock import patch from .utils import platform, redirected_output from ..initialise import init from ..ansito...
Python
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. from contextlib import contextmanager import sys from mock import Mock @contextmanager def platform(name): orig = sys.platform sys.platform = name yield sys.platform = orig @contextmanager def redirected_output(): orig = s...
Python
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. import sys try: from unittest2 import TestCase, main except ImportError: from unittest import TestCase, main from ..ansi import Fore, Back, Style from ..ansitowin32 import AnsiToWin32 stdout_orig = sys.stdout stderr_orig =...
Python
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. from mock import Mock, patch try: from unittest2 import TestCase, main except ImportError: from unittest import TestCase, main from .utils import platform from ..ansi import Style from ..ansitowin32 import AnsiToWin32, Stream...
Python
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.
Python
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. from .initialise import init, deinit, reinit from .ansi import Fore, Back, Style from .ansitowin32 import AnsiToWin32 VERSION = '0.2.7'
Python
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. import re import sys from .ansi import AnsiFore, AnsiBack, AnsiStyle, Style from .winterm import WinTerm, WinColor, WinStyle from .win32 import windll if windll is not None: winterm = WinTerm() def is_a_tty(stream): re...
Python
#! /usr/bin/env python3.1 #-*- coding: utf-8 -*- # Find a Bike # Copyright (C) 2013 Cédric Bonhomme - http://cedricbonhomme.org/ # # For more information : https://bitbucket.org/cedricbonhomme/find-a-bike # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero G...
Python
'''This will take in a CSV list of ticker symbols, and should create a correctly formatted table of information about each one.''' import csv import os import sys from bs4 import BeautifulSoup from selenium import webdriver from datetime import date class ImproperSymbolException(Exception): '''Exception class wh...
Python
""" Copyright (C) 2014 T.Hofkamp This file is part of FilofaxDIY. FilofaxDIY 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 ver...
Python
""" Copyright (C) 2014 T.Hofkamp This file is part of FilofaxDIY. FilofaxDIY 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 ver...
Python
""" Copyright (C) 2014 T.Hofkamp This file is part of FilofaxDIY. FilofaxDIY 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 ver...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- import sys from PyQt4 import QtGui from mainwindow import * import urllib import urllib2 import csv import datetime print "Welcome to the FINRA Regulation SHO Data Harvester" #TODO LIST #Error handling for http #Options for updated vs not class Harvester(QtGui.QWidget, Ui...
Python
# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'mainwindow.ui' # # Created: Fri May 25 17:25:34 2012 # by: PyQt4 UI code generator 4.9.1 # # WARNING! All changes made in this file will be lost! from PyQt4 import QtCore, QtGui try: _fromUtf8 = QtCore.QString.fromUtf8 except Attr...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http:...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http:...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http:...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http:...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http:...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") h...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http:...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") h...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http:...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http:...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http:...
Python
#!/usr/bin/env python """ * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or l...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http:...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http:...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http:...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") h...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") h...
Python
#!/usr/bin/env python """ * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or l...
Python
""" FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http://www.gnu.org/license...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http://www.gnu.or...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http://www.gnu.or...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http://www.gnu.or...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http://www.gnu.or...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http://www.gnu.or...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http://www.gn...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http://www.gnu.or...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http://www.gn...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http://www.gnu.or...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http://www.gnu.or...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http://www.gnu.or...
Python
#!/usr/bin/env python """ * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the ...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http://www.gnu.or...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http://www.gnu.or...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http://www.gnu.or...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http://www.gn...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http://www.gn...
Python
#!/usr/bin/env python """ * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the ...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http://www.gn...
Python
#!/usr/bin/env python """ FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben == BEGIN LICENSE == Licensed under the terms of any of the following licenses at your choice: - GNU General Public License Version 2 or later (the "GPL") http://www.gn...
Python