witten
/
luminotes
Archived
1
0
Fork 0

Added "what's new" changelog link to thanks download page, and added links between pricing/download pages to each other.

This commit is contained in:
Dan Helfman 2008-09-27 01:33:00 -07:00
parent dd274cc3e7
commit 81d4e44450
5 changed files with 25 additions and 5 deletions

View File

@ -128,7 +128,7 @@ ol li {
.small_text { .small_text {
padding-top: 0.5em; padding-top: 0.5em;
font-size: 90%; font-size: 72%;
} }
.radio_label { .radio_label {

View File

@ -809,7 +809,7 @@ h1 {
} }
.small_text { .small_text {
font-size: 90%; font-size: 72%;
line-height: 140%; line-height: 140%;
font-weight: normal; font-weight: normal;
} }

View File

@ -9,6 +9,7 @@ class Download_page( Product_page ):
# for now, just assume there's a single download package # for now, just assume there's a single download package
download_button = download_products[ 0 ].get( "button" ) download_button = download_products[ 0 ].get( "button" )
news_url = u"http://luminotes.com/hg/luminotes/file/%s/NEWS" % VERSION
Product_page.__init__( Product_page.__init__(
self, self,
@ -176,6 +177,13 @@ class Download_page( Product_page ):
), ),
class_ = u"wide_center_area", class_ = u"wide_center_area",
), ),
Div(
u"Don't want to install anything? ",
A( u"Use Luminotes online", href = u"/pricing" ),
u".",
class_ = u"small_text",
separator = u"",
),
class_ = u"upgrade_area", class_ = u"upgrade_area",
), ),

View File

@ -4,6 +4,8 @@ from config.Version import VERSION
class Thanks_download_note( Span ): class Thanks_download_note( Span ):
def __init__( self, download_url ): def __init__( self, download_url ):
news_url = u"http://luminotes.com/hg/luminotes/file/%s/NEWS" % VERSION
Span.__init__( Span.__init__(
self, self,
H3( u"thank you" ), H3( u"thank you" ),
@ -15,9 +17,10 @@ class Thanks_download_note( Span ):
), ),
P( P(
A( u"Download Luminotes Desktop version %s" % VERSION, href = download_url ), A( u"Download Luminotes Desktop version %s" % VERSION, href = download_url ),
""" ),
and get started taking notes with your own personal wiki. P(
""", A( "What's new in this release", href = news_url, target = "_new" ),
class_ = u"small_text",
), ),
P( P(
u""" u"""

View File

@ -220,6 +220,15 @@ class Upgrade_page( Product_page ):
separator = "", separator = "",
class_ = u"yearly_link", class_ = u"yearly_link",
), ),
Div(
u"Don't want to take notes online? ",
A( u"Download Luminotes Desktop", href = u"/download" ),
u".",
class_ = u"small_text",
separator = u"",
),
class_ = u"upgrade_area", class_ = u"upgrade_area",
), ),