Skip to content
This repository has been archived by the owner on Oct 9, 2022. It is now read-only.

Commit

Permalink
point demo links to new repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanmdavidson committed Apr 24, 2020
1 parent f04aca3 commit ac6fdf9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion database.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ Kweb doesn't require you to use Shoebox. You're free to use any database, eithe
Working Example
---------------

For a more complete example of using Shoebox for persistent storage see the `to do demo <https://github.com/kwebio/kweb-core/tree/master/src/main/kotlin/kweb/demos/todo>`_.
For a more complete example of using Shoebox for persistent storage see the `to do demo <https://github.com/kwebio/kweb-demos/tree/master/todoList>`_.
6 changes: 3 additions & 3 deletions faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Kweb to, as there are also very important differences:
Is there a larger working example?
----------------------------------

Yes, here is a simple `todo list <https://github.com/kwebio/kweb-core/tree/master/src/main/kotlin/kweb/demos/todo>`_
Yes, here is a simple `todo list <https://github.com/kwebio/kweb-demos/tree/master/todoList>`_
implementation which demonstrates many of Kweb's features.

You can find a copy of this demo running here: http://demo.kweb.io:7659/
Expand All @@ -58,7 +58,7 @@ how they synchronize in realtime.
How do I enable HTTPS?
----------------------

Very easily, please see `this example <https://github.com/kwebio/kweb-core/blob/master/src/main/kotlin/kweb/demos/https/HttpsApp.kt>`_.
Very easily, please see `this example <https://github.com/kwebio/kweb-demos/blob/master/https/src/HttpsApp.kt>`_.

Can I embed Kweb within an Android app?
---------------------------------------
Expand Down Expand Up @@ -99,7 +99,7 @@ Find a new job.
Can Kweb be embedded in an existing Ktor app?
---------------------------------------------

Yes! Please see `this example <https://github.com/kwebio/kweb-core/blob/master/src/main/kotlin/kweb/demos/feature/FeatureApp.kt>`_.
Yes! Please see `this example <https://github.com/kwebio/kweb-demos/blob/master/ktorFeature/src/FeatureApp.kt>`_.

I have a question not answered here
-----------------------------------
Expand Down
2 changes: 1 addition & 1 deletion intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ How does it work?
Kweb is a self-contained Kotlin library that can be added easily to new or existing projects. When Kweb receives
a HTTP request it responds with the initial HTML page, and some JavaScript that connects back to the web server via a WebSocket. The page then waits and listens for instructions from the server, while notifying the server of relevant browser events.

A common concern about this approach is that the user interface might feel sluggish if it is server driven. Kweb solves this problem by `preloading <https://docs.kweb.io/en/latest/dom.html#immediate-events>`_ instructions to
A common concern about this approach is that the user interface might feel sluggish if it is server driven. Kweb solves this problem by `preloading <https://docs.kweb.io/en/latest/events.html#immediate-events>`_ instructions to
the browser to be executed immediately on browser events without a server round-trip.

We've designed Kweb to be efficient in both the browser and server, and makes effective use of Kotlin's concurrency features, particularly `coroutines <https://kotlinlang.org/docs/reference/coroutines-overview.html>`_.
Expand Down
2 changes: 1 addition & 1 deletion state.rst
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Any changes to the KVar will be reflected in realtime in the browser, and simila
This will also work for <option> and <textarea> elements which also have values.

See also: `ValueElement.value <https://github.com/kwebio/kweb-core/blob/master/src/main/kotlin/kweb/dom/element/creation/tags/form.kt#L113>`_
See also: `ValueElement.value <https://github.com/kwebio/kweb-core/blob/master/src/main/kotlin/kweb/prelude.kt#L232>`_

Rendering state to a DOM fragment
---------------------------------
Expand Down

0 comments on commit ac6fdf9

Please sign in to comment.