[kune-commits] r1024 - in trunk: . src/main/java/org/ourproject/kune/platf/client/dto src/main/java/org/ourproject/kune/platf/client/state src/main/java/org/ourproject/kune/workspace/client/sitebar/siteoptions

vjrj vjrj at ourproject.org
Sat Jan 3 19:45:52 CET 2009


Author: vjrj
Date: 2009-01-03 19:45:49 +0100 (Sat, 03 Jan 2009)
New Revision: 1024

Modified:
   trunk/BUGS
   trunk/DEV-GUIDE
   trunk/TODO
   trunk/src/main/java/org/ourproject/kune/platf/client/dto/StateToken.java
   trunk/src/main/java/org/ourproject/kune/platf/client/state/StateManagerDefault.java
   trunk/src/main/java/org/ourproject/kune/workspace/client/sitebar/siteoptions/SiteOptionsPanel.java
Log:
bugtracking and mylyn doc. Minor changes

Modified: trunk/BUGS
===================================================================
--- trunk/BUGS	2009-01-03 03:16:29 UTC (rev 1023)
+++ trunk/BUGS	2009-01-03 18:45:49 UTC (rev 1024)
@@ -2,4 +2,5 @@
 --------------------------------------------------------------------------------
 
 For reports please use:
-  http://code.google.com/p/kune/issues/list
+  http://ourproject.org/tracker/?group_id=407
+  http://ourproject.org/tracker/?atid=139&group_id=407&func=browse
\ No newline at end of file

Modified: trunk/DEV-GUIDE
===================================================================
--- trunk/DEV-GUIDE	2009-01-03 03:16:29 UTC (rev 1023)
+++ trunk/DEV-GUIDE	2009-01-03 18:45:49 UTC (rev 1024)
@@ -41,6 +41,17 @@
 and the code conventions for the JavaTM Programming Language:
 http://java.sun.com/docs/codeconv/html/CodeConvTOC.doc.html
 
+==Use of mylyn in eclipse==
+
+To use mylyn and to track the kune issues from eclipse, you have to add a "Web Repository" and select "ASM (gforge" with server: http://ourproject.org. 
+In additional settings, put:
+* group_id: 407 
+* atid: 139. 
+Add a Repository Query with:
+* Query URL: ${serverUrl}/tracker/?bfunc=downloadcsv&group_id=${group_id}&atid=${atid}
+* Query Pattern: ({Id}[0-9]+?),[0-9]+,"({Type}.+?)",[0-9]+,[0-9]+,"[^"]+",[0-9]+,"({Owner}.+?)","[^"]+","[^"]+","[^"]+","({Description}.+?)","[^"]+"*
+Syncro your tasks.
+
 ==License==
 
 Attach the following notices to each source of the program at the begining:

Modified: trunk/TODO
===================================================================
--- trunk/TODO	2009-01-03 03:16:29 UTC (rev 1023)
+++ trunk/TODO	2009-01-03 18:45:49 UTC (rev 1024)
@@ -11,13 +11,20 @@
    Use org-mode in emacs to easy manage this file
 
 * SHORT-TERM (URGENT)
+** TODO <v> User preferences storing
+   We need a way to store (in db) User preferences (like emite chat configurations) in a extensible way.
+   Something similar to java.util.prefs.Preferences or Mozilla about:config
+   http://java.sun.com/developer/technicalArticles/releases/preferences/
+   "Because the Preferences API is back-end neutral, you need not care whether the data are stored in files, database tables, or a platform-specific storage such as the Windows Registry. In fact, you don't want to care, because the situation may differ across varying platforms, or even across implementations on the same platform."
+   More links:
+   http://stackoverflow.com/questions/194349/what-is-the-proper-way-to-store-apps-conf-data-in-java
 ** vjrj Styling braimstorming
 *** layouts
 *** screenshot
 *** html+css+variables
 *** logos
 *** caching
-** vjrj URLs public/workspace braimstorming
+** danigb,vjrj URLs public/workspace braimstorming
    Nowadays:
    - ws: #group.tool.container.content
    - public (prov): /public/group.tool.container.content.
@@ -35,6 +42,8 @@
    - how to point to some content comment, or to some revision (for example)
      examples: #a.b.c.d-c4 for a comment of #a.b.c.d-r2 for a rev.
      Solution: to extend StateToken
+   - Readable URLs
+     Posible solution: use #a.b.c.d-ln-some-readable-title /p/a.b.c.d-ln-some-readable-title and parse only a.b.c.d
    Some links:
    http://code.google.com/p/google-web-toolkit-doc-1-5/wiki/DevGuideHistory
    http://en.wikipedia.org/wiki/Fragment_identifier
@@ -323,6 +332,8 @@
    CLOSED: [2009-01-03 sáb 01:37]
 
 * LONG-TERM
+** Think about recommendations/suggestions
+   http://taste.sourceforge.net/
 * IDEAS
 ** <d> Try to find a way dozer maps directly without use getters/setters (less js code and better performance)
 

Modified: trunk/src/main/java/org/ourproject/kune/platf/client/dto/StateToken.java
===================================================================
--- trunk/src/main/java/org/ourproject/kune/platf/client/dto/StateToken.java	2009-01-03 03:16:29 UTC (rev 1023)
+++ trunk/src/main/java/org/ourproject/kune/platf/client/dto/StateToken.java	2009-01-03 18:45:49 UTC (rev 1024)
@@ -25,6 +25,7 @@
 
 /**
  * <pre>
+ * http://code.google.com/p/google-web-toolkit-doc-1-5/wiki/DevGuideHistory
  * http://en.wikipedia.org/wiki/Fragment_identifier
  * http://www.w3.org/DesignIssues/Fragment.html
  * </pre>

Modified: trunk/src/main/java/org/ourproject/kune/platf/client/state/StateManagerDefault.java
===================================================================
--- trunk/src/main/java/org/ourproject/kune/platf/client/state/StateManagerDefault.java	2009-01-03 03:16:29 UTC (rev 1023)
+++ trunk/src/main/java/org/ourproject/kune/platf/client/state/StateManagerDefault.java	2009-01-03 18:45:49 UTC (rev 1024)
@@ -108,6 +108,7 @@
     }
 
     public void onHistoryChanged(final String historyToken) {
+        // http://code.google.com/p/google-web-toolkit-doc-1-5/wiki/DevGuideHistory
         if (beforeStateChangeCollection.checkBeforeAction()) {
             final Listener0 tokenListener = siteTokens.get(historyToken);
             Log.debug("StateManager: history token changed (" + historyToken + ")");

Modified: trunk/src/main/java/org/ourproject/kune/workspace/client/sitebar/siteoptions/SiteOptionsPanel.java
===================================================================
--- trunk/src/main/java/org/ourproject/kune/workspace/client/sitebar/siteoptions/SiteOptionsPanel.java	2009-01-03 03:16:29 UTC (rev 1023)
+++ trunk/src/main/java/org/ourproject/kune/workspace/client/sitebar/siteoptions/SiteOptionsPanel.java	2009-01-03 18:45:49 UTC (rev 1024)
@@ -64,7 +64,7 @@
             @Override
             public void onClick(BaseItem item, EventObject e) {
                 super.onClick(item, e);
-                Window.open("http://code.google.com/p/kune/issues/list", "_blank", null);
+                Window.open("http://ourproject.org/tracker/?group_id=407", "_blank", null);
             }
         }, "images/kuneicon16.gif");
         optionsMenu.addItem(linkHelpInTrans);




More information about the kune-commits mailing list