Modify

Opened 14 years ago

Closed 14 years ago

#6943 closed defect (fixed)

Long macro calls produces empty mind maps

Reported by: Mikael Relbe Owned by: Martin Scharrer
Priority: normal Component: MindMapMacro
Severity: normal Keywords:
Cc: Mikael Relbe Trac Release: 0.12

Description

Using Trac 0.12, long macro calls produces empty mind maps (the flash plugin is working, but the canvas is empty). Comment: viewing files works as expected!

Attachments (0)

Change History (4)

comment:1 Changed 14 years ago by Mikael Relbe

Some more info about my installation.

System Information:

Trac0.12dev-r9443
Genshi0.6dev-r1096
Python2.6.4
SQLite3.5.9
jQuery1.4.2

Installed Plugins:

tracextracturl0.2.7032
tracmindmapmacro0.3.7097

comment:2 Changed 14 years ago by Mikael Relbe

More info:

The following long macro call (taken from MindMapMacro page)...

{{{
#!MindMap
width=60%,height=400px,flashvars="startCollapsedToLevel=4|someothervar=2"

TestMindMap
 *(position=right,color=#00FF00) A
  * a
   * b
   * e
  * c
 *(position=right,color=#00FF00) B
  * a
  * b
   * i
   * v
  * c
 *(position=left,color=#00FF00) C
  * a
  * b
  * c
}}}

...yields the following in the cache:

<map version="0.8.0">
    <node TEXT="TestMindMap" LINK="TestMindMap">
        <node COLOR="#00FF00" POSITION="right" LINK="A" TEXT="A">
            <node TEXT="a" LINK="a">
                <node TEXT="b"/>
                <node TEXT="e"/>
            </node>
            <node TEXT="c"/>
        </node>
        <node COLOR="#00FF00" POSITION="right" LINK="B" TEXT="B">
            <node TEXT="a"/>
            <node TEXT="b" LINK="b">
                <node TEXT="i"/>
                <node TEXT="v"/>
            </node>
            <node TEXT="c"/>
        </node>
        <node COLOR="#00FF00" POSITION="left" LINK="C" TEXT="C">
            <node TEXT="a"/>
            <node TEXT="b"/>
            <node TEXT="c"/>
        </node>
    </node>
</map>

This is correct, right? (Perhaps except for the produced links?)

Could the problem be somewhere around the HTML rendering?

comment:3 Changed 14 years ago by Martin Scharrer

Status: newassigned

Thanks for reporting the bug and for the extensive information coming with it. I will have a look on it as soon time permits.

comment:4 Changed 14 years ago by Martin Scharrer

Resolution: fixed
Status: assignedclosed

Should be fixed in [7998] now. Also [7999] removes the LINK attributes. Please reopen this ticket if this issue reappears.

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain Martin Scharrer.
The resolution will be deleted. Next status will be 'reopened'.

Add Comment


E-mail address and name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.