Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Newsreader/Salvo UI Integration in the workbench/Work done during July 14 to July 20"

 
Line 1: Line 1:
 
 
I got passed from the mid term evaluation.  
 
I got passed from the mid term evaluation.  
 +
 
My mentor Wim Jongman and co-mentor Harshana gave me a good guidance and a support.  
 
My mentor Wim Jongman and co-mentor Harshana gave me a good guidance and a support.  
Thank you very much.
 
  
I continued the implementation of News Digest View.
+
Thank you very much.  
  
I did some modifications in the layouts of the digest view.
 
  
To show the most recent article on top in the digest view, I introdroduced two new methods.
 
  
1. orderArticlesFromNewestFirst() - Order articles from the newest first
+
I continued the implementation of News Digest View.
2. getLastReplyArticleNumber() - Get the articleNumber of last reply of the thread
+
 
 +
I did some modifications in the layouts of the digest view.
 +
 
 +
To show the most recent article on top in the digest view, I introdroduced two new methods.
 +
 
 +
1. orderArticlesFromNewestFirst() - Order articles from the newest first  
 +
 
 +
2. getLastReplyArticleNumber() - Get the articleNumber of last reply of the thread  
  
 
I placed those two methods in the ServerStoreFacade.  
 
I placed those two methods in the ServerStoreFacade.  
  
The current Article panel editor already gets the articles in the correct order.
+
The current Article panel editor already gets the articles in the correct order. But for the digest view it is required to order the articles manually. The reason may be we are taking out articles from the store randomly rather than a sequential order.  
But for the digest view it is required to order the articles manually.
+
 
The reason may be we are taking out articles from the store randomly rather than a sequential order.
+
 
  
 
Now I am working on implementing a way to synchronize store with the server automatically.
 
Now I am working on implementing a way to synchronize store with the server automatically.

Latest revision as of 08:01, 24 July 2011

I got passed from the mid term evaluation.

My mentor Wim Jongman and co-mentor Harshana gave me a good guidance and a support.

Thank you very much.


I continued the implementation of News Digest View.

I did some modifications in the layouts of the digest view.

To show the most recent article on top in the digest view, I introdroduced two new methods.

1. orderArticlesFromNewestFirst() - Order articles from the newest first

2. getLastReplyArticleNumber() - Get the articleNumber of last reply of the thread

I placed those two methods in the ServerStoreFacade.

The current Article panel editor already gets the articles in the correct order. But for the digest view it is required to order the articles manually. The reason may be we are taking out articles from the store randomly rather than a sequential order.


Now I am working on implementing a way to synchronize store with the server automatically.

Back to the top