190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
|
if {$complete_entpath_parts == ""} {
set entpath [join [join [list entity $entpath_parts]] /]
} else {
set entpath [join $complete_entpath_parts /]
}
append ret " <td><a href=\"/$entpath\">$item</a></td>\n"
}
append ret " </tr>\n"
}
return [string range $ret 0 end-1]
}
|
|
|
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
|
if {$complete_entpath_parts == ""} {
set entpath [join [join [list entity $entpath_parts]] /]
} else {
set entpath [join $complete_entpath_parts /]
}
append ret " <td><a href=\"/$entpath/\">$item</a></td>\n"
}
append ret " </tr>\n"
}
return [string range $ret 0 end-1]
}
|