-# Today Web Framework
\ No newline at end of file
+# Today Web Framework
+
+Today is a web framework for making server-side rendered websites in Go.
+
+- Start with a static file website.
+- Add dynamic content where you need it.
+- Encapsulate and distribute repeated behavior.
+
+## Installation and Requirements
+
+`go get git.earlybird.gay/today@latest`
"sync"
"sync/atomic"
- "git.earlybird.gay/today-engine/include"
- "git.earlybird.gay/today-engine/page"
+ "git.earlybird.gay/today/include"
+ "git.earlybird.gay/today/web/page"
)
func init() {
+++ /dev/null
-module git.earlybird.gay/today-app
-
-go 1.22.4
-
-require git.earlybird.gay/today-engine v0.0.0-20240911045033-55d49a64189f
+++ /dev/null
-git.earlybird.gay/today-engine v0.0.0-20240911045033-55d49a64189f h1:vyQTIzkDUvqO3coZArw+jiERQ0xzLVjaZx6n6lIpOxQ=
-git.earlybird.gay/today-engine v0.0.0-20240911045033-55d49a64189f/go.mod h1:9w8xpAPxs1QvT//ph/jgAuRIoWyqdi2QEifwsKWOKns=
--- /dev/null
+module git.earlybird.gay/today
+
+go 1.22.4
+
+require (
+ git.earlybird.gay/today-app v0.0.0-20241023050205-d1c3413a0e12
+ golang.org/x/text v0.19.0
+)
+
+require git.earlybird.gay/today-engine v0.0.0-20240911045033-55d49a64189f // indirect
--- /dev/null
+git.earlybird.gay/today-app v0.0.0-20241023050205-d1c3413a0e12 h1:I4PpIONymTb+ti3at+5+Rixs7uApzVWpY9YoGP10b0s=
+git.earlybird.gay/today-app v0.0.0-20241023050205-d1c3413a0e12/go.mod h1:ua0E6veNXtTRAXXJPsJP4hzQohFW+0Ogy6PZoX7pHCU=
+git.earlybird.gay/today-engine v0.0.0-20240911045033-55d49a64189f h1:vyQTIzkDUvqO3coZArw+jiERQ0xzLVjaZx6n6lIpOxQ=
+git.earlybird.gay/today-engine v0.0.0-20240911045033-55d49a64189f/go.mod h1:9w8xpAPxs1QvT//ph/jgAuRIoWyqdi2QEifwsKWOKns=
+golang.org/x/text v0.19.0 h1:kTxAhCbGbxhK0IwgSKiMO5awPoDQ0RpfiVYBfK860YM=
+golang.org/x/text v0.19.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY=
## Installation
-go get git.earlybird.gay/today-engine@latest
+go get git.earlybird.gay/today/web@latest
## Why?
"text/template"
tapp "git.earlybird.gay/today-app/app"
- "git.earlybird.gay/today-engine/page"
- "git.earlybird.gay/today-engine/part"
- "git.earlybird.gay/today-engine/render"
- stdpart "git.earlybird.gay/today-engine/standard/part"
+ "git.earlybird.gay/today/web/page"
+ "git.earlybird.gay/today/web/part"
+ "git.earlybird.gay/today/web/render"
+ stdpart "git.earlybird.gay/today/web/standard/part"
)
var Thing = part.New("test-thing", "test_thing.html",
package component
import (
- "git.earlybird.gay/today-engine/include"
- "git.earlybird.gay/today-engine/internal/compile"
+ "git.earlybird.gay/today/include"
+ "git.earlybird.gay/today/web/internal/compile"
)
type Component struct {
// Assign basic parameters
p.name = name
p.fileName = source
- p.source = include.File(source, "git.earlybird.gay/today-engine/component")
+ p.source = include.File(source, "git.earlybird.gay/today/web/component")
// Run optional arguments
for _, of := range optional {
of(p)
+++ /dev/null
-module git.earlybird.gay/today-engine
-
-go 1.22.4
-
-require (
- git.earlybird.gay/today-app v0.0.0-20240813010007-675f08ae35b1
- golang.org/x/text v0.17.0
-)
+++ /dev/null
-git.earlybird.gay/today-app v0.0.0-20240813010007-675f08ae35b1 h1:Fbz2uRIWK6CR+jcNN0KQrna4u/kYZccn2obcla7dPfQ=
-git.earlybird.gay/today-app v0.0.0-20240813010007-675f08ae35b1/go.mod h1:AxsoC2ERffYriW60C1vdV34ew6JPKxllG9mHOTs128I=
-golang.org/x/text v0.17.0 h1:XtiM5bkSOt+ewxlOE/aE/AKEHibwj/6gvWMl9Rsh0Qc=
-golang.org/x/text v0.17.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY=
// Copyright (C) 2024 early (LGPL)
package htmltree
-import "git.earlybird.gay/today-engine/internal/html"
+import "git.earlybird.gay/today/web/internal/html"
func GetAttr(n *html.Node, name string) string {
for _, attr := range n.Attr {
"regexp"
"strings"
- "git.earlybird.gay/today-engine/internal/html"
+ "git.earlybird.gay/today/web/internal/html"
)
func Walk(root *html.Node, f func(*html.Node) (bool, error)) error {
"regexp"
"strings"
- "git.earlybird.gay/today-engine/htmltree"
- "git.earlybird.gay/today-engine/include"
- "git.earlybird.gay/today-engine/internal/html"
- "git.earlybird.gay/today-engine/render"
+ "git.earlybird.gay/today/include"
+ "git.earlybird.gay/today/web/htmltree"
+ "git.earlybird.gay/today/web/internal/html"
+ "git.earlybird.gay/today/web/render"
)
type Source interface {
import (
"errors"
- "git.earlybird.gay/today-engine/htmltree"
- "git.earlybird.gay/today-engine/internal/html"
- "git.earlybird.gay/today-engine/internal/html/atom"
+ "git.earlybird.gay/today/web/htmltree"
+ "git.earlybird.gay/today/web/internal/html"
+ "git.earlybird.gay/today/web/internal/html/atom"
)
var ErrBadComponentFormat = errors.New("web components must either be a script or a template and script")
"reflect"
"strings"
- "git.earlybird.gay/today-engine/render"
+ "git.earlybird.gay/today/web/render"
)
type computeNode struct {
"slices"
"strings"
- "git.earlybird.gay/today-engine/htmltree"
- "git.earlybird.gay/today-engine/internal/html"
+ "git.earlybird.gay/today/web/htmltree"
+ "git.earlybird.gay/today/web/internal/html"
)
const (
// whether atom.H1 < atom.H2 may also change. The codes are not guaranteed to
// be dense. The only guarantees are that e.g. looking up "div" will yield
// atom.Div, calling atom.Div.String will return "div", and atom.Div != 0.
-package atom // import "git.earlybird.gay/today-engine/internal/html/atom"
+package atom // import "git.earlybird.gay/today/web/internal/html/atom"
// Atom is an integer code for a string. The zero value maps to "".
type Atom uint32
//
// The mapping from encoding labels to encodings is defined at
// https://encoding.spec.whatwg.org/.
-package charset // import "git.earlybird.gay/today-engine/internal/html/charset"
+package charset // import "git.earlybird.gay/today/web/internal/html/charset"
import (
"bytes"
"strings"
"unicode/utf8"
- "git.earlybird.gay/today-engine/internal/html"
+ "git.earlybird.gay/today/web/internal/html"
"golang.org/x/text/encoding"
"golang.org/x/text/encoding/charmap"
"golang.org/x/text/encoding/htmlindex"
Token.String) in order for those trust decisions to hold, as the process of
tokenization or parsing may alter the content.
*/
-package html // import "git.earlybird.gay/today-engine/internal/html"
+package html // import "git.earlybird.gay/today/web/internal/html"
// The tokenization algorithm implemented by this package is not a line-by-line
// transliteration of the relatively verbose state-machine in the WHATWG
"log"
"strings"
- "git.earlybird.gay/today-engine/internal/html"
+ "git.earlybird.gay/today/web/internal/html"
)
func ExampleParse() {
package html
import (
- "git.earlybird.gay/today-engine/internal/html/atom"
+ "git.earlybird.gay/today/web/internal/html/atom"
)
// A NodeType is the type of a Node.
"io"
"strings"
- a "git.earlybird.gay/today-engine/internal/html/atom"
+ a "git.earlybird.gay/today/web/internal/html/atom"
)
// A parser implements the HTML5 parsing algorithm:
"strings"
"testing"
- "git.earlybird.gay/today-engine/internal/html/atom"
+ "git.earlybird.gay/today/web/internal/html/atom"
)
type testAttrs struct {
"strconv"
"strings"
- "git.earlybird.gay/today-engine/internal/html/atom"
+ "git.earlybird.gay/today/web/internal/html/atom"
)
// A TokenType is the type of a Token.
"path/filepath"
"strings"
- "git.earlybird.gay/today-engine/htmltree"
- "git.earlybird.gay/today-engine/include"
- "git.earlybird.gay/today-engine/internal/compile"
- "git.earlybird.gay/today-engine/part"
- "git.earlybird.gay/today-engine/render"
+ "git.earlybird.gay/today/include"
+ "git.earlybird.gay/today/web/htmltree"
+ "git.earlybird.gay/today/web/internal/compile"
+ "git.earlybird.gay/today/web/part"
+ "git.earlybird.gay/today/web/render"
)
type Page struct {
func Source(source string) Config {
return func(p *Page) {
- p.source = include.File(source, "git.earlybird.gay/today-engine/part")
+ p.source = include.File(source, "git.earlybird.gay/today/web/part")
}
}
p := new(Page)
// Assign basic parameters
p.name = name
- p.source = include.File(source, "git.earlybird.gay/today-engine/page")
+ p.source = include.File(source, "git.earlybird.gay/today/web/page")
p.onLoad = func(ctx context.Context, d render.Data) error {
return nil
}
import (
"net/http"
- "git.earlybird.gay/today-engine/render"
+ "git.earlybird.gay/today/web/render"
)
type RootData struct {
"context"
"text/template"
- "git.earlybird.gay/today-engine/include"
- "git.earlybird.gay/today-engine/internal/compile"
- "git.earlybird.gay/today-engine/render"
+ "git.earlybird.gay/today/include"
+ "git.earlybird.gay/today/web/internal/compile"
+ "git.earlybird.gay/today/web/render"
)
type Part struct {
func Source(source string) Config {
return func(p *Part) {
- p.source = include.File(source, "git.earlybird.gay/today-engine/part")
+ p.source = include.File(source, "git.earlybird.gay/today/web/part")
}
}
p := new(Part)
// Assign basic parameters
p.name = name
- p.source = include.File(source, "git.earlybird.gay/today-engine/part")
+ p.source = include.File(source, "git.earlybird.gay/today/web/part")
p.onLoad = func(ctx context.Context, data render.Data) error {
return nil
}
"net/http"
"net/url"
- "git.earlybird.gay/today-engine/part"
- "git.earlybird.gay/today-engine/render"
+ "git.earlybird.gay/today/web/part"
+ "git.earlybird.gay/today/web/render"
)
var (