Ignore:
Timestamp:
Sep 1, 2010, 6:48:53 PM (14 years ago)
Author:
mlg
Message:

Bug correction :
bug:0001837 : there is now a default translation file (in english), so the application won't crash when a translation is not found
bug:0001833 : the accents are manage when creating a new category
bug:0001832 : on a right click on the categories list, the selection is now visible
bug:0001830 : there is no bug on refreshing the categories tree

Features :
feature:001828 : exif and iptc tags are kept after resizing an image
feature:001827 : pwg.images.addChunk is now fully used : images are split into chunks before being sent

Other features :

  • The user can manage his preferences :

-The web images size
-The chunks size

  • The user can save the login informations (url, login, password) /!\ in a plain text file !
File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/jiwigo/trunk/src/main/java/fr/mael/jiwigo/service/CategoryService.java

    r6821 r6831  
    7373     * @throws IOException
    7474     */
    75     public List<Category> lister(boolean rafraichir, boolean recursive) throws IOException {
    76         return CategoryDao.getInstance().lister(rafraichir, recursive);
     75    public List<Category> lister(boolean recursive) throws IOException {
     76        return CategoryDao.getInstance().lister(recursive);
    7777    }
    7878
     
    8484     */
    8585    public List<Category> construireArbre() throws IOException {
    86         List<Category> list = CategoryDao.getInstance().lister(false, true);
     86        List<Category> list = CategoryDao.getInstance().lister(true);
    8787        for (Category category : list) {
    8888            for (Category category2 : list) {
Note: See TracChangeset for help on using the changeset viewer.