bug-reporting

Using class based generic view DetailView with a ModelForm reveals a bug - how to proceed?

本小妞迷上赌 提交于 2019-11-29 10:50:29
I've been impressed how rapidly a functional website can go together with generic views in the tutorials. Also, the workflow for form processing is nice. I used the ModelForm helper class to create a form from a model I made and was delighted to see that so much functionality came together. When I used the generic list_detail.object_detail I was disappointed that all that I could display were fields individually. I knew the ModelForm class contained information for rendering, so I wanted to use the ModelForm with a generic view. I was asking around on stackoverflow to get some direction, and

Getting data from the browser's console using javascript

时光总嘲笑我的痴心妄想 提交于 2019-11-29 07:37:00
I don't know if this has been asked before, but what i'd like to be able to do is get data from the error console within the browser itself(if it supports it) this would be for when a user sends off a bug report it'd pull up any errors related to pages at my website for things such as typos in code and other things that somehow managed to slip by. Also, in that regard is there a way to pass the errors from the console to a useable format? If this isn't possible, then i could just tell them to copy and paste what came up from the site itself. I thought of this right now as i was thinking about

Best Practices for Error Logging and/or reporting for iPhone

穿精又带淫゛_ 提交于 2019-11-28 15:18:32
When I do web development, I use a custom made logger that catches fatal errors and appends a trace to a file and displays a message to the user. I can occasionally glance to see if the file changed, which means, some user encountered an error and I can dig in to see what they encountered. I'd like something similar on the iphone, with some caveats: While developing, it should be trivial to reset the list of errors or turn off notification. While developing, the error messages should also show up in some obvious place, like on the screen on in the console Once deployed, errors should politely

Getting data from the browser's console using javascript

試著忘記壹切 提交于 2019-11-28 00:47:01
问题 I don't know if this has been asked before, but what i'd like to be able to do is get data from the error console within the browser itself(if it supports it) this would be for when a user sends off a bug report it'd pull up any errors related to pages at my website for things such as typos in code and other things that somehow managed to slip by. Also, in that regard is there a way to pass the errors from the console to a useable format? If this isn't possible, then i could just tell them to

How, as a programmer, to report bugs I find in core Gecko browser-engine behavior in Firefox

…衆ロ難τιáo~ 提交于 2019-11-28 00:04:07
When I’m programming a Web app and I run into a problem that only seems to happen in one browser, I know that a somewhat-essential step among my overall programming tasks as a “good citizen” is to stop coding for a bit and take time to report the bug in the right place—so it can get fixed and other Web developers (including me) hopefully won’t run into the same problem later. In such cases with Firefox, I understand enough to know when the cause of the programming problem I’m seeing is in the core “Gecko” browser-engine code in Firefox (rather than instead being, say, a bug in the Firefox user

How, as a programmer, to report bugs I find in core Gecko browser-engine behavior in Firefox

∥☆過路亽.° 提交于 2019-11-26 21:36:59
问题 When I’m programming a Web app and I run into a problem that only seems to happen in one browser, I know that a somewhat-essential step among my overall programming tasks as a “good citizen” is to stop coding for a bit and take time to report the bug in the right place—so it can get fixed and other Web developers (including me) hopefully won’t run into the same problem later. In such cases with Firefox, I understand enough to know when the cause of the programming problem I’m seeing is in the