masterview 0.0.16 → 0.0.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ 0.0.17 - May 4, 2006 - Added some additional css style and generator options, change the showOne option
2
+
1
3
  0.0.16 - April 28, 2006 - Corrected gem version dependencies
2
4
 
3
5
  0.0.15 - April 28, 2006 - Added gem version dependencies spec for masterview_gem_pack so that pack pulls the appropriate versions
data/README CHANGED
@@ -61,9 +61,9 @@ This will copy entire MasterView system into your vendor/plugin/masterview direc
61
61
 
62
62
  You may add MasterView attributes to existing (x)html or you may use the masterview generator to create a complete working application. The generator can create controllers, models, and the MasterView template file similar to how the built-in generator works. Simply change directory to your rails application and run the following
63
63
 
64
- script/generate masterview YourModelName [YourControllerName] [--showAll | --showOnlyNew | --showOnlyList]
64
+ script/generate masterview YourModelName [YourControllerName] [--show-all | --show-only list] [--style [cssStylesheet]]
65
65
 
66
- To make it easier to use this template at design time, some design time css stylesheets are included in the file to hide all sections except one. By default the NEW section is the only one shown. Other options are --showAll which makes all sections visible or --showOnlyList which shows only the LIST section. When you are editing the masterview file you may comment/uncomment one of the other css files to show a different section.
66
+ To make it easier to use this template at design time, some design time css stylesheets are included in the file to hide all sections except one. By default the NEW section is the only one shown. Other options are --show-all which makes all sections visible or [--show-only list] which shows only the LIST section. When you are editing the masterview file you may comment/uncomment one of the other css files to show a different section. The --style param allows you to suppress default style generation and specify an existing stylesheet to use, if you exlude the stylesheet none will be used, if you include this option multiple times with different stylesheets each will be used.
67
67
 
68
68
  Once it is done generating, the generated MasterView template file will be created in app/views/masterview/YourModelName.html. This file is html and can be edited with any standard html editor. The rails specific logic is contained in simple attributes which are ignored by html editors. The syntax for these attributes is heavily derived from the rails helper tags themselves so it should feel natural to the rails developer.
69
69
 
data/RELEASE_NOTES CHANGED
@@ -61,7 +61,8 @@ This will copy entire MasterView system into your vendor/plugin/masterview direc
61
61
 
62
62
  You may add MasterView attributes to existing (x)html or you may use the masterview generator to create a complete working application. The generator can create controllers, models, and the MasterView template file similar to how the built-in generator works. Simply change directory to your rails application and run the following
63
63
 
64
- script/generate masterview YourModelName [YourControllerName] [--showAll | --showOnlyNew | --showOnlyList]
64
+ script/generate masterview YourModelName [YourControllerName] [--show-all | --show-only list] [--style [cssStylesheet]]
65
+
66
+ To make it easier to use this template at design time, some design time css stylesheets are included in the file to hide all sections except one. By default the NEW section is the only one shown. Other options are --show-all which makes all sections visible or [--show-only list] which shows only the LIST section. When you are editing the masterview file you may comment/uncomment one of the other css files to show a different section. The --style param allows you to suppress default style generation and specify an existing stylesheet to use, if you exlude the stylesheet none will be used, if you include this option multiple times with different stylesheets each will be used.
65
67
 
66
- To make it easier to use this template at design time, some design time css stylesheets are included in the file to hide all sections except one. By default the NEW section is the only one shown. Other options are --showAll which makes all sections visible or --showOnlyList which shows only the LIST section. When you are editing the masterview file you may comment/uncomment one of the other css files to show a different section.
67
68
 
data/TODO CHANGED
@@ -5,3 +5,7 @@
5
5
  - include additional stylesheets
6
6
  - ajax examples
7
7
  - ajax table component
8
+ - investigate ways to improve splitting files and other team development issues
9
+ - documentation
10
+ - directive developer documentation and examples
11
+ - more tests
@@ -2,7 +2,7 @@ module MasterView
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- TINY = 16
5
+ TINY = 17
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.11
3
3
  specification_version: 1
4
4
  name: masterview
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.0.16
7
- date: 2006-04-28 00:00:00 -05:00
6
+ version: 0.0.17
7
+ date: 2006-05-04 00:00:00 -05:00
8
8
  summary: A (x)html friendly template engine for rails with the power of layouts, and partials.
9
9
  require_paths:
10
10
  - lib