forked from eadz/typus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved /admin/user_guide to usage in user_guide.
- Loading branch information
Showing
9 changed files
with
82 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,6 +73,7 @@ Misc | |
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
usage | ||
upgrade | ||
credits | ||
license | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
Usage | ||
===== | ||
|
||
With **Typus**, also known as the control panel or admin interface, you'll be | ||
able to update your application contents and perform the most common operations | ||
for the site maintenance. | ||
|
||
|
||
Basic Actions | ||
------------- | ||
|
||
Create Entries | ||
^^^^^^^^^^^^^^ | ||
|
||
To create a new entry: | ||
|
||
* Click on entries tab. | ||
* Click "Add New" sub tab. | ||
* Start filling in the blanks. | ||
* When you are ready, click "Save Entry". | ||
|
||
Editing and Updating Entries | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
To edit entries: | ||
|
||
* Click on entries tab. | ||
* You'll see a list of entries, if you have already create some. | ||
* Click on "Edit". | ||
* Edit the entry. | ||
* When you are ready, click "Save". | ||
|
||
Removing Entries | ||
^^^^^^^^^^^^^^^^ | ||
|
||
To remove entries: | ||
|
||
* Click on entries tab. | ||
* You'll see a list of entries, if you have already create some. | ||
* Click on "Trash". | ||
* Click "Ok" on the dialog to confirm you want to remove the entry. | ||
|
||
.. note:: | ||
|
||
Removing entries will be only available if you have permissions to do so. | ||
|
||
|
||
Registered Users | ||
---------------- | ||
|
||
Registered users can do a variety of different things on a **Typus** driven | ||
site. The various elements available to the user are determined by their user | ||
level. | ||
|
||
When ``:session`` authentication is enabled **Typus** will enable a a default | ||
role which will allow registered users perform all kind of operations on | ||
entries: create, read, update and destroy. | ||
|
||
It's usually recommended having an extra role which some restrictions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,18 @@ | ||
<!-- dashboard#_sidebar.html.erb --> | ||
|
||
<% | ||
code = link_to('GitHub', 'https://github.com/typus/typus/tree/master/test/dummy') | ||
typus = link_to('Typus', 'http://www.typuscmf.com/') | ||
mailing_list = link_to('mailing list', 'http://groups.google.com/group/typus') | ||
user_guide = link_to('user guide', 'http://docs.typuscmf.com/') | ||
%> | ||
|
||
<h2>Welcome!</h2> | ||
|
||
<p>This is the collection of models, organized by functionality, I use to <strong>test</strong> <a href="http://www.typuscmf.com/" title="Typus">Typus</a>.</p> | ||
<p>This is the collection of models, organized by functionality, I use to | ||
<strong>test</strong> <%= typus %>.</p> | ||
|
||
<p>Code for this application is available at <a href="https://github.com/typus/typus/tree/master/test/dummy">GitHub</a>.</p> | ||
<p>Code for this application is available at <%= code %>.</p> | ||
|
||
<p>If you need help don't hesitate in joining the <%= link_to 'mailing list', 'http://groups.google.com/group/typus' %> or use the <%= link_to "help", "/admin/user_guide" %>.</p> | ||
<p>If you need help don't hesitate in joining the <%= mailing_list %> or use | ||
the <%= user_guide %>.</p> |