public void projectOpened() {

    TaskProjectConfiguration projectConfiguration = getProjectConfiguration();

    servers:
    for (TaskProjectConfiguration.SharedServer server : projectConfiguration.servers) {
      if (server.type == null || server.url == null) {
        continue;
      }
      for (TaskRepositoryType<?> repositoryType : TaskRepositoryType.getRepositoryTypes()) {
        if (repositoryType.getName().equals(server.type)) {
          for (TaskRepository repository : myRepositories) {
            if (!repositoryType.equals(repository.getRepositoryType())) {
              continue;
            }
            if (server.url.equals(repository.getUrl())) {
              continue servers;
            }
          }
          TaskRepository repository = repositoryType.createRepository();
          repository.setUrl(server.url);
          myRepositories.add(repository);
        }
      }
    }

    myContextManager.pack(200, 50);

    // make sure the task is associated with default changelist
    LocalTask defaultTask = findTask(LocalTaskImpl.DEFAULT_TASK_ID);
    LocalChangeList defaultList = myChangeListManager.findChangeList(LocalChangeList.DEFAULT_NAME);
    if (defaultList != null && defaultTask != null) {
      ChangeListInfo listInfo = new ChangeListInfo(defaultList);
      if (!defaultTask.getChangeLists().contains(listInfo)) {
        defaultTask.addChangelist(listInfo);
      }
    }

    // remove already not existing changelists from tasks changelists
    for (LocalTask localTask : getLocalTasks()) {
      for (Iterator<ChangeListInfo> iterator = localTask.getChangeLists().iterator();
          iterator.hasNext(); ) {
        final ChangeListInfo changeListInfo = iterator.next();
        if (myChangeListManager.getChangeList(changeListInfo.id) == null) {
          iterator.remove();
        }
      }
    }

    myChangeListManager.addChangeListListener(myChangeListListener);
  }
 public void testPack() throws Exception {
   WorkingContextManager contextManager = getContextManager();
   for (int i = 0; i < 5; i++) {
     contextManager.saveContext("context" + Integer.toString(i), null);
     Thread.sleep(2000);
   }
   List<ContextInfo> history = contextManager.getContextHistory();
   ContextInfo first = history.get(0);
   System.out.println(first.date);
   ContextInfo last = history.get(history.size() - 1);
   System.out.println(last.date);
   contextManager.pack(3, 1);
   history = contextManager.getContextHistory();
   assertEquals(3, history.size());
   System.out.println(history.get(0).date);
   assertEquals("/context2", history.get(0).name);
 }
 public void pack(int max, int delta) {
   pack(max, delta, CONTEXT_ZIP_POSTFIX);
   pack(max, delta, TASKS_ZIP_POSTFIX);
 }