= Description = I recently updated from version 1.2.4 to 1.3.1 and encounter a problem regarding the slideshow feature: the (sorted) pages are shown rather randomly. == Example == MoinMaster:HelpOnSlideShows Click on Start and then Forward :) == Details == This wiki. == Workaround == Use Microsoft PowerPoint :-) = Discussion = Slide show is quite broken on 1.3. I don't know if it was better in 1.2. -- NirSoffer <<DateTime(2005-01-06T23:17:50Z)>> * Of course it was not broken. * It was not broken in MoinMoin 1.2.3 KlausHeinisch <<DateTime(2005-01-07T13:46:05Z)>> * Any workaround pre-1.3.2? I ''''''really'''''' don't want to use !PowerPoint right now! -- DavidSchofield * Wise decision :-) See below for the patch. Reading it should be trivial ... {{{ --- orig/MoinMoin/macro/Navigation.py +++ mod/MoinMoin/macro/Navigation.py @@ -31,6 +31,7 @@ if filter_regex: filter = re.compile(filter_regex).match pages = request.rootpage.getPageList(filter=filter) + pages.sort() return pages }}} = Plan = * Priority: High * Assigned to: ThomasWaldmann * Status: fixed, will be in 1.3.2 ---- CategoryMoinMoinBugFixed