witten
/
luminotes
Archived
1
0
Fork 0

Moved search field up above "notes" heading. Changed "quick link" to "note link".

This commit is contained in:
Dan Helfman 2009-04-27 15:38:28 -07:00
parent ada0ce8319
commit 2d164ece5a
2 changed files with 8 additions and 7 deletions

3
NEWS
View File

@ -2,7 +2,8 @@
* Rewrote the way that the toolbar is implemented, laying the groundwork for * Rewrote the way that the toolbar is implemented, laying the groundwork for
themes in a subsequent release. themes in a subsequent release.
* Changed some of the "+" buttons to be more descriptive: "+ notebook" and * Changed some of the "+" buttons to be more descriptive: "+ notebook" and
"+ quick link". "+ note link".
* Moved search field up above "notes" heading.
* Fixed a Firefox bug in which removing some bold text and then typing new * Fixed a Firefox bug in which removing some bold text and then typing new
text would make the new text bold. Now, if you completely remove some bold text would make the new text bold. Now, if you completely remove some bold
text (rather than just a portion of it), any new text that you type will be text (rather than just a portion of it), any new text that you type will be

View File

@ -20,6 +20,10 @@ class Note_tree_area( Div ):
Div.__init__( Div.__init__(
self, self,
Div( Div(
Div(
Search_form(),
class_ = u"link_area_item",
),
H4( H4(
forum_tag and u"posts" or u"notes", forum_tag and u"posts" or u"notes",
Span( Span(
@ -36,10 +40,6 @@ class Note_tree_area( Div ):
) or None, ) or None,
id = u"note_tree_area_title", id = u"note_tree_area_title",
) or None, ) or None,
Div(
Search_form(),
class_ = u"link_area_item",
),
( not forum_tag ) and self.make_tree( ( not forum_tag ) and self.make_tree(
[ self.make_item( [ self.make_item(
title = note.title, title = note.title,
@ -55,8 +55,8 @@ class Note_tree_area( Div ):
type = u"button", type = u"button",
class_ = u"note_button", class_ = u"note_button",
id = u"new_note_tree_link_button", id = u"new_note_tree_link_button",
value = u"+ quick link", value = u"+ note link",
title = u"Add one of your notes to this note tree.", title = u"Add one of your notes to this list.",
), ),
Span( id = u"new_note_tree_link_area" ), Span( id = u"new_note_tree_link_area" ),
) or None, ) or None,