Revision: 6029
Author: [email protected]
Date: Fri Aug 28 10:28:46 2009
Log: Edited wiki page through web user interface.
http://code.google.com/p/google-web-toolkit/source/detail?r=6029

Modified:
  /wiki/CssResource.wiki

=======================================
--- /wiki/CssResource.wiki      Fri Jul  3 08:45:52 2009
+++ /wiki/CssResource.wiki      Fri Aug 28 10:28:46 2009
@@ -1,5 +1,5 @@
  #summary Compile-time CSS processing
-#labels Phase-Implementation,Type-Library
+#labels Phase-Implementation

  <wiki:toc max_depth="2" />

@@ -202,13 +202,23 @@
  == References to Data Resources ==
  (*Working*)
  {{{
+/* @url <constant name> <DataResource method name> */
  @url myCursorUrl fancyCursorResource;

  .myClass {
    cursor: myCursorUrl, pointer;
  }
  }}}
-  * The identifier will be expanded to `url('some_url')`
+{{{
+interface MyResources extends ClientBundle {
+  @Source("myCursor.cur")
+  DataResource fancyCursorResource();
+
+  @Source("my.css")
+  CssResource css();
+}
+}}}
+  * The identifier will be expanded to `url('some_url')` based on the  
return value of `DataResource.getUrl()`.

  == RTL support ==
  (*Working*)

--~--~---------~--~----~------------~-------~--~----~
http://groups.google.com/group/Google-Web-Toolkit-Contributors
-~----------~----~----~----~------~----~------~--~---

Reply via email to