witten
/
luminotes
Archived
1
0
Fork 0

Fixed a Luminotes Desktop Internet Explorer bug in which note links within

the "download as html" document pointed to notes in the local Luminotes
installation instead of notes within the stand-alone document.
This commit is contained in:
Dan Helfman 2008-09-08 13:56:19 -07:00
parent 49e76c6f82
commit 5fbd059258
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ from Tags import Html, Head, Title, Style, Meta, Body, H1, Div, Span, Hr, A
class Html_file( Html ):
NOTE_LINK_PATTERN = re.compile( u'<a\s+href="\/notebooks\/[^>]+[?&]note_id=([a-z0-9]*)"[^>]*>', re.IGNORECASE )
NOTE_LINK_PATTERN = re.compile( u'<a\s+href="[^"]*\/notebooks\/[^>]+[?&]note_id=([a-z0-9]*)"[^>]*>', re.IGNORECASE )
IMAGE_PATTERN = re.compile( u'<img [^>]* ?/?>', re.IGNORECASE )
def __init__( self, notebook_name, notes ):