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
themes in a subsequent release.
* 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
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

View File

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