diff --git a/Makefile b/Makefile index d735c49..ad4535c 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ EMACS ?= emacs -LOAD_PATH = -L . -L ../emacs-box +LOAD_PATH = -L . -L ../ebox SOURCES = etaf-view.el etaf-component.el etaf-reactive.el etaf-context.el etaf-resource.el etaf-data.el etaf-renderer.el etaf-runtime.el etaf-behavior.el etaf-actions.el etaf-events.el etaf.el TESTS = tests/etaf-tests.el tests/etaf-resource-tests.el tests/etaf-data-tests.el diff --git a/README.md b/README.md index 1db3e13..297b9d0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # ETAF -ETAF is a small text-application framework built above the independent [Ebox](../emacs-box) layout and rendering engine. +ETAF is a small text-application framework built above the independent [Ebox](../ebox) layout and rendering engine. Its complete public model is: @@ -62,7 +62,7 @@ There is no separate `etaf-data` install: Data is a core ETAF capability. There During development, load the sibling Ebox checkout before ETAF: ```elisp -(add-to-list 'load-path "/path/to/github/emacs-box") +(add-to-list 'load-path "/path/to/github/ebox") (add-to-list 'load-path "/path/to/github/etaf") (require 'etaf) ``` diff --git a/README.zh-CN.md b/README.zh-CN.md index c4a2cb8..c18d773 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -1,6 +1,6 @@ # ETAF -ETAF 是构建在独立 [Ebox](../emacs-box) 布局与渲染引擎之上的小型文本应用框架。 +ETAF 是构建在独立 [Ebox](../ebox) 布局与渲染引擎之上的小型文本应用框架。 完整的公共模型是: @@ -62,7 +62,7 @@ Component(props, Scope) → View → Renderer → Ebox Node → Emacs buffer 开发时先把同级 Ebox 检出目录加入 `load-path`: ```elisp -(add-to-list 'load-path "/path/to/github/emacs-box") +(add-to-list 'load-path "/path/to/github/ebox") (add-to-list 'load-path "/path/to/github/etaf") (require 'etaf) ``` diff --git a/docs/user-guide.en.md b/docs/user-guide.en.md index 762f6c9..f45d6ca 100644 --- a/docs/user-guide.en.md +++ b/docs/user-guide.en.md @@ -7,7 +7,7 @@ ETAF builds text applications from one small vocabulary: `View`, `Component`, pr ETAF depends on the independent Ebox package. During development, put the core checkouts on `load-path` and load the one public ETAF entry: ```elisp -(add-to-list 'load-path "/path/to/github/emacs-box") +(add-to-list 'load-path "/path/to/github/ebox") (add-to-list 'load-path "/path/to/github/etaf") (require 'etaf) ``` diff --git a/docs/user-guide.zh.md b/docs/user-guide.zh.md index d543b83..c52b425 100644 --- a/docs/user-guide.zh.md +++ b/docs/user-guide.zh.md @@ -7,7 +7,7 @@ ETAF 使用一套很小的词汇构建文本应用:`View`、`Component`、prop ETAF 依赖独立的 Ebox 包。开发时把核心检出目录放入 `load-path`,然后只加载 ETAF 的公共入口: ```elisp -(add-to-list 'load-path "/path/to/github/emacs-box") +(add-to-list 'load-path "/path/to/github/ebox") (add-to-list 'load-path "/path/to/github/etaf") (require 'etaf) ```