home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Narzedzia / Inkscape / Inkscape-0.48.2-1-win32.exe / share / extensions / text_lowercase.py < prev    next >
Text File  |  2011-07-08  |  180b  |  9 lines

  1. import chardataeffect, inkex, string
  2.  
  3. class C(chardataeffect.CharDataEffect):
  4.   def process_chardata(self,text, line=False, par=False):
  5.     return text.lower()
  6.  
  7. c = C()
  8. c.affect()
  9.