]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/docs/CHANGES.html
final revision
[wxWidgets.git] / wxPython / docs / CHANGES.html
index c4829af165931b03f305d71e92c1fdff4bfe391b..dc1150e3a24c94a425f0b3f9190b549d7ba18f91 100644 (file)
@@ -3,7 +3,7 @@
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
-<meta name="generator" content="Docutils 0.4: http://docutils.sourceforge.net/" />
+<meta name="generator" content="Docutils 0.4.1: http://docutils.sourceforge.net/" />
 <title>Recent Changes for wxPython</title>
 <link rel="stylesheet" href="default.css" type="text/css" />
 </head>
 <title>Recent Changes for wxPython</title>
 <link rel="stylesheet" href="default.css" type="text/css" />
 </head>
 <div class="document" id="recent-changes-for-wxpython">
 <h1 class="title">Recent Changes for wxPython</h1>
 <div class="section">
 <div class="document" id="recent-changes-for-wxpython">
 <h1 class="title">Recent Changes for wxPython</h1>
 <div class="section">
-<h1><a id="id1" name="id1">2.7.2.0</a></h1>
+<h1><a id="id1" name="id1">2.8.1.0</a></h1>
+<ul class="simple">
+<li>8-Jan-2006</li>
+</ul>
+<p>Added EVT_TASKBAR_CLICK and use it to show taskbar icon menu on right
+button release, not press, under MSW (bug 1623761)</p>
+<p>Added wxTreeCtrl::CollapseAll[Children]() and IsEmpty() methods;
+documented wxTreeItemId (patch 1622125)</p>
+<p>Fix wxMDIChidFrame::GetPosition() (patch 1626610)</p>
+<p>Fix attribute memory leak in wxGrid::ShowCellEditControl() (patch
+1629949)</p>
+<p>wxGTK: Fix for controls on a toolbar being the full height of the
+toolbar instead of their natural height.</p>
+<p>wx.lib.customtreectrl patches from Andrea Gavana.</p>
+<p>wxMac: Applied patch #1622389, fixing two memory leaks in
+GetPartialTextExtents.</p>
+<p>More fixes for the native wx.ListCtrl on Mac.</p>
+<p>Added wx.aui.AuiNotebook.GetAuiManager().</p>
+<p>Added wx.aui.AuiMDIParentFrame and wx.aui.AuiMDIChildFrame, which
+essentially implement the MDI interface using a normal wx.Frame and a
+wx.aui.AuiNotebook.</p>
+</div>
+<div class="section">
+<h1><a id="id2" name="id2">2.8.0.1</a></h1>
+<ul class="simple">
+<li>11-Dec-2006</li>
+</ul>
+<p>Lots of fixes and updates to the AUI classes.</p>
+<p>Added wx.CollapsiblePane.  On wxGTK it uses a native expander widget,
+on the other platforms a regular button is used to control the
+collapsed/expanded state.</p>
+<p>Added the wx.combo module, which contains the ComboCtrl and ComboPopup
+classes.  These classes allow you to implement a wx.ComboBox-like
+widget where the popup can be nearly any kind of widget, and where you
+have a lot of control over other aspects of the combo widget as well.
+It works very well on GTK and MSW, using native renderers for drawing
+the combo button, but is unfortunatly still a bit klunky on OSX...</p>
+<p>Use system default paper size for printing instead of A4 by default.</p>
+<p>Added wx.combo.OwnerDrawnComboBox, which is a ComboCtrl that delegates
+the drawing of the items in the popup and in the control itself to
+overridden methods of a derived class, similarly to how wx.VListBox
+works.</p>
+<p>Added wx.combo.BitmapComboBox which is a combobox that displays a
+bitmap in front of the list items.</p>
+<p>Added the wx.lib.mixins.inspect module.  It contains the InspectMixin
+class which can be mixed with a wx.App class and provides a PyCrust
+window that can be activated with a Ctrl-Alt-I keystroke (or Cmd-Alt-I
+on the Mac.)</p>
+<p>Added some modules from Riaan Booysen:</p>
+<blockquote>
+<ul class="simple">
+<li>wx.lib.flagart:  contains icons of the flags of many countries.</li>
+<li>wx.lib.art.img2pyartprov: makes images embedded in a python file
+with img2py available via the wx.ArtProvider.</li>
+<li>wx.lib.langlistctrl: A wx.ListCtrl for selecting a language,
+which uses the country flag icons.</li>
+<li>An I18N sample for the demo.</li>
+</ul>
+</blockquote>
+<p>wx.lib.masked: Patch from Will Sadkin.  Includes Unicode fixes, plus
+more helpful exceptions and ability to designate fields in mask
+without intervening fixed characters.</p>
+<p>Added wx.SearchCtrl, which is a composite of a wx.TextCtrl with optional
+bitmap buttons and a drop-down menu.  Controls like this can typically
+be found on a toolbar of applications that support some form of search
+functionality.  On the Mac this control is implemented using the
+native HISearchField control, on the other platforms a generic control
+is used, although that may change in the future as more platforms
+introduce native search widgets.</p>
+<p>Added a set of button classes to wx.lib.buttons from David Hughes that
+uses the native renderer to draw the button.</p>
+</div>
+<div class="section">
+<h1><a id="id3" name="id3">2.7.2.0</a></h1>
 <ul class="simple">
 <li>7-Nov-2006</li>
 </ul>
 <ul class="simple">
 <li>7-Nov-2006</li>
 </ul>
@@ -34,7 +107,7 @@ DockArt --&gt;            AuiDockArt
 TabArt --&gt;             AuiTabArt
 AuiMultiNotebook --&gt;   AuiNotebook
 AuiNotebookEvent --&gt;   AuiNotebookEvent</blockquote>
 TabArt --&gt;             AuiTabArt
 AuiMultiNotebook --&gt;   AuiNotebook
 AuiNotebookEvent --&gt;   AuiNotebookEvent</blockquote>
-<p>wx.lib.customtreectrl: A patch from Frame Niessink which adds an
+<p>wx.lib.customtreectrl: A patch from Frank Niessink which adds an
 additional style (TR_AUTO_CHECK_PARENT) that (un)checks a parent when
 all children are (un)checked.</p>
 <p>wx.animate.AnimationCtrl fixed to display inactive bitmap at start
 additional style (TR_AUTO_CHECK_PARENT) that (un)checks a parent when
 all children are (un)checked.</p>
 <p>wx.animate.AnimationCtrl fixed to display inactive bitmap at start
@@ -51,7 +124,7 @@ constructor to use it instead of the default ActiveMovie backend,
 (assuming the quicktime DLLs are available on the system.)</p>
 </div>
 <div class="section">
 (assuming the quicktime DLLs are available on the system.)</p>
 </div>
 <div class="section">
-<h1><a id="id2" name="id2">2.7.1.3</a></h1>
+<h1><a id="id4" name="id4">2.7.1.3</a></h1>
 <ul class="simple">
 <li>26-Oct-2006</li>
 </ul>
 <ul class="simple">
 <li>26-Oct-2006</li>
 </ul>
@@ -71,7 +144,7 @@ SystemOption to zero.  In a future release this will be the default.</p>
 the new wx.GraphicsContext and wx.GraphicsPath classes.</p>
 </div>
 <div class="section">
 the new wx.GraphicsContext and wx.GraphicsPath classes.</p>
 </div>
 <div class="section">
-<h1><a id="id3" name="id3">2.7.1.2</a></h1>
+<h1><a id="id5" name="id5">2.7.1.2</a></h1>
 <ul class="simple">
 <li>21-Oct-2006</li>
 </ul>
 <ul class="simple">
 <li>21-Oct-2006</li>
 </ul>
@@ -98,7 +171,7 @@ correctly with this.</li>
 <p>Fixed refcount leak in wx.Window.GetChildren.</p>
 </div>
 <div class="section">
 <p>Fixed refcount leak in wx.Window.GetChildren.</p>
 </div>
 <div class="section">
-<h1><a id="id4" name="id4">2.7.1.1</a></h1>
+<h1><a id="id6" name="id6">2.7.1.1</a></h1>
 <ul class="simple">
 <li>18-Oct-2006</li>
 </ul>
 <ul class="simple">
 <li>18-Oct-2006</li>
 </ul>
@@ -297,7 +370,7 @@ dropping the parentheses.</p>
 project.  This has resulted in some minor API changes, most of which
 were worked around in the wrapper code.</p>
 <p>Added wx.lib.delayedresult from Oliver Schoenborn.</p>
 project.  This has resulted in some minor API changes, most of which
 were worked around in the wrapper code.</p>
 <p>Added wx.lib.delayedresult from Oliver Schoenborn.</p>
-<p>Added wx.lib.expando, a multi-line textctrl that exands as more lines
+<p>Added wx.lib.expando, a multi-line textctrl that expands as more lines
 are needed.</p>
 <p>wx.Image.Scale and Rescale methods now take an extra parameter
 specifying type of method to use for resampling the image.  It
 are needed.</p>
 <p>wx.Image.Scale and Rescale methods now take an extra parameter
 specifying type of method to use for resampling the image.  It
@@ -323,7 +396,7 @@ been deprecated yet</p>
 provide a way to show a standard About box for the application, which
 will either be a native dialog or a generic one depending on what info
 is provided and if it can all be shown with the native dialog.</p>
 provide a way to show a standard About box for the application, which
 will either be a native dialog or a generic one depending on what info
 is provided and if it can all be shown with the native dialog.</p>
-<p>The code in the animate contrib has been moved into the code wxWidgets
+<p>The code in the animate contrib has been moved into the core wxWidgets
 library, and refactored a bit along the way.  For wxPython it still
 exists in the wx.animate module, but has basically been reduced to two
 classes, wx.animate.Animation, and wx.animate.AnimationCtrl.  You load
 library, and refactored a bit along the way.  For wxPython it still
 exists in the wx.animate module, but has basically been reduced to two
 classes, wx.animate.Animation, and wx.animate.AnimationCtrl.  You load
@@ -361,7 +434,7 @@ wx.PaintDC or wx.BufferedPaintDC.  This uses the new
 wx.Window.IsDoubleBuffered method.</p>
 </div>
 <div class="section">
 wx.Window.IsDoubleBuffered method.</p>
 </div>
 <div class="section">
-<h1><a id="id5" name="id5">2.6.3.3</a></h1>
+<h1><a id="id7" name="id7">2.6.3.3</a></h1>
 <ul class="simple">
 <li>15-July-2006</li>
 </ul>
 <ul class="simple">
 <li>15-July-2006</li>
 </ul>
@@ -398,7 +471,7 @@ machines, but at least all compile errors and warnings related to it
 have been resolved.</p>
 </div>
 <div class="section">
 have been resolved.</p>
 </div>
 <div class="section">
-<h1><a id="id6" name="id6">2.6.3.2</a></h1>
+<h1><a id="id8" name="id8">2.6.3.2</a></h1>
 <ul class="simple">
 <li>3-April-2006</li>
 </ul>
 <ul class="simple">
 <li>3-April-2006</li>
 </ul>
@@ -432,7 +505,7 @@ already shown.</p>
 is selected only with the keyboard.</p>
 </div>
 <div class="section">
 is selected only with the keyboard.</p>
 </div>
 <div class="section">
-<h1><a id="id7" name="id7">2.6.3.0</a></h1>
+<h1><a id="id9" name="id9">2.6.3.0</a></h1>
 <ul class="simple">
 <li>27-March-2006</li>
 </ul>
 <ul class="simple">
 <li>27-March-2006</li>
 </ul>
@@ -494,7 +567,7 @@ zoomed plot and move it around with a mouse drag.</p>
 <p>Added wx.StandardPaths.GetDocumentsDir() (patch 1214360)</p>
 </div>
 <div class="section">
 <p>Added wx.StandardPaths.GetDocumentsDir() (patch 1214360)</p>
 </div>
 <div class="section">
-<h1><a id="id8" name="id8">2.6.2.1</a></h1>
+<h1><a id="id10" name="id10">2.6.2.1</a></h1>
 <ul class="simple">
 <li>10-Jan-2006</li>
 </ul>
 <ul class="simple">
 <li>10-Jan-2006</li>
 </ul>
@@ -663,7 +736,7 @@ be easy to accommodate, all you need to do is add a parenthesis
 pair:  (...x, y, ...) ---&gt;  (...(x,y), ...)</blockquote>
 </div>
 <div class="section">
 pair:  (...x, y, ...) ---&gt;  (...(x,y), ...)</blockquote>
 </div>
 <div class="section">
-<h1><a id="id9" name="id9">2.6.1.0</a></h1>
+<h1><a id="id11" name="id11">2.6.1.0</a></h1>
 <ul class="simple">
 <li>4-June-2005</li>
 </ul>
 <ul class="simple">
 <li>4-June-2005</li>
 </ul>
@@ -691,7 +764,7 @@ calls.</p>
 change will get written at the next flush.</p>
 </div>
 <div class="section">
 change will get written at the next flush.</p>
 </div>
 <div class="section">
-<h1><a id="id10" name="id10">2.6.0.1</a></h1>
+<h1><a id="id12" name="id12">2.6.0.1</a></h1>
 <ul class="simple">
 <li>30-May-2005</li>
 </ul>
 <ul class="simple">
 <li>30-May-2005</li>
 </ul>
@@ -804,7 +877,7 @@ there is a range of allowed values (so a wx.SpinCtrl is used instead
 of a wx.TextCtrl.)</p>
 </div>
 <div class="section">
 of a wx.TextCtrl.)</p>
 </div>
 <div class="section">
-<h1><a id="id11" name="id11">2.6.0.0</a></h1>
+<h1><a id="id13" name="id13">2.6.0.0</a></h1>
 <ul class="simple">
 <li>26-Apr-2005</li>
 </ul>
 <ul class="simple">
 <li>26-Apr-2005</li>
 </ul>
@@ -882,7 +955,7 @@ EVT_KEY_UP and EVT_TEXT events from its embedded text control.</p>
 </dl>
 </div>
 <div class="section">
 </dl>
 </div>
 <div class="section">
-<h1><a id="id12" name="id12">2.5.5.1</a></h1>
+<h1><a id="id14" name="id14">2.5.5.1</a></h1>
 <ul class="simple">
 <li>8-Apr-2005</li>
 </ul>
 <ul class="simple">
 <li>8-Apr-2005</li>
 </ul>
@@ -951,7 +1024,7 @@ folks.</p>
 <p>Added the ActiveGrid IDE as a sample application.</p>
 </div>
 <div class="section">
 <p>Added the ActiveGrid IDE as a sample application.</p>
 </div>
 <div class="section">
-<h1><a id="id13" name="id13">2.5.4.1</a></h1>
+<h1><a id="id15" name="id15">2.5.4.1</a></h1>
 <ul class="simple">
 <li>16-Mar-2005</li>
 </ul>
 <ul class="simple">
 <li>16-Mar-2005</li>
 </ul>
@@ -1185,7 +1258,7 @@ wx.Image.</p>
 </dl>
 </div>
 <div class="section">
 </dl>
 </div>
 <div class="section">
-<h1><a id="id14" name="id14">2.5.3.1</a></h1>
+<h1><a id="id16" name="id16">2.5.3.1</a></h1>
 <ul class="simple">
 <li>9-Nov-2004</li>
 </ul>
 <ul class="simple">
 <li>9-Nov-2004</li>
 </ul>
@@ -1342,7 +1415,7 @@ it.</p>
 version installs, and comes with an uninstaller script.</p>
 </div>
 <div class="section">
 version installs, and comes with an uninstaller script.</p>
 </div>
 <div class="section">
-<h1><a id="id15" name="id15">2.5.2.8</a></h1>
+<h1><a id="id17" name="id17">2.5.2.8</a></h1>
 <ul class="simple">
 <li>27-Aug-2004</li>
 </ul>
 <ul class="simple">
 <li>27-Aug-2004</li>
 </ul>
@@ -1374,7 +1447,7 @@ wxCheckListBox.</li>
 </blockquote>
 </div>
 <div class="section">
 </blockquote>
 </div>
 <div class="section">
-<h1><a id="id16" name="id16">2.5.2.7</a></h1>
+<h1><a id="id18" name="id18">2.5.2.7</a></h1>
 <ul class="simple">
 <li>14-Aug-2004</li>
 </ul>
 <ul class="simple">
 <li>14-Aug-2004</li>
 </ul>
@@ -1558,7 +1631,7 @@ MigrationGuide for more details on using the new module.</p>
 <p>Floats are allowed again as function parameters where ints are expected.</p>
 </div>
 <div class="section">
 <p>Floats are allowed again as function parameters where ints are expected.</p>
 </div>
 <div class="section">
-<h1><a id="id18" name="id18">2.4.2.4</a></h1>
+<h1><a id="id20" name="id20">2.4.2.4</a></h1>
 <ul class="simple">
 <li>1-Oct-2003</li>
 </ul>
 <ul class="simple">
 <li>1-Oct-2003</li>
 </ul>
@@ -1571,7 +1644,7 @@ demonstrated in the Threads sample in the demo.</p>
 <p>Added Chris Barker's FloatCanvas.</p>
 </div>
 <div class="section">
 <p>Added Chris Barker's FloatCanvas.</p>
 </div>
 <div class="section">
-<h1><a id="id19" name="id19">2.4.1.2</a></h1>
+<h1><a id="id21" name="id21">2.4.1.2</a></h1>
 <ul class="simple">
 <li>19-Jun-2003</li>
 </ul>
 <ul class="simple">
 <li>19-Jun-2003</li>
 </ul>
@@ -1626,7 +1699,7 @@ and Spacers can be specified with a wxSize (or 2-tuple) parameter</p>
 <p>Added wxCursorFromBits.</p>
 </div>
 <div class="section">
 <p>Added wxCursorFromBits.</p>
 </div>
 <div class="section">
-<h1><a id="id20" name="id20">2.4.0.7</a></h1>
+<h1><a id="id22" name="id22">2.4.0.7</a></h1>
 <ul class="simple">
 <li>24-Mar-2003</li>
 </ul>
 <ul class="simple">
 <li>24-Mar-2003</li>
 </ul>
@@ -1666,7 +1739,7 @@ think I am testing in the future...</p>
 <p>Updated to 0.9b of PyCrust.</p>
 </div>
 <div class="section">
 <p>Updated to 0.9b of PyCrust.</p>
 </div>
 <div class="section">
-<h1><a id="id21" name="id21">2.4.0.4</a></h1>
+<h1><a id="id23" name="id23">2.4.0.4</a></h1>
 <ul class="simple">
 <li>7-Mar-2003</li>
 </ul>
 <ul class="simple">
 <li>7-Mar-2003</li>
 </ul>
@@ -1727,7 +1800,7 @@ doesn't have a standard place for them.</p>
 <p>Updated to the 0.9a version of PyCrust</p>
 </div>
 <div class="section">
 <p>Updated to the 0.9a version of PyCrust</p>
 </div>
 <div class="section">
-<h1><a id="id22" name="id22">2.4.0.2</a></h1>
+<h1><a id="id24" name="id24">2.4.0.2</a></h1>
 <ul class="simple">
 <li>23-Jan-2003</li>
 </ul>
 <ul class="simple">
 <li>23-Jan-2003</li>
 </ul>
@@ -1736,7 +1809,7 @@ doesn't have a standard place for them.</p>
 <p>Added wxPyColourChooser by Michael Gilfix.</p>
 </div>
 <div class="section">
 <p>Added wxPyColourChooser by Michael Gilfix.</p>
 </div>
 <div class="section">
-<h1><a id="id23" name="id23">2.4.0.1</a></h1>
+<h1><a id="id25" name="id25">2.4.0.1</a></h1>
 <ul class="simple">
 <li>10-Jan-2003</li>
 </ul>
 <ul class="simple">
 <li>10-Jan-2003</li>
 </ul>
@@ -1746,14 +1819,14 @@ enhancements.</p>
 wxPython/lib/dialogs.py for more details.</p>
 </div>
 <div class="section">
 wxPython/lib/dialogs.py for more details.</p>
 </div>
 <div class="section">
-<h1><a id="id24" name="id24">2.3.4.2</a></h1>
+<h1><a id="id26" name="id26">2.3.4.2</a></h1>
 <ul class="simple">
 <li>21-Dec-2002</li>
 </ul>
 <p>Various bug fixes.</p>
 </div>
 <div class="section">
 <ul class="simple">
 <li>21-Dec-2002</li>
 </ul>
 <p>Various bug fixes.</p>
 </div>
 <div class="section">
-<h1><a id="id25" name="id25">2.3.4.1</a></h1>
+<h1><a id="id27" name="id27">2.3.4.1</a></h1>
 <ul class="simple">
 <li>18-Dec-2002</li>
 </ul>
 <ul class="simple">
 <li>18-Dec-2002</li>
 </ul>
@@ -1811,7 +1884,7 @@ HTMLHelp viewer does.  Changed how the wxPythonDocs tarball is built
 and added a script to launch the doc viewer.</p>
 </div>
 <div class="section">
 and added a script to launch the doc viewer.</p>
 </div>
 <div class="section">
-<h1><a id="id26" name="id26">2.3.3.1</a></h1>
+<h1><a id="id28" name="id28">2.3.3.1</a></h1>
 <ul class="simple">
 <li>19-Sep-2002</li>
 </ul>
 <ul class="simple">
 <li>19-Sep-2002</li>
 </ul>
@@ -1957,7 +2030,7 @@ example.</p>
 <p>Added wxTimeCtrl from Will Sadkin.</p>
 </div>
 <div class="section">
 <p>Added wxTimeCtrl from Will Sadkin.</p>
 </div>
 <div class="section">
-<h1><a id="id27" name="id27">2.3.2.1</a></h1>
+<h1><a id="id29" name="id29">2.3.2.1</a></h1>
 <ul class="simple">
 <li>20-Dec-2001</li>
 </ul>
 <ul class="simple">
 <li>20-Dec-2001</li>
 </ul>
@@ -1967,7 +2040,7 @@ without barfing and is also still compatible with Python debuggers.</p>
 <p>Added some patches from library contributors.</p>
 </div>
 <div class="section">
 <p>Added some patches from library contributors.</p>
 </div>
 <div class="section">
-<h1><a id="id28" name="id28">2.3.2</a></h1>
+<h1><a id="id30" name="id30">2.3.2</a></h1>
 <ul class="simple">
 <li>11-Dec-2001</li>
 </ul>
 <ul class="simple">
 <li>11-Dec-2001</li>
 </ul>
@@ -2053,7 +2126,7 @@ wxPython/contrib/dllwidget and wxPython/demo/dllwidget for more
 details.</p>
 </div>
 <div class="section">
 details.</p>
 </div>
 <div class="section">
-<h1><a id="id29" name="id29">2.3.1</a></h1>
+<h1><a id="id31" name="id31">2.3.1</a></h1>
 <ul class="simple">
 <li>10-Jul-2001</li>
 </ul>
 <ul class="simple">
 <li>10-Jul-2001</li>
 </ul>
@@ -2070,7 +2143,7 @@ subclass wxXmlResourceHandler, etc...</p>
 <p>Added enhanced wxVTKRenderWindow by Prabhu Ramachandran</p>
 </div>
 <div class="section">
 <p>Added enhanced wxVTKRenderWindow by Prabhu Ramachandran</p>
 </div>
 <div class="section">
-<h1><a id="id30" name="id30">2.3.0</a></h1>
+<h1><a id="id32" name="id32">2.3.0</a></h1>
 <ul class="simple">
 <li>22-May-2001</li>
 </ul>
 <ul class="simple">
 <li>22-May-2001</li>
 </ul>
@@ -2170,7 +2243,7 @@ by having smaller functional apps to play with.  They can be found in
 wxPython/samples.</p>
 </div>
 <div class="section">
 wxPython/samples.</p>
 </div>
 <div class="section">
-<h1><a id="id31" name="id31">2.2.7</a></h1>
+<h1><a id="id33" name="id33">2.2.7</a></h1>
 <ul class="simple">
 <li>19-Jun-2001</li>
 </ul>
 <ul class="simple">
 <li>19-Jun-2001</li>
 </ul>
@@ -2178,7 +2251,7 @@ wxPython/samples.</p>
 changes and fixes in the wxWindows library.</p>
 </div>
 <div class="section">
 changes and fixes in the wxWindows library.</p>
 </div>
 <div class="section">
-<h1><a id="id32" name="id32">2.2.5</a></h1>
+<h1><a id="id34" name="id34">2.2.5</a></h1>
 <ul class="simple">
 <li>30-Jan-2001</li>
 </ul>
 <ul class="simple">
 <li>30-Jan-2001</li>
 </ul>