|
|
|
|
58
|
func (t *TemplateBundle) importTemplateFileContentsForCog(templatesPath string, prefixName string, templateFileExtension string) error {
|
58
|
func (t *TemplateBundle) importTemplateFileContentsForCog(templatesPath string, prefixName string, templateFileExtension string) error {
|
59
|
|
59
|
|
60
|
templateDirectory := filepath.Clean(templatesPath)
|
60
|
templateDirectory := filepath.Clean(templatesPath)
|
61
|
- RegisterStaticAssetsSearchPath(strings.Replace(templateDirectory, "/"+"templates", "", -1))
|
|
|
|
|
61
|
+ RegisterStaticAssetsSearchPath(strings.Replace(templateDirectory, string(os.PathSeparator)+"templates", "", -1))
|
62
|
//println("td: ", templateDirectory)
|
62
|
//println("td: ", templateDirectory)
|
63
|
if err := filepath.Walk(templateDirectory, func(path string, info os.FileInfo, err error) error {
|
63
|
if err := filepath.Walk(templateDirectory, func(path string, info os.FileInfo, err error) error {
|
64
|
if strings.HasSuffix(path, templateFileExtension) {
|
64
|
if strings.HasSuffix(path, templateFileExtension) {
|