# HG changeset patch # User Parth buch # Date 1322135294 -19800 # Node ID 2d3479837338465abe3621b2932971b255f854db # Parent 62063e573649b30967a01ca2583f036a11d995e9 Added the sprint page diff -r 62063e573649 -r 2d3479837338 project/templates/_menu.html --- a/project/templates/_menu.html Thu Nov 24 16:43:31 2011 +0530 +++ b/project/templates/_menu.html Thu Nov 24 17:18:14 2011 +0530 @@ -41,11 +41,11 @@ Tutorial Schedule - +
  • Invited Speakers diff -r 62063e573649 -r 2d3479837338 project/templates/talk/sprint-schedule.html --- a/project/templates/talk/sprint-schedule.html Thu Nov 24 16:43:31 2011 +0530 +++ b/project/templates/talk/sprint-schedule.html Thu Nov 24 17:18:14 2011 +0530 @@ -1,23 +1,31 @@ {% extends "base.html" %} {% block content %} -

    SciPy.in 2009 Sprint Schedule

    -

    Plan for the sprint is present here:

    -
    http://docs.google.com/Doc?docid=0AS2YT-YIi2aKZGM4OWt4OHNfNGQ0ZjZxc2No&hl=en -

    -

    Wireless WEP hex key-phrase for access point "space": 8a61fcbcf9

    -
    -

    Day 5, Wednesday, December 16th, 2009 and

    -

    Day 6, Thursday, December 17th, 2009

    - - - - - - - - - - - -

    Time

    Event

    Topics

    9:30AM onwards

    Sprint

    Contribute to, hack on, develop, fix bugs of scipy/numpy
    +

    SciPy.in 2011 Sprint Schedule

    +

    Day 5, Thursday, December 8th, 2011

    +

    Topics

    +
      +
    1. Changing Mayavi/TVTK to use VTK's "new" pipeline.
    2. +
        +
      • Mayavi currently uses VTK's old pipeline structure and this is to be + deprecated in future VTK releases. This is important for the future + of Mayavi.
      • +
      • See here
      • +
      • This change will be invasive and will require a fair bit of work. You + will need to know VTK fairly well and also Traits and Mayavi. +
      • +
      • Documentation on Traits, Mayavi and Envisage are available from here
      • +
      +

      +
    3. Improving PyQt/PySide support.
    4. +
        +
      • Mayavi's support for PyQt/Pyside is not tested and doesn't work + properly. We will try to fix this if time permits. Requires + knowledge of TraitsUI and PyQt/PySide.
      • +
      +
    + +

    Intended audience

    +

    These sprint sessions are for those who already have a through +knowledge about the given topics and are willing to contribute to open source projects.

    +

    For more information please contact Puneeth <puneeth [at] enthought.com> or Pankaj <pankaj [at] enthought.com> {% endblock content %} \ No newline at end of file diff -r 62063e573649 -r 2d3479837338 project/urls.py --- a/project/urls.py Thu Nov 24 16:43:31 2011 +0530 +++ b/project/urls.py Thu Nov 24 17:18:14 2011 +0530 @@ -123,9 +123,9 @@ url(r'^%s/talks-cfp/tutorial/$' % (SCOPE_ARG_PATTERN), direct_to_template, {"template": "about/tutorial.html"}, name='scipycon_tutorial'), - # url(r'^%s/talks-cfp/sprint/$' % (SCOPE_ARG_PATTERN), - # direct_to_template, {"template": "talk/sprint-schedule.html"}, - # name='scipycon_sprint_schedule'), + url(r'^%s/talks-cfp/sprint/$' % (SCOPE_ARG_PATTERN), + direct_to_template, {"template": "talk/sprint-schedule.html"}, + name='scipycon_sprint_schedule'), url(r'^%s/talks-cfp/speakers/$' % (SCOPE_ARG_PATTERN), direct_to_template, {"template": "talk/speakers.html"}, name='scipycon_speakers'),