Opened 18 years ago

Closed 16 years ago

#2437 closed enhancement (fixed)

[patch] Quick Copy to pastebin

Reported by: dummy@… Owned by: Erik Karulf
Component: Uncategorized Version: dev
Severity: normal Keywords: pastebin, sprintsept14, sprintdec1
Cc: erik@… Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: yes
Easy pickings: no UI/UX: no

Description

Hi,

I read that there is an "little, easy improvements" open. Since the owner was 'just starting' I tried it myself and thought that it wasn't really difficult to solve.

Regards,
Dirk

Attachments (5)

debug-pastebin.patch (1.1 KB ) - added by dummy@… 18 years ago.
Quick Copy to pastebin
django_dpaste.diff (1.6 KB ) - added by Simon G. <dev@…> 17 years ago.
django_dpaste-2.diff (3.1 KB ) - added by Erik Karulf 16 years ago.
Updated to include some extra environment information
django-dpaste-prettified.diff (3.4 KB ) - added by xian 16 years ago.
django-dpaste-prettified-2.diff (4.5 KB ) - added by Erik Karulf 16 years ago.
Updated the prettified code per some recommendations from fellow sprinters

Download all attachments as: .zip

Change History (21)

by dummy@…, 18 years ago

Attachment: debug-pastebin.patch added

Quick Copy to pastebin

comment:1 by Adrian Holovaty, 18 years ago

Very cool. I think we'll set up a pastebin on djangoproject.com, and point this patch at it, rather than relying on pastebin.com, because pastebin.com has been flaky lately.

comment:2 by anonymous, 18 years ago

Summary: Quick Copy to pastebin[patch] Quick Copy to pastebin

comment:3 by Chris Rose <chris@…>, 18 years ago

Its worth noting that the source for pastebin.com is GPL and can be obtained from http://pastebin.com/pastebin.tar.gz, however I suspect any tool used on the djangoproject.com site will be developed with Django :p

comment:4 by Marek Kubica, 18 years ago

The pastebin at paste.e-scribe.com is in fact written in Python using Django (source available) and highlights all kinds of Django-related code like Python, Python-Transcripts (interactive Python) and Django-templates. Quite nice.

comment:5 by Simon G. <dev@…>, 17 years ago

Component: Admin interfaceUncategorized
Keywords: pastebin added
Owner: changed from Adrian Holovaty to Jacob
Triage Stage: UnreviewedAccepted

This has been in the Quick Easy improvements page in the wiki for years.

in reply to:  5 comment:6 by Marc Fargas <telenieko@…>, 17 years ago

Replying to Simon G. <dev@simon.net.nz>:

This has been in the Quick Easy improvements page in the wiki for years.

And it's on it's way to be "Accepted" for years! :P
If the patch is ok, why isn't it "Ready for checkin" ?

On the other side, I'd rather place a big box telling that pressing the button you're about to publish your traceback on a public site ;)

comment:7 by Adrian Holovaty, 17 years ago

The reason we're waiting on this is because the patch uses pastebin.com, whereas it should use Django's custom pastebin (or maybe dpaste). Django doesn't have a custom pastebin on djangoproject.com, but we might be able to use dpaste.com if Paul B. is willing to commit to maintaining it.

comment:8 by Paul Bx <pb@…>, 17 years ago

Sorry for the lag. Simon G and I have now exchanged email about this -- consider me commited.

by Simon G. <dev@…>, 17 years ago

Attachment: django_dpaste.diff added

comment:9 by Simon G. <dev@…>, 17 years ago

I've attached a patch which modifies the original from dummy (at) habmalnefrage.de to use dpaste. Note that this also escapes a few other values in debug.py that should be escaped.

@ Paul Bx: I've added a a "source" parameter which you can use to track stats.

comment:10 by Fredrik Lundh <fredrik@…>, 17 years ago

Keywords: sprintsept14 added
Triage Stage: AcceptedReady for checkin

comment:11 by Malcolm Tredinnick, 17 years ago

Patch needs improvement: set
Triage Stage: Ready for checkinAccepted

I was this close to committing this, but then I tried it out first. Unfortunately, it's not very visually appealing. On Firefox, at least, the button gets a bit lost in amongst all the traceback text.

We also probably need a short (one sentence?) description of what will happen when you push the button. Something like "this will send the traceback to a public website so you can share it with others. You will have a chance to confirm the paste before it is made public" -- but use better wording. I agree with Marc Fargas that some explanation is probably necessary.

However, making it look less crushed together is the real priority here. We always win "prettiest debug page" at the country fair and adding this would hurt our chances. Apart from that, it's good.

comment:12 by Erik Karulf, 16 years ago

Cc: erik@… added
Keywords: sprintnov29 added
Owner: changed from nobody to Erik Karulf
Status: newassigned

Assuming Fredrik/Simon doesn't mind, I'll pretty this up at the November 29th sprint.

by Erik Karulf, 16 years ago

Attachment: django_dpaste-2.diff added

Updated to include some extra environment information

comment:13 by Erik Karulf, 16 years ago

Keywords: sprintdec1 added; sprintnov29 removed

The patch also removes some extraneous text (per Jacob's recommended)

by xian, 16 years ago

comment:14 by xian, 16 years ago

django-dpaste-prettified.diff is up and it prettifies everything and fixes some usability/extra code bits in the earlier patches.

comment:15 by Jacob, 16 years ago

Triage Stage: AcceptedReady for checkin

by Erik Karulf, 16 years ago

Updated the prettified code per some recommendations from fellow sprinters

comment:16 by Malcolm Tredinnick, 16 years ago

Resolution: fixed
Status: assignedclosed

(In [6820]) Fixed #2437, #6091 -- Added "paste to dpaste" button to debug page. Thanks,
Christian Metts, Erik Karulf, Simon Greenhill, dummy@….

Note: See TracTickets for help on using tickets.
Back to Top