Skip to content
Snippets Groups Projects
  1. Apr 30, 2019
  2. Apr 02, 2019
  3. Jan 08, 2019
  4. Dec 19, 2018
  5. Dec 12, 2018
  6. Nov 04, 2018
  7. Nov 03, 2018
    • Julien Finet's avatar
      Fix viewport.image.push endpoint · c353ed5c
      Julien Finet authored
      Traceback (most recent call last):
        File "...\wslink\websocket.py", line 275, in onMessage
          results = func(obj, *args, **kwargs)
        File "...\vtk\web\protocols.py", line 379, in addRenderObserver
          self.publish('viewport.image.push.subscription', pushRender())
        File "...\vtk\web\protocols.py", line 337, in pushRender
          reply = self.stillRender({ "view": realViewId, "mtime": self.trackingViews[vId]["mtime"] })
        File "...\vtk\web\protocols.py", line 309, in stillRender
          reply["memsize"] = reply_image.GetDataSize() if reply_image else 0
      AttributeError: 'str' object has no attribute 'GetDataSize'
      c353ed5c
  8. Aug 03, 2018
  9. Jun 17, 2018
  10. May 18, 2018
    • Kitware Robot's avatar
      ExternalData: Convert content links from MD5 to SHA512 · d6d05b2a
      Kitware Robot authored and Brad King's avatar Brad King committed
      Populate a script with `map_<md5>=<sha512>` variable settings and
      then run the following to convert the content link files:
      
          git ls-files -- '*.md5' | while read f; do
            md5="$(cat "$f")"
            sha512="$(eval echo \${map_$md5})"
            rm "$f"
            echo $sha512 > ${f%.md5}.sha512
          done
      d6d05b2a
  11. Apr 24, 2018
  12. Apr 11, 2018
  13. Mar 20, 2018
  14. Mar 13, 2018
  15. Mar 08, 2018
  16. Mar 05, 2018
  17. Feb 22, 2018
  18. Feb 21, 2018
  19. Feb 14, 2018
  20. Feb 05, 2018
  21. Jan 11, 2018
  22. Jan 03, 2018
  23. Dec 15, 2017
    • Utkarsh Ayachit's avatar
      Add new `vtkmodules` package. · 741fffbf
      Utkarsh Ayachit authored
      Split `vtk` package into `vtkmodules` and `vtk`. `vtkmodules` doesn't
      import any of the modules included in its `__init__.py`, instead
      provides a `all.py` module that imports all modules in the old `vtk`
      package. `vtk` is now a module that imports `vtkmodules/all.py` thus
      behaving like the old `vtk` package.
      741fffbf
  24. Dec 11, 2017
  25. Nov 22, 2017
  26. Nov 14, 2017
  27. Oct 12, 2017
    • David Gobbi's avatar
      Fix tabs and utf-8 quotes in source code · d636213c
      David Gobbi authored
      Some VTK source code still had tabs (even some of the .py files!).
      Also, several comments used utf-8 quotes, which are hard to tell
      from regular quotes by eye and can lead to confusing mistakes.
      d636213c
  28. Oct 04, 2017
    • Ken Martin's avatar
      manually convert more NULL to nullptr · de3c93a3
      Ken Martin authored
      This topic catches another batch of NULL conversions that
      clang did not handle for various reasons. It also includes
      a number of changes to comments and strings where NULL was
      used. It also catches some recent code changes where NULL
      was used instead of nullptr.
      de3c93a3
    • Kitware Robot's avatar
      Replace VTK_DELETE_FUNCTION with =delete. · 1ac2c008
      Kitware Robot authored
      Now that VTK requires a C++11 compiler we can ditch using custom typedefs to
      wrap =delete;
      1ac2c008
Loading