anjuta r4620 - in trunk: . plugins/gtodo



Author: jhs
Date: Tue Jan 20 21:31:59 2009
New Revision: 4620
URL: http://svn.gnome.org/viewvc/anjuta?rev=4620&view=rev

Log:
2009-01-20  Jens Georg  <mail jensge org>
 
 	* plugins/gtodo/gtodo-plain.xsl: 
 	export only non-empty (contains at least one undone item)
 	categories
 	* TODO: Updated

Modified:
   trunk/ChangeLog
   trunk/TODO
   trunk/plugins/gtodo/gtodo-plain.xsl

Modified: trunk/TODO
==============================================================================
--- trunk/TODO	(original)
+++ trunk/TODO	Tue Jan 20 21:31:59 2009
@@ -97,24 +97,12 @@
  - Update:
    All documents need update.
 
-Plugin: File Loader
-=======================================================================================
 libanjuta-interfaces
 =======================================================================================
 
  - Documentation:
    Add gdoc API documentation in libanjuta.idl.
 
-Plugin: Task Manager
-=======================================================================================
-
- - Proper deactivation:
-   Some stuffs are left out during deactivation of the plugin. For example, gnome-vfs monitor for TODO.tasks is not removed, leading to crash when the file changes when the plugin is not active.
-
-
- - Create text version TODO file:
-   Create human readable TODO file, which will be plain text, during save.
-
 Plugin: Project Wizard
 =======================================================================================
 
@@ -129,10 +117,6 @@
 
 Investigate general usability and HIG issues in Anjuta, come up with solutions that counter them and solve them. Issues such as Dialog consistencies, Navigational usabilities, Menus organization, features usablities should be investigated.
 
-Plugin: Macros
-=======================================================================================
-Plugin: Message Manager
-=======================================================================================
 Plugin: Debugger
 =======================================================================================
 
@@ -152,12 +136,6 @@
  - Be able to create multiple terminals:
    Be able to create multiple terminals
 
-Plugin: Default Profile
-=======================================================================================
-Plugin: Subversion
-=======================================================================================
-Plugin: Executer
-=======================================================================================
 Plugin: Glade
 =======================================================================================
 
@@ -184,5 +162,3 @@
 
 Also, the the glade widget editor should be embed in Anjuta (glade-3 already has the necessary widgets).
 
-Pluing: Class wizard
-=======================================================================================

Modified: trunk/plugins/gtodo/gtodo-plain.xsl
==============================================================================
--- trunk/plugins/gtodo/gtodo-plain.xsl	(original)
+++ trunk/plugins/gtodo/gtodo-plain.xsl	Tue Jan 20 21:31:59 2009
@@ -58,7 +58,7 @@
 
 <xsl:otherwise>
 <xsl:for-each select="category">
-<xsl:if test="count(item) &gt; 0">
+    <xsl:if test="count(item/attribute[ done = '0'])">
 <xsl:apply-templates select="."/>
 </xsl:if>
 </xsl:for-each>



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]