The problem doesn't happen with the 3D drivers installed. I have a Nvidia GeForce 7500 LE and I installed the 3D open source drivers available for that card.
-- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/730476 Title: Part of the time appears cut off when displaying the day of the week and date -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs From [email protected] Fri Mar 18 04:26:27 2011 Return-path: <[email protected]> Envelope-to: [email protected] Delivery-date: Fri, 18 Mar 2011 04:26:27 -0700 Received: from exprod5mx235.postini.com ([64.18.0.121] helo=psmtp.com) by mail-archive.com with smtp (Exim 4.69) (envelope-from <[email protected]>) id 1Q0Xp5-0007LW-5y for [email protected]; Fri, 18 Mar 2011 04:26:27 -0700 Received: from source ([91.198.174.5]) by exprod5mx235.postini.com ([64.18.4.10]) with SMTP; Fri, 18 Mar 2011 04:26:25 PDT Received: from localhost ([127.0.0.1]:44253 helo=lily.esams.wikimedia.org) by lily.knams.wikimedia.org with esmtp (Exim 4.69) (envelope-from <[email protected]>) id 1Q0Xp1-0006Cg-4H; Fri, 18 Mar 2011 11:26:23 +0000 Received: from formey.wikimedia.org ([208.80.152.147]:46108 helo=localhost.localdomain) by lily.knams.wikimedia.org with esmtp (Exim 4.69) (envelope-from <[email protected]>) id 1Q0Xox-0006CI-Vu for [email protected]; Fri, 18 Mar 2011 11:26:20 +0000 MIME-Version: 1.0 X-Mailer: SVN::Notify 2.79: http://search.cpan.org/dist/SVN-Notify/ From: [email protected] To: [email protected] Message-Id: <[email protected]> Date: Fri, 18 Mar 2011 11:26:20 +0000 Subject: [Pywikipedia-svn] SVN: [9100] trunk/pywikipedia/wikipedia.py X-BeenThere: [email protected] X-Mailman-Version: 2.1.9 Precedence: list Reply-To: [email protected] List-Id: Pywikipedia SVN commits <pywikipedia-svn.lists.wikimedia.org> List-Unsubscribe: <https://lists.wikimedia.org/mailman/listinfo/pywikipedia-svn>, <mailto:[email protected]?subject=unsubscribe> List-Archive: <http://lists.wikimedia.org/pipermail/pywikipedia-svn> List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]?subject=help> List-Subscribe: <https://lists.wikimedia.org/mailman/listinfo/pywikipedia-svn>, <mailto:[email protected]?subject=subscribe> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: [email protected] Errors-To: [email protected] X-pstn-neptune: 0/0/0.00/0 X-pstn-levels: (S:99.90000/99.90000 CV:99.9000 FC:95.5390 LC:95.5390 R:95.9108 P:95.9108 M:97.0282 C:98.6951 ) X-pstn-settings: 4 (1.5000:1.5000) s cv gt3 gt2 gt1 r p m c X-pstn-addresses: from <[email protected]> [294/10] http://www.mediawiki.org/wiki/Special:Code/pywikipedia/9100 Revision: 9100 Author: jayvdb Date: 2011-03-18 11:26:19 +0000 (Fri, 18 Mar 2011) Log Message: ----------- restore old API for site.recentchanges so it is equivalent to site.newpages per comment on r9089 Modified Paths: -------------- trunk/pywikipedia/wikipedia.py Modified: trunk/pywikipedia/wikipedia.py =================================================================== --- trunk/pywikipedia/wikipedia.py 2011-03-18 11:23:37 UTC (rev 9099) +++ trunk/pywikipedia/wikipedia.py 2011-03-18 11:26:19 UTC (rev 9100) @@ -6334,8 +6334,13 @@ def recentchanges(self, number = 100, rcstart = None, rcend = None, rcshow = None, rcdir='older', rctype ='edit|new', namespace=None, includeredirects=True, repeat = False, user = None): """ - Yield ImagePages from APIs, call: action=query&list=recentchanges&rctype=edit|new&rclimit=500 + Yield recent changes as Page objects + uses API call: action=query&list=recentchanges&rctype=edit|new&rclimit=500 + Starts with the newest change and fetches the number of changes + specified in the first argument. If repeat is True, it fetches + again. + Options directly from APIs: --- Parameters: @@ -6363,6 +6368,12 @@ Default: 10 rctype - Which types of changes to show. Values (separate with '|'): edit, new, log + + The objects yielded are tuples composed of the Page object, + timestamp (unicode), length (int), an empty unicode string, username + or IP address (str), comment (unicode). + + # TODO: Detection of unregistered users is broken """ if rctype is None: rctype = 'edit|new' @@ -6371,7 +6382,7 @@ 'list' : 'recentchanges', 'rcdir' : rcdir, 'rctype' : rctype, - 'rcprop' : ['user','comment','timestamp','title','ids','loginfo'], #','flags','sizes','redirect','patrolled'] + 'rcprop' : ['user','comment','timestamp','title','ids','loginfo','sizes'], #','flags','redirect','patrolled'] 'rcnamespace' : namespace, 'rclimit' : int(number), } @@ -6395,7 +6406,7 @@ if 'comment' in i: comment = i['comment'] page = Page(self, i['title'], defaultNamespace=i['ns']) - yield page, i['timestamp'], i['user'], comment, '' + yield page, i['timestamp'], i['newlen'], u'', i['user'], comment if not repeat: break _______________________________________________ Pywikipedia-svn mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/pywikipedia-svn
