"html/template"
"sync"
"time"
+ "strings"
)
type Node struct {
}
func (n *Node) IsMenuCurrent(menuID string, inme *MenuEntry) bool {
+ s := n.Site
me := MenuEntry{Name: n.Title, URL: n.URL}
+
+ if strings.HasPrefix(me.URL, "/") {
+ // make it match the nodes
+ menuEntryURL := me.URL
+ menuEntryURL = helpers.URLizeAndPrep(menuEntryURL)
+ if !s.canonifyURLs {
+ menuEntryURL = helpers.AddContextRoot(string(s.BaseURL), menuEntryURL)
+ }
+ me.URL = menuEntryURL
+ }
+
if !me.IsSameResource(inme) {
return false
}