temboz - Check-in [460]
Not logged in
[Honeypot]  [Browse]  [Help]  [Home]  [Login]  [Reports
[Search]  [Ticket]  [Timeline]  [Wiki
  [Patchset]  [Tagging/Branching
Check-in Number: 460
Date: 2010-Jan-16 18:48:49 (local)
2010-Jan-17 02:48:49 (UTC)
User:majid
Branch:
Comment: #99 fix excessively aggressive balancing that would not permit nested block-level tags
Tickets:
#99 blockquotes are being eliminated by the HTML tag balancer
Inspections:
Files:
temboz/normalize.py      1.59 -> 1.60     1 inserted, 1 deleted
temboz/pages/temboz_css.tmpl      1.30 -> 1.31     7 inserted, 0 deleted

temboz/normalize.py 1.59 -> 1.60
--- /tmp/T0Suaak3	Mon Sep  6 18:15:50 2010
+++ /tmp/T1Tuaak3	Mon Sep  6 18:15:50 2010
@@ -329,7 +329,7 @@
       else:
         continue
 
-    if element in block and stack:
+    if element in block and stack and stack[-1] not in block:
       # close previous block if any
       for i in xrange(len(stack) - 1, -1, -1):
         if stack[i] in block: break

temboz/pages/temboz_css.tmpl 1.30 -> 1.31
--- /tmp/T0_uaOk3	Mon Sep  6 18:15:50 2010
+++ /tmp/T1avaOk3	Mon Sep  6 18:15:50 2010
@@ -287,3 +287,10 @@
 }
 .ui-tabs-hide {display: none}
 .ui-tabs-nav ul a:hover {color: #f00 !important}
+blockquote {
+  border-left-width: 6pt;
+  border-left-color: #ccc;
+  border-left-style: solid;
+  margin: 1em;
+  padding-left: 6pt;
+}