From 7150da6c2b272b73eeac8d621a1f7b335b86d0ae Mon Sep 17 00:00:00 2001 From: tomyeh Date: Fri, 12 Apr 2013 19:18:49 +0800 Subject: [PATCH] shorten the path of view.css --- CHANGES.md | 6 ++++++ README.md | 2 +- example/circle/index-canvas.html | 2 +- example/circle/index-view.html | 2 +- example/composite-view/index.html | 2 +- example/custom-layout/index.html | 2 +- example/effect/dialog.html | 2 +- example/effect/easing.html | 2 +- example/effect/effect.html | 2 +- example/effect/misc.html | 2 +- example/effect/natural.html | 2 +- example/effect/panel.html | 2 +- example/effect/switch-view.html | 2 +- example/effect/switch-view2.html | 2 +- example/effect/view.html | 2 +- example/effect/view2.html | 2 +- example/free-layout/index.html | 2 +- example/gesture/album.html | 2 +- example/gesture/map.html | 2 +- example/helloworld/index.html | 2 +- example/input/index.html | 2 +- example/linear-layout/index.html | 2 +- example/scroll-view/grid.html | 2 +- example/scroll-view/list.html | 2 +- example/scroll-view/scroll-view.html | 2 +- example/scroll-view/star.html | 2 +- example/snake/index.html | 2 +- example/viewport/index.html | 2 +- lib/{resource => }/css/default/img/icon-check.png | Bin lib/{resource => }/css/default/img/icon-close.png | Bin lib/{resource => }/css/default/view.css | 0 lib/{resource => }/css/default/view.less | 0 pubspec.yaml | 2 +- test/TestAnimation.html | 2 +- test/TestAnimation2.html | 2 +- test/TestAnimation3.html | 2 +- test/TestBodyScrollbar.html | 2 +- test/TestCustomLayout1.html | 2 +- test/TestDialog.html | 2 +- test/TestDialog2.html | 2 +- test/TestDomAgent.html | 2 +- test/TestDrag.html | 2 +- test/TestDragAndDrop.html | 2 +- test/TestDropDownListWithTreeModel.html | 2 +- test/TestEasing.html | 2 +- test/TestEmbed.html | 2 +- test/TestEvent.html | 2 +- test/TestFreeLayout1.html | 2 +- test/TestFreeLayout2.html | 2 +- test/TestFreeLayout3.html | 2 +- test/TestHold.html | 2 +- test/TestIDSpace.html | 2 +- test/TestLinearLayout1.html | 2 +- test/TestLinearLayout2.html | 2 +- test/TestLinearLayout3.html | 2 +- test/TestLinearLayout4.html | 2 +- test/TestLinearLayout5.html | 2 +- test/TestPanel.html | 2 +- test/TestPartial.html | 2 +- test/TestPerformance1.html | 2 +- test/TestPopup1.html | 2 +- test/TestPopup2.html | 2 +- test/TestPrintc.html | 2 +- test/TestProfileIgnore.html | 2 +- test/TestQuery.html | 2 +- test/TestQuery2.html | 2 +- test/TestStyle.html | 2 +- test/TestSwitch.html | 2 +- test/TestTileLayout1.html | 2 +- test/TestViewAdd.html | 2 +- test/TestViewTag.html | 2 +- test/TestZoom.html | 2 +- test/issues/Issue1.html | 2 +- test/issues/Issue13.html | 2 +- test/issues/Issue3.html | 2 +- test/issues/Issue5.html | 2 +- test/issues/Issue7.html | 2 +- tool/l2c | 6 +++--- 78 files changed, 81 insertions(+), 75 deletions(-) rename lib/{resource => }/css/default/img/icon-check.png (100%) rename lib/{resource => }/css/default/img/icon-close.png (100%) rename lib/{resource => }/css/default/view.css (100%) rename lib/{resource => }/css/default/view.less (100%) diff --git a/CHANGES.md b/CHANGES.md index 36c897dd..8af32fe6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,11 @@ #Rikulo Changes +##0.6.5 + +*Upgrade Notes* + +* Change `packages/rikulo_ui/resource/css/default/view.css` to `packages/rikulo_ui/css/default/view.css`. + ##0.6.4 * Offset and Rectangle are removed. Use Point and Rect of dart:html instead. diff --git a/README.md b/README.md index e602e58e..9c758f1a 100644 --- a/README.md +++ b/README.md @@ -58,4 +58,4 @@ If you are new to Git or GitHub, please read [this guide](https://help.github.co ###Compile LESS to CSS -Rikulo CSS rules are placed in [view.less](https://github.com/rikulo/ui/blob/master/lib/resource/css/default/view.less). They are written in [LESS](http://lesscss.org/). If you modify [view.less](https://github.com/rikulo/ui/blob/master/lib/resource/css/default/view.less), you have to invoke [tool/l2c](https://github.com/rikulo/ui/blob/master/tool/l2c) to generate [view.css](https://github.com/rikulo/ui/blob/master/lib/resource/css/default/view.css) (under Linux or Cygwin bash). +Rikulo CSS rules are placed in [view.less](https://github.com/rikulo/ui/blob/master/lib/css/default/view.less). They are written in [LESS](http://lesscss.org/). If you modify [view.less](https://github.com/rikulo/ui/blob/master/lib/css/default/view.less), you have to invoke [tool/l2c](https://github.com/rikulo/ui/blob/master/tool/l2c) to generate [view.css](https://github.com/rikulo/ui/blob/master/lib/css/default/view.css) (under Linux or Cygwin bash). diff --git a/example/circle/index-canvas.html b/example/circle/index-canvas.html index 4c032d2b..0bd7c28f 100644 --- a/example/circle/index-canvas.html +++ b/example/circle/index-canvas.html @@ -3,7 +3,7 @@ Circles on Canvas - + diff --git a/example/circle/index-view.html b/example/circle/index-view.html index 6c94097e..1d90b858 100644 --- a/example/circle/index-view.html +++ b/example/circle/index-view.html @@ -4,7 +4,7 @@ Circles - + diff --git a/example/composite-view/index.html b/example/composite-view/index.html index 8fe4521a..872669ec 100644 --- a/example/composite-view/index.html +++ b/example/composite-view/index.html @@ -3,7 +3,7 @@ Composite View Demo - + diff --git a/example/custom-layout/index.html b/example/custom-layout/index.html index 005bed19..6e678893 100644 --- a/example/custom-layout/index.html +++ b/example/custom-layout/index.html @@ -3,7 +3,7 @@ Custom Layout Demo - + diff --git a/example/effect/dialog.html b/example/effect/dialog.html index 1787488c..0bf4db9f 100644 --- a/example/effect/dialog.html +++ b/example/effect/dialog.html @@ -2,7 +2,7 @@ - + diff --git a/example/effect/easing.html b/example/effect/easing.html index 67150327..906ad4ae 100644 --- a/example/effect/easing.html +++ b/example/effect/easing.html @@ -2,7 +2,7 @@ - + diff --git a/example/effect/effect.html b/example/effect/effect.html index 48048ff4..73b1c612 100644 --- a/example/effect/effect.html +++ b/example/effect/effect.html @@ -2,7 +2,7 @@ - + diff --git a/example/effect/misc.html b/example/effect/misc.html index e105b06b..05683754 100644 --- a/example/effect/misc.html +++ b/example/effect/misc.html @@ -2,7 +2,7 @@ - + diff --git a/example/effect/natural.html b/example/effect/natural.html index 4d925414..de9ede83 100644 --- a/example/effect/natural.html +++ b/example/effect/natural.html @@ -2,7 +2,7 @@ - + diff --git a/example/effect/panel.html b/example/effect/panel.html index ed9e50e0..782916b3 100644 --- a/example/effect/panel.html +++ b/example/effect/panel.html @@ -2,7 +2,7 @@ - + diff --git a/example/effect/switch-view.html b/example/effect/switch-view.html index 85e4f884..90a49318 100644 --- a/example/effect/switch-view.html +++ b/example/effect/switch-view.html @@ -2,7 +2,7 @@ - + diff --git a/example/effect/switch-view2.html b/example/effect/switch-view2.html index 07753ad8..b6e58900 100644 --- a/example/effect/switch-view2.html +++ b/example/effect/switch-view2.html @@ -2,7 +2,7 @@ - + diff --git a/example/effect/view.html b/example/effect/view.html index d9b41721..5e77cd77 100644 --- a/example/effect/view.html +++ b/example/effect/view.html @@ -2,7 +2,7 @@ - + diff --git a/example/effect/view2.html b/example/effect/view2.html index ce20dc47..db0c0f7f 100644 --- a/example/effect/view2.html +++ b/example/effect/view2.html @@ -2,7 +2,7 @@ - + diff --git a/example/free-layout/index.html b/example/free-layout/index.html index d45d0e93..ff413acc 100644 --- a/example/free-layout/index.html +++ b/example/free-layout/index.html @@ -3,7 +3,7 @@ Free Layout Demo - + diff --git a/example/gesture/album.html b/example/gesture/album.html index 179dfe87..b5aa6ce7 100644 --- a/example/gesture/album.html +++ b/example/gesture/album.html @@ -2,7 +2,7 @@ - + diff --git a/example/gesture/map.html b/example/gesture/map.html index 0ab01641..3562c608 100644 --- a/example/gesture/map.html +++ b/example/gesture/map.html @@ -2,7 +2,7 @@ - + diff --git a/example/helloworld/index.html b/example/helloworld/index.html index 051d7739..001143fc 100644 --- a/example/helloworld/index.html +++ b/example/helloworld/index.html @@ -3,7 +3,7 @@ Hello World! - + diff --git a/example/input/index.html b/example/input/index.html index 87685d78..eafa1f88 100644 --- a/example/input/index.html +++ b/example/input/index.html @@ -3,7 +3,7 @@ Inputs - + diff --git a/example/linear-layout/index.html b/example/linear-layout/index.html index 49a9baf5..d94de17f 100644 --- a/example/linear-layout/index.html +++ b/example/linear-layout/index.html @@ -3,7 +3,7 @@ Linear Layout Demo - + diff --git a/example/scroll-view/grid.html b/example/scroll-view/grid.html index 3fc38e45..c5b0ed80 100644 --- a/example/scroll-view/grid.html +++ b/example/scroll-view/grid.html @@ -3,7 +3,7 @@ Grid Demo - + diff --git a/example/scroll-view/list.html b/example/scroll-view/list.html index 90e44781..95601ee0 100644 --- a/example/scroll-view/list.html +++ b/example/scroll-view/list.html @@ -3,7 +3,7 @@ List Demo - + diff --git a/example/scroll-view/scroll-view.html b/example/scroll-view/scroll-view.html index f0dd696f..e4c6484e 100644 --- a/example/scroll-view/scroll-view.html +++ b/example/scroll-view/scroll-view.html @@ -3,7 +3,7 @@ Scroll View Demo - + diff --git a/example/scroll-view/star.html b/example/scroll-view/star.html index 2e607729..3f9816a6 100644 --- a/example/scroll-view/star.html +++ b/example/scroll-view/star.html @@ -3,7 +3,7 @@ Stars - + diff --git a/example/snake/index.html b/example/snake/index.html index 1cf19d1a..0e5d3ab9 100644 --- a/example/snake/index.html +++ b/example/snake/index.html @@ -4,7 +4,7 @@ Snake - + diff --git a/example/viewport/index.html b/example/viewport/index.html index c77e8ab5..1963a0fd 100644 --- a/example/viewport/index.html +++ b/example/viewport/index.html @@ -3,7 +3,7 @@ Demo of Viewport - + diff --git a/lib/resource/css/default/img/icon-check.png b/lib/css/default/img/icon-check.png similarity index 100% rename from lib/resource/css/default/img/icon-check.png rename to lib/css/default/img/icon-check.png diff --git a/lib/resource/css/default/img/icon-close.png b/lib/css/default/img/icon-close.png similarity index 100% rename from lib/resource/css/default/img/icon-close.png rename to lib/css/default/img/icon-close.png diff --git a/lib/resource/css/default/view.css b/lib/css/default/view.css similarity index 100% rename from lib/resource/css/default/view.css rename to lib/css/default/view.css diff --git a/lib/resource/css/default/view.less b/lib/css/default/view.less similarity index 100% rename from lib/resource/css/default/view.less rename to lib/css/default/view.less diff --git a/pubspec.yaml b/pubspec.yaml index bd22fca3..15034636 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: rikulo_ui -version: 0.6.5+1 +version: 0.6.5+2 description: > Rikulo UI is a cross-platform framework for creating amazing Web and mobile applications in Dart & HTML5. diff --git a/test/TestAnimation.html b/test/TestAnimation.html index 812701a5..346679ad 100644 --- a/test/TestAnimation.html +++ b/test/TestAnimation.html @@ -2,7 +2,7 @@ - + diff --git a/test/TestAnimation2.html b/test/TestAnimation2.html index 9616fb75..1da9c67f 100644 --- a/test/TestAnimation2.html +++ b/test/TestAnimation2.html @@ -2,7 +2,7 @@ - + diff --git a/test/TestAnimation3.html b/test/TestAnimation3.html index e7d5d633..b6295f6e 100644 --- a/test/TestAnimation3.html +++ b/test/TestAnimation3.html @@ -2,7 +2,7 @@ - + diff --git a/test/TestBodyScrollbar.html b/test/TestBodyScrollbar.html index f2143325..da2d8b6f 100644 --- a/test/TestBodyScrollbar.html +++ b/test/TestBodyScrollbar.html @@ -2,7 +2,7 @@ - + diff --git a/test/TestCustomLayout1.html b/test/TestCustomLayout1.html index 79dc1a28..a19c0b2f 100644 --- a/test/TestCustomLayout1.html +++ b/test/TestCustomLayout1.html @@ -2,7 +2,7 @@ - + diff --git a/test/TestDialog.html b/test/TestDialog.html index 3de453ed..bd89bc78 100644 --- a/test/TestDialog.html +++ b/test/TestDialog.html @@ -2,7 +2,7 @@ - + diff --git a/test/TestDialog2.html b/test/TestDialog2.html index e98781cc..01472912 100644 --- a/test/TestDialog2.html +++ b/test/TestDialog2.html @@ -3,7 +3,7 @@ Test of Dialog 2 - + diff --git a/test/TestDomAgent.html b/test/TestDomAgent.html index 42054b99..0b63196c 100644 --- a/test/TestDomAgent.html +++ b/test/TestDomAgent.html @@ -2,7 +2,7 @@ - + diff --git a/test/TestDrag.html b/test/TestDrag.html index 512cd12c..77c2fed1 100644 --- a/test/TestDrag.html +++ b/test/TestDrag.html @@ -2,7 +2,7 @@ - +