--- 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
</a>
</li>
- <!-- <li>
+ <li>
<a href="/{{ params.scope }}/talks-cfp/sprint/">
Sprint Plan & Schedule
</a>
- </li> -->
+ </li>
<li>
<a href="/{{ params.scope }}/talks-cfp/speakers/">
Invited Speakers
--- 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 %}
-<h1>SciPy.in 2009 Sprint Schedule</h1>
-<h2><strong>Plan for the sprint is present here: </strong><br /></h2>
-<a href="http://docs.google.com/Doc?docid=0AS2YT-YIi2aKZGM4OWt4OHNfNGQ0ZjZxc2No&hl=en">http://docs.google.com/Doc?docid=0AS2YT-YIi2aKZGM4OWt4OHNfNGQ0ZjZxc2No&hl=en</a>
-<br /><br />
-<h2>Wireless WEP hex key-phrase for access point "space": 8a61fcbcf9</h2>
-<br />
-<h2>Day 5, Wednesday, December 16th, 2009 and</h2>
-<h2>Day 6, Thursday, December 17th, 2009</h2>
-<table class="list-all-talks">
- <tr>
- <th class="speaker"><h4>Time</h4></th>
- <th class="speaker"><h4>Event</h4></th>
- <th class="speaker"><h4>Topics</h4></th>
- </tr>
- <tr style="background-color: #90c9dc;">
- <td>9:30AM onwards</td>
- <td class="speaker" width="25%"><h4>Sprint</h4></td>
- <td>Contribute to, hack on, develop, fix bugs of scipy/numpy</td>
- </tr>
-</table>
+<h1>SciPy.in 2011 Sprint Schedule</h1>
+<h2>Day 5, Thursday, December 8th, 2011 </h2>
+<h2>Topics</h3>
+<ol>
+<li>Changing Mayavi/TVTK to use VTK's "new" pipeline.</li>
+ <ul>
+ <li>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.</li>
+ <li>See <a href="http://www.vtk.org/Wiki/VTK/Tutorials/New_Pipeline">here</a></li>
+ <li>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.
+ </li>
+ <li>Documentation on Traits, Mayavi and Envisage are available from <a href="http://github.enthought.com/">here</a></li>
+ </ul>
+ <br /><br />
+<li>Improving PyQt/PySide support.</li>
+ <ul>
+ <li>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.</li>
+ </ul>
+</ol>
+
+<h2 id="sec-1"><span class="section-number-3"></span>Intended audience </h2>
+<p>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.</p>
+<p>For more information please contact Puneeth <puneeth [at] enthought.com> or Pankaj <pankaj [at] enthought.com>
{% endblock content %}
\ No newline at end of file
--- 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'),