From metatracker at psf.upfronthosting.co.za Mon Oct 3 08:57:21 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Mon, 03 Oct 2011 06:57:21 +0000 Subject: [Tracker-discuss] [issue422] Keyboard shortcuts Message-ID: <1317625041.71.0.42670053076.issue422@psf.upfronthosting.co.za> New submission from Ezio Melotti : The attached patch adds keyboard shortcuts to navigate through the messages to the tracker. There are two different "modes": * mnemonics: f: first message; p: previous message; n: next message; l: last message; r: reply (jumps on the comment field and focuses it); * vim-style: h: first message; k: previous message; j: next message; l: last message; i: insert-mode (jumps on the comment field and focuses it); esc: normal-mode (unfocus the field and re-enables the commands); It might be nice to add also a command to submit the message, maybe ctrl+enter or 's' (but this is a bit risky). ---------- assignedto: ezio.melotti files: issue422.diff messages: 2257 nosy: eric.araujo, ezio.melotti, r.david.murray priority: feature status: unread title: Keyboard shortcuts _______________________________________________________ PSF Meta Tracker _______________________________________________________ -------------- next part -------------- Index: issue.item.js =================================================================== --- issue.item.js (revision 88881) +++ issue.item.js (working copy) @@ -45,21 +45,72 @@ $(document).ready(function() { - /* When the user hits the 'end' key the first time, jump to the last - message rather than to the end of the page. After that restore the - normal 'end' behavior. */ - // get the offset to the last message - var offset = $('table.messages tr th a:last').offset() + /* Keyboard shortcuts */ + function is_editing(node) { + // return true if the focus is on a form element + var element = node.nodeName; + return ((element == 'TEXTAREA') || (element == 'SELECT') || + (element == 'INPUT' && node.type != 'file')); + } + function scroll_to(node) { + // scroll to page to the given node + window.scrollTo(0, node.offset().top) + } + var textarea = $('textarea').first(); + var messages = $('table.messages tr th a:first-child'); + var last_index = messages.length - 1; + // start from -1 so 'n' sends to the first message at the beginning + var current = -1; $(document).keydown(function (event) { - var node = event.target.nodeName; - // 35 == end key. Don't do anything if the focus is on form elements - if ((event.keyCode == 35) && (node != 'TEXTAREA') - && (node != 'INPUT') && (node != 'SELECT')) { - // jump at the last message and restore the usual behavior - window.scrollTo(0, offset.top); - $(document).unbind('keydown') - return false; + // disable the shortcuts while editing form elements + if (is_editing(event.target)) { + // unfocus the form when the user press ESC + if (event.keyCode == 27) { + $(event.target).blur(); + return false; + } + return true; } + + // support two groups of shortcuts for first/prev/next/last/reply: + // mnemonics: f/p/n/l/r + // vim-style: h/k/j/l/i + switch (event.which) { + // f/h - first + case 70: + case 72: + scroll_to(messages.first()); + current = 0; + return false; + // p/k - previous + case 80: + case 75: + if (current <= 0) + return true; + current = current - 1; + scroll_to(messages.eq(current)); + return false; + // n/j - next + case 78: + case 74: + if (current >= last_index) + return true; + current = current + 1; + scroll_to(messages.eq(current)); + return false; + // l - last + case 76: + scroll_to(messages.last()); + current = last_index; + return false; + case 82: + case 73: + scroll_to(textarea); + textarea.focus(); + return false; + default: + return true; + } }); }) From metatracker at psf.upfronthosting.co.za Mon Oct 3 09:03:28 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Mon, 03 Oct 2011 07:03:28 +0000 Subject: [Tracker-discuss] [issue422] Keyboard shortcuts In-Reply-To: <1317625041.71.0.42670053076.issue422@psf.upfronthosting.co.za> Message-ID: <1317625408.87.0.530820826155.issue422@psf.upfronthosting.co.za> Ezio Melotti added the comment: BTW, this replaces the "end key" script that jumped to the last message. On the one hand, people will have to switch from 'esc' to 'l', but on the other hand it restores the normal behavior of the end key that people expect from the browser, so I preferred to remove it (also it doesn't make much difference in most of the issues, since they have a short history and the last message will still be visible even when the page is scrolled till the end). ---------- status: unread -> chatting _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Tue Oct 4 18:12:09 2011 From: metatracker at psf.upfronthosting.co.za (=?utf-8?q?=C3=89ric_Araujo?=) Date: Tue, 04 Oct 2011 16:12:09 +0000 Subject: [Tracker-discuss] [issue422] Keyboard shortcuts In-Reply-To: <1317625041.71.0.42670053076.issue422@psf.upfronthosting.co.za> Message-ID: <1317744729.41.0.192919409038.issue422@psf.upfronthosting.co.za> ?ric Araujo added the comment: Are you aware of the issues coming with the use of accesskeys? If not, I?ll dig up the links. _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Tue Oct 4 18:35:06 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Tue, 04 Oct 2011 16:35:06 +0000 Subject: [Tracker-discuss] [issue422] Keyboard shortcuts In-Reply-To: <1317625041.71.0.42670053076.issue422@psf.upfronthosting.co.za> Message-ID: <1317746106.36.0.475899659375.issue422@psf.upfronthosting.co.za> Ezio Melotti added the comment: These shortcuts use a single key, so they don't need to be combined with ctrl/alt in order to work. That means no conflicts with key combinations that the browsers might use. OTOH, it conflicts with the find-as-you-type, but I don't know how used that is. The form elements are special-cased, so while you are writing a message in the comment field, the shortcuts are disabled. Is there something else that I'm missing? If you have interesting links, please share. I'm also considering making this optional, with a checkbox somewhere to enable/disable it. _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Thu Oct 6 17:19:22 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Thu, 06 Oct 2011 15:19:22 +0000 Subject: [Tracker-discuss] [issue394] Better integration with Rietveld code review tool In-Reply-To: <1303156350.85.0.792534425783.issue394@psf.upfronthosting.co.za> Message-ID: <1317914362.65.0.703336505174.issue394@psf.upfronthosting.co.za> Ezio Melotti added the comment: The bit of code that sends the email is in rietveld/codereview/views.py:2540:_make_message and it's called by rietveld/codereview/views.py:2362:publish (note: the line numbers refer to r510, i.e. the version we are using). A possible fix would be to: 1) at line 2546 (after (actually, instead of) the part where the mail is sent to the cc), replace the body with something like " submitted a review: "; 2) send the mail to roundup; It's also possible to create and add a new message directly to Roundup, but that's a little more involved. _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Thu Oct 6 17:29:19 2011 From: metatracker at psf.upfronthosting.co.za (=?utf-8?q?Martin_v=2E_L=C3=B6wis?=) Date: Thu, 06 Oct 2011 15:29:19 +0000 Subject: [Tracker-discuss] [issue394] Better integration with Rietveld code review tool In-Reply-To: <1317914362.65.0.703336505174.issue394@psf.upfronthosting.co.za> Message-ID: <4E8DC94C.2060408@v.loewis.de> Martin v. L?wis added the comment: > It's also possible to create and add a new message directly to Roundup, but that's a little more involved. I hope I can work on this during the PyConDE sprints. ---------- title: Better integration with Rietveld code review tool -> Better integration with Rietveld code review tool _______________________________________________________ PSF Meta Tracker _______________________________________________________ From martin at v.loewis.de Thu Oct 6 17:29:16 2011 From: martin at v.loewis.de (=?ISO-8859-1?Q?=22Martin_v=2E_L=F6wis=22?=) Date: Thu, 06 Oct 2011 17:29:16 +0200 Subject: [Tracker-discuss] [issue394] Better integration with Rietveld code review tool In-Reply-To: <1317914362.65.0.703336505174.issue394@psf.upfronthosting.co.za> References: <1317914362.65.0.703336505174.issue394@psf.upfronthosting.co.za> Message-ID: <4E8DC94C.2060408@v.loewis.de> > It's also possible to create and add a new message directly to Roundup, but that's a little more involved. I hope I can work on this during the PyConDE sprints. From metatracker at psf.upfronthosting.co.za Thu Oct 6 17:53:22 2011 From: metatracker at psf.upfronthosting.co.za (anatoly techtonik) Date: Thu, 06 Oct 2011 15:53:22 +0000 Subject: [Tracker-discuss] [issue394] Better integration with Rietveld code review tool In-Reply-To: <1303156350.85.0.792534425783.issue394@psf.upfronthosting.co.za> Message-ID: <1317916402.98.0.821961763617.issue394@psf.upfronthosting.co.za> anatoly techtonik added the comment: BTW, what version of Rietveld are you running on bugs.python.org? We've added a couple of enhancements since it was first deployed, also for API. ---------- nosy: +techtonik _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Fri Oct 7 09:05:37 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Fri, 07 Oct 2011 07:05:37 +0000 Subject: [Tracker-discuss] [issue422] Keyboard shortcuts In-Reply-To: <1317625041.71.0.42670053076.issue422@psf.upfronthosting.co.za> Message-ID: <1317971137.08.0.513552348245.issue422@psf.upfronthosting.co.za> Ezio Melotti added the comment: Committed a slightly modified version in r88904. I also added some help in the sidebar and plan to leave it there for about a month (so people will know that there are shortcuts) and then move it to the devguide. ---------- status: chatting -> testing _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Fri Oct 7 18:23:29 2011 From: metatracker at psf.upfronthosting.co.za (=?utf-8?q?=C3=89ric_Araujo?=) Date: Fri, 07 Oct 2011 16:23:29 +0000 Subject: [Tracker-discuss] [issue422] Keyboard shortcuts In-Reply-To: <1317625041.71.0.42670053076.issue422@psf.upfronthosting.co.za> Message-ID: <1318004609.13.0.926948710233.issue422@psf.upfronthosting.co.za> ?ric Araujo added the comment: This blocks keybindings like Ctrl-L, which is not acceptable. _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Fri Oct 7 18:46:57 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Fri, 07 Oct 2011 16:46:57 +0000 Subject: [Tracker-discuss] [issue422] Keyboard shortcuts In-Reply-To: <1317625041.71.0.42670053076.issue422@psf.upfronthosting.co.za> Message-ID: <1318006017.63.0.400366889768.issue422@psf.upfronthosting.co.za> Ezio Melotti added the comment: Indeed. Should be fixed in r88905. Thanks for the report! _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Fri Oct 7 19:13:07 2011 From: metatracker at psf.upfronthosting.co.za (=?utf-8?q?=C3=89ric_Araujo?=) Date: Fri, 07 Oct 2011 17:13:07 +0000 Subject: [Tracker-discuss] [issue422] Keyboard shortcuts In-Reply-To: <1317625041.71.0.42670053076.issue422@psf.upfronthosting.co.za> Message-ID: <1318007587.37.0.552573042663.issue422@psf.upfronthosting.co.za> ?ric Araujo added the comment: Yay! _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Sat Oct 8 11:08:30 2011 From: metatracker at psf.upfronthosting.co.za (Mark Dickinson) Date: Sat, 08 Oct 2011 09:08:30 +0000 Subject: [Tracker-discuss] [issue422] Keyboard shortcuts In-Reply-To: <1317625041.71.0.42670053076.issue422@psf.upfronthosting.co.za> Message-ID: <1318064910.46.0.59045943521.issue422@psf.upfronthosting.co.za> Mark Dickinson added the comment: On Safari / OS X, this also seems to block CMD-key combinations: e.g., CMD-F (which I'd normally use to search) just jumps to the first message. Would it be possible either to fix this, or to provide a way to disable the key-bindings? ---------- nosy: +mark.dickinson _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Sat Oct 8 11:23:14 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Sat, 08 Oct 2011 09:23:14 +0000 Subject: [Tracker-discuss] [issue422] Keyboard shortcuts In-Reply-To: <1317625041.71.0.42670053076.issue422@psf.upfronthosting.co.za> Message-ID: <1318065794.48.0.33327324964.issue422@psf.upfronthosting.co.za> Ezio Melotti added the comment: r88906 should address this, can you confirm that the problem is fixed now? _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Sat Oct 8 11:30:03 2011 From: metatracker at psf.upfronthosting.co.za (Mark Dickinson) Date: Sat, 08 Oct 2011 09:30:03 +0000 Subject: [Tracker-discuss] [issue422] Keyboard shortcuts In-Reply-To: <1317625041.71.0.42670053076.issue422@psf.upfronthosting.co.za> Message-ID: <1318066203.28.0.779755562803.issue422@psf.upfronthosting.co.za> Mark Dickinson added the comment: Yep, seems to be fixed now. Thanks! _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Sun Oct 9 06:20:03 2011 From: metatracker at psf.upfronthosting.co.za (=?utf-8?q?=C3=89ric_Araujo?=) Date: Sun, 09 Oct 2011 04:20:03 +0000 Subject: [Tracker-discuss] [issue422] Keyboard shortcuts In-Reply-To: <1317625041.71.0.42670053076.issue422@psf.upfronthosting.co.za> Message-ID: <1318134003.33.0.984666745849.issue422@psf.upfronthosting.co.za> ?ric Araujo added the comment: I?ve noticed the new help sub-sidebar; please don?t abuse HTML a elements. _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Sun Oct 9 12:15:57 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Sun, 09 Oct 2011 10:15:57 +0000 Subject: [Tracker-discuss] [issue422] Keyboard shortcuts In-Reply-To: <1317625041.71.0.42670053076.issue422@psf.upfronthosting.co.za> Message-ID: <1318155357.4.0.0627909075067.issue422@psf.upfronthosting.co.za> Ezio Melotti added the comment: As I wrote in the source, that's just a temporary workaround. If the shortcuts work well I'll move their documentation in the devguide and remove that sub-menu in a couple of weeks or so. I'm also thinking about a context-dependent help system, but there are a few problems that need to be solved first. _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Tue Oct 11 12:13:20 2011 From: metatracker at psf.upfronthosting.co.za (Nadeem Vawda) Date: Tue, 11 Oct 2011 10:13:20 +0000 Subject: [Tracker-discuss] [issue424] Rietveld: AssertionError when trying to reply to comments Message-ID: <1318328000.91.0.751562811451.issue424@psf.upfronthosting.co.za> New submission from Nadeem Vawda : I am not able to reply to some comments on Rietveld. When I tried to reply to the comments by loewis at http://bugs.python.org/review/6715/diff/3335/10393, I get an error saying "Error: AssertionError; please report!". This takes the form of red text replacing the comment I was replying to, and appears after I enter my reply and hit "Save". This does not happen if I first try to enter a reply to one of the previous batch of comments (by amaury.forgeotdarc) first, discard it, and then reply to one of loewis's comments. This may be related to issue 402 - I am still not able to sign in to Rietveld without temporarily changing my username. ---------- messages: 2274 nosy: nadeem.vawda priority: bug status: unread title: Rietveld: AssertionError when trying to reply to comments _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Tue Oct 11 16:15:28 2011 From: metatracker at psf.upfronthosting.co.za (Antoine Pitrou) Date: Tue, 11 Oct 2011 14:15:28 +0000 Subject: [Tracker-discuss] [issue264] Mail gateway borks quotes and console sessions In-Reply-To: <1239122891.37.0.849970456048.issue264@psf.upfronthosting.co.za> Message-ID: <1318342528.01.0.619599914465.issue264@psf.upfronthosting.co.za> Antoine Pitrou added the comment: Could this be fixed? ---------- nosy: +ezio.melotti, pitrou _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Wed Oct 12 10:47:01 2011 From: metatracker at psf.upfronthosting.co.za (Izak Burger) Date: Wed, 12 Oct 2011 08:47:01 +0000 Subject: [Tracker-discuss] [issue425] Unexpected downtime Message-ID: New submission from Izak Burger : Hi all, I noticed this morning that our backups wasn't running properly. It looked like postgresql had some sort of locking that stopped the database from being dumped. After being unable to stop postgresql, I started worrying about the state of the file system, and since it hasn't been checked in just over 300 days, I decided it would be best to take it down and check it. The good news is that there appears to be nothing wrong with the file system. Backups are back on track. And while I was at it, I also upgraded the kernel on the host machine. Everything is up and running again. regards, Izak Burger ---------- messages: 2276 nosy: izak status: unread title: Unexpected downtime _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Wed Oct 12 18:31:46 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Wed, 12 Oct 2011 16:31:46 +0000 Subject: [Tracker-discuss] [issue423] Python will not open MAC In-Reply-To: <1318286434.13.0.922608421349.issue423@psf.upfronthosting.co.za> Message-ID: <1318437106.41.0.0473980738201.issue423@psf.upfronthosting.co.za> Ezio Melotti added the comment: This is the meta-tracker, you should report your problem at the bug tracker on bugs.python.org. In the meanwhile, if you are in a hurry, you can run Python from the terminal instead of using IDLE. ---------- assignedto: -> ezio.melotti nosy: +ezio.melotti status: unread -> resolved _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Thu Oct 13 17:05:31 2011 From: metatracker at psf.upfronthosting.co.za (=?utf-8?q?Martin_v=2E_L=C3=B6wis?=) Date: Thu, 13 Oct 2011 15:05:31 +0000 Subject: [Tracker-discuss] [issue425] Unexpected downtime In-Reply-To: Message-ID: <4E96FE38.2010400@v.loewis.de> Martin v. L?wis added the comment: > The good news is that there appears to be nothing wrong with the file > system. Backups are back on track. And while I was at it, I also > upgraded the kernel on the host machine. Everything is up and running > again. Thanks! Can we upgrade the Debian installation in the guest system at some point? I don't want to wait until the last minute this time. ---------- nosy: +loewis status: unread -> chatting _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Mon Oct 17 13:45:54 2011 From: metatracker at psf.upfronthosting.co.za (anatoly techtonik) Date: Mon, 17 Oct 2011 11:45:54 +0000 Subject: [Tracker-discuss] [issue407] bug in revision linking code In-Reply-To: <1308389788.13.0.048506676138.issue407@psf.upfronthosting.co.za> Message-ID: <1318851954.38.0.676301254177.issue407@psf.upfronthosting.co.za> anatoly techtonik added the comment: Seems like there is another test-case for that - http://bugs.python.org/issue13196 ---------- status: resolved -> unread _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Tue Oct 18 10:00:58 2011 From: metatracker at psf.upfronthosting.co.za (=?utf-8?q?Martin_v=2E_L=C3=B6wis?=) Date: Tue, 18 Oct 2011 08:00:58 +0000 Subject: [Tracker-discuss] [issue407] bug in revision linking code In-Reply-To: <1318851954.38.0.676301254177.issue407@psf.upfronthosting.co.za> Message-ID: <4E9D3235.3030305@v.loewis.de> Martin v. L?wis added the comment: > Seems like there is another test-case for that - http://bugs.python.org/issue13196 A test case for what? Be specific: what do you see, what do you expect to see instead? ---------- nosy: +loewis status: unread -> chatting _______________________________________________________ PSF Meta Tracker _______________________________________________________ From martin at v.loewis.de Tue Oct 18 10:00:53 2011 From: martin at v.loewis.de (=?ISO-8859-1?Q?=22Martin_v=2E_L=F6wis=22?=) Date: Tue, 18 Oct 2011 10:00:53 +0200 Subject: [Tracker-discuss] [issue407] bug in revision linking code In-Reply-To: <1318851954.38.0.676301254177.issue407@psf.upfronthosting.co.za> References: <1318851954.38.0.676301254177.issue407@psf.upfronthosting.co.za> Message-ID: <4E9D3235.3030305@v.loewis.de> > Seems like there is another test-case for that - http://bugs.python.org/issue13196 A test case for what? Be specific: what do you see, what do you expect to see instead? From metatracker at psf.upfronthosting.co.za Tue Oct 18 15:36:56 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Tue, 18 Oct 2011 13:36:56 +0000 Subject: [Tracker-discuss] [issue407] bug in revision linking code In-Reply-To: <1308389788.13.0.048506676138.issue407@psf.upfronthosting.co.za> Message-ID: <1318945016.41.0.664828738555.issue407@psf.upfronthosting.co.za> Ezio Melotti added the comment: Fixed in r88913 (I'll apply the fix later). ---------- status: chatting -> resolved _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Thu Oct 20 20:42:02 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Thu, 20 Oct 2011 18:42:02 +0000 Subject: [Tracker-discuss] [issue172] Traceback exposed in misformed URL In-Reply-To: <1196951026.1.0.157520960574.issue172@psf.upfronthosting.co.za> Message-ID: <1319136122.8.0.50211606841.issue172@psf.upfronthosting.co.za> Ezio Melotti added the comment: This probably got fixed upstream and I can't reproduce it anymore, so I'm closing this issue. ---------- assignedto: -> ezio.melotti nosy: +ezio.melotti status: chatting -> resolved _______________________________________________________ PSF Meta Tracker _______________________________________________________ From subhamgupta84 at gmail.com Thu Oct 20 20:43:02 2011 From: subhamgupta84 at gmail.com (shubham gupta) Date: Fri, 21 Oct 2011 00:13:02 +0530 Subject: [Tracker-discuss] Reg - JPG image foramt Message-ID: Hi All, I am a Python Professional from 1.7 years, while working on on application that uses module "imghdr" (Built in Python 2.4.3) and was trying to generate a pdf file , having Image as Header.The format of the image was ".jpg" , so it was not imported on generated pdf ,So i went through the source code of the module , where i didn't find the support for this type of image.Please make me clear , is ".jpg" format not handled by this module? If yes , how it could be handled . Please do let us know for any other information needed to understand the problem. Please respond at -- subhamgupta84 at gmail.com , will appreciate the help. Thanks Shubham From metatracker at psf.upfronthosting.co.za Thu Oct 20 20:43:40 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Thu, 20 Oct 2011 18:43:40 +0000 Subject: [Tracker-discuss] [issue211] Message has been classified as spam. In-Reply-To: <1214066994.22.0.506757391481.issue211@psf.upfronthosting.co.za> Message-ID: <1319136220.5.0.136166473498.issue211@psf.upfronthosting.co.za> Ezio Melotti added the comment: Spambayes is working fine, with only a few false positives, so I'm going to close this. ---------- assignedto: -> ezio.melotti nosy: +ezio.melotti status: chatting -> resolved _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Thu Oct 20 21:34:41 2011 From: metatracker at psf.upfronthosting.co.za (anatoly techtonik) Date: Thu, 20 Oct 2011 19:34:41 +0000 Subject: [Tracker-discuss] [issue172] Traceback exposed in misformed URL In-Reply-To: <1196951026.1.0.157520960574.issue172@psf.upfronthosting.co.za> Message-ID: <1319139281.12.0.766800524263.issue172@psf.upfronthosting.co.za> anatoly techtonik added the comment: How far is current installation from upstream? ---------- nosy: +techtonik status: resolved -> chatting _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Thu Oct 20 22:01:22 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Thu, 20 Oct 2011 20:01:22 +0000 Subject: [Tracker-discuss] [issue172] Traceback exposed in misformed URL In-Reply-To: <1196951026.1.0.157520960574.issue172@psf.upfronthosting.co.za> Message-ID: <1319140882.49.0.709841007275.issue172@psf.upfronthosting.co.za> Ezio Melotti added the comment: Our Roundup installation is up to date now, and I don't think it's so different -- we tried to make it diverge as little as possible from the original. ---------- status: chatting -> resolved _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Thu Oct 20 22:35:50 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Thu, 20 Oct 2011 20:35:50 +0000 Subject: [Tracker-discuss] [issue160] Can't make a query private once it's been made public In-Reply-To: <1190680823.03.0.264914740135.issue160@psf.upfronthosting.co.za> Message-ID: <1319142950.02.0.101337420476.issue160@psf.upfronthosting.co.za> Ezio Melotti added the comment: There are a couple of problems with the query.edit.page and there's already some discussion about it on #352, so I'm going to close this. ---------- assignedto: -> ezio.melotti nosy: +ezio.melotti status: chatting -> resolved _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Thu Oct 20 22:37:20 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Thu, 20 Oct 2011 20:37:20 +0000 Subject: [Tracker-discuss] [issue352] delete button for queries does not work In-Reply-To: <1281701983.92.0.554897059954.issue352@psf.upfronthosting.co.za> Message-ID: <1319143040.51.0.370340870173.issue352@psf.upfronthosting.co.za> Ezio Melotti added the comment: I closed issue160 because the problem mentioned there will most likely get fixed once this issue gets fixed. _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Thu Oct 20 22:42:56 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Thu, 20 Oct 2011 20:42:56 +0000 Subject: [Tracker-discuss] [issue300] explain status values directly in bug edit form In-Reply-To: <1253189838.19.0.143259241961.issue300@psf.upfronthosting.co.za> Message-ID: <1319143376.55.0.737975743824.issue300@psf.upfronthosting.co.za> Ezio Melotti added the comment: I don't think it's worth doing anything about it for this instance. The only "unclear" statuses are need-eg (and no issues currently use it) and done-ccb (only 1 issue uses it, and anyway only me or Martin might want to use it once we fix something, and we know what done-ccb means). ---------- assignedto: -> ezio.melotti nosy: +ezio.melotti status: chatting -> resolved _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Thu Oct 20 22:44:43 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Thu, 20 Oct 2011 20:44:43 +0000 Subject: [Tracker-discuss] [issue357] Bootstrapping class not in Py.BOOTSTRAP_TYPES In-Reply-To: <1288536792.61.0.21495685169.issue357@psf.upfronthosting.co.za> Message-ID: <1319143483.99.0.362685516985.issue357@psf.upfronthosting.co.za> Ezio Melotti added the comment: This got fixed in #359. ---------- assignedto: -> ezio.melotti nosy: +ezio.melotti status: chatting -> resolved _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Thu Oct 20 22:50:19 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Thu, 20 Oct 2011 20:50:19 +0000 Subject: [Tracker-discuss] [issue330] Users should be able to set bug dependencies In-Reply-To: <1270016353.69.0.59719876843.issue330@psf.upfronthosting.co.za> Message-ID: <1319143819.05.0.156792174349.issue330@psf.upfronthosting.co.za> Ezio Melotti added the comment: The link is now http://docs.python.org/devguide/devrole.html I'm also going to close this, since it's not a common request and I think the situation is fine as is. ---------- assignedto: -> ezio.melotti status: chatting -> resolved _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Thu Oct 20 22:51:33 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Thu, 20 Oct 2011 20:51:33 +0000 Subject: [Tracker-discuss] [issue321] Quoted sections disappear when issue updates are sent by e-mail In-Reply-To: <1266958137.47.0.48089118165.issue321@psf.upfronthosting.co.za> Message-ID: <1319143893.39.0.231317636177.issue321@psf.upfronthosting.co.za> Ezio Melotti added the comment: Closing this as a duplicate of #264. ---------- assignedto: -> ezio.melotti nosy: +ezio.melotti status: chatting -> resolved _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Thu Oct 20 22:52:25 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Thu, 20 Oct 2011 20:52:25 +0000 Subject: [Tracker-discuss] [issue264] Mail gateway borks quotes and console sessions In-Reply-To: <1239122891.37.0.849970456048.issue264@psf.upfronthosting.co.za> Message-ID: <1319143945.58.0.0842470151849.issue264@psf.upfronthosting.co.za> Ezio Melotti added the comment: I closed #321 as a duplicate of this. #321 also has an example mail that could be useful for tests. _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Thu Oct 20 23:03:15 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Thu, 20 Oct 2011 21:03:15 +0000 Subject: [Tracker-discuss] [issue63] List of roles in user search popup is incorrect In-Reply-To: <1165707910.86.0.104430987113.issue63@psf.upfronthosting.co.za> Message-ID: <1319144595.97.0.0582744601974.issue63@psf.upfronthosting.co.za> Ezio Melotti added the comment: This seems to work fine now, so I'm closing this. ---------- assignedto: dubois -> ezio.melotti nosy: +ezio.melotti -dubois status: done-cbb -> chatting _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Thu Oct 20 23:08:17 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Thu, 20 Oct 2011 21:08:17 +0000 Subject: [Tracker-discuss] [issue1] Import history Message-ID: <1319144897.78.0.965206426364.issue1@psf.upfronthosting.co.za> Ezio Melotti added the comment: This issue is now outdated. SF issues are no longer common nowadays and I don't think we need to do anything else for them. ---------- assignedto: -> ezio.melotti nosy: +ezio.melotti -dubois status: chatting -> resolved _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Thu Oct 20 23:29:40 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Thu, 20 Oct 2011 21:29:40 +0000 Subject: [Tracker-discuss] [issue219] Please add link to security tracker from main tracker page In-Reply-To: <1221661962.49.0.99429423588.issue219@psf.upfronthosting.co.za> Message-ID: <1319146180.91.0.118635712772.issue219@psf.upfronthosting.co.za> Ezio Melotti added the comment: If the link is added it should probably be visible only to developers, but even in that case most of them won't need it, so I'm just going to close this. See also related issue #393. ---------- assignedto: -> ezio.melotti nosy: +ezio.melotti status: chatting -> resolved _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Fri Oct 21 01:48:16 2011 From: metatracker at psf.upfronthosting.co.za (anatoly techtonik) Date: Thu, 20 Oct 2011 23:48:16 +0000 Subject: [Tracker-discuss] [issue300] explain status values directly in bug edit form In-Reply-To: <1253189838.19.0.143259241961.issue300@psf.upfronthosting.co.za> Message-ID: <1319154496.4.0.370191335944.issue300@psf.upfronthosting.co.za> anatoly techtonik added the comment: Why not to remove them at all then? ---------- status: resolved -> chatting _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Fri Oct 21 04:11:08 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Fri, 21 Oct 2011 02:11:08 +0000 Subject: [Tracker-discuss] [issue300] explain status values directly in bug edit form In-Reply-To: <1253189838.19.0.143259241961.issue300@psf.upfronthosting.co.za> Message-ID: <1319163068.68.0.409658030666.issue300@psf.upfronthosting.co.za> Ezio Melotti added the comment: done-cbb is sometimes used, need-eg could be removed. I don't have enough privileges on this tracker to remove it, so I'll leave this up to Martin. _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Fri Oct 21 04:19:25 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Fri, 21 Oct 2011 02:19:25 +0000 Subject: [Tracker-discuss] [issue4] Provide prev/next/show list links when going through a list of bugs Message-ID: <1319163565.2.0.771863800282.issue4@psf.upfronthosting.co.za> Ezio Melotti added the comment: Since this has been reported upstream, I think we can close this issue. Once it gets fixed upstream and we update, the feature will be available. FWIW when I search for issues I usually pick the ones that interest me and open them in new tabs. Usually I don't want to go through all the issues, so I don't think I'll find the feature too useful. Also if I want to e.g. triage the latest issues opened, the link shouldn't break when my triaging changes the order bumping the message to the top. ---------- nosy: +ezio.melotti status: deferred -> resolved _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Fri Oct 21 04:40:15 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Fri, 21 Oct 2011 02:40:15 +0000 Subject: [Tracker-discuss] [issue132] Enable blocker/dependency detector In-Reply-To: <1187889251.39.0.628325064137.issue132@psf.upfronthosting.co.za> Message-ID: <1319164815.73.0.358683254019.issue132@psf.upfronthosting.co.za> Ezio Melotti added the comment: The auto-addition to the nosy list works, #256 has been fixed, and afaik dependencies don't get removed when an issue is closed, so I'm closing this. ---------- assignedto: -> ezio.melotti nosy: +ezio.melotti status: chatting -> resolved _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Fri Oct 21 04:43:17 2011 From: metatracker at psf.upfronthosting.co.za (Ezio Melotti) Date: Fri, 21 Oct 2011 02:43:17 +0000 Subject: [Tracker-discuss] [issue418] Change background color if an issue is closed In-Reply-To: <1313400191.88.0.747529213931.issue418@psf.upfronthosting.co.za> Message-ID: <1319164997.66.0.0456662828481.issue418@psf.upfronthosting.co.za> Ezio Melotti added the comment: After more feedback on IRC, 6) seems difficult to notice. Maybe 7) is better? Even if the extra information might not too useful, the extra line will make it easier to notice. _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Fri Oct 21 12:29:02 2011 From: metatracker at psf.upfronthosting.co.za (anatoly techtonik) Date: Fri, 21 Oct 2011 10:29:02 +0000 Subject: [Tracker-discuss] [issue418] Change background color if an issue is closed In-Reply-To: <1313400191.88.0.747529213931.issue418@psf.upfronthosting.co.za> Message-ID: <1319192942.27.0.604322201627.issue418@psf.upfronthosting.co.za> anatoly techtonik added the comment: Warning or buttons won't help user concentrated on a textarea. You need to manipulate overall color scheme. Google got the idea right - closed issue is a dead issue. Compare http://code.google.com/p/python-patch/issues/detail?id=2 http://code.google.com/p/spyderlib/issues/detail?id=82 This can be challenging, as default Python scheme is 'dead' by default. =) ---------- nosy: +techtonik _______________________________________________________ PSF Meta Tracker _______________________________________________________ From barry at python.org Fri Oct 21 16:10:16 2011 From: barry at python.org (Barry Warsaw) Date: Fri, 21 Oct 2011 10:10:16 -0400 Subject: [Tracker-discuss] [issue418] Change background color if an issue is closed In-Reply-To: <1319192942.27.0.604322201627.issue418@psf.upfronthosting.co.za> References: <1313400191.88.0.747529213931.issue418@psf.upfronthosting.co.za> <1319192942.27.0.604322201627.issue418@psf.upfronthosting.co.za> Message-ID: <20111021101016.3b2a2122@limelight.wooz.org> On Oct 21, 2011, at 10:29 AM, anatoly techtonik wrote: >anatoly techtonik added the comment: > >Warning or buttons won't help user concentrated on a textarea. You need to manipulate overall color scheme. > >Google got the idea right - closed issue is a dead issue. Compare http://code.google.com/p/python-patch/issues/detail?id=2 >http://code.google.com/p/spyderlib/issues/detail?id=82 > >This can be challenging, as default Python scheme is 'dead' by default. =) Just be careful because 1) closed issues can often get re-opened, 2) you often still need to update, comment on, interact with closed issues. From metatracker at psf.upfronthosting.co.za Fri Oct 21 16:10:24 2011 From: metatracker at psf.upfronthosting.co.za (Barry Warsaw) Date: Fri, 21 Oct 2011 14:10:24 +0000 Subject: [Tracker-discuss] [issue418] Change background color if an issue is closed In-Reply-To: <1319192942.27.0.604322201627.issue418@psf.upfronthosting.co.za> Message-ID: <20111021101016.3b2a2122@limelight.wooz.org> Barry Warsaw added the comment: On Oct 21, 2011, at 10:29 AM, anatoly techtonik wrote: >anatoly techtonik added the comment: > >Warning or buttons won't help user concentrated on a textarea. You need to manipulate overall color scheme. > >Google got the idea right - closed issue is a dead issue. Compare http://code.google.com/p/python-patch/issues/detail?id=2 >http://code.google.com/p/spyderlib/issues/detail?id=82 > >This can be challenging, as default Python scheme is 'dead' by default. =) Just be careful because 1) closed issues can often get re-opened, 2) you often still need to update, comment on, interact with closed issues. ---------- nosy: +barry _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Fri Oct 21 16:30:39 2011 From: metatracker at psf.upfronthosting.co.za (anatoly techtonik) Date: Fri, 21 Oct 2011 14:30:39 +0000 Subject: [Tracker-discuss] [issue418] Change background color if an issue is closed In-Reply-To: <20111021101016.3b2a2122@limelight.wooz.org> Message-ID: anatoly techtonik added the comment: On Fri, Oct 21, 2011 at 5:10 PM, Barry Warsaw wrote: > >>anatoly techtonik added the comment: >> >>Warning or buttons won't help user concentrated on a textarea. You need to manipulate overall color scheme. >> >>Google got the idea right - closed issue is a dead issue. Compare http://code.google.com/p/python-patch/issues/detail?id=2 >>http://code.google.com/p/spyderlib/issues/detail?id=82 >> >>This can be challenging, as default Python scheme is 'dead' by default. =) > > Just be careful because 1) closed issues can often get re-opened, 2) you often > still need to update, comment on, interact with closed issues. There is nothing wrong if every 'status' has its own palette. It doesn't prevent you from updating closed issues - just gives a more prominent hint. -- anatoly t. _______________________________________________________ PSF Meta Tracker _______________________________________________________ From metatracker at psf.upfronthosting.co.za Sat Oct 22 12:31:42 2011 From: metatracker at psf.upfronthosting.co.za (Georg Brandl) Date: Sat, 22 Oct 2011 10:31:42 +0000 Subject: [Tracker-discuss] [issue418] Change background color if an issue is closed In-Reply-To: <1313400191.88.0.747529213931.issue418@psf.upfronthosting.co.za> Message-ID: <1319279502.38.0.421807320608.issue418@psf.upfronthosting.co.za> Georg Brandl added the comment: > Google got the idea right - closed issue is a dead issue. Compare > http://code.google.com/p/python-patch/issues/detail?id=2 > http://code.google.com/p/spyderlib/issues/detail?id=82 I had to switch back and forth three times to notice a difference. If you don't regularly work with that tracker, you won't take any note of the difference. ---------- nosy: +gbrandl _______________________________________________________ PSF Meta Tracker _______________________________________________________