Earlier quoted context omitted.
I always thought that fields are generally poor for that - html is pretty good and has ways to structure all those things, and they can be extracted and styled for different clients.
HTML as a data entry format is error prone, and HTML as a cross-platform data source requires a lot of tooling and unreliability compared with a properly-structured field-driven JSON API
Ponzu – An open-source HTTP server framework and CMS in Go
21–30 of 43 posts
Re: Ponzu – An open-source HTTP server framework and CMS in Go
#22Earlier quoted context omitted.
You can still do that with most field oriented CMS packages. The field interface is generally admin facing only. The user facing html templates have variables that map back to those fields. So, all the expression of HTML, but with the actual data in fields. Handy for things like addresses. You can render a map or just text, or both. The fact that it's structured data would allow for proximity searching. Where each "p…
It generally limits you though, eg one video per article etc.
Others allow content relationships, where videos are their own object, set not to be published alone, but embeddable into, say posts.
Re: Ponzu – An open-source HTTP server framework and CMS in Go
#23If you get a chance to try it out and have questions or issues, I'm in the #ponzu channel in the Gopher's slack org: https://invite.slack.golangbridge.org/ feel free to ping me there or open an issue on Github.
Steve
Re: Ponzu – An open-source HTTP server framework and CMS in Go
#24> Automatic & Free SSL/TLS A couple of years ago, I wouldn't have believed we would be seeing essentially zeroconf TLS/PKI in software anytime soon. Letsencrypt, the "encrypt everything" movement, and people like Steve, Ponzu's author, have improved internet security tremendously at a time when it is critically needed.
Re: Ponzu – An open-source HTTP server framework and CMS in Go
#25in terms of this project, excellent, i actually wrote a lot of web apps using golang and found the main deficiency to be the templates, tried amber, ace, and even the default mustache/handlebars, but still think jade and haml beat those hands down. i did see a few ports of jade, but wqsnt certain about the stability or completeness of it.
Re: Ponzu – An open-source HTTP server framework and CMS in Go
#26Does look pretty slick, but I imagine the flat nature of the content items will be limiting. In the example, song has an artist. But artist is a string vs a related content item. I can't tell if that's an MVP type decision and will change later, or a design decision that won't change in the future.
The reference is stored as a string (or []string if you opt for a reference.SelectRepeater input func), but the value stored as a reference is actually a URL path to the content as it would be accessed via the Content API. This becomes very powerful when you enable HTTP/2 Server Push, and declare the referenced content to be pushed when it's parent content is requested.
The underlying data looks like this:
Song
id: 1
title: "Take Me Home, Country Roads"
artist: "/api/content?type=Artist&id=2"
If you enable H2 Server Push by implementing the Pushable interface (add a Push method that returns a []string of the JSON field names to push), the server will know to make a response for the referenced Artist field and push it down to the client when the parent Song is requested.
Re: Ponzu – An open-source HTTP server framework and CMS in Go
#27Does look pretty slick, but I imagine the flat nature of the content items will be limiting. In the example, song has an artist. But artist is a string vs a related content item. I can't tell if that's an MVP type decision and will change later, or a design decision that won't change in the future.
Hi - you can make a relationship using the built in addon package, github.com/bosssauce/reference The reference is stored as a string (or []string if you opt for a reference.SelectRepeater input func), but the value stored as a reference is actually a URL path to the content as it would be accessed via the Content API. This becomes very powerful when you enable HTTP/2 Server Push, and declare the referenced content t…
Re: Ponzu – An open-source HTTP server framework and CMS in Go
#28Overall A+ to Ponzu. I'm on my 6th ponzu site now, still love it.
Re: Ponzu – An open-source HTTP server framework and CMS in Go
#29Earlier quoted context omitted.
Hi - you can make a relationship using the built in addon package, github.com/bosssauce/reference The reference is stored as a string (or []string if you opt for a reference.SelectRepeater input func), but the value stored as a reference is actually a URL path to the content as it would be accessed via the Content API. This becomes very powerful when you enable HTTP/2 Server Push, and declare the referenced content t…
Ahh, okay. That seems straightforward. Might be good to reference that in the main documentation.
Re: Ponzu – An open-source HTTP server framework and CMS in Go
#30Couldn't see any authentication system in Readme, Is there any auth mechanism that can be used for API usage?