Opened 12 years ago

Closed 11 years ago

Last modified 11 years ago

#18789 closed Bug (fixed)

Too many method arguments equals poor readability for small resolutions.

Reported by: neixetis@… Owned by: nobody
Component: Documentation Version: 1.4
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Lets just suppose you use 1024x768 (it is my r61i max:) ) resolution.

Check for example this doc site:
https://docs.djangoproject.com/en/1.4/topics/http/file-uploads/
Class FileUploadHandler, method handle_raw_input (at the bottom of the site):

FileUploadHandler.handle_raw_input(self, input_data, META, content_length, boundary, encoding)

In that case the last encoding parameter is not visible to me as it hides in the green background.

Attachments (1)

django18789.png (54.8 KB ) - added by Jonas Obrist 12 years ago.
screenshot illustrating the issue

Download all attachments as: .zip

Change History (4)

comment:1 by gosia, 12 years ago

Triage Stage: UnreviewedAccepted
Type: UncategorizedBug

Fast checked that turning off ".literal {white-space: nowrap;}" (base.css) in chrome fixed the problem (windows 7, google chrome 21.0.1180.83 m).

by Jonas Obrist, 12 years ago

Attachment: django18789.png added

screenshot illustrating the issue

comment:2 by Tim Graham <timograham@…>, 11 years ago

Resolution: fixed
Status: newclosed

In efa300088f4bdb7224d5f1200f6ff4dd526c47a7:

Fixed #18789 - Fixed some text wrap issues with methods in the docs.

Thanks neixetis@ for the report.

comment:3 by Tim Graham <timograham@…>, 11 years ago

In 88fb10499c3c89f7526ec77954a2548b0c618c63/djangoproject.com:

Fixed #18789 - Fixed some text wrap issues with methods in the docs.

Thanks neixetis@ for the report.

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