Skip to content
Snippets Groups Projects
  1. Nov 07, 2011
  2. Mar 22, 2011
  3. Oct 13, 2010
    • Andy Wilson's avatar
      Add US-ASCII-WITH-FALLBACK for files that are almost entirely ASCII · 8e0f7838
      Andy Wilson authored
      The US-ASCII reader for vtkDelimitedTextReader will die if it
      encounters even one character with its 8th bit set.  This leaves us
      with no way to read documents from non-UTF code pages that have
      internationalized characters in the text.
      
      I added a new "character set" US-ASCII-WITH-FALLBACK that lets us
      read those anyway.  The reader has a new ivar ReplacementCharacter
      that will be inserted in place of any characters beyond 0x7f (the
      same ones that cause US-ASCII to choke).
      8e0f7838
  4. Aug 06, 2010
  5. Jun 16, 2010
  6. May 20, 2010
    • Mark Olesen's avatar
      Remove vtk(Cxx|Type)RevisionMacro · ecbbf7f7
      Mark Olesen authored and Brad King's avatar Brad King committed
      The CVS $Revision$ keyword replacement will no longer maintain these
      macros automatically.  They were used only to implement CollectRevisions
      and vtkObjectBase::PrintRevisions, an API that was never used.
      
      Automated as follows:
      
        pass 0:
        catch templates
        ---------------
        $ git grep 'vtk\(Cxx\|Type\)RevisionMacro' | grep '<'
      
        pass 1:
        main changes
        ---------------
        $ git grep -l '^vtkCxxRevisionMacro' | while read file; do
          echo "$file" 1>&2
          perl -i -ne 'print unless (/^vtkCxxRevisionMacro/ and /\)/)' $file
        done
        $ git grep -l -e 'vtkTypeRevisionMacro(' | while read file; do
          echo "$file" 1>&2
          perl -i -pe 's/vtkTypeRevisionMacro/vtkTypeMacro/g' $file
        done
      
        pass 2:
        verify
        ---------------
        $ git grep 'vtk\(Cxx\|Type\)RevisionMacro'
      
      Fixed multi-line vtkCxxRevisionMacro and templates by hand.
      ecbbf7f7
  7. Apr 23, 2010
    • Mark Olesen's avatar
      Remove vtk(Cxx|Type)RevisionMacro · 19c55e0e
      Mark Olesen authored and Brad King's avatar Brad King committed
      The CVS $Revision$ keyword replacement will no longer maintain these
      macros automatically.  They were used only to implement CollectRevisions
      and vtkObjectBase::PrintRevisions, an API that was never used.
      
      Automated as follows:
      
        pass 0:
        catch templates
        ---------------
        $ git grep 'vtk\(Cxx\|Type\)RevisionMacro' | grep '<'
      
        pass 1:
        main changes
        ---------------
        $ git grep -l '^vtkCxxRevisionMacro' | while read file; do
          echo "$file" 1>&2
          perl -i -ne 'print unless (/^vtkCxxRevisionMacro/ and /\)/)' $file
        done
        $ git grep -l -e 'vtkTypeRevisionMacro(' | while read file; do
          echo "$file" 1>&2
          perl -i -pe 's/vtkTypeRevisionMacro/vtkTypeMacro/g' $file
        done
      
        pass 2:
        verify
        ---------------
        $ git grep 'vtk\(Cxx\|Type\)RevisionMacro'
      
      Fixed multi-line vtkCxxRevisionMacro and templates by hand.
      19c55e0e
  8. Mar 19, 2010
  9. Jan 05, 2010
    • Thomas Otahal's avatar
      · 1512bd98
      Thomas Otahal authored
      ENH:  Added Unicode mode to vtkDelimitedTextReader.  The reader currently supports UTF8 and UTF16 in Unicode mode.  The behavior of the reader with respect to ascii or unicode input is controlled by the SetUnicodeCharacterSet() method.  By default (without calling SetUnicodeCharacterSet()), the reader will expect to read ascii text and will output vtkStdString columns.  Use the Set and Get methods to set delimiters that do not contain UTF8 in the name when operating the reader in default ascii mode.  If the SetUnicodeCharacterSet() method is called, the reader will output vtkUnicodeString columns in the output table.  In addition, it is necessary to use the Set and Get methods that contain UTF8 in the name to specify delimiters when operating in unicode mode.
      1512bd98
  10. Apr 06, 2009
  11. Dec 22, 2008
  12. Apr 18, 2008
  13. Jul 11, 2007
  14. Jun 15, 2007
  15. Dec 04, 2006
    • Andy Wilson's avatar
      BUG: Prevent duplicate edges · 6df740c7
      Andy Wilson authored
      ENH: Add an ivar to control whether or not (random) graph weights will be added
      ENH: Add an ivar to prevent/allow edges that start and end at the same vertex
      6df740c7
  16. Nov 10, 2006
  17. Nov 06, 2006
  18. Oct 24, 2006
  19. Oct 18, 2006
  20. Oct 11, 2006
  21. Oct 05, 2006
Loading