-
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.
major documentation review. changed format to markdown to support scr…
…eenshots and better formatting
- Loading branch information
Showing
25 changed files
with
788 additions
and
718 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,7 @@ begin | |
s.email = %q{[email protected]} | ||
s.homepage = %q{http://refinerycms.com} | ||
s.authors = ["Resolve Digital", "David Jones", "Philip Arndt"] | ||
s.extra_rdoc_files = %w(readme.md contributors.rdoc license.rdoc VERSION) | ||
s.extra_rdoc_files = %w(readme.md contributors.md license.md VERSION) | ||
s.rdoc_options << "--inline-source" | ||
s.has_rdoc = true | ||
end | ||
|
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Contributors | ||
|
||
## Major | ||
|
||
* parndt - Philip Arndt, [Resolve Digital](http://www.resolvedigital.co.nz) | ||
* djones - [David Jones](http://www.d-jones.com), [Resolve Digital](http://www.resolvedigital.co.nz) | ||
|
||
## Minor | ||
|
||
* ryanwood - [Ryan Wood](http://www.ryanwood.com) | ||
* hernan - Hernan Fernandez | ||
* btucker - [Ben Tucker](http://btucker.net) | ||
* avit - [Andrew Vit](http://avit.ca) | ||
* stevenheidel - [Steven Heidel](http://www.livingskywebdesign.com) | ||
* moretea - Maarten Hoogendoorn | ||
* csessions - [Chris Sessions](http://www.flying-saucer.net) | ||
|
||
Want your name here? Help us out in anyway you can. And don't be so scared, we don't expect your code to be perfect the first time round. |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Authentication | ||
|
||
## About | ||
|
||
At the heart of Refinery's user management is the authentication plugin located in ``vendor/plugins/authentication`` | ||
|
||
What this really is is just a standard [RESTFul authentication](http://github.com/technoweenie/restful-authentication) install extended with a few extra features like "I forgot my password" and hooked directly into the heart of Refinery's plugin system. |
This file was deleted.
Oops, something went wrong.
12 changes: 7 additions & 5 deletions
12
vendor/plugins/dashboard/dashboard.rdoc → vendor/plugins/dashboard/dashboard.md
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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Images | ||
|
||
 | ||
|
||
## About | ||
|
||
All Refinery's images are stored in one place, the images plugin. This plugin: | ||
|
||
* Reports recent activity on all the core plugins | ||
* Provides convenient links to common tasks. | ||
|
||
## Generating Thumbnails | ||
|
||
Refinery lets you generate a range of thumbnails when an image is uploaded so you can output this on a page in an appropriate size. | ||
|
||
To specify the sizes of your thumbnails edit the "Image Thumbnails" setting. | ||
|
||
This setting is stored as a serialize hash and is directly passed to attachment_fu | ||
|
||
Here's what the default looks like | ||
|
||
--- | ||
:grid: c135x135 | ||
:lightbox: 500x500> | ||
:dialog_thumb: c106x106 | ||
:medium: 225x255 | ||
:preview: c96x96 | ||
:thumb: 50x50 | ||
:side_body: 300x500 | ||
|
||
Refinery requires some of these so you won't want to delete any, but add new ones to meet your design needs. Each thumbnail is not just a size guide but a RMagick geometry string that allows you to define min and max size too. | ||
|
||
Refinery also extends the geometry string support to allow cropping. Here's some examples | ||
|
||
:grid: c135x135 | ||
|
||
This will crop (_that's what the "c" stands for_) the image down to ``135x135`` exactly without stretching the image. | ||
|
||
_Note: you will have to restart your web server after changing this setting for the changes to take effect._ | ||
|
||
## Related Settings | ||
|
||
### "Preferred Image View" | ||
|
||
Set to ``"grid"`` to get your images to display as a grid of thumbnails | ||
Set to ``"list"`` to get your images to display as a list with image titles. |
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
14 changes: 8 additions & 6 deletions
14
vendor/plugins/news/news.rdoc → vendor/plugins/news/news.md
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,18 +1,20 @@ | ||
= News | ||
# News | ||
|
||
== About | ||
 | ||
|
||
## About | ||
|
||
Refinery's news plugin allows you to post updates to the news section of your website. | ||
|
||
Key features | ||
Key features: | ||
|
||
* Default news page shows a summary of recent news posts | ||
* A detail view shows the full post and also linked to recent news on the "side bar" | ||
* Detail view shows the full post and also linked to recent news on the "side bar" | ||
|
||
== But I don't want a news section, how do I kill it? | ||
## But I don't want a news section, how do I kill it? | ||
|
||
Your news section loads because you have a page in your site that is told to not just render a normal page, but load the news section instead. | ||
|
||
By default this page is called "News". Go to your "Pages" tab and click the edit icon on "News". Now click on "Hide/Show Advanced Options" and you'll see that a "custom URL" is set to "/news". Simply change this to nothing, or delete the "News" page. | ||
By default this page is called "News". Go to your "Pages" tab and click the edit icon on "News". Now click on "Hide/Show Advanced Options" and you'll see that a "custom URL" is set to ``/news``. Simply change this to nothing, or delete the "News" page. | ||
|
||
You might also want to remove the News plugin from your backend view. To do that, you go to the "Users" tab edit your user, uncheck "News" from the list of plugins you can access. |
Oops, something went wrong.