Ignore:
Timestamp:
Jan 13, 2013, 8:11:07 PM (12 years ago)
Author:
alloc
Message:

AEI2:

  • Added mod download prior to installation
  • Dependency checking (needs verification)
  • Conflicts checking basis (not implemented)
  • Run Oni through AEI
Location:
AE/installer2/src/net/oni2/aeinstaller/backend/network
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • AE/installer2/src/net/oni2/aeinstaller/backend/network/DrupalJSONQuery.java

    r600 r605  
    112112         *            Number of page to get (for limited results, e.g. nodes), -1 to
    113113         *            ignore
     114         * @param pagesize
     115         *            Maximum number of elements to return
    114116         * @return JSON structure of item
    115117         * @throws Exception
    116118         *             on HTTP error
    117119         */
    118         public static JSONArray getIndex(String resource, int page)
     120        public static JSONArray getIndex(String resource, int page, int pagesize)
    119121                        throws Exception {
    120122                String pageN = "";
    121123                if (page >= 0)
    122124                        pageN = "&page=" + Integer.toString(page);
    123                 return executeQuery(getDepotUrl() + resource + ".json" + pageN, null);
     125                String pagesizeN = "";
     126                if (pagesize >= 0)
     127                        pagesizeN = "&pagesize=" + Integer.toString(pagesize);
     128                return executeQuery(getDepotUrl() + resource + ".json" + pageN
     129                                + pagesizeN, null);
    124130        }
    125131
  • AE/installer2/src/net/oni2/aeinstaller/backend/network/FileDownloader.java

    r604 r605  
    212212
    213213                                                                i++;
    214                                                                 if ((i % 10) == 0)
     214                                                                if ((i % 50) == 0)
    215215                                                                        updateStatus(downloaded, fileLength);
    216216                                                        }
Note: See TracChangeset for help on using the changeset viewer.