├── .gitignore ├── .travis.yml ├── README.md ├── distribution ├── assembly.xml ├── doc │ ├── Install.txt │ ├── License.txt │ ├── Readme.txt │ ├── Release_notes.txt │ └── sql │ │ ├── 100519_fix-backlogs-and-ranks.sql │ │ ├── db-version.sql │ │ ├── exampledb │ │ └── exampledb.sql │ │ ├── legacyfix.sql │ │ ├── rename-anony-tables.sql │ │ ├── updates │ │ ├── 131-132.sql │ │ ├── 132-133.sql │ │ ├── 132-133_pending.sql │ │ ├── 133-134.sql │ │ ├── 134-135.sql │ │ ├── 137-140.sql │ │ ├── 140-141.sql │ │ ├── 141-142.sql │ │ ├── 142-143.sql │ │ ├── 143-144.sql │ │ ├── 144-145.sql │ │ ├── 145-146.sql │ │ ├── 146-147.sql │ │ ├── 147-148.sql │ │ ├── 151-152.sql │ │ ├── 152-153.sql │ │ ├── 155-160.sql │ │ ├── 160-200.sql │ │ ├── 200_Alpha3-Alpha4.sql │ │ ├── 200_Alpha4-Alpha5.sql │ │ ├── 200_Alpha4-Alpha5_from160.sql │ │ ├── 200_beta1-beta2.sql │ │ ├── README │ │ ├── fix-tree-ranks.sql │ │ └── only_from_r3466_to_r3507.sql │ │ └── upgrader │ │ ├── 200b2-202.sql │ │ ├── 202-205.sql │ │ ├── 203-203beach.sql │ │ ├── 205-206.sql │ │ ├── 206-250.sql │ │ ├── 250-300.sql │ │ └── 300-301.sql └── pom.xml ├── pom.xml ├── set-version.sh ├── third-party ├── README.txt ├── flexjson-1.8-custom.jar ├── flexjson-1.8-custom.pom ├── install.sh ├── struts2jsonresult-0.99.jar └── struts2jsonresult-0.99.pom └── webapp ├── pom.xml └── src ├── main ├── devel-resources │ └── agilefant-logback.xml ├── java │ └── fi │ │ └── hut │ │ └── soberit │ │ └── agilefant │ │ ├── annotations │ │ └── PrefetchId.java │ │ ├── business │ │ ├── AgilefantWidgetBusiness.java │ │ ├── AssignmentBusiness.java │ │ ├── AuthorizationBusiness.java │ │ ├── BacklogBusiness.java │ │ ├── BacklogHistoryEntryBusiness.java │ │ ├── DailyWorkBusiness.java │ │ ├── ExportImportBusiness.java │ │ ├── ExportIterationBusiness.java │ │ ├── GenericBusiness.java │ │ ├── HolidayBusiness.java │ │ ├── HourEntryBusiness.java │ │ ├── IterationBurndownBusiness.java │ │ ├── IterationBusiness.java │ │ ├── IterationHistoryEntryBusiness.java │ │ ├── LabelBusiness.java │ │ ├── LoginBusiness.java │ │ ├── MenuBusiness.java │ │ ├── NotificationBusiness.java │ │ ├── PasswordBusiness.java │ │ ├── PersonalLoadBusiness.java │ │ ├── PortfolioBusiness.java │ │ ├── ProductBusiness.java │ │ ├── ProjectBurnupBusiness.java │ │ ├── ProjectBusiness.java │ │ ├── RankUnderDelegate.java │ │ ├── RankingBusiness.java │ │ ├── SearchBusiness.java │ │ ├── SettingBusiness.java │ │ ├── StoryAccessBusiness.java │ │ ├── StoryBatchBusiness.java │ │ ├── StoryBusiness.java │ │ ├── StoryFilterBusiness.java │ │ ├── StoryHierarchyBusiness.java │ │ ├── StoryRankBusiness.java │ │ ├── StoryTreeIntegrityBusiness.java │ │ ├── TaskBusiness.java │ │ ├── TaskSplitBusiness.java │ │ ├── TeamBusiness.java │ │ ├── TimesheetBusiness.java │ │ ├── TimesheetExportBusiness.java │ │ ├── TransferObjectBusiness.java │ │ ├── UserBusiness.java │ │ ├── WidgetCollectionBusiness.java │ │ └── impl │ │ │ ├── AgilefantWidgetBusinessImpl.java │ │ │ ├── AssignmentBusinessImpl.java │ │ │ ├── AuthorizationBusinessImpl.java │ │ │ ├── BacklogBusinessImpl.java │ │ │ ├── BacklogHistoryEntryBusinessImpl.java │ │ │ ├── DailyWorkBusinessImpl.java │ │ │ ├── ExportImportBusinessImpl.java │ │ │ ├── ExportIterationBusinessImpl.java │ │ │ ├── GenericBusinessImpl.java │ │ │ ├── HolidayBusinessImpl.java │ │ │ ├── HourEntryBusinessImpl.java │ │ │ ├── IterationBurndownBusinessImpl.java │ │ │ ├── IterationBusinessImpl.java │ │ │ ├── IterationHistoryEntryBusinessImpl.java │ │ │ ├── LabelBusinessImpl.java │ │ │ ├── LoginBusinessImpl.java │ │ │ ├── MenuBusinessImpl.java │ │ │ ├── NotificationEmailSender.java │ │ │ ├── PasswordBusinessImpl.java │ │ │ ├── PersonalLoadBusinessImpl.java │ │ │ ├── PortfolioBusinessImpl.java │ │ │ ├── ProductBusinessImpl.java │ │ │ ├── ProjectBurnupBusinessImpl.java │ │ │ ├── ProjectBusinessImpl.java │ │ │ ├── RankingBusinessImpl.java │ │ │ ├── SearchBusinessImpl.java │ │ │ ├── SettingBusinessImpl.java │ │ │ ├── StoryAccessBusinessImp.java │ │ │ ├── StoryBatchBusinessImpl.java │ │ │ ├── StoryBusinessImpl.java │ │ │ ├── StoryFilterBusinessImpl.java │ │ │ ├── StoryHierarchyBusinessImpl.java │ │ │ ├── StoryRankBusinessImpl.java │ │ │ ├── StoryTreeIntegrityBusinessImpl.java │ │ │ ├── TaskBusinessImpl.java │ │ │ ├── TaskSplitBusinessImpl.java │ │ │ ├── TeamBusinessImpl.java │ │ │ ├── TimesheetBusinessImpl.java │ │ │ ├── TimesheetExportBusinessImpl.java │ │ │ ├── TransferObjectBusinessImpl.java │ │ │ ├── UserBusinessImpl.java │ │ │ └── WidgetCollectionBusinessImpl.java │ │ ├── config │ │ ├── BootstrapperListener.java │ │ ├── BusinessConfiguration.java │ │ ├── ConfigFactoryBean.java │ │ ├── DaoConfiguration.java │ │ ├── DataSourceFactoryBean.java │ │ ├── DatabaseInitializer.java │ │ ├── ExportImportConfiguration.java │ │ ├── InitJFreeChartsListener.java │ │ ├── MasterConfiguration.java │ │ ├── RestConfiguration.java │ │ ├── TransactionConfiguration.java │ │ ├── UtilConfiguration.java │ │ └── WebConfiguration.java │ │ ├── core │ │ ├── ApplicationContextHolder.java │ │ └── ApplicationContextProvider.java │ │ ├── db │ │ ├── AgilefantWidgetDAO.java │ │ ├── AssignmentDAO.java │ │ ├── BacklogDAO.java │ │ ├── BacklogHistoryEntryDAO.java │ │ ├── BacklogHourEntryDAO.java │ │ ├── GenericDAO.java │ │ ├── HolidayDAO.java │ │ ├── HourEntryDAO.java │ │ ├── IterationDAO.java │ │ ├── IterationHistoryEntryDAO.java │ │ ├── LabelDAO.java │ │ ├── LoginDAO.java │ │ ├── ProductDAO.java │ │ ├── ProjectDAO.java │ │ ├── SettingDAO.java │ │ ├── StoryAccessDAO.java │ │ ├── StoryDAO.java │ │ ├── StoryHierarchyDAO.java │ │ ├── StoryHourEntryDAO.java │ │ ├── StoryRankDAO.java │ │ ├── TaskDAO.java │ │ ├── TaskHourEntryDAO.java │ │ ├── TeamDAO.java │ │ ├── UserDAO.java │ │ ├── WhatsNextEntryDAO.java │ │ ├── WhatsNextStoryEntryDAO.java │ │ ├── WidgetCollectionDAO.java │ │ ├── hibernate │ │ │ ├── AgilefantWidgetDAOHibernate.java │ │ │ ├── AssignmentDAOHibernate.java │ │ │ ├── BacklogDAOHibernate.java │ │ │ ├── BacklogHistoryEntryDAOHibernate.java │ │ │ ├── BacklogHourEntryDAOHibernate.java │ │ │ ├── Email.java │ │ │ ├── EmailValidator.java │ │ │ ├── GenericDAOHibernate.java │ │ │ ├── HolidayDAOHibernate.java │ │ │ ├── HourEntryDAOHibernate.java │ │ │ ├── IterationDAOHelpers.java │ │ │ ├── IterationDAOHibernate.java │ │ │ ├── IterationHistoryEntryDAOHibernate.java │ │ │ ├── LabelDAOHibernate.java │ │ │ ├── LoginDAOHibernate.java │ │ │ ├── ProductDAOHibernate.java │ │ │ ├── ProjectDAOHibernate.java │ │ │ ├── SettingDAOHibernate.java │ │ │ ├── StoryAccessDAOHibernate.java │ │ │ ├── StoryDAOHibernate.java │ │ │ ├── StoryHierarchyDAOHibernate.java │ │ │ ├── StoryHourEntryDAOHibernate.java │ │ │ ├── StoryRankDAOHibernate.java │ │ │ ├── StringEscapeFilter.java │ │ │ ├── StringTruncateFilter.java │ │ │ ├── TaskDAOHibernate.java │ │ │ ├── TaskHourEntryDAOHibernate.java │ │ │ ├── TeamDAOHibernate.java │ │ │ ├── TextUserType.java │ │ │ ├── TruncatedStringUserType.java │ │ │ ├── UserDAOHibernate.java │ │ │ ├── UserTypeFilter.java │ │ │ ├── VarcharUserType.java │ │ │ ├── WhatsNextEntryDAOHibernate.java │ │ │ ├── WhatsNextStoryEntryDAOHibernate.java │ │ │ ├── WidgetCollectionDAOHibernate.java │ │ │ ├── notification │ │ │ │ ├── HibernateEventWiring.java │ │ │ │ └── NotificationEventListener.java │ │ │ └── package-info.java │ │ ├── history │ │ │ ├── BacklogHistoryDAO.java │ │ │ ├── GenericHistoryDAO.java │ │ │ ├── StoryHistoryDAO.java │ │ │ ├── TaskHistoryDAO.java │ │ │ └── impl │ │ │ │ ├── AgilefantRevisionListener.java │ │ │ │ ├── BacklogHistoryDAOImpl.java │ │ │ │ ├── GenericHistoryDAOImpl.java │ │ │ │ ├── StoryHistoryDAOImpl.java │ │ │ │ └── TaskHistoryDAOImpl.java │ │ └── package-info.java │ │ ├── exception │ │ ├── ObjectNotFoundException.java │ │ ├── OperationNotPermittedException.java │ │ ├── ProductRankNotSupportedException.java │ │ └── StoryTreeIntegrityViolationException.java │ │ ├── exportimport │ │ ├── ExportImport.java │ │ ├── XmlBackupStreamGenerator.java │ │ └── XmlBackupper.java │ │ ├── flyway │ │ └── V1_11__HashPasswordsWithBCrypt.java │ │ ├── model │ │ ├── AgilefantRevisionEntity.java │ │ ├── AgilefantWidget.java │ │ ├── Assignment.java │ │ ├── Backlog.java │ │ ├── BacklogHistoryEntry.java │ │ ├── BacklogHourEntry.java │ │ ├── ExactDoubleEstimate.java │ │ ├── ExactEstimate.java │ │ ├── Holiday.java │ │ ├── HolidayAnomaly.java │ │ ├── HourEntry.java │ │ ├── Iteration.java │ │ ├── IterationHistoryEntry.java │ │ ├── Label.java │ │ ├── LabelContainer.java │ │ ├── Login.java │ │ ├── NamedObject.java │ │ ├── Product.java │ │ ├── Project.java │ │ ├── Rankable.java │ │ ├── Schedulable.java │ │ ├── Setting.java │ │ ├── SignedExactEstimate.java │ │ ├── StandAloneIteration.java │ │ ├── Status.java │ │ ├── Story.java │ │ ├── StoryAccess.java │ │ ├── StoryHourEntry.java │ │ ├── StoryRank.java │ │ ├── StoryState.java │ │ ├── Task.java │ │ ├── TaskContainer.java │ │ ├── TaskHourEntry.java │ │ ├── TaskState.java │ │ ├── Team.java │ │ ├── TimesheetLoggable.java │ │ ├── User.java │ │ ├── WhatsNextEntry.java │ │ ├── WhatsNextStoryEntry.java │ │ ├── WidgetCollection.java │ │ ├── notification │ │ │ ├── NotificationConfiguration.java │ │ │ ├── NotificationEvent.java │ │ │ └── NotificationEventType.java │ │ └── package-info.java │ │ ├── readonly │ │ ├── InvalidReadOnlyAccessException.java │ │ ├── ReadonlyFilter.java │ │ └── TokenFilter.java │ │ ├── remote │ │ ├── AuthenticationResource.java │ │ ├── IterationResource.java │ │ ├── ProductResource.java │ │ ├── ProjectResource.java │ │ ├── StoryResource.java │ │ └── TimesheetResource.java │ │ ├── security │ │ ├── AgilefantUserDetails.java │ │ ├── AgilefantUserDetailsService.java │ │ ├── RemoteServicesFilter.java │ │ ├── RestrictActionPathFilter.java │ │ ├── SecurityUtil.java │ │ ├── SetupUserFilter.java │ │ ├── WrappingMD5PasswordEncoder.java │ │ └── package-info.java │ │ ├── transfer │ │ ├── AgilefantHistoryEntry.java │ │ ├── AssignedWorkTO.java │ │ ├── AssignmentTO.java │ │ ├── AutocompleteDataNode.java │ │ ├── BacklogInfoCollectionTO.java │ │ ├── BacklogInfoTO.java │ │ ├── BacklogLoadContainer.java │ │ ├── BacklogTimesheetNode.java │ │ ├── BacklogType.java │ │ ├── ComputedLoadData.java │ │ ├── DailySpentEffort.java │ │ ├── DailyUserSpentEffortTO.java │ │ ├── DailyWorkTaskTO.java │ │ ├── HistoryRowTO.java │ │ ├── HourEntryDelta.java │ │ ├── IntervalLoadContainer.java │ │ ├── IterationLoadContainer.java │ │ ├── IterationMetrics.java │ │ ├── IterationTO.java │ │ ├── LeafStoryContainer.java │ │ ├── MenuDataNode.java │ │ ├── MoveStoryNode.java │ │ ├── PortfolioTO.java │ │ ├── ProductTO.java │ │ ├── ProjectDataContainer.java │ │ ├── ProjectLoadContainer.java │ │ ├── ProjectMetrics.java │ │ ├── ProjectTO.java │ │ ├── ScheduleStatus.java │ │ ├── Scheduled.java │ │ ├── SearchResultRow.java │ │ ├── StoryAccessCloudTO.java │ │ ├── StoryTO.java │ │ ├── StoryTimesheetNode.java │ │ ├── StoryTreeBranchMetrics.java │ │ ├── TaskTO.java │ │ ├── TaskTimesheetNode.java │ │ ├── TimesheetReportTO.java │ │ ├── UnassignedLoadTO.java │ │ ├── UserLoadLimits.java │ │ └── package-info.java │ │ ├── util │ │ ├── AgilefantBuild.java │ │ ├── AgilefantBuildInitializer.java │ │ ├── BacklogConverter.java │ │ ├── BeanCopier.java │ │ ├── ChildHandlingChoice.java │ │ ├── CustomXYStepRenderer.java │ │ ├── DateTimeConverter.java │ │ ├── DateTimeUtils.java │ │ ├── DbConnectionInfo.java │ │ ├── EnumConverter.java │ │ ├── ExactEstimateConverter.java │ │ ├── ExactEstimateUtils.java │ │ ├── HourEntryHandlingChoice.java │ │ ├── MinorUnitsParser.java │ │ ├── MyAssignmentsMenuBuilder.java │ │ ├── NamedObjectComparator.java │ │ ├── OnlyDateConverter.java │ │ ├── Pair.java │ │ ├── ProjectBurnupData.java │ │ ├── SignedExactEstimateConverter.java │ │ ├── StoryComparator.java │ │ ├── StoryFilters.java │ │ ├── StoryHierarchyIntegrityViolationType.java │ │ ├── StoryMetrics.java │ │ ├── StoryTreeIntegrityMessage.java │ │ ├── StoryTreeIntegrityUtils.java │ │ ├── TaskHandlingChoice.java │ │ ├── TimesheetData.java │ │ ├── TimesheetExportRowData.java │ │ ├── TimesheetExportRowDataComparator.java │ │ ├── TimesheetNode.java │ │ ├── TokenGenerator.java │ │ ├── TransactionLoggerAspect.java │ │ ├── Triple.java │ │ ├── UserConverter.java │ │ ├── XmlDateTimeAdapter.java │ │ ├── XmlExactEstimateAdapter.java │ │ └── package-info.java │ │ └── web │ │ ├── AccessAction.java │ │ ├── AjaxExceptionHandler.java │ │ ├── AssignmentAction.java │ │ ├── AuthorizationInterceptor.java │ │ ├── AutocompleteAction.java │ │ ├── BacklogAction.java │ │ ├── CRUDAction.java │ │ ├── ChartAction.java │ │ ├── ContextAware.java │ │ ├── ContextViewAction.java │ │ ├── DailyWorkAction.java │ │ ├── DatabaseExportAction.java │ │ ├── ExceptionHandler.java │ │ ├── ExportIterationAction.java │ │ ├── FileUploadAction.java │ │ ├── HolidayAction.java │ │ ├── HourEntryAction.java │ │ ├── IterationAction.java │ │ ├── IterationHistoryAction.java │ │ ├── LabelAction.java │ │ ├── LoginContextAction.java │ │ ├── MenuAction.java │ │ ├── MultipleStoryAction.java │ │ ├── PasswordAction.java │ │ ├── PortletAction.java │ │ ├── PrefetchInterceptor.java │ │ ├── Prefetching.java │ │ ├── ProductAction.java │ │ ├── ProjectAction.java │ │ ├── ProjectPortfolioAction.java │ │ ├── ROIterationAction.java │ │ ├── ReferenceIDAction.java │ │ ├── RefreshUserInterceptor.java │ │ ├── ResolveSearchResultAction.java │ │ ├── SearchAction.java │ │ ├── SecurityInterceptor.java │ │ ├── SettingAction.java │ │ ├── SettingsInterceptor.java │ │ ├── SpentEffortAction.java │ │ ├── StoryAccessAction.java │ │ ├── StoryAction.java │ │ ├── StoryHierarchyAction.java │ │ ├── StoryListAction.java │ │ ├── StoryTreeIntegrityAction.java │ │ ├── TaskAction.java │ │ ├── TaskSplitAction.java │ │ ├── TeamAction.java │ │ ├── TimesheetAction.java │ │ ├── UserAction.java │ │ ├── UserLoadAction.java │ │ ├── WidgetAction.java │ │ ├── context │ │ └── ContextViewInterceptor.java │ │ ├── filters │ │ └── ResponseHeaderFilter.java │ │ ├── function │ │ ├── AEFFunctions.java │ │ └── package-info.java │ │ ├── tag │ │ ├── CssTag.java │ │ ├── CurrentBacklogTag.java │ │ ├── ExistingObjectsTag.java │ │ ├── JavascriptTag.java │ │ ├── SpringTagSupport.java │ │ ├── StaticResourceTag.java │ │ └── package-info.java │ │ └── widgets │ │ ├── CommonWidget.java │ │ ├── IterationMetricsWidget.java │ │ ├── ProjectMetricsWidget.java │ │ ├── StoryWidget.java │ │ └── UserLoadWidget.java ├── resources │ ├── agilefant │ │ ├── flyway │ │ │ ├── V0__Initial_version.sql │ │ │ ├── V1_10__HashPasswordsWithBCrypt.sql │ │ │ ├── V1_12__Remove_old_password_column.sql │ │ │ ├── V1_13__Enable_sections.sql │ │ │ ├── V1_14__autoassign_stories_default.sql │ │ │ └── V1__updated_version.sql │ │ ├── logback-file.xml │ │ └── logback-stdout.xml │ ├── freemarker.properties │ ├── messages.properties │ ├── struts-ajax.xml │ ├── struts-ajax │ │ ├── assignment.xml │ │ ├── backlogs.xml │ │ ├── chooserData.xml │ │ ├── dailyWork.xml │ │ ├── label.xml │ │ ├── menu.xml │ │ ├── portfolio.xml │ │ ├── search.xml │ │ ├── story.xml │ │ ├── storyTree.xml │ │ ├── task.xml │ │ ├── team.xml │ │ ├── timesheets.xml │ │ ├── user.xml │ │ └── widget.xml │ ├── struts.properties │ ├── struts.xml │ └── xwork-conversion.properties └── webapp │ ├── WEB-INF │ ├── agilefant.conf │ ├── applicationContext-core.xml │ ├── applicationContext-email.xml │ ├── applicationContext-notifications.xml │ ├── applicationContext-security.xml │ ├── configuration.properties │ ├── ftl │ │ ├── storyTree.ftl │ │ ├── storyTreeField.ftl │ │ ├── storyTreeNode.ftl │ │ └── storyTreePart.ftl │ ├── hibernate.cfg.xml │ ├── jsp │ │ ├── ROIteration.jsp │ │ ├── administration │ │ │ ├── accessRights.jsp │ │ │ ├── dbExport.jsp │ │ │ ├── editUser.jsp │ │ │ ├── listTeams.jsp │ │ │ ├── listUsers.jsp │ │ │ └── settings.jsp │ │ ├── dailyWork.jsp │ │ ├── dbExportError.jsp │ │ ├── dbImportError.jsp │ │ ├── editIteration.jsp │ │ ├── editProduct.jsp │ │ ├── editProject.jsp │ │ ├── extendedhelp.jsp │ │ ├── fatalError.jsp │ │ ├── forms │ │ │ ├── checkStoryMove.jsp │ │ │ ├── deleteIterationForm.jsp │ │ │ ├── deleteProductForm.jsp │ │ │ ├── deleteProjectForm.jsp │ │ │ ├── deleteStoryForm.jsp │ │ │ ├── deleteTaskForm.jsp │ │ │ ├── deleteTeamForm.jsp │ │ │ ├── moveOptions │ │ │ │ ├── moveOption_moveParentsToProduct.jsp │ │ │ │ ├── moveOption_moveStoryAndChildren.jsp │ │ │ │ └── moveOption_moveStoryOnly.jsp │ │ │ ├── shareIterationForm.jsp │ │ │ └── unshareIterationForm.jsp │ │ ├── fragments │ │ │ ├── branchMetrics.jsp │ │ │ ├── iterationMingledHistory.jsp │ │ │ └── productBacklogView.jsp │ │ ├── genericError.jsp │ │ ├── help.jsp │ │ ├── helpWithoutFrames.jsp │ │ ├── inc │ │ │ ├── _projectStatusIcon.jsp │ │ │ ├── _taglibs.jsp │ │ │ ├── _userLoad.jsp │ │ │ ├── includeDynamics.jsp │ │ │ ├── includeSimile.jsp │ │ │ ├── iterationMetrics.jsp │ │ │ ├── iterationRowMetrics.jsp │ │ │ ├── overlay.jsp │ │ │ ├── projectMetrics.jsp │ │ │ ├── selectBacklog.jsp │ │ │ ├── spentEffort.jsp │ │ │ ├── storyHierarchy.jsp │ │ │ └── taskHierarchy.jsp │ │ ├── newPassword.jsp │ │ ├── noauthError.jsp │ │ ├── notFoundError.jsp │ │ ├── notadminError.jsp │ │ ├── portlets.jsp │ │ ├── projectPortfolio.jsp │ │ ├── selectBacklog.jsp │ │ ├── timesheet.jsp │ │ ├── timesheetError.jsp │ │ └── widgets │ │ │ ├── iterationMetricsWidget.jsp │ │ │ ├── projectMetricsWidget.jsp │ │ │ ├── storyWidget.jsp │ │ │ └── userLoadWidget.jsp │ ├── tags │ │ ├── backlogBreadCrumb.tag │ │ ├── datepicker.tag │ │ ├── settingStoryTreeField.tag │ │ ├── storyTreeField.tag │ │ ├── storyTreeIntegrity │ │ │ ├── integrityStoryTreeNode.tag │ │ │ ├── nodeContent.tag │ │ │ ├── storyTreeChildren.tag │ │ │ └── storyTreeNode_moveStoryNode.tag │ │ ├── storyTreeNode.tag │ │ ├── structure │ │ │ ├── backlogmenu.tag │ │ │ ├── createNewMenu.tag │ │ │ ├── defaultFooter.tag │ │ │ ├── defaultHeader.tag │ │ │ ├── defaultRightHeader.tag │ │ │ ├── defaultTabs.tag │ │ │ ├── help.tag │ │ │ ├── structure.tag │ │ │ └── widget.tag │ │ ├── timesheetBacklogNode.tag │ │ ├── timesheetHourEntryList.tag │ │ ├── timesheetStoryNode.tag │ │ └── timesheetTaskNode.tag │ ├── tlds │ │ ├── aef.tld │ │ ├── aef_integrity.tld │ │ └── aef_structure.tld │ ├── web.xml │ ├── wro.properties │ └── wro.xml │ ├── demo-login.jsp │ ├── index.html │ ├── index.jsp │ ├── login.jsp │ ├── oops.jsp │ ├── static │ ├── css │ │ ├── IE7styles.css │ │ ├── IE8styles.css │ │ ├── autoSuggest.css │ │ ├── autocomplete.css │ │ ├── dailywork.css │ │ ├── dynamics.messages.css │ │ ├── dynamictable.css │ │ ├── hyperLinks.css │ │ ├── import.css │ │ ├── jquery-ui.css │ │ ├── jquery.wysiwyg.css │ │ ├── jstree │ │ │ └── storytree │ │ │ │ ├── bg.jpg │ │ │ │ ├── d.png │ │ │ │ ├── dot_for_ie.gif │ │ │ │ ├── icons.png │ │ │ │ ├── style.css │ │ │ │ └── throbber.gif │ │ ├── main.css │ │ ├── portfolio.css │ │ ├── simile.css │ │ ├── structure.css │ │ ├── structure.hierarchy.css │ │ ├── structure.tables.css │ │ ├── structure.text.css │ │ ├── structure.ui.css │ │ ├── timeline-bundle.css │ │ ├── timeline │ │ │ ├── ether.css │ │ │ ├── event.css │ │ │ └── timeline.css │ │ ├── timeplot.css │ │ ├── timesheets.css │ │ ├── tiny.css │ │ └── ui.dynatree.css │ ├── error.json │ ├── html │ │ ├── help │ │ │ ├── branchMetricsPopup.html │ │ │ ├── dailyWorkPopup.html │ │ │ ├── devPortfolioPopup.html │ │ │ └── timesheetsPopup.html │ │ └── storyconstraints │ │ │ ├── childInWrongBranch.html │ │ │ ├── moveToIterationHasChildren.html │ │ │ └── parentDeeperInHierarchy.html │ ├── img │ │ ├── add.png │ │ ├── add_theme.png │ │ ├── agilefant-logo-94px.png │ │ ├── arrow_bottom.png │ │ ├── arrow_down.png │ │ ├── arrow_top.png │ │ ├── arrow_up.png │ │ ├── attach.png │ │ ├── attention.png │ │ ├── backlog.png │ │ ├── bubble_arrow.png │ │ ├── button_fade.png │ │ ├── calendar.gif │ │ ├── cancel.png │ │ ├── cloud.png │ │ ├── corner.png │ │ ├── create_new.png │ │ ├── dailyWork.png │ │ ├── delete.png │ │ ├── delete_18.png │ │ ├── disable.png │ │ ├── disable_user_gray.png │ │ ├── dynatree │ │ │ ├── cbChecked.gif │ │ │ ├── cbChecked_hover.gif │ │ │ ├── cbIntermediate.gif │ │ │ ├── cbIntermediate_hover.gif │ │ │ ├── cbUnchecked.gif │ │ │ ├── cbUnchecked_hover.gif │ │ │ ├── customDoc1.gif │ │ │ ├── customFolder1.gif │ │ │ ├── ltD_ne.gif │ │ │ ├── ltD_nes.gif │ │ │ ├── ltDoc.gif │ │ │ ├── ltError.gif │ │ │ ├── ltFld.gif │ │ │ ├── ltFld_o.gif │ │ │ ├── ltL_.gif │ │ │ ├── ltL_ne.gif │ │ │ ├── ltL_nes.gif │ │ │ ├── ltL_ns.gif │ │ │ ├── ltM_ne.gif │ │ │ ├── ltM_nes.gif │ │ │ ├── ltP_ne.gif │ │ │ ├── ltP_nes.gif │ │ │ ├── ltWait.gif │ │ │ ├── rbChecked.gif │ │ │ ├── rbChecked_hover.gif │ │ │ ├── rbIntermediate.gif │ │ │ ├── rbIntermediate_hover.gif │ │ │ ├── rbUnchecked.gif │ │ │ └── rbUnchecked_hover.gif │ │ ├── edit.png │ │ ├── edit_new.png │ │ ├── empty.png │ │ ├── enable.png │ │ ├── expand.png │ │ ├── fant_small.png │ │ ├── favicon.png │ │ ├── featureoverview.png │ │ ├── filter.png │ │ ├── filter_large.png │ │ ├── gear.png │ │ ├── goal.png │ │ ├── gradient.png │ │ ├── help │ │ │ ├── additional_views.png │ │ │ ├── backlog_spent_effort.png │ │ │ ├── change_password.png │ │ │ ├── create_product.png │ │ │ ├── create_user.png │ │ │ ├── load_graph.png │ │ │ ├── mail.gif │ │ │ ├── story_info_bubble.png │ │ │ └── story_spent_effort.png │ │ ├── hierarchy_arrow.png │ │ ├── hr_left.png │ │ ├── info.png │ │ ├── jquery.wysiwyg.gif │ │ ├── labelIcon.png │ │ ├── leaf_stories.png │ │ ├── link.png │ │ ├── login_gradient.png │ │ ├── main_tabs.png │ │ ├── minus.png │ │ ├── new.png │ │ ├── nonestimated.png │ │ ├── noresults.png │ │ ├── ok.png │ │ ├── onepixelimage.gif │ │ ├── open_close.png │ │ ├── pleasewait.gif │ │ ├── plus.png │ │ ├── plusminus.png │ │ ├── portfolio.png │ │ ├── progress.png │ │ ├── question.png │ │ ├── rank.png │ │ ├── refresh.png │ │ ├── search.png │ │ ├── search_small.png │ │ ├── settings.png │ │ ├── simile_copyright.png │ │ ├── simile_tl_copyright-vertical.png │ │ ├── simile_tl_copyright.png │ │ ├── sort.png │ │ ├── special-hour-entry-report.gif │ │ ├── star_red.png │ │ ├── status-black.png │ │ ├── status-green.png │ │ ├── status-grey.png │ │ ├── status-red.png │ │ ├── status-yellow.png │ │ ├── story.png │ │ ├── story2.png │ │ ├── story_tree.png │ │ ├── svg │ │ │ ├── Agilefant logo.svg │ │ │ ├── expand.svg │ │ │ ├── goal.svg │ │ │ ├── iconpack │ │ │ │ ├── attach.svg │ │ │ │ ├── attention.svg │ │ │ │ ├── createnew.svg │ │ │ │ ├── delete.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── expand_collapse.svg │ │ │ │ ├── gear.svg │ │ │ │ ├── open_close.svg │ │ │ │ ├── question.svg │ │ │ │ ├── refresh.svg │ │ │ │ ├── sort.svg │ │ │ │ ├── timesheets.svg │ │ │ │ └── toggle.svg │ │ │ ├── info.svg │ │ │ ├── link.svg │ │ │ ├── new.svg │ │ │ ├── progress.svg │ │ │ ├── story2.svg │ │ │ ├── theme.svg │ │ │ └── toggle_menu.svg │ │ ├── tabs.png │ │ ├── team.png │ │ ├── team_add_users.png │ │ ├── team_remove_users.png │ │ ├── theme.png │ │ ├── timeline │ │ │ ├── bubble-bottom-arrow.png │ │ │ ├── bubble-bottom-left.png │ │ │ ├── bubble-bottom-right.png │ │ │ ├── bubble-bottom.png │ │ │ ├── bubble-left-arrow.png │ │ │ ├── bubble-left.png │ │ │ ├── bubble-right-arrow.png │ │ │ ├── bubble-right.png │ │ │ ├── bubble-top-left.png │ │ │ ├── bubble-top-right.png │ │ │ ├── bubble-top.png │ │ │ ├── close-button.png │ │ │ ├── copyright-vertical.png │ │ │ ├── dark-blue-circle.png │ │ │ ├── dark-green-circle.png │ │ │ ├── dark-red-circle.png │ │ │ ├── images │ │ │ │ ├── copyright.png │ │ │ │ ├── line_left.png │ │ │ │ ├── line_right.png │ │ │ │ └── progress-running.gif │ │ │ ├── iteration-circle-small.png │ │ │ ├── message-bottom-left.png │ │ │ ├── message-bottom-right.png │ │ │ ├── message-left.png │ │ │ ├── message-right.png │ │ │ ├── message-top-left.png │ │ │ ├── message-top-right.png │ │ │ ├── progress-running.gif │ │ │ ├── status-green-small.png │ │ │ ├── status-red-small.png │ │ │ ├── status-yellow-small.png │ │ │ └── top-bubble.png │ │ ├── timesheets.png │ │ ├── timesheets_new.png │ │ ├── toggle.png │ │ ├── top-logo.png │ │ ├── treeview-default.gif │ │ ├── treeview-line.gif │ │ ├── triangle.png │ │ ├── ui │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_gloss-wave_100_a070d2_500x100.png │ │ │ ├── ui-bg_gloss-wave_100_e09600_500x100.png │ │ │ ├── ui-bg_gloss-wave_55_333333_500x100.png │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ ├── ui-icons_f9bd01_256x240.png │ │ │ └── ui-widget-droppable-gradient.png │ │ ├── unassigned.png │ │ ├── unrank.png │ │ ├── users.png │ │ ├── vert_tabs.png │ │ └── working.gif │ ├── js │ │ ├── autocomplete │ │ │ ├── autocompleteBundle.js │ │ │ ├── autocompleteDataProvider.js │ │ │ ├── autocompleteDialog.js │ │ │ ├── autocompleteInline.js │ │ │ ├── autocompleteRecent.js │ │ │ ├── autocompleteRemoveAllItems.js │ │ │ ├── autocompleteSearchBox.js │ │ │ ├── autocompleteSelectAllItems.js │ │ │ ├── autocompleteSelectedBox.js │ │ │ └── autocompleteSingleDialog.js │ │ ├── backlogChooser.js │ │ ├── backlogSelector.js │ │ ├── date.js │ │ ├── dynamics │ │ │ ├── Dynamics.events.js │ │ │ ├── controller │ │ │ │ ├── AccessListController.js │ │ │ │ ├── AccessRowController.js │ │ │ │ ├── AdministrationMenuController.js │ │ │ │ ├── AssignmentController.js │ │ │ │ ├── BacklogController.js │ │ │ │ ├── CommonController.js │ │ │ │ ├── CreateDialog.js │ │ │ │ ├── DailyWorkController.js │ │ │ │ ├── DailyWorkStoryListController.js │ │ │ │ ├── DailyWorkTasksWithoutStoryController.js │ │ │ │ ├── HourEntryController.js │ │ │ │ ├── HourEntryListController.js │ │ │ │ ├── IterationController.js │ │ │ │ ├── IterationRowController.js │ │ │ │ ├── MenuController.js │ │ │ │ ├── MyAssignmentsMenuController.js │ │ │ │ ├── PageController.js │ │ │ │ ├── PersonalLoadController.js │ │ │ │ ├── PortfolioController.js │ │ │ │ ├── PortfolioRowController.js │ │ │ │ ├── ProductController.js │ │ │ │ ├── ProjectController.js │ │ │ │ ├── ProjectRowController.js │ │ │ │ ├── ROIterationController.js │ │ │ │ ├── ROStoryListController.js │ │ │ │ ├── StoryController.js │ │ │ │ ├── StoryInfoBubble.js │ │ │ │ ├── StoryListController.js │ │ │ │ ├── StoryTreeController.js │ │ │ │ ├── TaskController.js │ │ │ │ ├── TaskInfoDialog.js │ │ │ │ ├── TaskSplitDialog.js │ │ │ │ ├── TasksWithoutStoryController.js │ │ │ │ ├── TeamListController.js │ │ │ │ ├── TeamRowController.js │ │ │ │ ├── UserController.js │ │ │ │ ├── UserListController.js │ │ │ │ ├── UserRowController.js │ │ │ │ └── WorkQueueController.js │ │ │ ├── model │ │ │ │ ├── AccessListContainer.js │ │ │ │ ├── AssignmentModel.js │ │ │ │ ├── BacklogModel.js │ │ │ │ ├── CommonModel.js │ │ │ │ ├── DailyWorkModel.js │ │ │ │ ├── HourEntryListContainer.js │ │ │ │ ├── HourEntryModel.js │ │ │ │ ├── IterationModel.js │ │ │ │ ├── LabelModel.js │ │ │ │ ├── ModelFactory.js │ │ │ │ ├── PortfolioModel.js │ │ │ │ ├── ProductModel.js │ │ │ │ ├── ProjectModel.js │ │ │ │ ├── StoryModel.js │ │ │ │ ├── TaskModel.js │ │ │ │ ├── TaskSplitContainer.js │ │ │ │ ├── TeamListContainer.js │ │ │ │ ├── TeamModel.js │ │ │ │ ├── UserListContainer.js │ │ │ │ ├── UserModel.js │ │ │ │ ├── WorkQueueTaskModel.js │ │ │ │ └── comparators.js │ │ │ └── view │ │ │ │ ├── Bubble.js │ │ │ │ ├── Cell.js │ │ │ │ ├── ChangePasswordDialog.js │ │ │ │ ├── CommonFragmentSubView.js │ │ │ │ ├── CommonSubView.js │ │ │ │ ├── ConfirmationDialog.js │ │ │ │ ├── DynamicView.js │ │ │ │ ├── HourEntryDialog.js │ │ │ │ ├── LazyLoadedDialog.js │ │ │ │ ├── MessageDisplay.js │ │ │ │ ├── MultiEditWidget.js │ │ │ │ ├── Row.js │ │ │ │ ├── SearchByTextWidget.js │ │ │ │ ├── SpentEffortWidget.js │ │ │ │ ├── StateFilterWidget.js │ │ │ │ ├── StoryFiltersView.js │ │ │ │ ├── Table.js │ │ │ │ ├── TableCaption.js │ │ │ │ ├── TableCellEditors.js │ │ │ │ ├── TableConfiguration.js │ │ │ │ ├── UserSpentEffortWidget.js │ │ │ │ ├── ValidationManager.js │ │ │ │ ├── ViewPart.js │ │ │ │ ├── decorators.js │ │ │ │ └── subviews │ │ │ │ ├── AutoSuggest.js │ │ │ │ ├── Button.js │ │ │ │ ├── Buttons.js │ │ │ │ ├── CellBubble.js │ │ │ │ ├── LabelsIcon.js │ │ │ │ ├── LabelsView.js │ │ │ │ ├── RowActions.js │ │ │ │ ├── SplitPanel.js │ │ │ │ ├── StoryInfoWidget.js │ │ │ │ ├── Tabs.js │ │ │ │ ├── TaskInfoWidget.js │ │ │ │ └── Toggle.js │ │ ├── excanvas.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.autoSuggest.js │ │ ├── jquery.cookie.js │ │ ├── jquery.dynatree.js │ │ ├── jquery.hotkeys.js │ │ ├── jquery.js │ │ ├── jquery.jstree.js │ │ ├── jquery.labelify.js │ │ ├── jquery.min.js │ │ ├── jquery.tagcloud.min.js │ │ ├── jquery.tooltip.js │ │ ├── jquery.wysiwyg.js │ │ ├── simile │ │ │ ├── ajax │ │ │ │ ├── ajax.js │ │ │ │ ├── data-structure.js │ │ │ │ ├── date-time.js │ │ │ │ ├── debug.js │ │ │ │ ├── dom.js │ │ │ │ ├── graphics.js │ │ │ │ ├── history.js │ │ │ │ ├── html.js │ │ │ │ ├── json.js │ │ │ │ ├── platform.js │ │ │ │ ├── signal.js │ │ │ │ ├── string.js │ │ │ │ ├── units.js │ │ │ │ ├── window-manager.js │ │ │ │ └── xmlhttp.js │ │ │ ├── extensions │ │ │ │ ├── LoadPlot.js │ │ │ │ ├── UserLoadPlotWidget.js │ │ │ │ ├── portfolio-eventsource.js │ │ │ │ └── user-load-timeplot-source.js │ │ │ ├── init.js │ │ │ ├── timeline │ │ │ │ ├── band.js │ │ │ │ ├── compact-painter.js │ │ │ │ ├── decorators.js │ │ │ │ ├── detailed-painter.js │ │ │ │ ├── ether-painters.js │ │ │ │ ├── ethers.js │ │ │ │ ├── event-utils.js │ │ │ │ ├── labellers.js │ │ │ │ ├── original-painter.js │ │ │ │ ├── overview-painter.js │ │ │ │ ├── sources.js │ │ │ │ ├── themes.js │ │ │ │ ├── timeline.js │ │ │ │ └── units.js │ │ │ └── timeplot │ │ │ │ ├── color.js │ │ │ │ ├── geometry.js │ │ │ │ ├── math.js │ │ │ │ ├── plot.js │ │ │ │ ├── processor.js │ │ │ │ ├── sources.js │ │ │ │ └── timeplot.js │ │ ├── tests │ │ │ ├── autocomplete │ │ │ │ ├── autocomplete.bundle.test.js │ │ │ │ ├── autocomplete.dataProvider.test.js │ │ │ │ ├── autocomplete.search.test.js │ │ │ │ ├── autocomplete.selection.test.js │ │ │ │ ├── autocompleteBundle.test.js │ │ │ │ ├── autocompleteDataProvider.test.js │ │ │ │ ├── autocompleteRecent.test.js │ │ │ │ ├── autocompleteSearch.test.js │ │ │ │ └── autocompleteSelection.test.js │ │ │ ├── dynamics │ │ │ │ ├── Dynamics.events.test.js │ │ │ │ ├── controller │ │ │ │ │ ├── BacklogController.test.js │ │ │ │ │ ├── CommonController.test.js │ │ │ │ │ ├── IterationController.test.js │ │ │ │ │ ├── PageController.test.js │ │ │ │ │ ├── StoryController.test.js │ │ │ │ │ └── TaskController.test.js │ │ │ │ ├── model │ │ │ │ │ ├── BacklogModel.test.js │ │ │ │ │ ├── CommonModel.test.js │ │ │ │ │ ├── IterationModel.test.js │ │ │ │ │ ├── ModelFactory.test.js │ │ │ │ │ ├── ProjectModel.test.js │ │ │ │ │ ├── StoryModel.test.js │ │ │ │ │ ├── TaskModel.test.js │ │ │ │ │ ├── UserModel.test.js │ │ │ │ │ └── comparators.test.js │ │ │ │ └── view │ │ │ │ │ ├── Cell.test.js │ │ │ │ │ ├── DynamicView.test.js │ │ │ │ │ ├── Row.test.js │ │ │ │ │ ├── RowAction.test.js │ │ │ │ │ ├── SearchByTextWidget.test.js │ │ │ │ │ ├── Table.test.js │ │ │ │ │ ├── TableCaption.test.js │ │ │ │ │ ├── TableCellEditors.test.js │ │ │ │ │ ├── Toggle.test.js │ │ │ │ │ └── ValidationManager.test.js │ │ │ ├── jsmock.js │ │ │ ├── qunit.js │ │ │ ├── test.html │ │ │ ├── testsuite.css │ │ │ └── utils │ │ │ │ ├── ArrayUtils.test.js │ │ │ │ ├── Parsers.test.js │ │ │ │ └── XworkSerializer.test.js │ │ ├── utils │ │ │ ├── ArrayUtils.js │ │ │ ├── ClassUtils.js │ │ │ ├── HelpUtils.js │ │ │ ├── Parsers.js │ │ │ ├── XworkSerializer.js │ │ │ ├── aef.jstree.plugin.js │ │ │ ├── menuTimer.js │ │ │ ├── purl.js │ │ │ ├── quickSearch.js │ │ │ └── refLinkDisplay.js │ │ └── widgets │ │ │ └── agilefantWidget.js │ └── sessionkeepalive.json │ └── success.jsp └── test ├── java └── fi │ └── hut │ └── soberit │ └── agilefant │ ├── business │ ├── AgilefantWidgetBusinessTest.java │ ├── AssignmentBusinessTest.java │ ├── BacklogBusinessTest.java │ ├── BacklogHistoryEntryBusinessTest.java │ ├── DailyWorkBusinessTest.java │ ├── HolidayBusinessTest.java │ ├── HourEntryBusinessTest.java │ ├── IterationAssignedLoadTest.java │ ├── IterationBurndownBusinessTest.java │ ├── IterationBusinessTest.java │ ├── IterationHistoryEntryBusinessTest.java │ ├── LabelBusinessTest.java │ ├── MenuBusinessTest.java │ ├── PersonalLoadBusinessTest.java │ ├── PortfolioBusinessTest.java │ ├── ProductBusinessTest.java │ ├── ProjectBurnupBusinessTest.java │ ├── ProjectBusinessRankingTest.java │ ├── ProjectBusinessTest.java │ ├── RankingBusinessTest.java │ ├── SearchBusinessTest.java │ ├── SettingBusinessTest.java │ ├── SettingEquals.java │ ├── StoryBatchBusinessTest.java │ ├── StoryBusinessCreateStoryTest.java │ ├── StoryBusinessTest.java │ ├── StoryFilterBusinessTest.java │ ├── StoryHierarchyBusinessTest.java │ ├── StoryRankBusinessTest.java │ ├── StoryTreeIntegrityBusinessBuildChangeTreeTest.java │ ├── TaskBusinessTest.java │ ├── TaskSplitBusinessTest.java │ ├── TeamBusinessTest.java │ ├── TimesheetBusinessTest.java │ ├── TimesheetExportBusinessTest.java │ ├── TransferObjectBusinessTest.java │ ├── UserBusinessTest.java │ ├── WidgetCollectionBusinessTest.java │ └── impl │ │ ├── StoryBusinessImplTest.java │ │ └── StoryTreeIntegrityBusinessTest.java │ ├── db │ ├── AssignmentDAOTest.java │ ├── BacklogDAOTest.java │ ├── BacklogHistoryEntryDAOTest.java │ ├── BacklogHourEntryDAOTest.java │ ├── GenericDAOTest.java │ ├── HolidayDAOTest.java │ ├── HourEntryDAOTest.java │ ├── IterationDAOTest.java │ ├── IterationHistoryEntryDAOTest.java │ ├── LabelDAOTest.java │ ├── ProductDAOTest.java │ ├── ProjectDAOTest.java │ ├── SettingDAOTest.java │ ├── StoryDAOTest.java │ ├── StoryHierarchyDAOTest.java │ ├── StoryRankDAOTest.java │ ├── TaskDAOTest.java │ ├── TaskHourEntryDAOTest.java │ ├── UserDAOTest.java │ ├── WhatsNextEntryDAOTest.java │ ├── WidgetCollectionDAOTest.java │ └── history │ │ ├── BacklogHistoryDAOTest.java │ │ └── StoryHistoryDAOTest.java │ ├── integration │ └── StorySplitIntegrationTest.java │ ├── security │ └── RestrictActionPathFilterTest.java │ ├── test │ ├── AbstractHibernateTests.java │ ├── GetterSetterTester.java │ ├── Mock.java │ ├── MockAutowiredAnnotationBeanPostProcessor.java │ ├── MockContextLoader.java │ ├── MockedTestCase.java │ ├── SampleDAO.java │ ├── SampleDAOHibernate.java │ ├── SampleEntity.java │ ├── SpringAssertions.java │ └── TestedBean.java │ ├── util │ ├── BacklogConverterTest.java │ ├── BeanCopierTest.java │ ├── DateTimeUtilsTest.java │ ├── ExactEstimateUtilsTest.java │ ├── MinorUnitsParserTest.java │ ├── NamedObjectComparatorTest.java │ ├── StoryTreeIntegrityUtilsTest.java │ ├── TimesheetDataTest.java │ ├── TimesheetExportRowDataTest.java │ ├── TimesheetNodeTest.java │ └── UserConverterTest.java │ └── web │ ├── AjaxExceptionHandlerTest.java │ ├── AssignmentActionTest.java │ ├── AutocompleteActionTest.java │ ├── BacklogActionTest.java │ ├── ChartActionTest.java │ ├── DailyWorkActionTest.java │ ├── HolidayActionTest.java │ ├── HourEntryActionTest.java │ ├── IterationActionTest.java │ ├── IterationHistoryActionTest.java │ ├── LabelActionTest.java │ ├── LoginContextActionTest.java │ ├── MenuActionTest.java │ ├── MultipleStoryActionTest.java │ ├── PasswordActionTest.java │ ├── PortletActionTest.java │ ├── PrefetchInterceptorTest.java │ ├── ProductActionTest.java │ ├── ProjectActionTest.java │ ├── ProjectPortfolioActionTest.java │ ├── ResolveSearchResultActionTest.java │ ├── SearchActionTest.java │ ├── SecurityInterceptorTest.java │ ├── SettingActionTest.java │ ├── SpentEffortActionTest.java │ ├── StoryActionTest.java │ ├── StoryHierarchyActionTest.java │ ├── StoryTreeIntegrityActionTest.java │ ├── TaskActionTest.java │ ├── TaskSplitActionTest.java │ ├── TeamActionTest.java │ ├── TimesheetActionTest.java │ ├── UserActionTest.java │ ├── UserLoadActionTest.java │ └── WidgetActionTest.java └── resources ├── fi └── hut │ └── soberit │ └── agilefant │ ├── db │ ├── AssignmentDAOTest-context.xml │ ├── AssignmentDAOTest-data.sql │ ├── BacklogDAOTest-context.xml │ ├── BacklogDAOTest-data.sql │ ├── BacklogHistoryEntryDAOTest-context.xml │ ├── BacklogHistoryEntryDAOTest-data.sql │ ├── BacklogHourEntryDAOTest-context.xml │ ├── BacklogHourEntryDAOTest-data.sql │ ├── GenericDAOTest-context.xml │ ├── GenericDAOTest-data.sql │ ├── HourEntryDAOTest-context.xml │ ├── HourEntryDAOTest-data.sql │ ├── IterationDAOTest-assignments-data.sql │ ├── IterationDAOTest-context.xml │ ├── IterationDAOTest-data.sql │ ├── IterationHistoryEntryDAOTest-context.xml │ ├── IterationHistoryEntryDAOTest-data.sql │ ├── LabelDAOTest-context.xml │ ├── LabelDAOTest-data.sql │ ├── ProductDAOTest-context.xml │ ├── ProductDAOTest-data.sql │ ├── ProjectDAOTest-assignments-data.sql │ ├── ProjectDAOTest-context.xml │ ├── ProjectDAOTest-data.sql │ ├── ProjectDAOTest-portfolio-context.xml │ ├── ProjectDAOTest-portfolio-data.sql │ ├── SettingDAOTest-context.xml │ ├── SettingDAOTest-data.sql │ ├── StoryDAOTest-assignments-data.sql │ ├── StoryDAOTest-context.xml │ ├── StoryDAOTest-data.sql │ ├── StoryHierarchyDAOTest-context.xml │ ├── StoryHierarchyDAOTest-data.sql │ ├── StoryRankDAOTest-context.xml │ ├── StoryRankDAOTest-data.sql │ ├── TaskDAOTest-context.xml │ ├── TaskDAOTest-data.sql │ ├── TaskHourEntryDAOTest-context.xml │ ├── TaskHourEntryDAOTest-data.sql │ ├── UserDAOTest-context.xml │ ├── UserDAOTest-data.sql │ ├── WhatsNextEntryDAOTest-context.xml │ ├── WhatsNextEntryDAOTest-data.sql │ ├── WidgetCollectionDAOTest-context.xml │ ├── WidgetCollectionDAOTest-data.sql │ └── history │ │ ├── BacklogHistoryDAOTest-context.xml │ │ ├── BacklogHistoryDAOTest-data.sql │ │ ├── IterationHistoryDAOTest-context.xml │ │ ├── IterationHistoryDAOTest-data.sql │ │ ├── StoryHistoryDAOTest-context.xml │ │ └── StoryHistoryDAOTest-data.sql │ └── integration │ ├── StorySplitIntegrationTest-context.xml │ └── StorySplitIntegrationTest-data.sql ├── logback-test.xml ├── testApplicationContext-forDaos.xml ├── testApplicationContext-forHistory.xml └── testApplicationContext-forIntegration.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/README.md -------------------------------------------------------------------------------- /distribution/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/assembly.xml -------------------------------------------------------------------------------- /distribution/doc/Install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/Install.txt -------------------------------------------------------------------------------- /distribution/doc/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/License.txt -------------------------------------------------------------------------------- /distribution/doc/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/Readme.txt -------------------------------------------------------------------------------- /distribution/doc/Release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/Release_notes.txt -------------------------------------------------------------------------------- /distribution/doc/sql/100519_fix-backlogs-and-ranks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/100519_fix-backlogs-and-ranks.sql -------------------------------------------------------------------------------- /distribution/doc/sql/db-version.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/db-version.sql -------------------------------------------------------------------------------- /distribution/doc/sql/exampledb/exampledb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/exampledb/exampledb.sql -------------------------------------------------------------------------------- /distribution/doc/sql/legacyfix.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/legacyfix.sql -------------------------------------------------------------------------------- /distribution/doc/sql/rename-anony-tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/rename-anony-tables.sql -------------------------------------------------------------------------------- /distribution/doc/sql/updates/131-132.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/updates/131-132.sql -------------------------------------------------------------------------------- /distribution/doc/sql/updates/132-133.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/updates/132-133.sql -------------------------------------------------------------------------------- /distribution/doc/sql/updates/132-133_pending.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/updates/132-133_pending.sql -------------------------------------------------------------------------------- /distribution/doc/sql/updates/133-134.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/updates/133-134.sql -------------------------------------------------------------------------------- /distribution/doc/sql/updates/134-135.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/updates/134-135.sql -------------------------------------------------------------------------------- /distribution/doc/sql/updates/137-140.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/updates/137-140.sql -------------------------------------------------------------------------------- /distribution/doc/sql/updates/140-141.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/updates/140-141.sql -------------------------------------------------------------------------------- /distribution/doc/sql/updates/141-142.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/updates/141-142.sql -------------------------------------------------------------------------------- /distribution/doc/sql/updates/142-143.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/updates/142-143.sql -------------------------------------------------------------------------------- /distribution/doc/sql/updates/143-144.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/updates/143-144.sql -------------------------------------------------------------------------------- /distribution/doc/sql/updates/144-145.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/updates/144-145.sql -------------------------------------------------------------------------------- /distribution/doc/sql/updates/145-146.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/updates/145-146.sql -------------------------------------------------------------------------------- /distribution/doc/sql/updates/146-147.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/updates/146-147.sql -------------------------------------------------------------------------------- /distribution/doc/sql/updates/147-148.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/updates/147-148.sql -------------------------------------------------------------------------------- /distribution/doc/sql/updates/151-152.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/updates/151-152.sql -------------------------------------------------------------------------------- /distribution/doc/sql/updates/152-153.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/updates/152-153.sql -------------------------------------------------------------------------------- /distribution/doc/sql/updates/155-160.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/updates/155-160.sql -------------------------------------------------------------------------------- /distribution/doc/sql/updates/160-200.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/updates/160-200.sql -------------------------------------------------------------------------------- /distribution/doc/sql/updates/200_Alpha3-Alpha4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/updates/200_Alpha3-Alpha4.sql -------------------------------------------------------------------------------- /distribution/doc/sql/updates/200_Alpha4-Alpha5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/updates/200_Alpha4-Alpha5.sql -------------------------------------------------------------------------------- /distribution/doc/sql/updates/200_Alpha4-Alpha5_from160.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/updates/200_Alpha4-Alpha5_from160.sql -------------------------------------------------------------------------------- /distribution/doc/sql/updates/200_beta1-beta2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/updates/200_beta1-beta2.sql -------------------------------------------------------------------------------- /distribution/doc/sql/updates/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/updates/README -------------------------------------------------------------------------------- /distribution/doc/sql/updates/fix-tree-ranks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/updates/fix-tree-ranks.sql -------------------------------------------------------------------------------- /distribution/doc/sql/updates/only_from_r3466_to_r3507.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/updates/only_from_r3466_to_r3507.sql -------------------------------------------------------------------------------- /distribution/doc/sql/upgrader/200b2-202.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/upgrader/200b2-202.sql -------------------------------------------------------------------------------- /distribution/doc/sql/upgrader/202-205.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/upgrader/202-205.sql -------------------------------------------------------------------------------- /distribution/doc/sql/upgrader/203-203beach.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/upgrader/203-203beach.sql -------------------------------------------------------------------------------- /distribution/doc/sql/upgrader/205-206.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/upgrader/205-206.sql -------------------------------------------------------------------------------- /distribution/doc/sql/upgrader/206-250.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/upgrader/206-250.sql -------------------------------------------------------------------------------- /distribution/doc/sql/upgrader/250-300.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/upgrader/250-300.sql -------------------------------------------------------------------------------- /distribution/doc/sql/upgrader/300-301.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/doc/sql/upgrader/300-301.sql -------------------------------------------------------------------------------- /distribution/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/distribution/pom.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/pom.xml -------------------------------------------------------------------------------- /set-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/set-version.sh -------------------------------------------------------------------------------- /third-party/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/third-party/README.txt -------------------------------------------------------------------------------- /third-party/flexjson-1.8-custom.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/third-party/flexjson-1.8-custom.jar -------------------------------------------------------------------------------- /third-party/flexjson-1.8-custom.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/third-party/flexjson-1.8-custom.pom -------------------------------------------------------------------------------- /third-party/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/third-party/install.sh -------------------------------------------------------------------------------- /third-party/struts2jsonresult-0.99.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/third-party/struts2jsonresult-0.99.jar -------------------------------------------------------------------------------- /third-party/struts2jsonresult-0.99.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/third-party/struts2jsonresult-0.99.pom -------------------------------------------------------------------------------- /webapp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/pom.xml -------------------------------------------------------------------------------- /webapp/src/main/devel-resources/agilefant-logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/devel-resources/agilefant-logback.xml -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/annotations/PrefetchId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/annotations/PrefetchId.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/business/LabelBusiness.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/business/LabelBusiness.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/business/LoginBusiness.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/business/LoginBusiness.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/business/MenuBusiness.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/business/MenuBusiness.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/business/SearchBusiness.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/business/SearchBusiness.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/business/StoryBusiness.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/business/StoryBusiness.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/business/TaskBusiness.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/business/TaskBusiness.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/business/TeamBusiness.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/business/TeamBusiness.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/business/UserBusiness.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/business/UserBusiness.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/config/DaoConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/config/DaoConfiguration.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/config/WebConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/config/WebConfiguration.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/AgilefantWidgetDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/AgilefantWidgetDAO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/AssignmentDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/AssignmentDAO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/BacklogDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/BacklogDAO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/BacklogHourEntryDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/BacklogHourEntryDAO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/GenericDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/GenericDAO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/HolidayDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/HolidayDAO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/HourEntryDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/HourEntryDAO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/IterationDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/IterationDAO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/LabelDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/LabelDAO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/LoginDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/LoginDAO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/ProductDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/ProductDAO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/ProjectDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/ProjectDAO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/SettingDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/SettingDAO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/StoryAccessDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/StoryAccessDAO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/StoryDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/StoryDAO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/StoryHierarchyDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/StoryHierarchyDAO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/StoryHourEntryDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/StoryHourEntryDAO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/StoryRankDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/StoryRankDAO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/TaskDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/TaskDAO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/TaskHourEntryDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/TaskHourEntryDAO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/TeamDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/TeamDAO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/UserDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/UserDAO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/WhatsNextEntryDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/WhatsNextEntryDAO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/WidgetCollectionDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/WidgetCollectionDAO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/hibernate/Email.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/hibernate/Email.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/db/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/db/package-info.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/AgilefantWidget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/AgilefantWidget.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/Assignment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/Assignment.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/Backlog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/Backlog.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/ExactEstimate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/ExactEstimate.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/Holiday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/Holiday.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/HolidayAnomaly.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/HolidayAnomaly.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/HourEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/HourEntry.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/Iteration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/Iteration.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/Label.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/Label.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/LabelContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/LabelContainer.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/Login.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/Login.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/NamedObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/NamedObject.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/Product.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/Product.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/Project.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/Project.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/Rankable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/Rankable.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/Schedulable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/Schedulable.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/Setting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/Setting.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/Status.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/Status.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/Story.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/Story.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/StoryAccess.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/StoryAccess.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/StoryHourEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/StoryHourEntry.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/StoryRank.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/StoryRank.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/StoryState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/StoryState.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/Task.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/Task.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/TaskContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/TaskContainer.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/TaskHourEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/TaskHourEntry.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/TaskState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/TaskState.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/Team.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/Team.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/User.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/WhatsNextEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/WhatsNextEntry.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/model/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/model/package-info.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/readonly/TokenFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/readonly/TokenFilter.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/remote/StoryResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/remote/StoryResource.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/transfer/BacklogType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/transfer/BacklogType.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/transfer/IterationTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/transfer/IterationTO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/transfer/PortfolioTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/transfer/PortfolioTO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/transfer/ProductTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/transfer/ProductTO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/transfer/ProjectTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/transfer/ProjectTO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/transfer/Scheduled.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/transfer/Scheduled.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/transfer/StoryTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/transfer/StoryTO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/transfer/TaskTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/transfer/TaskTO.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/transfer/package-info.java: -------------------------------------------------------------------------------- 1 | package fi.hut.soberit.agilefant.transfer; 2 | 3 | -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/util/AgilefantBuild.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/util/AgilefantBuild.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/util/BeanCopier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/util/BeanCopier.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/util/DateTimeUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/util/DateTimeUtils.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/util/EnumConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/util/EnumConverter.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/util/Pair.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/util/Pair.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/util/StoryComparator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/util/StoryComparator.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/util/StoryFilters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/util/StoryFilters.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/util/StoryMetrics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/util/StoryMetrics.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/util/TimesheetData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/util/TimesheetData.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/util/TimesheetNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/util/TimesheetNode.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/util/TokenGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/util/TokenGenerator.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/util/Triple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/util/Triple.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/util/UserConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/util/UserConverter.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/util/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/util/package-info.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/AccessAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/AccessAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/AssignmentAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/AssignmentAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/BacklogAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/BacklogAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/CRUDAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/CRUDAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/ChartAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/ChartAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/ContextAware.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/ContextAware.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/DailyWorkAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/DailyWorkAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/ExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/ExceptionHandler.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/FileUploadAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/FileUploadAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/HolidayAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/HolidayAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/HourEntryAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/HourEntryAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/IterationAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/IterationAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/LabelAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/LabelAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/MenuAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/MenuAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/PasswordAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/PasswordAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/PortletAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/PortletAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/Prefetching.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/Prefetching.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/ProductAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/ProductAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/ProjectAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/ProjectAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/SearchAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/SearchAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/SettingAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/SettingAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/StoryAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/StoryAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/StoryListAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/StoryListAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/TaskAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/TaskAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/TaskSplitAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/TaskSplitAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/TeamAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/TeamAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/TimesheetAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/TimesheetAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/UserAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/UserAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/UserLoadAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/UserLoadAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/WidgetAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/WidgetAction.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/tag/CssTag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/tag/CssTag.java -------------------------------------------------------------------------------- /webapp/src/main/java/fi/hut/soberit/agilefant/web/tag/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/java/fi/hut/soberit/agilefant/web/tag/package-info.java -------------------------------------------------------------------------------- /webapp/src/main/resources/agilefant/flyway/V0__Initial_version.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/agilefant/flyway/V0__Initial_version.sql -------------------------------------------------------------------------------- /webapp/src/main/resources/agilefant/flyway/V1_10__HashPasswordsWithBCrypt.sql: -------------------------------------------------------------------------------- 1 | alter table users add column passwd binary(60) default null; -------------------------------------------------------------------------------- /webapp/src/main/resources/agilefant/flyway/V1_12__Remove_old_password_column.sql: -------------------------------------------------------------------------------- 1 | alter table users drop column password; -------------------------------------------------------------------------------- /webapp/src/main/resources/agilefant/flyway/V1_13__Enable_sections.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/agilefant/flyway/V1_13__Enable_sections.sql -------------------------------------------------------------------------------- /webapp/src/main/resources/agilefant/flyway/V1_14__autoassign_stories_default.sql: -------------------------------------------------------------------------------- 1 | alter table users modify column autoassignToStories bit(1) DEFAULT b'1'; 2 | -------------------------------------------------------------------------------- /webapp/src/main/resources/agilefant/flyway/V1__updated_version.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/agilefant/flyway/V1__updated_version.sql -------------------------------------------------------------------------------- /webapp/src/main/resources/agilefant/logback-file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/agilefant/logback-file.xml -------------------------------------------------------------------------------- /webapp/src/main/resources/agilefant/logback-stdout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/agilefant/logback-stdout.xml -------------------------------------------------------------------------------- /webapp/src/main/resources/freemarker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/freemarker.properties -------------------------------------------------------------------------------- /webapp/src/main/resources/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/messages.properties -------------------------------------------------------------------------------- /webapp/src/main/resources/struts-ajax.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/struts-ajax.xml -------------------------------------------------------------------------------- /webapp/src/main/resources/struts-ajax/assignment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/struts-ajax/assignment.xml -------------------------------------------------------------------------------- /webapp/src/main/resources/struts-ajax/backlogs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/struts-ajax/backlogs.xml -------------------------------------------------------------------------------- /webapp/src/main/resources/struts-ajax/chooserData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/struts-ajax/chooserData.xml -------------------------------------------------------------------------------- /webapp/src/main/resources/struts-ajax/dailyWork.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/struts-ajax/dailyWork.xml -------------------------------------------------------------------------------- /webapp/src/main/resources/struts-ajax/label.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/struts-ajax/label.xml -------------------------------------------------------------------------------- /webapp/src/main/resources/struts-ajax/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/struts-ajax/menu.xml -------------------------------------------------------------------------------- /webapp/src/main/resources/struts-ajax/portfolio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/struts-ajax/portfolio.xml -------------------------------------------------------------------------------- /webapp/src/main/resources/struts-ajax/search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/struts-ajax/search.xml -------------------------------------------------------------------------------- /webapp/src/main/resources/struts-ajax/story.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/struts-ajax/story.xml -------------------------------------------------------------------------------- /webapp/src/main/resources/struts-ajax/storyTree.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/struts-ajax/storyTree.xml -------------------------------------------------------------------------------- /webapp/src/main/resources/struts-ajax/task.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/struts-ajax/task.xml -------------------------------------------------------------------------------- /webapp/src/main/resources/struts-ajax/team.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/struts-ajax/team.xml -------------------------------------------------------------------------------- /webapp/src/main/resources/struts-ajax/timesheets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/struts-ajax/timesheets.xml -------------------------------------------------------------------------------- /webapp/src/main/resources/struts-ajax/user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/struts-ajax/user.xml -------------------------------------------------------------------------------- /webapp/src/main/resources/struts-ajax/widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/struts-ajax/widget.xml -------------------------------------------------------------------------------- /webapp/src/main/resources/struts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/struts.properties -------------------------------------------------------------------------------- /webapp/src/main/resources/struts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/struts.xml -------------------------------------------------------------------------------- /webapp/src/main/resources/xwork-conversion.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/resources/xwork-conversion.properties -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/agilefant.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/agilefant.conf -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/applicationContext-core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/applicationContext-core.xml -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/applicationContext-email.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/applicationContext-email.xml -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/applicationContext-notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/applicationContext-notifications.xml -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/applicationContext-security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/applicationContext-security.xml -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/configuration.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/configuration.properties -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/ftl/storyTree.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/ftl/storyTree.ftl -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/ftl/storyTreeField.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/ftl/storyTreeField.ftl -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/ftl/storyTreeNode.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/ftl/storyTreeNode.ftl -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/ftl/storyTreePart.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/ftl/storyTreePart.ftl -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/hibernate.cfg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/hibernate.cfg.xml -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/ROIteration.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/ROIteration.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/administration/accessRights.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/administration/accessRights.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/administration/dbExport.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/administration/dbExport.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/administration/editUser.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/administration/editUser.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/administration/listTeams.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/administration/listTeams.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/administration/listUsers.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/administration/listUsers.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/administration/settings.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/administration/settings.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/dailyWork.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/dailyWork.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/dbExportError.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/dbExportError.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/dbImportError.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/dbImportError.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/editIteration.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/editIteration.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/editProduct.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/editProduct.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/editProject.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/editProject.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/extendedhelp.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/extendedhelp.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/fatalError.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/fatalError.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/forms/checkStoryMove.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/forms/checkStoryMove.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/forms/deleteIterationForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/forms/deleteIterationForm.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/forms/deleteProductForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/forms/deleteProductForm.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/forms/deleteProjectForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/forms/deleteProjectForm.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/forms/deleteStoryForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/forms/deleteStoryForm.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/forms/deleteTaskForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/forms/deleteTaskForm.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/forms/deleteTeamForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/forms/deleteTeamForm.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/forms/shareIterationForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/forms/shareIterationForm.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/forms/unshareIterationForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/forms/unshareIterationForm.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/fragments/branchMetrics.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/fragments/branchMetrics.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/fragments/productBacklogView.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/fragments/productBacklogView.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/genericError.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/genericError.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/help.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/help.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/helpWithoutFrames.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/helpWithoutFrames.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/inc/_projectStatusIcon.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/inc/_projectStatusIcon.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/inc/_taglibs.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/inc/_taglibs.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/inc/_userLoad.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/inc/_userLoad.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/inc/includeDynamics.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/inc/includeDynamics.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/inc/includeSimile.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/inc/includeSimile.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/inc/iterationMetrics.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/inc/iterationMetrics.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/inc/iterationRowMetrics.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/inc/iterationRowMetrics.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/inc/overlay.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/inc/overlay.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/inc/projectMetrics.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/inc/projectMetrics.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/inc/selectBacklog.jsp: -------------------------------------------------------------------------------- 1 | <%@ include file="_taglibs.jsp"%> 2 | TODO -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/inc/spentEffort.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/inc/spentEffort.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/inc/storyHierarchy.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/inc/storyHierarchy.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/inc/taskHierarchy.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/inc/taskHierarchy.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/newPassword.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/newPassword.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/noauthError.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/noauthError.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/notFoundError.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/notFoundError.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/notadminError.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/notadminError.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/portlets.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/portlets.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/projectPortfolio.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/projectPortfolio.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/selectBacklog.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/selectBacklog.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/timesheet.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/timesheet.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/timesheetError.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/timesheetError.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/widgets/iterationMetricsWidget.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/widgets/iterationMetricsWidget.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/widgets/projectMetricsWidget.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/widgets/projectMetricsWidget.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/widgets/storyWidget.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/widgets/storyWidget.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/jsp/widgets/userLoadWidget.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/jsp/widgets/userLoadWidget.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/tags/backlogBreadCrumb.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/tags/backlogBreadCrumb.tag -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/tags/datepicker.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/tags/datepicker.tag -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/tags/settingStoryTreeField.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/tags/settingStoryTreeField.tag -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/tags/storyTreeField.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/tags/storyTreeField.tag -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/tags/storyTreeIntegrity/nodeContent.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/tags/storyTreeIntegrity/nodeContent.tag -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/tags/storyTreeNode.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/tags/storyTreeNode.tag -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/tags/structure/backlogmenu.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/tags/structure/backlogmenu.tag -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/tags/structure/createNewMenu.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/tags/structure/createNewMenu.tag -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/tags/structure/defaultFooter.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/tags/structure/defaultFooter.tag -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/tags/structure/defaultHeader.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/tags/structure/defaultHeader.tag -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/tags/structure/defaultRightHeader.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/tags/structure/defaultRightHeader.tag -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/tags/structure/defaultTabs.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/tags/structure/defaultTabs.tag -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/tags/structure/help.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/tags/structure/help.tag -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/tags/structure/structure.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/tags/structure/structure.tag -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/tags/structure/widget.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/tags/structure/widget.tag -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/tags/timesheetBacklogNode.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/tags/timesheetBacklogNode.tag -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/tags/timesheetHourEntryList.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/tags/timesheetHourEntryList.tag -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/tags/timesheetStoryNode.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/tags/timesheetStoryNode.tag -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/tags/timesheetTaskNode.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/tags/timesheetTaskNode.tag -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/tlds/aef.tld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/tlds/aef.tld -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/tlds/aef_integrity.tld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/tlds/aef_integrity.tld -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/tlds/aef_structure.tld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/tlds/aef_structure.tld -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/wro.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/wro.properties -------------------------------------------------------------------------------- /webapp/src/main/webapp/WEB-INF/wro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/WEB-INF/wro.xml -------------------------------------------------------------------------------- /webapp/src/main/webapp/demo-login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/demo-login.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/index.html -------------------------------------------------------------------------------- /webapp/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/login.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/oops.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/oops.jsp -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/IE7styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/IE7styles.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/IE8styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/IE8styles.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/autoSuggest.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/autoSuggest.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/autocomplete.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/dailywork.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/dailywork.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/dynamics.messages.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/dynamics.messages.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/dynamictable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/dynamictable.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/hyperLinks.css: -------------------------------------------------------------------------------- 1 | a.widgetBacklogLink { 2 | color: #1E5EEE; 3 | } -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/import.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/import.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/jquery-ui.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/jquery.wysiwyg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/jquery.wysiwyg.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/jstree/storytree/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/jstree/storytree/bg.jpg -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/jstree/storytree/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/jstree/storytree/d.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/jstree/storytree/dot_for_ie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/jstree/storytree/dot_for_ie.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/jstree/storytree/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/jstree/storytree/icons.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/jstree/storytree/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/jstree/storytree/style.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/jstree/storytree/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/jstree/storytree/throbber.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/main.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/portfolio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/portfolio.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/simile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/simile.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/structure.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/structure.hierarchy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/structure.hierarchy.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/structure.tables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/structure.tables.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/structure.text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/structure.text.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/structure.ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/structure.ui.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/timeline-bundle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/timeline-bundle.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/timeline/ether.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/timeline/ether.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/timeline/event.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/timeline/event.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/timeline/timeline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/timeline/timeline.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/timeplot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/timeplot.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/timesheets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/timesheets.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/tiny.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/tiny.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/css/ui.dynatree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/css/ui.dynatree.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/error.json: -------------------------------------------------------------------------------- 1 | AGILEFANT_AUTHENTICATION_ERROR -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/html/help/branchMetricsPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/html/help/branchMetricsPopup.html -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/html/help/dailyWorkPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/html/help/dailyWorkPopup.html -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/html/help/devPortfolioPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/html/help/devPortfolioPopup.html -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/html/help/timesheetsPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/html/help/timesheetsPopup.html -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/add.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/add_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/add_theme.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/agilefant-logo-94px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/agilefant-logo-94px.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/arrow_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/arrow_bottom.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/arrow_down.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/arrow_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/arrow_top.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/arrow_up.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/attach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/attach.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/attention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/attention.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/backlog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/backlog.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/bubble_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/bubble_arrow.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/button_fade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/button_fade.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/calendar.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/cancel.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/cloud.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/corner.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/create_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/create_new.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dailyWork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dailyWork.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/delete.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/delete_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/delete_18.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/disable.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/disable_user_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/disable_user_gray.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/cbChecked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/cbChecked.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/cbChecked_hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/cbChecked_hover.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/cbIntermediate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/cbIntermediate.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/cbIntermediate_hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/cbIntermediate_hover.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/cbUnchecked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/cbUnchecked.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/cbUnchecked_hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/cbUnchecked_hover.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/customDoc1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/customDoc1.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/customFolder1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/customFolder1.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/ltD_ne.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/ltD_ne.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/ltD_nes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/ltD_nes.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/ltDoc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/ltDoc.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/ltError.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/ltError.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/ltFld.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/ltFld.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/ltFld_o.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/ltFld_o.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/ltL_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/ltL_.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/ltL_ne.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/ltL_ne.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/ltL_nes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/ltL_nes.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/ltL_ns.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/ltL_ns.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/ltM_ne.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/ltM_ne.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/ltM_nes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/ltM_nes.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/ltP_ne.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/ltP_ne.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/ltP_nes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/ltP_nes.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/ltWait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/ltWait.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/rbChecked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/rbChecked.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/rbChecked_hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/rbChecked_hover.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/rbIntermediate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/rbIntermediate.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/rbIntermediate_hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/rbIntermediate_hover.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/rbUnchecked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/rbUnchecked.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/dynatree/rbUnchecked_hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/dynatree/rbUnchecked_hover.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/edit.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/edit_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/edit_new.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/empty.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/enable.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/expand.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/fant_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/fant_small.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/favicon.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/featureoverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/featureoverview.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/filter.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/filter_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/filter_large.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/gear.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/goal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/goal.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/gradient.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/help/additional_views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/help/additional_views.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/help/backlog_spent_effort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/help/backlog_spent_effort.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/help/change_password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/help/change_password.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/help/create_product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/help/create_product.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/help/create_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/help/create_user.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/help/load_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/help/load_graph.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/help/mail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/help/mail.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/help/story_info_bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/help/story_info_bubble.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/help/story_spent_effort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/help/story_spent_effort.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/hierarchy_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/hierarchy_arrow.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/hr_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/hr_left.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/info.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/jquery.wysiwyg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/jquery.wysiwyg.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/labelIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/labelIcon.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/leaf_stories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/leaf_stories.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/link.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/login_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/login_gradient.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/main_tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/main_tabs.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/minus.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/new.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/nonestimated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/nonestimated.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/noresults.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/noresults.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/ok.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/onepixelimage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/onepixelimage.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/open_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/open_close.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/pleasewait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/pleasewait.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/plus.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/plusminus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/plusminus.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/portfolio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/portfolio.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/progress.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/question.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/rank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/rank.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/refresh.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/search.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/search_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/search_small.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/settings.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/simile_copyright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/simile_copyright.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/simile_tl_copyright-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/simile_tl_copyright-vertical.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/simile_tl_copyright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/simile_tl_copyright.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/sort.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/special-hour-entry-report.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/special-hour-entry-report.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/star_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/star_red.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/status-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/status-black.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/status-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/status-green.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/status-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/status-grey.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/status-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/status-red.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/status-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/status-yellow.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/story.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/story.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/story2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/story2.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/story_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/story_tree.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/svg/Agilefant logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/svg/Agilefant logo.svg -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/svg/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/svg/expand.svg -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/svg/goal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/svg/goal.svg -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/svg/iconpack/attach.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/svg/iconpack/attach.svg -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/svg/iconpack/attention.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/svg/iconpack/attention.svg -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/svg/iconpack/createnew.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/svg/iconpack/createnew.svg -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/svg/iconpack/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/svg/iconpack/delete.svg -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/svg/iconpack/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/svg/iconpack/edit.svg -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/svg/iconpack/expand_collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/svg/iconpack/expand_collapse.svg -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/svg/iconpack/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/svg/iconpack/gear.svg -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/svg/iconpack/open_close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/svg/iconpack/open_close.svg -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/svg/iconpack/question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/svg/iconpack/question.svg -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/svg/iconpack/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/svg/iconpack/refresh.svg -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/svg/iconpack/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/svg/iconpack/sort.svg -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/svg/iconpack/timesheets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/svg/iconpack/timesheets.svg -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/svg/iconpack/toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/svg/iconpack/toggle.svg -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/svg/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/svg/info.svg -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/svg/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/svg/link.svg -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/svg/new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/svg/new.svg -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/svg/progress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/svg/progress.svg -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/svg/story2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/svg/story2.svg -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/svg/theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/svg/theme.svg -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/svg/toggle_menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/svg/toggle_menu.svg -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/tabs.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/team.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/team_add_users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/team_add_users.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/team_remove_users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/team_remove_users.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/theme.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/bubble-bottom-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/bubble-bottom-arrow.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/bubble-bottom-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/bubble-bottom-left.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/bubble-bottom-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/bubble-bottom-right.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/bubble-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/bubble-bottom.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/bubble-left-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/bubble-left-arrow.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/bubble-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/bubble-left.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/bubble-right-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/bubble-right-arrow.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/bubble-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/bubble-right.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/bubble-top-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/bubble-top-left.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/bubble-top-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/bubble-top-right.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/bubble-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/bubble-top.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/close-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/close-button.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/copyright-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/copyright-vertical.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/dark-blue-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/dark-blue-circle.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/dark-green-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/dark-green-circle.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/dark-red-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/dark-red-circle.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/images/copyright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/images/copyright.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/images/line_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/images/line_left.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/images/line_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/images/line_right.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/images/progress-running.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/images/progress-running.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/iteration-circle-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/iteration-circle-small.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/message-bottom-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/message-bottom-left.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/message-bottom-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/message-bottom-right.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/message-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/message-left.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/message-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/message-right.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/message-top-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/message-top-left.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/message-top-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/message-top-right.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/progress-running.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/progress-running.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/status-green-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/status-green-small.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/status-red-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/status-red-small.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/status-yellow-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/status-yellow-small.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timeline/top-bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timeline/top-bubble.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timesheets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timesheets.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/timesheets_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/timesheets_new.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/toggle.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/top-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/top-logo.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/treeview-default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/treeview-default.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/treeview-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/treeview-line.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/triangle.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/ui/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/ui/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/ui/ui-bg_flat_55_fbec88_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/ui/ui-bg_flat_55_fbec88_40x100.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/ui/ui-bg_glass_75_d0e5f5_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/ui/ui-bg_glass_75_d0e5f5_1x400.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/ui/ui-bg_glass_85_dfeffc_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/ui/ui-bg_glass_85_dfeffc_1x400.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/ui/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/ui/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/ui/ui-icons_217bc0_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/ui/ui-icons_217bc0_256x240.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/ui/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/ui/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/ui/ui-icons_469bdd_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/ui/ui-icons_469bdd_256x240.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/ui/ui-icons_6da8d5_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/ui/ui-icons_6da8d5_256x240.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/ui/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/ui/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/ui/ui-icons_d8e7f3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/ui/ui-icons_d8e7f3_256x240.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/ui/ui-icons_f9bd01_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/ui/ui-icons_f9bd01_256x240.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/ui/ui-widget-droppable-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/ui/ui-widget-droppable-gradient.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/unassigned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/unassigned.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/unrank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/unrank.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/users.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/vert_tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/vert_tabs.png -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/img/working.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/img/working.gif -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/autocomplete/autocompleteBundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/autocomplete/autocompleteBundle.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/autocomplete/autocompleteDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/autocomplete/autocompleteDialog.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/autocomplete/autocompleteInline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/autocomplete/autocompleteInline.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/autocomplete/autocompleteRecent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/autocomplete/autocompleteRecent.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/autocomplete/autocompleteSearchBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/autocomplete/autocompleteSearchBox.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/backlogChooser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/backlogChooser.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/backlogSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/backlogSelector.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/date.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/Dynamics.events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/Dynamics.events.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/controller/CreateDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/controller/CreateDialog.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/controller/MenuController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/controller/MenuController.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/controller/PageController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/controller/PageController.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/controller/StoryController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/controller/StoryController.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/controller/StoryInfoBubble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/controller/StoryInfoBubble.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/controller/TaskController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/controller/TaskController.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/controller/TaskInfoDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/controller/TaskInfoDialog.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/controller/TaskSplitDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/controller/TaskSplitDialog.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/controller/UserController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/controller/UserController.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/model/AccessListContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/model/AccessListContainer.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/model/AssignmentModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/model/AssignmentModel.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/model/BacklogModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/model/BacklogModel.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/model/CommonModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/model/CommonModel.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/model/DailyWorkModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/model/DailyWorkModel.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/model/HourEntryModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/model/HourEntryModel.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/model/IterationModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/model/IterationModel.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/model/LabelModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/model/LabelModel.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/model/ModelFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/model/ModelFactory.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/model/PortfolioModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/model/PortfolioModel.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/model/ProductModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/model/ProductModel.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/model/ProjectModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/model/ProjectModel.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/model/StoryModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/model/StoryModel.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/model/TaskModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/model/TaskModel.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/model/TaskSplitContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/model/TaskSplitContainer.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/model/TeamListContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/model/TeamListContainer.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/model/TeamModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/model/TeamModel.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/model/UserListContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/model/UserListContainer.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/model/UserModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/model/UserModel.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/model/WorkQueueTaskModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/model/WorkQueueTaskModel.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/model/comparators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/model/comparators.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/Bubble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/Bubble.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/Cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/Cell.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/ChangePasswordDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/ChangePasswordDialog.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/CommonFragmentSubView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/CommonFragmentSubView.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/CommonSubView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/CommonSubView.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/ConfirmationDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/ConfirmationDialog.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/DynamicView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/DynamicView.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/HourEntryDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/HourEntryDialog.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/LazyLoadedDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/LazyLoadedDialog.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/MessageDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/MessageDisplay.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/MultiEditWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/MultiEditWidget.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/Row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/Row.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/SearchByTextWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/SearchByTextWidget.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/SpentEffortWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/SpentEffortWidget.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/StateFilterWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/StateFilterWidget.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/StoryFiltersView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/StoryFiltersView.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/Table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/Table.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/TableCaption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/TableCaption.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/TableCellEditors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/TableCellEditors.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/TableConfiguration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/TableConfiguration.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/UserSpentEffortWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/UserSpentEffortWidget.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/ValidationManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/ValidationManager.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/ViewPart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/ViewPart.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/decorators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/decorators.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/subviews/AutoSuggest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/subviews/AutoSuggest.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/subviews/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/subviews/Button.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/subviews/Buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/subviews/Buttons.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/subviews/CellBubble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/subviews/CellBubble.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/subviews/LabelsIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/subviews/LabelsIcon.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/subviews/LabelsView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/subviews/LabelsView.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/subviews/RowActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/subviews/RowActions.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/subviews/SplitPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/subviews/SplitPanel.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/subviews/Tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/subviews/Tabs.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/dynamics/view/subviews/Toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/dynamics/view/subviews/Toggle.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/excanvas.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/jquery-ui.min.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/jquery.autoSuggest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/jquery.autoSuggest.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/jquery.cookie.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/jquery.dynatree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/jquery.dynatree.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/jquery.hotkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/jquery.hotkeys.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/jquery.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/jquery.jstree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/jquery.jstree.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/jquery.labelify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/jquery.labelify.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/jquery.min.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/jquery.tagcloud.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/jquery.tagcloud.min.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/jquery.tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/jquery.tooltip.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/jquery.wysiwyg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/jquery.wysiwyg.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/ajax/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/ajax/ajax.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/ajax/data-structure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/ajax/data-structure.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/ajax/date-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/ajax/date-time.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/ajax/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/ajax/debug.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/ajax/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/ajax/dom.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/ajax/graphics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/ajax/graphics.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/ajax/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/ajax/history.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/ajax/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/ajax/html.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/ajax/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/ajax/json.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/ajax/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/ajax/platform.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/ajax/signal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/ajax/signal.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/ajax/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/ajax/string.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/ajax/units.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/ajax/units.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/ajax/window-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/ajax/window-manager.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/ajax/xmlhttp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/ajax/xmlhttp.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/extensions/LoadPlot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/extensions/LoadPlot.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/init.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/timeline/band.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/timeline/band.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/timeline/compact-painter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/timeline/compact-painter.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/timeline/decorators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/timeline/decorators.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/timeline/detailed-painter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/timeline/detailed-painter.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/timeline/ether-painters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/timeline/ether-painters.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/timeline/ethers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/timeline/ethers.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/timeline/event-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/timeline/event-utils.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/timeline/labellers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/timeline/labellers.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/timeline/original-painter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/timeline/original-painter.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/timeline/overview-painter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/timeline/overview-painter.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/timeline/sources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/timeline/sources.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/timeline/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/timeline/themes.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/timeline/timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/timeline/timeline.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/timeline/units.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/timeline/units.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/timeplot/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/timeplot/color.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/timeplot/geometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/timeplot/geometry.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/timeplot/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/timeplot/math.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/timeplot/plot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/timeplot/plot.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/timeplot/processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/timeplot/processor.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/timeplot/sources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/timeplot/sources.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/simile/timeplot/timeplot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/simile/timeplot/timeplot.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/tests/dynamics/Dynamics.events.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/tests/dynamics/Dynamics.events.test.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/tests/dynamics/controller/BacklogController.test.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | module("Dynamics: Backlog controller"); 3 | }); -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/tests/dynamics/controller/IterationController.test.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | module("Dynamics: Iteration controller"); 3 | }); -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/tests/dynamics/model/TaskModel.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/tests/dynamics/model/TaskModel.test.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/tests/dynamics/model/UserModel.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/tests/dynamics/model/UserModel.test.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/tests/dynamics/view/Cell.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/tests/dynamics/view/Cell.test.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/tests/dynamics/view/Row.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/tests/dynamics/view/Row.test.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/tests/dynamics/view/RowAction.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/tests/dynamics/view/RowAction.test.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/tests/dynamics/view/Table.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/tests/dynamics/view/Table.test.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/tests/dynamics/view/Toggle.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/tests/dynamics/view/Toggle.test.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/tests/jsmock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/tests/jsmock.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/tests/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/tests/qunit.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/tests/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/tests/test.html -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/tests/testsuite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/tests/testsuite.css -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/tests/utils/ArrayUtils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/tests/utils/ArrayUtils.test.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/tests/utils/Parsers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/tests/utils/Parsers.test.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/tests/utils/XworkSerializer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/tests/utils/XworkSerializer.test.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/utils/ArrayUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/utils/ArrayUtils.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/utils/ClassUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/utils/ClassUtils.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/utils/HelpUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/utils/HelpUtils.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/utils/Parsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/utils/Parsers.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/utils/XworkSerializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/utils/XworkSerializer.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/utils/aef.jstree.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/utils/aef.jstree.plugin.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/utils/menuTimer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/utils/menuTimer.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/utils/purl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/utils/purl.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/utils/quickSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/utils/quickSearch.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/utils/refLinkDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/utils/refLinkDisplay.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/js/widgets/agilefantWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/static/js/widgets/agilefantWidget.js -------------------------------------------------------------------------------- /webapp/src/main/webapp/static/sessionkeepalive.json: -------------------------------------------------------------------------------- 1 | { 2 | "message" : "sessionalive" 3 | } 4 | -------------------------------------------------------------------------------- /webapp/src/main/webapp/success.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/main/webapp/success.jsp -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/db/AssignmentDAOTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/db/AssignmentDAOTest.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/db/BacklogDAOTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/db/BacklogDAOTest.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/db/GenericDAOTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/db/GenericDAOTest.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/db/HolidayDAOTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/db/HolidayDAOTest.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/db/HourEntryDAOTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/db/HourEntryDAOTest.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/db/IterationDAOTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/db/IterationDAOTest.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/db/LabelDAOTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/db/LabelDAOTest.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/db/ProductDAOTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/db/ProductDAOTest.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/db/ProjectDAOTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/db/ProjectDAOTest.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/db/SettingDAOTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/db/SettingDAOTest.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/db/StoryDAOTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/db/StoryDAOTest.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/db/StoryRankDAOTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/db/StoryRankDAOTest.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/db/TaskDAOTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/db/TaskDAOTest.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/db/UserDAOTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/db/UserDAOTest.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/test/Mock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/test/Mock.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/test/MockedTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/test/MockedTestCase.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/test/SampleDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/test/SampleDAO.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/test/SampleEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/test/SampleEntity.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/test/TestedBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/test/TestedBean.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/util/BeanCopierTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/util/BeanCopierTest.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/web/ChartActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/web/ChartActionTest.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/web/LabelActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/web/LabelActionTest.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/web/MenuActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/web/MenuActionTest.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/web/SearchActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/web/SearchActionTest.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/web/StoryActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/web/StoryActionTest.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/web/TaskActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/web/TaskActionTest.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/web/TeamActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/web/TeamActionTest.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/web/UserActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/web/UserActionTest.java -------------------------------------------------------------------------------- /webapp/src/test/java/fi/hut/soberit/agilefant/web/WidgetActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/java/fi/hut/soberit/agilefant/web/WidgetActionTest.java -------------------------------------------------------------------------------- /webapp/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /webapp/src/test/resources/testApplicationContext-forDaos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/resources/testApplicationContext-forDaos.xml -------------------------------------------------------------------------------- /webapp/src/test/resources/testApplicationContext-forHistory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/resources/testApplicationContext-forHistory.xml -------------------------------------------------------------------------------- /webapp/src/test/resources/testApplicationContext-forIntegration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilefant/agilefant/HEAD/webapp/src/test/resources/testApplicationContext-forIntegration.xml --------------------------------------------------------------------------------