Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revisionBoth sides next revision
drupal_notes [2008-03-24 17:52] 81.188.78.24drupal_notes [2008-03-25 00:12] 81.188.78.24
Line 83: Line 83:
     * http://neemtree.com.au/drupal-theming-designers-continued     * http://neemtree.com.au/drupal-theming-designers-continued
   * theming a particular content type: http://drupal.org/node/17565   * theming a particular content type: http://drupal.org/node/17565
 +
 +
  
  
Line 89: Line 91:
     * development 5.x release http://drupal.org/node/77900/release     * development 5.x release http://drupal.org/node/77900/release
   * views_multiblock: http://drupal.org/project/views_multiblock   * views_multiblock: http://drupal.org/project/views_multiblock
-    * apparently allows blocks to take arguments from the currently viewed node (eg, taxonomy)+    * allegedly allows blocks to take arguments from the currently viewed node (eg, taxonomy) 
 +  * http://drupal.org/project/imagecache 
 + 
 + 
 +==== tutorials etc ==== 
 +  * some screencasts on CCK/nodereference (building a node out of several other nodes) 
 +    * http://geoffhankerson.com/drupal 
 +  * drupal api 
 +    * http://api.drupal.org/api/
 +  * creating new node types in 5.x: http://drupal.org/node/132845 
 +    * node_example.module: http://api.drupal.org/api/file/developer/examples/node_example.module/5/source 
 +    * node_example.install: http://api.drupal.org/api/file/developer/examples/node_example.install/5/source 
 + 
  
  
Line 109: Line 124:
     * http://drupal.org/project/cck     * http://drupal.org/project/cck
     * for making structured kinds of content... but what is the structure of our content?     * for making structured kinds of content... but what is the structure of our content?
- +  * can you link to the page of a paged view that contains a particular node? 
- +    * looking at the code in includes/pager.inc it looks like no. 
- +    * would this work with an image gallery? 
-==== tutorials etc ==== +      * seems to use the same pager code. finding this out would require an extra query from the database. 
-  * some screencasts on CCK/nodereference (building a node out of several other nodes) +  * how do you use imagecache? 
-    * http://geoffhankerson.com/drupal +    * it normally seems to need custom theming, but you can access the generated pics at /files/imagecache/NAMESPACE/FILENAME 
-  * drupal api +  * can a normal image_gallery work with a non "image gallery" tag? 
-    * http://api.drupal.org/api/5 +    * yes, /gallery/tid/XX where XX is the id of the tag. 
-  * creating new node types in 5.x: http://drupal.org/node/132845 +    * but since galleries can't really be included in anything else (views, panels etc) they are kind of useless
-    * node_example.module: http://api.drupal.org/api/file/developer/examples/node_example.module/5/source +  * how would i do a view-like taxonomy query in mysql? (doesn't the devel module tell you this stuff?) 
-    * node_example.install: http://api.drupal.org/api/file/developer/examples/node_example.install/5/source+    * <code>select * from node join term_node where node.nid=term_node.nid and tid=63;</code> 
 +    * <code>select * from node join term_node, term_data where node.nid=term_node.nid and term_node.tid=term_data.tid and term_data.name="xmedk";</code>
  
  • drupal_notes.txt
  • Last modified: 2008-03-31 17:24
  • by 81.188.78.24