code
stringlengths
1
1.72M
language
stringclasses
1 value
##################################################################### # -*- coding: iso-8859-1 -*- # # # # FoFiX # # Copyright (C) 2009 Pascal Giard <evily...
Python
##################################################################### # -*- coding: iso-8859-1 -*- # # # # Frets on Fire X (FoFiX) # # Copyright (C) 2009 John Stumpo ...
Python
# pitchbend - pitch-bend the output of the SDL mixer # Copyright (C) 2008-2009 John Stumpo # # 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 2 of the License, or # (at your ...
Python
##################################################################### # -*- coding: iso-8859-1 -*- # # # # Frets on Fire X (FoFiX) # # Copyright (C) 2009 Team FoFiX ...
Python
# Copyright (c) 2004 Python Software Foundation. # All rights reserved. # Written by Eric Price <eprice at tjhsst.edu> # and Facundo Batista <facundo at taniquetil.com.ar> # and Raymond Hettinger <python at rcn.com> # and Aahz <aahz at pobox.com> # and Tim Peters # This module is currently Py2.3 ...
Python
# Cerealizer # Copyright (C) 2005-2006 Jean-Baptiste LAMY # # This program is free software. # It is available under the Python licence. try: set except: import sets set = sets.Set class frozenset(set): pass """Cerealizer -- A secure Pickle-like module The interface of the Cerealizer module is similar to Pic...
Python
#!/usr/bin/python import os, fnmatch for root, dirs, files in os.walk("."): for svg in fnmatch.filter(files, "*.svg"): svg = os.path.join(root, svg) print svg, os.system("inkscape -e '%s' -D '%s' -b black -y 0.0" % (svg.replace(".svg", ".png"), svg))
Python
# -*- coding: ISO-8859-1 -*- # std library from struct import unpack # custom from DataTypeConverters import readBew, readVar, varLen, toBytes # uhh I don't really like this, but there are so many constants to # import otherwise from constants import * class EventDispatcher: def __init__(sel...
Python
# -*- coding: ISO-8859-1 -*- from MidiOutStream import MidiOutStream class MidiToText(MidiOutStream): """ This class renders a midi file as text. It is mostly used for debugging """ ############################# # channel events def channel_message(self, message_type,...
Python
# -*- coding: ISO-8859-1 -*- # standard library imports from types import StringType from struct import unpack # custom import from DataTypeConverters import readBew, readVar, varLen class RawInstreamFile: """ It parses and reads data from an input file. It takes care of big en...
Python
# -*- coding: ISO-8859-1 -*- # std library from struct import unpack # uhh I don't really like this, but there are so many constants to # import otherwise from constants import * from EventDispatcher import EventDispatcher class MidiFileParser: """ The MidiFileParser is the lowest leve...
Python
# -*- coding: ISO-8859-1 -*- from RawInstreamFile import RawInstreamFile from MidiFileParser import MidiFileParser class MidiInFile: """ Parses a midi file, and triggers the midi events on the outStream object. Get example data from a minimal midi file, generated with cubase....
Python
# -*- coding: ISO-8859-1 -*- class MidiOutStream: """ MidiOutstream is Basically an eventhandler. It is the most central class in the Midi library. You use it both for writing events to an output stream, and as an event handler for an input stream. This makes it extremely easy to tak...
Python
# -*- coding: ISO-8859-1 -*- # standard library imports import sys from types import StringType from struct import unpack from cStringIO import StringIO # custom import from DataTypeConverters import writeBew, writeVar, fromBytes class RawOutstreamFile: """ Writes a midi file to disk...
Python
# -*- coding: ISO-8859-1 -*- from MidiOutStream import MidiOutStream class MidiInStream: """ Takes midi events from the midi input and calls the apropriate method in the eventhandler object """ def __init__(self, midiOutStream, device): """ Sets a default output ...
Python
# -*- coding: ISO-8859-1 -*- ################################################### ## Definitions of the different midi events ################################################### ## Midi channel events (The most usual events) ## also called "Channel Voice Messages" NOTE_OFF = 0x80 # 1000cccc 0nnnnnnn 0vv...
Python
# -*- coding: ISO-8859-1 -*- from MidiOutStream import MidiOutStream from MidiOutFile import MidiOutFile from MidiInStream import MidiInStream from MidiInFile import MidiInFile from MidiToText import MidiToText
Python
# -*- coding: ISO-8859-1 -*- from MidiOutStream import MidiOutStream from RawOutstreamFile import RawOutstreamFile from constants import * from DataTypeConverters import fromBytes, writeVar class MidiOutFile(MidiOutStream): """ MidiOutFile is an eventhandler that subclasses MidiOutStream. ...
Python
##################################################################### # -*- coding: iso-8859-1 -*- # # # # Frets on Fire X (FoFiX) # # Copyright (C) 2009 myfingershurt ...
Python
import re f = open("/etc/X11/rgb.txt") print "colors = {" for l in f.readlines(): if l.startswith("!"): continue c = re.split("[ \t]+", l.strip()) rgb, names = map(int, c[:3]), c[3:] rgb = [float(c) / 255.0 for c in rgb] for n in names: print ' %-24s: (%.2f, %.2f, %.2f),' % ('"%s"' % n.lower(), rgb[0],...
Python
##################################################################### # -*- coding: iso-8859-1 -*- # # # # Frets on Fire # # Copyright (C) 2006 Sami Kyostila ...
Python
# ------------------------------------------------------------------------- # Illusoft Collada 1.4 plugin for Blender version 0.3.89 # -------------------------------------------------------------------------- # ***** BEGIN GPL LICENSE BLOCK ***** # # Copyright (C) 2006: Illusoft - colladablender@illusoft.com # ...
Python
##################################################################### # -*- coding: iso-8859-1 -*- # # # # Frets on Fire X (FoFiX) # # Copyright (C) 2009 myfingershurt ...
Python
##################################################################### # -*- coding: iso-8859-1 -*- # # # # Frets on Fire X (FoFiX) # # Copyright (C) 2009 myfingershurt ...
Python
##################################################################### # -*- coding: iso-8859-1 -*- # # # # Frets on Fire X (FoFiX) # # Copyright (C) 2009 myfingershurt ...
Python
# -*- coding: UTF-8 -*- #分开经文章节 #==================================== za =============================== def convert_za(): f=file('za.txt') buf=f.read() f.close() arr=buf.split('!@#$') for i in range(1362): f=open('za/'+arr[i*2]+'.txt','w') f.write(arr[i*2+1]) f.close...
Python
# -*- coding: UTF-8 -*- #分开经文章节 # #==================================== za =============================== def convert_za(): f=file('za.txt') buf=f.read() f.close() arr=buf.split('!@#$') for i in range(1362): f=open('za/'+arr[i*2]+'.txt','w') f.write(arr[i*2+1]) f.cl...
Python
from vtk import vtkRenderer, vtkActor, vtkPolyDataMapper, vtkSphereSource, vtkPolyDataReader from time import sleep, clock from Sensor import Sensor from numpy import matrix from Recording import Recording ## RecordingState contains the functionality behind the RecordingPanel. class RecordingState: ## ...
Python
from time import strftime ## Represents a recording. To allow serialization, the main parameter is not stored. class Recording: ## The constructor of Recording. # @param[in] main Main wx.App derived instance. def __init__(self,main): ## The positions of the sensors. self....
Python
from numpy import matrix ## Represents a sensor. Contains data such as ID, name, calibrated and non-calibrated position and rotation matrices. class Sensor: ## The constructor of Sensor. def __init__(self, ID, name="undefined", position=[], rotation=[]): ## The ID of the sensor. sel...
Python
# ***** BEGIN LICENSE BLOCK ***** # Version: MPL 1.1/GPL 2.0/LGPL 2.1 # # The contents of this file are subject to the Mozilla Public License Version # 1.1 (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.mozilla.org/MPL/ # ...
Python
import wx from ConfigfileReader import ConfigfileReader import time import fob ## ComportCheck helps determining the correct COM port for each connected sensor. class ComportCheck(wx.Frame): ## The constructor of the COM port check menu. # @param[in] parent The parent needed to create the Fra...
Python
import wx import sys from vtk.wx.wxVTKRenderWindowInteractor import wxVTKRenderWindowInteractor from vtk import vtkInteractorStyleTrackballCamera import wx.lib.mixins.listctrl as listmix ## Subpanel of VisualizationPanel in which the playback of previously recorded movements can be played. # Functions such...
Python
import wx ## The GH-Joints are estimated in this panel. There are two methods available to calculate the GH-Joints, regression or movement. class GHJPanel(wx.Panel): ## The contructor of GHJPanel. GUI elements of the panel are setup here. # @param[in] parent The wx window parent (notebook) of this ...
Python
from numpy import mean, std, hstack, size, matrix, transpose from Sensor import Sensor import wx import os, sys ## BLState contains the functionality behind the BLPanel. class BLState: ## The constructor of BLState. # @param[in] main Main wx.App derived instance. def __init__(self, main)...
Python
import wx from AddBLFrame import AddBLFrame from vtk.wx.wxVTKRenderWindowInteractor import wxVTKRenderWindowInteractor from vtk import vtkInteractorStyleTrackballCamera, vtkRenderer, vtkCellPicker ## AddBonyLandmark contains the functionality behind the AddBLFrame. class AddBonyLandmark: ## The construc...
Python
## Used to check the truth of the rules from the rulebase. # These rules are used to check coordinates of the bony landmarks and sensors relative to eachother. class Rule: ## The constructor of Rule. def __init__(self, axis, ID1, ID2, ruleType): ## The x, y or z axis. self.axis = ax...
Python
from DriverInterface import DriverInterface from math import * from numpy import * from numpy.linalg import * from BonyLandmark import BonyLandmark from Sensor import Sensor import time import fob import time import wx import threading ## Handles communication with the Flock of Birds system through the ...
Python
from numpy import matrix ## Represents the bony landmark with its ID, name, relative position and relative sensor ID. class BonyLandmark: ## The constructor of BonyLandmark. def __init__(self, ID=-1, name="undefined", relativePosition=None, sensorID=-1): ## The number ID belonging to this bo...
Python
from ConfigParser import ConfigParser from numpy import matrix import wx import os ## Reads the prefences from the preference file in which the location of the stylus, calibration and bony landmark position files are stored. class PreferencesFileReader: ## The constructor of PreferencesFileReader. ...
Python
import wx from RecordingPanel import RecordingPanel from PlaybackPanel import PlaybackPanel VISNOTEBOOK = 8938 ## Notebook tab containing the visualization for the recording and playing of measurements of movements. class VisualizationPanel(wx.Panel): ## The contructor of VisualizationPanel. GUI eleme...
Python
import wx import wx.lib.mixins.listctrl from vtk.wx.wxVTKRenderWindowInteractor import wxVTKRenderWindowInteractor ## New bony landmark 3D coordinates can be chosen using this menu. class AddBLFrame(wx.Frame): ## The constructor of AddBLFrame. GUI elements of the panel are setup here. # @param[in] gui ...
Python
import vtk import math import time def create(parent): return ColorScales(parent) class ColorScales(): def __init__(self, parent): self.parent = parent self.differencetable = vtk.vtkLookupTable() self.dynamic_blue = vtk.vtkLookupTable() self.dynamic_yello...
Python
import time import wx import vtk import math import numpy import vtktudoss try: import extended.BaseCalc as BaseCalc except ImportError: import BaseCalc def create(parent, renderwindow, primaryrenderer): return PlotOverlay(parent, renderwindow, primaryrenderer) class PlotOverlay: ...
Python
#!/usr/bin/env python # This example demonstrates the use of vtkCardinalSpline. # It creates random points and connects them with a spline import os, sys import vtk import vtktudoss import cPickle from wx import * import wx.aui from vtk.wx.wxVTKRenderWindow import * from vtk.wx.wxVTKRenderWindowInteractor import * fro...
Python
#Boa:FramePanel:WXVISPANEL import wx import os, sys import shutil import time import math import vtk import vtktudoss import superthread try: import extended.BaseCalc as BaseCalc except ImportError: import BaseCalc import pdb def create(parent, root, renderwindow, primaryrenderer): return...
Python
import time import wx import vtk import math import numpy try: import extended.BaseCalc as BaseCalc except ImportError: import BaseCalc def create(parent): return CoordinateSystems(parent) class CoordinateSystems: def __init__(self, parent): print "Coordina...
Python
import time import wx import vtk import math import numpy import vtktudoss try: import extended.BaseCalc as BaseCalc except ImportError: import BaseCalc def create(parent): return Filters(parent) class Filters: def __init__(self, parent): print "Filters mo...
Python
import time import wx import vtk import math import numpy try: import extended.BaseCalc as BaseCalc except ImportError: import BaseCalc def create(parent): return CoordinateSystems(parent) class CoordinateSystems: def __init__(self, parent): print "Coordina...
Python
import time import os, sys import wx import vtk import math import numpy import vtktudoss try: import extended.BaseCalc as BaseCalc except ImportError: import BaseCalc def create(parent): return WidgetCollection(parent) class WidgetCollection: def __init__(self, parent): p...
Python
import threading import ctypes def _async_raise(tid, excobj): res = ctypes.pythonapi.PyThreadState_SetAsyncExc(tid, ctypes.py_object(excobj)) if res == 0: raise ValueError("nonexistent thread id") elif res > 1: # """if it returns a number greater than one, you're in trouble, ...
Python
import os, sys appdir = 'C:\Documents and Settings\Administrator\Mijn documenten\FobData\Frans2' fname = os.path.join(appdir, 'test_ab.txt') importfile = open(fname, 'r', 1) lines = importfile.readlines() for i in range (0, 1):#len (lines)): stance = (lines[i]).split() stanceflt = [0.0, 0.0, 0.0] ...
Python
#Boa:FramePanel:WXVISPANEL import wx import os, sys import shutil import time import math import vtk import vtktudoss import superthread try: import extended.BaseCalc as BaseCalc except ImportError: import BaseCalc import pdb def create(parent, renderwindow, primaryrenderer): return TimeW...
Python
#Boa:FramePanel:WXVISPANEL import wx import os, sys import shutil import time import math #from pysqlite2 import dbapi2 as sqlite import vtk import vtktudoss import superthread def create(parent, bla): return wxVisPanel(parent, bla) [wxID_WXVISPANEL, wxID_FRAME1SLICER, wxID_FRAME1VISUALISE, wx...
Python
import time import wx import vtk import math import numpy import sys, os import BaseCalc import superthread try: import extended.PatternViewer as PatternViewer except ImportError: import PatternViewer def create(parent, root): return AngleCalculations(parent, root) class AngleC...
Python
#!/usr/bin/env python # This example demonstrates the use of vtkCardinalSpline. # It creates random points and connects them with a spline import os, sys import vtk import vtktudoss from wx import * import wx.lib.stattext import wx.aui from vtk.wx.wxVTKRenderWindow import * from vtk.wx.wxVTKRenderWindowInteractor impo...
Python
import time import wx import vtk import math import numpy import vtktudoss try: import extended.BaseCalc as BaseCalc except ImportError: import BaseCalc def create(parent): return InverseKinematics(parent) class InverseKinematics: constantangle = 0.5 def __init__(...
Python
import time import wx import vtk import math import numpy import vtktudoss import os, sys try: import extended.BaseCalc as BaseCalc except ImportError: import BaseCalc #~ [wxID1] = [wx.NewId() for __init__ in range(1)] def create(parent, renderwindow, primaryrenderer): return WidgetOv...
Python
import matplotlib matplotlib.use('Agg') from matplotlib.figure import Figure from matplotlib.backends.backend_agg import FigureCanvasAgg import pylab as p import time import vtk import wx from vtk.wx.wxVTKRenderWindowInteractor import * def create(parent, root): return Plotter(parent, root) ...
Python
import math import numpy def create(parent, root): return BaseCalc(parent) class BaseCalc: def __init__(self, parent): self.parent = parent def SubtractPoints(self, a, b): slotlijst = [] try: for i in range(0, len(a)): slotlijs...
Python
#!/usr/bin/python """Basic statistics utility functions. The implementation of Student's t distribution inverse CDF was ported to Python from JSci. The parameters are set to only be accurate to approximately 5 decimal places. The JSci port comes frist. "New" code is near the bottom. JSci information: http://jsci.so...
Python
import matplotlib #~ matplotlib.use('Agg') from matplotlib.figure import Figure from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigCanvas import pylab as p import time import vtk import wx from vtk.wx.wxVTKRenderWindowInteractor import * class Scatter(wx.Frame): def __init__(self,...
Python
import wx from SensorPanel import SensorPanel from BLPanel import BLPanel from GHJPanel import GHJPanel from VisualizationPanel import VisualizationPanel NEW = 101 OPEN = 102 IMPORT = 103 EXPORT = 104 QUIT = 106 SAVE = 107 ANALYSE = 108 PREFERENCES = 201 SHOW_SENSORS = 202 SHOW_BONYLANDMARKS = 203 SH...
Python
from DriverInterface import DriverInterface from math import * from numpy import * from numpy.linalg import * from BonyLandmark import BonyLandmark from Sensor import Sensor import fake_fob import time import wx ## Handles communication with the Flock of Birds system through the serial port. # This class...
Python
from vtk import vtkSTLReader, vtkTextActor, vtkPoints, vtkLandmarkTransform, vtkRenderer, vtkPolyDataMapper, vtkSphereSource, vtkConeSource, vtkPolyDataReader, vtkPolyDataReader, vtkActor, vtkTriangleFilter, vtkPolyDataNormals, vtkPolyData from RecordingState import RecordingState from PlaybackState import PlaybackSt...
Python
from vtk import vtkRenderer, vtkPolyDataMapper, vtkSphereSource, vtkPolyDataReader, vtkActor from time import sleep, clock from numpy import matrix import wx import os ## PlaybackState provides the functionality for the Recording panel. # Plays the recorded movements. class PlaybackState: ## The con...
Python
import wx from wx.lib.hyperlink import HyperLinkCtrl ## Displays information concerning the application in a dialog class AboutDialog(wx.Dialog): ## The constructor of AboutDialog. GUI elements of the dialog are setup here. # @param[in] gui GUI instance. # @param[in] **kwds Automaticall...
Python
import wx from wx.lib.filebrowsebutton import FileBrowseButton ## Contains the preferences window, in which the location of the files can be specified. class PreferencesDialog(wx.Dialog): ## The contructor of PreferencesDialog. GUI elements of the window are setup here. # @param[in] gui Gui in...
Python
from distutils.core import setup import py2exe ## setup(windows=['Main.py']) setup( windows = [ { "script": "Main.py", "icon_resources": [(1, "Images\icon.ico")] } ], )
Python
import wx import ConfigfileReader ## Contains a visual representation of the location of all sensors on the body. The location of all the sensors is validated in this panel. class SensorPanel(wx.Panel): ## The constructor of SensorPanel. GUI elements of the panel are setup here. # @param[in] paren...
Python
import math import numpy def create(parent, root): return BaseCalc(parent) class BaseCalc: def __init__(self, parent): self.parent = parent def SubtractPoints(self, a, b): slotlijst = [] try: for i in range(0, len(a)): slotlijs...
Python
import os import sys # Get application directory of Main.py, use that to find the data files. if hasattr(sys, 'frozen') and sys.frozen: appdir, exe = os.path.split(sys.executable) else: dirname = os.path.dirname(sys.argv[0]) if dirname and dirname != os.curdir: appdir = dirname else: ...
Python
from GUI import GUI import wx import os from ConfigfileReader import ConfigfileReader from PreferencesFileReader import PreferencesFileReader from SensorState import SensorState from BLState import BLState from GHJState import GHJState from VisualizationState import VisualizationState from DriverInterface impo...
Python
from Sensor import Sensor from BonyLandmark import BonyLandmark import cPickle import sys import numpy sys.modules['numpy.core.defmatrix'] = numpy.matrixlib.defmatrix ## Saves and loads recordings. class RecordingsProcessor: ## The constructor of RecordingsProcessor. # @param[in] parent The...
Python
import wx from numpy import size, matrix import wx.lib.mixins.listctrl import os, sys import winsound ## Bony landmarks are measured in this panel. # The Bony Landmark panel consists of a list with bony landmarks, the five measurements and the description of the selected bony landmark. class BLPanel(wx.Pa...
Python
from numpy import * from numpy.linalg import * from ConfigfileReader import ConfigfileReader ## GHJState contains the functionality behind the GHJPanel. # All estimation methods for calculating the GH-Joints are in this class. # All methods in this class ending with RegressionMethod are used for the calcula...
Python
## SensorState contains the functionality behind the SensorPanel. class SensorState: ## The constructor of SensorState. # @param[in] main Main wx.App derived instance. def __init__(self, main): ## Main wx.App derived instance. self.main = main ## The sensor rulebase....
Python
## Python does not offer real interfaces in its library, this implementation is a construction with behaviour similair to that of an interface. # Each method raises a NotImplementedError when the inheriting class does not implemented one of the methods listed in DriverInterface. # Methods in this class have defa...
Python
import wx from vtk.wx.wxVTKRenderWindowInteractor import wxVTKRenderWindowInteractor from vtk import vtkInteractorStyleTrackballCamera from Sensor import Sensor import os ## Subpanel of VisualizationPanel which shows the real time movement using the VTK window. New recordings can also be made in this panel. cl...
Python
from Sensor import Sensor from BonyLandmark import BonyLandmark from Rule import Rule from ConfigParser import ConfigParser import wx import sys, os ## Parses the configuration file. class ConfigfileReader: ## The constructor of ConfigfileReader. Opens the config file config.ini and reads the entire c...
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 Ignacio Andreu <plunchete 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 Free S...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- # # (C) Copyright 2008 Ignacio Andreu <plunchete 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 Free S...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- # # (C) Copyright 2008 Alberto Gimeno <gimenete 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 # t...
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> # # 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 Founda...
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> # # 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 Free So...
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 2008 Alberto Gimeno <gimenete 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 Free So...
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 Affero General...
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 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 2008 Néstor Salceda <nestor.salceda at gmail dot com> # (C) Copyright 2008 Alberto Gimeno <gimenete 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 ...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- # # (C) Copyright 2008 Alberto Gimeno <gimenete 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 Free So...
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 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