<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
This is hot stuff, so I make this a new thread (Or trying to...) <br>
<br>
With just some additional functionality this module could increase the
usefulness of
Drupal CMS by many factors. Namely the possibility to insert the
content from one node into another, in combination with the
possibility to pass parameters through the call, also for page content
(i.e.
using the called-for node as a template.). This exact feature is what
makes MediaWiki
beat Drupal for some needs (while it still lacks some other
indispensable features...). You can read more in detail what I mean in
the post by Rolf here: <a
 href="http://drupal.org/node/52816#comment-99961">http://drupal.org/node/52816#comment-99961</a>
<a href="http://sv.rilbible.org/wiki/index.php/1_Mos_1"></a><br>
<br>
Would this be possible to implement into this module? I think including
it into a module of this kind might be a more generic solution also,
than packing it together with a wiki module pack. Actually it would be
great to see something like this in the core some day?<br>
<br>
Regards<br>
Samuel Lampa, RIL Partner AB, <a class="moz-txt-link-abbreviated" href="http://www.rilnet.com">www.rilnet.com</a><br>
<br>
<br>
Mark Howell wrote:
<blockquote cite="mid44DF37A0.2040407@nullcraft.org" type="cite">I
wrote the Attached Node module a while back: <br>
<a class="moz-txt-link-freetext" href="http://drupal.org/node/11988">http://drupal.org/node/11988</a> <br>
  <br>
It basically uses filters to substitute [node:123] with the contents of
the node.&nbsp; It also has image-specific code (for Drupal 4.5) that allows
for manipulation of the rendering: <br>
  <br>
&nbsp;&nbsp;&nbsp;&nbsp; [node:123,res="640x480"] <br>
&nbsp;&nbsp;&nbsp;&nbsp; [node:123,res="original",title="Original version of the picture"] <br>
  <br>
A coworker wrote a custom UI in my project to insert the node tag
content from a select list, but others feel comfortable just typing
these tags in directly. <br>
This code has not been touched in 20 months.&nbsp; Feel free to update it to
Drupal 4.6 or 4.7. <br>
  <br>
-Mark <br>
  <br>
Carl Mc Dade wrote: <br>
  <br>
  <blockquote type="cite">Yes, I have decided to use an association
table and nodeapi. I'm a bit hung though because I forgot to ask for a
complete business model. I am unsure about "whom" is going to be the
end user of such a capability, bloggers? admin? forum moderators? Or
should it be open to all and subject to moderation. Once I get these
out of the way then I will start in.
    <br>
    <br>
I appreciate all the input and you can keep it coming. But the one
thing that is missing in the responses is the main question. Frequently
after someone tries to make a contribution they are stopped because
their project is similar or the same as another ongoing project. To
avoid this collision I thought to ask if anyone has a project that is
even remotely like this?
    <br>
    <br>
    <br>
*/Suuch Solutions <a class="moz-txt-link-rfc2396E" href="mailto:drupal@suuch.com">&lt;drupal@suuch.com&gt;</a>/* wrote:
    <br>
    <br>
&nbsp;&nbsp;&nbsp; I've done something similar that essentially redirects all
    <br>
&nbsp;&nbsp;&nbsp; comments to a non-forum node to an assigned forum node. Yes, it's
    <br>
&nbsp;&nbsp;&nbsp; a matter of hook_nodeapi, a table to keep track of associations,
    <br>
&nbsp;&nbsp;&nbsp; and hook_link. Post count ( e.g. 1 comment, 2 comments) is already
    <br>
&nbsp;&nbsp;&nbsp; handled by the comment.module once you know the associated forum
    <br>
&nbsp;&nbsp;&nbsp; topic nid.
    <br>
&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; I can send you code snippets if this description is not
enough.
    <br>
&nbsp;&nbsp;&nbsp; paa.kwesi
    <br>
&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; On 12/08/06, *Jeff Eaton* &lt;<a class="moz-txt-link-abbreviated" href="mailto:jeff@viapositiva.net">jeff@viapositiva.net</a>
    <br>
&nbsp;&nbsp;&nbsp; <a class="moz-txt-link-rfc2396E" href="mailto:jeff@viapositiva.net">&lt;mailto:jeff@viapositiva.net&gt;</a>&gt; wrote:
    <br>
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; A site I've been working on has almost *exactly* the same
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; requirement. It's still in development, so the code doesn't
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; exist yet (urgh), but our conclusion was:
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Use nodeapi's insert $op to intercept new blog posts.
When
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; they're saved, programmatically create a forum post with the
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; blog post's teaser and a link pointing to the 'full' blog
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; entry. In nodapi's 'view' $op, add a link at the bottom of the
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; blog post to 'discuss this post' that points to the forum
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; topic in question. It would work best when blog posts have
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; comments disabled; that way there's only one place to discuss
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; a given blog post. The end result is that blog posts point to
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; the forum for discussion. It would probably work best if there
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; was a dedicated forum category for those types of posts.
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I'm not sure if that's helpful, but it's the flow we
came up
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; with. There's some sample code for programmatically creating
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; forum nodes in the 'devel' module's generate-content.php
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; script. It handles the proper linking of taxonomies and
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; updating of post counts, etc.
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; --Jeff
    <br>
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -----Original Message-----
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *From:* Carl Mc Dade [mailto: <a class="moz-txt-link-abbreviated" href="mailto:carl_mcdade@yahoo.com">carl_mcdade@yahoo.com</a>
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a class="moz-txt-link-rfc2396E" href="mailto:carl_mcdade@yahoo.com">&lt;mailto:carl_mcdade@yahoo.com&gt;</a>]
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *Sent:* Saturday, August 12, 2006 11:29 AM
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *To:* <a class="moz-txt-link-abbreviated" href="mailto:development@drupal.org">development@drupal.org</a>
<a class="moz-txt-link-rfc2396E" href="mailto:development@drupal.org">&lt;mailto:development@drupal.org&gt;</a>
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *Subject:* Re: [development] Nodes content within nodes
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; solution developement?
    <br>
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; That type of solution is a bit too complicated to set up
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; and administrate.
    <br>
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; What we are looking at is a integration of two types of
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; community user. The blogger and the forum user. A blogger
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; consistently writes on topics but may not do so in a way
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; that it sparks a forum. They may be just blah blahing. But
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sometimes they may blog on a topic that fits in with a
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Forum category. In this case we would like the user to be
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; able to take a blog and insert it inline into the first
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; post. This is so that comments and replies land in the
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; right venue. Also the blogger or site administrator does
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; not have moderate blog comments and replies this is left
    <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; up to the moderators of the Forum.
    <br>
    <br>
    <br>
    <br>
    <br>
------------------------------------------------------------------------
    <br>
  </blockquote>
  <br>
  <br>
  <br>
</blockquote>
<br>
<br>
</body>
</html>