remove comments and update js

This commit is contained in:
Henrique Dias
2015-09-17 14:21:08 +01:00
parent 8f31f5896c
commit f2362a6dcf
4 changed files with 8 additions and 140 deletions

View File

@@ -145,107 +145,4 @@ func rawToPretty(config interface{}, parent *frontmatter) interface{} {
settings = append(settings, objects...)
return settings
/*
objects := make([]interface{}, len(objectsNames))
for index := range objectsNames {
c := new(frontmatter)
c.Type = "object"
c.Title = objectsNames[index]
if parent.Name == "" {
c.Name = c.Title
} else {
c.Name = parent.Name + "[" + c.Name + "]"
}
c.Content = rawToPretty(config.(map[string]interface{})[c.Title], c)
log.Print("\n\nObject Name:\n")
log.Print(c.Name)
objects[index] = c
}
arrays := make([]interface{}, len(arraysNames))
for index := range arraysNames {
c := new(frontmatter)
c.Type = "array"
c.Title = arraysNames[index]
c.Name = parent.Name + c.Title + "[]"
c.Content = rawToPretty(config.(map[string]interface{})[c.Title], c)
log.Print("\n\nArray Name:\n")
log.Print(c.Name)
arrays[index] = c
}
/*strings := make([]interface{}, len(stringsNames))*/
/*
for index := range stringsNames {
c := new(frontmatter)
c.Title = stringsNames[index]
c.Name = giveName(c.Title, parent)
log.Print(c.Name)
}
/* names := append(stringsNames, mapsNames...)
settings := make([]interface{}, len(names))
for index := range names {
c := new(frontmatter)
c.Name = names[index]
c.Parent = parent
i := config.(map[string]interface{})[names[index]]
if utils.IsMap(i) {
c.Type = "object"
c.Content = rawToPretty(i, c.Name, "object")
} else if utils.IsSlice(i) {
c.Type = "array"
c.Content = rawToPretty(i, c.Name, "array")
} else {
c.Type = "text"
c.Content = i
}
settings[index] = c
}
*/
// settings := append(strings, slices..., maps...)
/*if utils.IsSlice(config) {
settings := make([]interface{}, len(config.([]interface{})))
// TODO: improve this function
for index, element := range config.([]interface{}) {
c := new(frontmatter)
c.Name = master
c.Parent = parent
if utils.IsMap(element) {
c.Type = "object"
c.Content = rawToPretty(element, c.Name, "object")
} else if utils.IsSlice(element) {
c.Type = "array"
c.Content = rawToPretty(element, c.Name, "array")
} else {
c.Type = "text"
c.Content = element
}
settings[index] = c
}
return settings
}
*/
}