skeinforge_tools.export_plugins.gcode_small ($Date: 2008/21/04 $)
index
/home/enrique/Desktop/backup/babbleold/script/reprap/pyRepRap/skeinforge_tools/export_plugins/gcode_small.py

Gcode_small is an export plugin to remove the comments and the redundant z and feedrate parameters from a gcode file.
 
An export plugin is a script in the export_plugins folder which has the functions getOuput, isArchivable and writeOutput.  It is
meant to be run from the export tool.  To ensure that the plugin works on platforms which do not handle file capitalization
properly, give the plugin a lower case name.
 
The getOuput function of this script takes a gcode text and returns that text without comments and redundant z and feedrate
parameters.  The writeOutput function of this script takes a gcode text and writes that text without comments and redundant z
and feedrate parameterscomments to a file.
 
Many of the functions in this script are copied from gcodec in skeinforge_utilities.  They are copied rather than imported so
developers making new plugins do not have to learn about gcodec, the code here is all they need to learn.

 
Modules
       
cStringIO
os

 
Classes
       
GcodeSmallSkein

 
class GcodeSmallSkein
    A class to remove redundant z and feedrate parameters from a skein of extrusions.
 
  Methods defined here:
__init__(self)
parseGcode(self, gcodeText)
Parse gcode text and store the gcode.
parseLine(self, line)
Parse a gcode line.

 
Functions
       
getOutput(gcodeText)
Get the exported version of a gcode file.  This function, isArchivable and writeOutput are the only necessary functions in a skeinforge export plugin.
If this plugin writes an output than should not be printed, an empty string should be returned.
getStringFromCharacterSplitLine(character, splitLine)
Get the string after the first occurence of the character in the split line.
getSummarizedFilename(fileName)
Get the fileName basename if the file is in the current working directory, otherwise return the original full name.
getTextLines(text)
Get the all the lines of text of a text.
indexOfStartingWithSecond(letter, splitLine)
Get index of the first occurence of the given letter in the split line, starting with the second word.  Return - 1 if letter is not found
isArchivable()
Return whether or not this plugin is archivable.
isReplacable()
Return whether or not the output from this plugin is replacable.  This should be true if the output is text and false if it is binary.

 
Data
        __author__ = 'Enrique Perez (perez_enrique@yahoo.com)'
__date__ = '$Date: 2008/21/04 $'
__license__ = 'GPL 3.0'
absolute_import = _Feature((2, 5, 0, 'alpha', 1), (2, 7, 0, 'alpha', 0), 16384)

 
Author
        Enrique Perez (perez_enrique@yahoo.com)