Opened 19 years ago
Closed 15 years ago
#2501 closed enhancement (duplicate)
wiki editing area should allow a lot more depth
Reported by: | Owned by: | Jonas Borgström | |
---|---|---|---|
Priority: | low | Milestone: | |
Component: | wiki system | Version: | 0.9.2 |
Severity: | minor | Keywords: | patch |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
Limiting the wiki editing area to 40 lines is pretty minimal.
How about a max of 80 or 100?
(Using Trac on a 30" monitor means I'm wasting a lot of available screen space.)
Attachments (0)
Change History (6)
comment:1 by , 18 years ago
comment:2 by , 18 years ago
And for 0.11, this patch should do the equivalent:
-
wiki_edit.html
67 67 <div id="rows"> 68 68 <label for="editrows">Adjust edit area height:</label> 69 69 <select size="1" name="editrows" id="editrows" tabindex="43"> 70 <option py:for="rows in range( 8, 42, 4)" value="$rows"70 <option py:for="rows in range(10, 80, 10)" value="$rows" 71 71 selected="${str(rows) == edit_rows or None}"> 72 72 $rows 73 73 </option>
comment:3 by , 18 years ago
No, what would be really cool for wide screen would be side-by-side editing ;)
(see #2596, marked as duplicate of this one)
comment:4 by , 18 years ago
Keywords: | patch added |
---|
Hmm, that does look very cool. Time to purchase a larger screen.
follow-up: 6 comment:5 by , 18 years ago
Milestone: | → 2.0 |
---|
Hm, I should really do this wide-screen support one day, with synchronized scrolling of textarea and preview ;-)
comment:6 by , 15 years ago
Milestone: | 2.0 |
---|---|
Resolution: | → duplicate |
Status: | new → closed |
For 0.10, this patch should do the trick:
templates/wiki.cs
8, 42, 4?>