witten
/
luminotes
Archived
1
0
Fork 0

Reducing the number of links in the header by consolidating several into

one "support" link.
This commit is contained in:
Dan Helfman 2008-04-24 23:02:53 +00:00
parent 6124532500
commit 25d72da73e
6 changed files with 9 additions and 7 deletions

4
NEWS
View File

@ -1,3 +1,7 @@
1.3.5: April 24, 2008
* Reducing the number of links in the header by consolidating several into
one "support" link.
1.3.4: April 24, 2008
* Better support for RSS feeds of notebooks with unicode names.
* Now dynamically altering RSS feed link when notebook is renamed.

View File

@ -1,9 +1,6 @@
<h3>contact info</h3>
<p><b>Have a question?</b> First, please check the Luminotes <a
href="/notebooks/%s?note_id=new">faq</a> to see if it's answered there.</p>
<p><b>Still need some help?</b> Have a comment or feature request? I'd love
<p><b>Have a question?</b> Have a comment or feature request? I'd love
to hear from you! You can contact me directly at <a
href="mailto:support@luminotes.com" target="_top">support@luminotes.com</a>.
Please note that you may receive an automated email asking you to confirm your

View File

@ -21,6 +21,7 @@ class Initializer( object ):
( u"password reset.html", False ),
( u"advanced browser features.html", False ),
( u"supported browsers.html", False ),
( u"support.html", False ),
]
def __init__( self, database, nuke = False ):

View File

@ -22,6 +22,7 @@ class Updater( object ):
( u"password reset.html", False ),
( u"advanced browser features.html", False ),
( u"supported browsers.html", False ),
( u"support.html", False ),
]
def __init__( self, database ):

View File

@ -62,9 +62,7 @@ class Header( Div ):
( note_title == u"home" ) and Span( u"home", class_ = u"bold_link" ) or A( u"home", href = u"/" ), u" | ",
( note_title == u"tour" ) and Span( u"tour", class_ = u"bold_link" ) or A( u"tour", href = u"/tour" ), u" | ",
( user.username in ( None, u"anonymous" ) ) and Span( ( note_title == u"wiki" ) and Span( u"demo", class_ = u"bold_link" ) or A( u"demo", href = u"/users/demo" ), u" | " ) or None,
( note_title == u"faq" ) and Span( u"faq", class_ = u"bold_link" ) or A( u"faq", href = u"/faq" ), u" | ",
( note_title == u"guide" ) and Span( u"guide", class_ = u"bold_link" ) or A( u"guide", href = u"/guide" ), u" | ",
( note_title == u"contact" ) and Span( u"contact", class_ = u"bold_link" ) or A( u"contact", href = u"/contact_info" ), u" | ",
( note_title == u"support" ) and Span( u"support", class_ = u"bold_link" ) or A( u"support", href = u"/support" ), u" | ",
( note_title == u"team" ) and Span( u"team", class_ = u"bold_link" ) or A( u"team", href = u"/meet_the_team" ), u" | ",
( note_title == u"blog" ) and Span( u"blog", class_ = u"bold_link" ) or A( u"blog", href = u"/blog" ), u" | ",
( note_title == u"privacy" ) and Span( u"privacy", class_ = u"bold_link" ) or A( u"privacy", href = u"/privacy" ),

View File

@ -23,6 +23,7 @@ class Product_page( Page ):
u"Copyright &copy;2008 Luminotes", u" | ",
A( u"download", href = u"/download" ), u" | ",
A( u"contact", href = u"/contact_info" ), u" | ",
A( u"support", href = u"/support" ), u" | ",
A( u"team", href = u"/meet_the_team" ), u" | ",
A( u"blog", href = u"/blog" ), u" | ",
A( u"privacy", href = u"/privacy" ),