<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
  <title>aC forum: More information for Task information on the Milestone page.</title>
  <link>http://www.activecollab.com/forums/topic/1157/</link>
  <description>Recent posts on topic: More information for Task information on the Milestone page.</description>
  <dc:language>en-us</dc:language>
  <pubDate>Sun, 23 Nov 2008 12:49:41 UTC</pubDate>
  
  <item>
    <link>http://www.activecollab.com/forums/post/5367/#post5367</link>
    <guid>http://www.activecollab.com/forums/post/5367/#post5367</guid>
    <title>Post #2 by tyneskj</title>
    <dc:creator>tyneskj</dc:creator>
    <description><![CDATA[<p>I have put together the 3 modifications I have made &amp; posted them to flickr<br />
-10 day color yellow-to-red<br />
- New Tasks | New Messages<br />
- Task list discription<br />
-Only Open Task are listed <br />
<br />
http://www.flickr.com/photos/12017965@N00/320575234/</p>]]></description>
    <pubDate>Tue, 12 Dec 2006 08:18:32 UTC</pubDate>
  </item>
  <item>
    <link>http://www.activecollab.com/forums/post/5366/#post5366</link>
    <guid>http://www.activecollab.com/forums/post/5366/#post5366</guid>
    <title>Post #1 by tyneskj</title>
    <dc:creator>tyneskj</dc:creator>
    <description><![CDATA[<p>I find that I want more task information on the milestone page without having to click to get at the information.  <br />
<br />
The information I want on the milestone page is:<br />
 -task list description<br />
 -what the open tasks on the task list are<br />
<br />
All the code is cut from task_list.php and applied to view_milestone.php.  A function for Open Tasks would make things look more clean.<br />
<br />
one file modified<br />
view_milestone.php<br />
-----------------------------------<br />
&lt;?php } else { ?&gt;<br />
        &lt;li&gt;&lt;a href=&quot;&lt;?php echo $task_list-&gt;getViewUrl() ?&gt;&quot;&gt;&lt;?php echo clean($task_list-&gt;getName()) ?&gt;&lt;/a&gt;&lt;/li&gt;<br />
<br />
&lt;!-- *****OPEN****** Addition of Task Description frm task_list.php --&gt;<br />
        &lt;?php if($task_list-&gt;getDescription()) { ?&gt;<br />
         &lt;div class=&quot;desc&quot;&gt;&lt;?php echo clean($task_list-&gt;getDescription()) ?&gt;&lt;/div&gt;<br />
        &lt;?php } // if ?&gt;<br />
&lt;!-- *****CLOSE****** // Addition of Task Description --&gt;<br />
<br />
&lt;!-- *****OPEN****** Addition of Open Tasks frm task_list.php --&gt;<br />
<br />
  &lt;div class=&quot;openTasks&quot;&gt;<br />
&lt;?php if(is_array($task_list-&gt;getOpenTasks())) { ?&gt;<br />
    &lt;table class=&quot;blank&quot;&gt;<br />
&lt;?php foreach($task_list-&gt;getOpenTasks() as $task) { ?&gt;<br />
      &lt;tr&gt;<br />
      <br />
&lt;!-- Checkbox --&gt;<br />
&lt;?php if($task-&gt;canChangeStatus(logged_user())) { ?&gt;<br />
&lt;?php if($on_list_page) { ?&gt;<br />
        &lt;td class=&quot;taskCheckbox&quot;&gt;&lt;?php echo checkbox_link($task-&gt;getCompleteUrl(), false, lang('mark task as completed')) ?&gt;&lt;/td&gt;<br />
&lt;?php } else { ?&gt;<br />
        &lt;td class=&quot;taskCheckbox&quot;&gt;&lt;?php echo checkbox_link($task-&gt;getCompleteUrl(undo_htmlspecialchars($task_list-&gt;getOverviewUrl())), false, lang('mark task as completed')) ?&gt;&lt;/td&gt;<br />
&lt;?php } // if ?&gt;<br />
&lt;?php } else { ?&gt;<br />
        &lt;td class=&quot;taskCheckbox&quot;&gt;&lt;img src=&quot;&lt;?php echo icon_url('not-checked.jpg') ?&gt;&quot; alt=&quot;&lt;?php echo lang('open task') ?&gt;&quot; /&gt;&lt;/td&gt;<br />
&lt;?php } // if?&gt;<br />
<br />
&lt;!-- Task text and options --&gt;<br />
        &lt;td class=&quot;taskText&quot;&gt;<br />
&lt;?php if($task-&gt;getAssignedTo()) { ?&gt;<br />
          &lt;span class=&quot;assignedTo&quot;&gt;&lt;?php echo clean($task-&gt;getAssignedTo()-&gt;getObjectName()) ?&gt;:&lt;/span&gt; <br />
&lt;?php } // if{ ?&gt;<br />
          &lt;?php echo clean($task-&gt;getText()) ?&gt; &lt;?php if($task-&gt;canEdit(logged_user())) { ?&gt;&lt;a href=&quot;&lt;?php echo $task-&gt;getEditUrl() ?&gt;&quot; class=&quot;blank&quot; title=&quot;&lt;?php echo lang('edit task') ?&gt;&quot;&gt;&lt;img src=&quot;&lt;?php echo icon_url('edit.gif') ?&gt;&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;?php } // if ?&gt; &lt;?php if($task-&gt;canDelete(logged_user())) { ?&gt;&lt;a href=&quot;&lt;?php echo $task-&gt;getDeleteUrl() ?&gt;&quot; class=&quot;blank&quot; onclick=&quot;return confirm('&lt;?php echo lang('confirm delete task') ?&gt;')&quot; title=&quot;&lt;?php echo lang('delete task') ?&gt;&quot;&gt;&lt;img src=&quot;&lt;?php echo icon_url('cancel_gray.gif') ?&gt;&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;?php } // if ?&gt;<br />
        &lt;/td&gt;<br />
      &lt;/tr&gt;<br />
&lt;?php } // foreach ?&gt;<br />
    &lt;/table&gt;<br />
&lt;?php } else { ?&gt;<br />
  &lt;?php echo lang('no open task in task list') ?&gt;<br />
&lt;?php } // if ?&gt;<br />
  &lt;/div&gt;<br />
<br />
&lt;!-- *****CLOSE***** // Addition of Open Tasks  --&gt;<br />
<br />
&lt;?php } // if ?&gt;<br />
&lt;?php } // foreach ?&gt;<br />
      &lt;/ul&gt;<br />
&lt;?php } // if ?&gt;<br />
&lt;?php } // if ?&gt;<br />
</p>]]></description>
    <pubDate>Tue, 12 Dec 2006 07:37:54 UTC</pubDate>
  </item>
</channel>
</rss>