| Anonymous | Login | Signup for a new account | 2013-06-19 13:11 CEST | ![]() |
| Main | My View | View Issues | Change Log | Roadmap | My Account |
| View Issue Details [ Jump to Notes ] | [ Issue History ] [ Print ] | |||||
| ID | Project | Category | View Status | Date Submitted | Last Update | |
| 0000388 | sigmah | [All Projects] General | public | 2011-09-28 13:11 | 2013-06-14 12:37 | |
| Reporter | osarrat | |||||
| Assigned To | Guerline | |||||
| Priority | high | Severity | feature | Reproducibility | N/A | |
| Status | resolved | Resolution | fixed | |||
| Platform | OS | OS Version | ||||
| Product Version | 1.0 | |||||
| Target Version | 1.2 | Fixed in Version | ||||
| Summary | 0000388: Export to Excel | |||||
| Description | Users have expressed the need to be able to export each screen of the application under a format usable with MS Excel (and potentially with LibreOffice Calc as well). That way, they will be able to build their tools, and their own analysis our of the information stored into Sigmah. More precisely, this means having a Excel export button on each of the following screens or components : - project list (on the main Dashboard and on the orgunit Overview) - indicators management sub-tab - indicators entry - logical framework (it will implement then issue 0000110) This feature is a simpler version of issue 0000213 Custom exports. The implementation of this feature should take into account the future implementation of the Custom exports. A proposal for a very detailled version description of this feature is given in the attached User Report URL. | |||||
| Additional Information | Potential export levels 1.Export at the project level (inside a single project) - Log frame : a nice exported layout of logframe with indicators in Excel - An export with all indicators : file will then have several tabs * 1rst tab: the list of all indicators with aggregated value * several other tabs with will give all the details of the indicator values - A synthesis sheet which sums up all key information about the project (all fields marked as “to be exported in synthesis sheet” in the project model) - Possibility to export in one single file the 3 items: Synthesis sheet, log frame, indicators 2.Export at the orgunit level (inside a single orgunit) - Only a synthesis sheet 3.Global exports - Two objectives : * data mining * dashboards with aggregation of data and diagrams - Data for global exports should be able to be used as exported Excel files, but also be consulted remotely from Excel or other more advanced data mining solutions - Data for global exports should be historicised, and past version of exported data should be backed up - Selection of the fields to export :At the project model level, the admin can tells which field should not be exported by default - Button : on the table of projects to export all projects listed in the table ( draft design http://docs.google.com/presentation/d/1hbtRR9v5Oldbw5cTIEfRPQY_5tOnFrK1Nm1pmdvQ_VQ/edit#slide=id.g14f4324e_0_42 [^]) - Button opens a popup where exports can be managed. Popup will have the following features : - You can set up the frequency of automatic exportation (by default: export daily at midnight (NGO HQ time), and [optionnal] set the frequency manually) - You can delete some old exports - You can select which export you want to use to make your Excel file (by default, user will produce a export of all data available at the moment he pressed the button) - You can change the list of fields to export (only for exportation of last live data) - You can update the list of default fields to be exported in future automatic export - You can set an option telling if you want your outputted Excel file to be able to be refreshed automatically from Excel (issue 0000473) refresh from a past exportation selected by user [optionnal] 3.1. Content of global export : - minimum requirement : one tab per project model, and then one row per project in each tab (and all columns are all fields of the project) - issue : how to manage multi items values ? (formatting issue, and the outputted Excel file may have a tab where is is explained how to extract the values from a multi item value) - At best, a solution to cross-check the data (discussed below) Rights management -A new global privilege : export global data to Excel -User can only export fields to which they have the right to access [optionnal] | |||||
| Tags | No tags attached. | |||||
| User Report URL | http://www.sigmah.org/fr/node/550 [^] | |||||
| OS | Windows Vista | |||||
| Other OS | ||||||
| Browser | Mozilla Firefox 4.0 | |||||
| Other browser | ||||||
| ScreenURL | ||||||
| (ActivityInfo) Noticed in revision | ||||||
| Attached Files | ||||||
Relationships |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Notes |
|
|
(0000840) osarrat (administrator) 2011-12-03 19:20 edited on: 2011-12-03 19:21 |
After an analysis and trial done with @VaesTim and @frebracke, here is the way found to develop this feature (example of the project list in the dashboard screen) : # Client part - Create a button in the ProjectsListPanel (sample code below) - Make a Listener that redirects to the servlet (Ajax?) # Servlet - Role: decides which exporter to call depending on the PARAM - What to do : * Update SigmahExportServlet to handle a new PARAM for the type of export (ex: “ProjectList”) # Exporter - Role: generate the XLS out of the database and give it back to the Servlet - What to do * Create a ProjectListExporter which extends the Exporter class which get the param(s) out of the request from the servlet to determine which projects should be loaded * load the data from the database * generate the xls using Apache POI and the data from the database (see ProjectReportExporter) //Create a button exportMenuButton = new Button(I18N.CONSTANTS.exportToExcel(), IconImageBundle.ICONS.excel()); toolbar.add(new FillToolItem()); // Fill toolbar to align button on the right side toolbar.add(exportMenuButton); // Add button to the toolbar |
|
(0001030) sherzod (developer) 2012-07-27 15:52 |
From Additional Information : {A synthesis sheet which sums up all key information about the project (all fields marked as “to be exported in synthesis sheet” in the project model} Could it be ok if we mark that field- "to be exported in synthesis sheet" as "TRUE" by default, so that all project model fields will be exported in sheet by default? |
|
(0001031) osarrat (administrator) 2012-07-27 17:15 |
Yes, it seems the best behavior in my opinion too. |
|
(0001038) svn_mantis-robot (developer) 2012-08-08 04:28 |
Excel/Calc export at the project level (inside a single project). Part of issue 0000388 Added : /trunk/sigmah/src/main/java/org/sigmah/client/ui/ExportSpreadsheetFormButton.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/exporter/IndicatorEntryExporter.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/exporter/ProjectSynthesisExporter.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/CalcUtils.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/data/ExportData.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/data/IndicatorEntryData.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/data/ProjectSynthesisData.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/data/SpreadsheetDataUtil.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/IndicatorEntryCalcTemplate.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/IndicatorEntryExcelTemplate.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/ProjectSynthesisCalcTemplate.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/ProjectSynthesisExcelTemplate.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/i18n/UIConstants.properties Modified : /trunk/sigmah/src/main/java/org/sigmah/client/page/admin/AdminUtil.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/page/admin/model/common/element/AdminFlexibleElementsView.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/page/admin/model/common/element/ElementForm.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/page/config/design/DesignPanel.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/page/project/details/ProjectDetailsPresenter.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/page/project/details/ProjectDetailsView.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/page/project/logframe/ProjectLogFramePresenter.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/page/project/logframe/ProjectLogFrameView.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/Exporter.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/SigmahExportServlet.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/exporter/LogFrameExporter.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/exporter/ProjectReportExporter.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/ExcelUtils.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/ExportConstants.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/data/LogFrameExportData.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/LogFrameCalcTemplate.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/LogFrameExcelTemplate.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/gwtrpc/handler/UpdateProjectHandler.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/policy/admin/ModelUtil.java Modified : /trunk/sigmah/src/main/java/org/sigmah/shared/domain/element/FlexibleElement.java Modified : /trunk/sigmah/src/main/java/org/sigmah/shared/dto/ExportUtils.java Modified : /trunk/sigmah/src/main/java/org/sigmah/shared/dto/element/FlexibleElementDTO.java |
|
(0001039) sherzod (developer) 2012-08-08 04:45 |
You can find attached output files(.xls/.ods) for "Export at the project level (inside a single project)" in this issue's attached files Also, there is popup image (https://docs.google.com/presentation/d/1hbtRR9v5Oldbw5cTIEfRPQY_5tOnFrK1Nm1pmdvQ_VQ/edit#slide=id.g6766bd0_1_0 [^]) to export at the project level. Both spreadsheets contain three: synthesis, logframe and indicators In excel view there are drop-down lists used just like in web interface. However, for calc there is issue that can be solved later. In synthesis sheet i excluded following fields from spreadsheet: Report, Report list and file list. Those are just links to another source, if we really need that links we need to think about authentication to access remote files. |
|
(0001040) osarrat (administrator) 2012-08-08 19:05 edited on: 2012-08-08 19:07 |
First of all... C O N G R A T U L A T I O N S Sherzod for this wonderful piece of work !!!! Your exports are really great. I already told it to you by Skype today during our meeting, but your work really deserved once again compliments !!! I think users will be very very happy with your design and work. Well done !! ------------ Issue description has been simplified, and the following exports have been removed and set as separated issues or simply discarded: - reminders (both on main Dashboard, project Management board and orgunit Overview): now 0000479 - organizational units list (on the main Dashboard and on the orgunit Overview): now 0000480 - the project or orgunit banner (to export the whole project/orgunit, with several tabs in the exported file): has been discarded - each phase of a project: has been discarded - the details/informations sub-tab of a project/orgunit: has been discarded - the calendar screens (it will implement then issue 0000038): now 0000481 for the pure Excel export (detail link with 0000038 has to be clarified) Moreover, the "Field cross-checking solution" part of the "Additional information" has been as well moved as separate issue 0000486. Finally, during a discussion with Sherzod to finalize the implementation of this feature, it has been to simplify the design and not yet export Files and Reports fields. Those exports have been set as separate issues, respectively 0000484 and 0000485. In the same way, the exportation of Amendments has been reported to a later version as issue 0000482. |
|
(0001045) sherzod (developer) 2012-08-16 18:21 |
I am planning to commit Global export feature, and i want feedback First, check how global export popup looks like (https://docs.google.com/presentation/d/1hbtRR9v5Oldbw5cTIEfRPQY_5tOnFrK1Nm1pmdvQ_VQ/edit#slide=id.g14f4324e_0_73 [^]) Second, there is attached sample, its design not so good, i will improve Third, some details of implementation: - each organization has its own export settings entity which contains auto-export schedule, export format, locale, timezone stuff - scheduled exports are triggered by the quartz job which runs every 50 mins after checking export frequency(unit is date) , same logic for autocleanup - all scheduled exports are logged(date, organizationId) and used to search old versions from popup - content of exports are only in CSV, so, for each project models there is one CSV string and each content linked to export log - live exports also use csv format which makes formatting issues - export popup has link to configuration popup where user can setup export format, schedules and more important - fields per project model - each field has flag - globallyExportable which is not associated with flag like export in synthesis sheet; Olivier had a decision on this,but, that made complicated other issues, so, users must choose fields before exporting; i think it is normal, since i cannot predict what fields needed by users - global permission added to control showing export button on project list ONE question : how can i supply sql patches to repo or wiki? |
|
(0001046) osarrat (administrator) 2012-08-17 11:40 |
First of all, my global perception: all this looks great! Feedbacks to your questions now... Design of the global export popup It looks fine to me. Sigmah being an open source software, I would maybe put Open Document format first in the list of formats. How is the default format managed in project export? It is the same one as global export? Could this parameter be specified in the new "Organization admin screen"? For Global export of backed-up data, I have given a comment directly in your Google Docs. For the configuration screen, I would suggest to rename the column with checkbox in the table by "Export?" and ensure that the full title of this column will be visible including the "?" (for information, it should also fit the French version which is "Exporter?"). For the scheduling, does your screen allow the setting of the time to do the export? Finally, for the auto-cleanup, is it possible to set to "No auto-cleanup"? Design of the export file It is quite basic, but it is doing the job! That's the most important! If you want to improve the layout to reach the quality of the previous export you made, you're surely free to do it and it would make users happy, but if you can't because you don't have time, no problem. :) Details of the implementation A question: why is the quartz job running every 50 minutes, and not every hour? And what happen if the export scheduled date doesn't match with the frequency of the quartz job? Are live exports also backed-up? To be sure we understood the same thing, could your comment on "each field has flag - globallyExportable" be rephrased as: <blockquote>Each field has 2 flags: "to be exported in synthesis sheet" and "to be exported in global export". The "synthesis" one is set at project/orgunit model level, and is used to select fields to export at project/orgunit level. The "global" one can be modified in the "Global export configuration popup", and is set by default to the value of the "synthesis" one.</blockquote> How can i supply sql patches to repo or wiki? You will find your happiness here: http://code.google.com/p/sigma-h/wiki/SchemaChangeLog [^] :) |
|
(0001047) sherzod (developer) 2012-08-17 13:13 |
Thanks for feedbacks Answers: How is the default format managed in project export? it is selected in popup and used only for single export, not stored Def Export must be handled in "Organization admin screen" For the scheduling, does your screen allow the setting of the time to do the export? No, only days to export, months to delete. I didnot do in this version for two reasons: 1. it would take much of my time. 2. currently this feature would be used by user's. it is case that data changes in every hour. if users request this kind of freq we will add then for the auto-cleanup, is it possible to set to "No auto-cleanup"? yes, "Not scheduled" option is provided both for export and delete Design of the export file will be definitely changed why is the quartz job running every 50 minutes, and not every hour? And what happen if the export scheduled date doesn't match with the frequency of the quartz job? That was first implementation, now it only runs every day at midnight. when comparing only yyyy-mm-d pattern used to avoid hour/minute difference Are live exports also backed-up? - no, should they? To be sure we understood the same thing, could your comment on "each field has flag - globallyExportable" be rephrased as: <blockquote>Each field has 2 flags: "to be exported in synthesis sheet" and "to be exported in global export". The "synthesis" one is set at project/orgunit model level, and is used to select fields to export at project/orgunit level. The "global" one can be modified in the "Global export configuration popup", and is set by default to the value of the "synthesis" one.</blockquote> Exactly, except "and is set by default to the value of the "synthesis" one." - no, value for "globallyExportable" is not setup by default, it is hard to develop for me. i tried and ended up buggy code. i think, we can put notification when users try to export without setting export flags. |
|
(0001048) svn_mantis-robot (developer) 2012-08-17 13:39 |
Global exports. Part of issue 0000388 Added : /trunk/sigmah/src/main/java/org/sigmah/client/ui/GlobalExportForm.java Added : /trunk/sigmah/src/main/java/org/sigmah/client/ui/GlobalExportSettingsForm.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/dao/GlobalExportDAO.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/dao/hibernate/GlobalExportHibernateDAO.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/exporter/GlobalExportExporter.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/CsvBuilder.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/CsvParser.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/GlobalExportDataProvider.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/data/GlobalExportData.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/GlobalExportExcelTemplate.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/gwtrpc/handler/GetGlobalExportSettingsHandler.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/gwtrpc/handler/GetGlobalExportsHandler.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/gwtrpc/handler/UpdateGlobalExportSettingsHandler.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/schedule/export Added : /trunk/sigmah/src/main/java/org/sigmah/server/schedule/export/AutoDeleteJob.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/schedule/export/AutoExportJob.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/schedule/export/GlobalExportJobActivator.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/schedule/export/GuiceJobFactory.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/schedule/export/QuartzScheduler.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/schedule/export/SchedulerModule.java Added : /trunk/sigmah/src/main/java/org/sigmah/shared/command/GetGlobalExportSettings.java Added : /trunk/sigmah/src/main/java/org/sigmah/shared/command/GetGlobalExports.java Added : /trunk/sigmah/src/main/java/org/sigmah/shared/command/result/GlobalExportListResult.java Added : /trunk/sigmah/src/main/java/org/sigmah/shared/domain/export Added : /trunk/sigmah/src/main/java/org/sigmah/shared/domain/export/GlobalExport.java Added : /trunk/sigmah/src/main/java/org/sigmah/shared/domain/export/GlobalExportContent.java Added : /trunk/sigmah/src/main/java/org/sigmah/shared/domain/export/GlobalExportFormat.java Added : /trunk/sigmah/src/main/java/org/sigmah/shared/domain/export/GlobalExportSettings.java Added : /trunk/sigmah/src/main/java/org/sigmah/shared/dto/GlobalExportDTO.java Added : /trunk/sigmah/src/main/java/org/sigmah/shared/dto/GlobalExportSettingsDTO.java Added : /trunk/sigmah/src/main/java/org/sigmah/shared/dto/UpdateGlobalExportSettings.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/i18n/UIConstants.properties Modified : /trunk/sigmah/src/main/java/org/sigmah/client/i18n/UIMessages.properties Modified : /trunk/sigmah/src/main/java/org/sigmah/client/page/dashboard/ProjectsListPanel.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/ui/ExportSpreadsheetFormButton.java Modified : /trunk/sigmah/src/main/java/org/sigmah/public/sigmah.css Modified : /trunk/sigmah/src/main/java/org/sigmah/server/StartupListener.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/auth/SigmahAuthDictionaryServlet.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/dao/hibernate/HibernateModule.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/Exporter.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/SigmahExportServlet.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/exporter/IndicatorEntryExporter.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/CalcUtils.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/ExcelUtils.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/ExportConstants.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/data/IndicatorEntryData.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/data/ProjectSynthesisData.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/IndicatorEntryCalcTemplate.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/IndicatorEntryExcelTemplate.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/LogFrameCalcTemplate.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/LogFrameExcelTemplate.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/ProjectSynthesisCalcTemplate.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/ProjectSynthesisExcelTemplate.java Modified : /trunk/sigmah/src/main/java/org/sigmah/shared/domain/element/FlexibleElement.java Modified : /trunk/sigmah/src/main/java/org/sigmah/shared/domain/profile/GlobalPermissionEnum.java Modified : /trunk/sigmah/src/main/java/org/sigmah/shared/dto/ExportUtils.java Modified : /trunk/sigmah/src/main/java/org/sigmah/shared/dto/ProjectModelDTO.java Modified : /trunk/sigmah/src/main/java/org/sigmah/shared/dto/element/FlexibleElementDTO.java |
|
(0001049) svn_mantis-robot (developer) 2012-08-20 19:07 |
- Administration pages (fixes issue 0000245) - Backup management (fixes issue 0000392) - Add a page for the export settings of sherzod (issue 0000388) Added : /trunk/sigmah/src/main/java/org/sigmah/client/page/admin/management Added : /trunk/sigmah/src/main/java/org/sigmah/client/page/admin/management/AdminBackupManagementPresenter.java Added : /trunk/sigmah/src/main/java/org/sigmah/client/page/admin/management/AdminBackupManagementView.java Added : /trunk/sigmah/src/main/java/org/sigmah/client/page/admin/management/AdminCoreManagementPresenter.java Added : /trunk/sigmah/src/main/java/org/sigmah/client/page/admin/management/AdminCoreManagementView.java Added : /trunk/sigmah/src/main/java/org/sigmah/client/page/admin/management/AdminExportManagementPresenter.java Added : /trunk/sigmah/src/main/java/org/sigmah/client/page/admin/management/AdminExportManagementView.java Added : /trunk/sigmah/src/main/java/org/sigmah/client/page/admin/management/AdminManagementPresenter.java Added : /trunk/sigmah/src/main/java/org/sigmah/client/page/admin/management/AdminManagementView.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/file/FilesBackupServlet.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/file/LogoManager.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/file/LogoManagerImpl.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/gwtrpc/handler/UpdateOrganizationHandler.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/management Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/management/ManagementServlet.java Added : /trunk/sigmah/src/main/java/org/sigmah/shared/command/UpdateOrganization.java Added : /trunk/sigmah/src/main/java/org/sigmah/shared/command/result/OrganizationResult.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/SigmahInjector.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/i18n/UIConstants.properties Modified : /trunk/sigmah/src/main/java/org/sigmah/client/page/admin/AdminModule.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/page/admin/AdminPresenter.java Modified : /trunk/sigmah/src/main/java/org/sigmah/public/sigmah.css Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/file/FileDownloadServlet.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/file/FileManager.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/file/FileManagerImpl.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/file/FileModule.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/file/ImageServlet.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/gwtrpc/GwtRpcModule.java Modified : /trunk/sigmah/src/main/java/org/sigmah/shared/domain/Organization.java Modified : /trunk/sigmah/src/main/java/org/sigmah/shared/dto/value/FileUploadUtils.java |
|
(0001057) svn_mantis-robot (developer) 2012-09-07 10:37 |
fixes issue 0000388 -org unit level export; -default export format for project, org unit level exports Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/exporter/OrgUnitSynthesisExporter.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/data/BaseSynthesisData.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/data/OrgUnitSynthesisData.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/BaseSynthesisCalcTemplate.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/BaseSynthesisExcelTemplate.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/GlobalExportCalcTemplate.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/OrgUnitSynthesisCalcTemplate.java Added : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/OrgUnitSynthesisExcelTemplate.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/i18n/UIConstants.properties Modified : /trunk/sigmah/src/main/java/org/sigmah/client/page/admin/management/AdminExportManagementPresenter.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/page/admin/management/AdminExportManagementView.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/page/config/design/DesignPanel.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/page/orgunit/details/OrgUnitDetailsPresenter.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/page/orgunit/details/OrgUnitDetailsView.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/page/project/details/ProjectDetailsPresenter.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/page/project/details/ProjectDetailsView.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/page/project/logframe/ProjectLogFramePresenter.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/ui/ExportSpreadsheetFormButton.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/ui/GlobalExportForm.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/ui/GlobalExportSettingsForm.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/dao/GlobalExportDAO.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/dao/hibernate/GlobalExportHibernateDAO.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/Exporter.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/SigmahExportServlet.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/exporter/GlobalExportExporter.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/exporter/IndicatorEntryExporter.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/exporter/LogFrameExporter.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/exporter/ProjectSynthesisExporter.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/CalcUtils.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/CsvBuilder.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/CsvParser.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/ExcelUtils.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/ExportConstants.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/GlobalExportDataProvider.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/data/GlobalExportData.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/data/IndicatorEntryData.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/data/ProjectSynthesisData.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/ExportTemplate.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/GlobalExportExcelTemplate.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/IndicatorEntryCalcTemplate.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/IndicatorEntryExcelTemplate.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/LogFrameCalcTemplate.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/LogFrameExcelTemplate.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/ProjectSynthesisCalcTemplate.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/export/sigmah/spreadsheet/template/ProjectSynthesisExcelTemplate.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/gwtrpc/handler/GetGlobalExportSettingsHandler.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/gwtrpc/handler/GetGlobalExportsHandler.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/gwtrpc/handler/UpdateGlobalExportSettingsHandler.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/endpoint/gwtrpc/handler/UpdateProjectHandler.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/schedule/export/AutoDeleteJob.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/schedule/export/AutoExportJob.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/schedule/export/GlobalExportJobActivator.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/schedule/export/GuiceJobFactory.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/schedule/export/QuartzScheduler.java Modified : /trunk/sigmah/src/main/java/org/sigmah/server/schedule/export/SchedulerModule.java Modified : /trunk/sigmah/src/main/java/org/sigmah/shared/command/GetGlobalExportSettings.java Modified : /trunk/sigmah/src/main/java/org/sigmah/shared/command/GetGlobalExports.java Modified : /trunk/sigmah/src/main/java/org/sigmah/shared/command/result/GlobalExportListResult.java Modified : /trunk/sigmah/src/main/java/org/sigmah/shared/domain/export/GlobalExport.java Modified : /trunk/sigmah/src/main/java/org/sigmah/shared/domain/export/GlobalExportContent.java Modified : /trunk/sigmah/src/main/java/org/sigmah/shared/domain/export/GlobalExportSettings.java Modified : /trunk/sigmah/src/main/java/org/sigmah/shared/dto/ExportUtils.java Modified : /trunk/sigmah/src/main/java/org/sigmah/shared/dto/GlobalExportDTO.java Modified : /trunk/sigmah/src/main/java/org/sigmah/shared/dto/GlobalExportSettingsDTO.java Modified : /trunk/sigmah/src/main/java/org/sigmah/shared/dto/UpdateGlobalExportSettings.java Removed : /trunk/sigmah/src/main/java/org/sigmah/shared/domain/export/GlobalExportFormat.java |
|
(0001061) svn_mantis-robot (developer) 2012-09-27 17:30 |
Adding columns modification for exportable statuts preferences (related to issue 0000388) on wiki page SchemaChangeLog through web user interface. Modified : /wiki/SchemaChangeLog.wiki |
|
(0001066) osarrat (administrator) 2012-10-05 16:23 |
Several Excel export buttons missing in the v1.2-rc1 (http://demo.sigmah.org/1.2-rc1 [^]). The only button available in this release is the button from the logical framework screen. Here is the list of buttons missing: - Excel export button on tge project list (on the main Dashboard and on the orgunit Overview) - Excel export button on the project Management board - Excel export button indicators management sub-tab - Excel export button on the indicators entry sub-tab |
|
(0001067) sherzod (developer) 2012-10-07 14:56 |
After checking the demo by a user- demo@sigmah.org: 1. Excel export button on tge project list (on the main Dashboard and on the orgunit Overview) - Demo user should have global export permission defined in PioneerAdministrator profile. I included that permission manually editing PioneerAdministrator profile. In general, there is sql statement to be applied in SchemaChangeLog. 2. Excel export button on the project Management board - the button is in Details sub-tab. I have not time to discuss where to put the button before. So, it is ended up in there. Olivier, let me know to what position should it be moved. 3. Excel export button indicators management sub-tab - I can see the button there. 4. Excel export button on the indicators entry sub-tab - this is not implemented. It is quite complicated view. We need to discuss how to simplify the exports. Because, there will be 3 different views when site, indicator or date is chosen. 3 view means 6 different template classes to generate excel and calc versions for each. Thus, there should be some general export version. None of exports are working. I guess there some schema changes are missing. |
|
(0001068) osarrat (administrator) 2012-10-08 14:53 |
Thanks for your feedback. Sorry, I should have looked more in depth to find where the buttons were. I checked the log to understand why none of the exports are working. And I found the reason. There are calls in static SQL queries to tables automatically created by Hibernate but with other names than the one given in the SQL query. Two examples: "GlobalExportSettings" in the query and "global_export_settings" in the database; "ProjectModelVisibility" in the query and "project_model_visibility" in the database. But I guess there might be others. Could then update the SchemaChangeLog to give all the modifications to the schema required? And could you give some hints to me on how should those table be initiated in terms of data for a new organization if some initialiation is required? Regarding the position of the Project export button, could it be possible to move it from the "Details" sub-tab to the extreme right of the list of sub-tabs (so the button will be above a dark background)? This modification will be taken into account in 1.2-rc2. Finally, no problem to develop later the export of the indicators entry sub-tab. |
|
(0001069) svn_mantis-robot (developer) 2012-10-11 01:22 |
Added required tables for issue 0000388 on wiki page SchemaChangeLog through web user interface. Modified : /wiki/SchemaChangeLog.wiki |
|
(0001070) svn_mantis-robot (developer) 2012-10-11 18:31 |
Removed the table creation script added by mistake to the wiki page SchemaChangeLog through web user interface. The export feature has been corrected not by this wrong trial to rename the table names, but through the insertion of some default data in tabel "global_export_settings". This commit fixes issue 0000388 Modified : /wiki/SchemaChangeLog.wiki |
|
(0001071) osarrat (administrator) 2012-10-12 00:00 |
Issue status moved back to assigned because the position of the Project export button remains to be updated. Could it be possible to move it from the "Details" sub-tab to the extreme right of the list of sub-tabs (so the button will be above a dark background)? This modification will be taken into account in 1.2-rc2. Could it be also possible to rename the "Export" button on the Project list "Export all" because some users believed that this button will only export projects which are selected in the project list. This modification can also wait 1.2-rc2. |
|
(0001073) sherzod (developer) 2012-10-25 01:02 |
I need your opinion on the new position of the Project export button. See attached export_button.jpg. For me, it does not fit to design of sub-tabs panel. Maybe instead of button we follow same style as other sub-tab names such as "Management board"? |
|
(0001074) osarrat (administrator) 2012-10-27 05:22 |
It looks a but strange here, but it cannot definitely be a sub-tab like others because its aim is very different. I have confirmation about this with the project usability expert, and he confirms it to me, telling me that the delete project button which was like other sub-tabs must be changed. So the graphical design of the button is almost fine for me. Could you try just to make it thinner? Apparently, it is bigger than the space available for the sub-tabs so it may create a problem object other sub-tabs like logical framework for example. Finally, check with the others on the sigmah-dev mailing list, but we have already recommended some students from the Paris university to do this little button task. Tom is aware of that matter, and may reply to your questions through the list. I'm actually on holiday leave right now, and to be more specific in California, in the Sequoia National Park. :-) So i might take more time to reply to emails, and better to check with Tom through the list. |
|
(0001076) svn_mantis-robot (developer) 2012-12-23 01:10 |
Related to issue 0000388 . Changes export excel button name in projects list and moves project export button to sub-tabs. There is design issue that is noted in issue page. Added : /trunk/sigmah/src/main/java/org/sigmah/public/image/excel.png Modified : /trunk/sigmah/src/main/java/org/sigmah/client/i18n/UIConstants.properties Modified : /trunk/sigmah/src/main/java/org/sigmah/client/page/project/ProjectPresenter.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/page/project/details/ProjectDetailsPresenter.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/page/project/details/ProjectDetailsView.java Modified : /trunk/sigmah/src/main/java/org/sigmah/client/ui/GlobalExportForm.java Modified : /trunk/sigmah/src/main/java/org/sigmah/public/sigmah.css |
|
(0001077) sherzod (developer) 2012-12-23 01:15 edited on: 2012-12-23 01:18 |
I tried to think up appropriate style for project export button, but did not work. Now, it is same as project delete button. Besides, there is duplicate export buttons for some view such as lograme. Screenshot is included.(Has two parts, 1-management sub-tab, 2-logframe sub-tab) Please i need some idea about style and suitable position of project export button. Maybe this need to be separated as new issue? |
|
(0001078) osarrat (administrator) 2012-12-24 15:24 |
Thanks for this work Sherzod! Actually, for the design of the Export button at the project level, it should not be like a sub-tab. Sigmah usability expert confirmed it to me as written above in #c1074 . To give you precise indications for the style of the button, I've just attached a mock-up named Export-and-Delete-buttons.png. If you have any other question, please feel free to ask. |
|
(0001091) osarrat (administrator) 2013-02-12 13:51 |
With the just attached database content, I'm not able to do any global export. In the log, I get the following error: 2013-02-12 13:28:01,943 ERROR GlobalExportExporter:126 - [export] Failed to generate global export data. java.lang.NullPointerException at org.sigmah.server.endpoint.export.sigmah.spreadsheet.GlobalExportDataProvider.generateGlobalExportData(GlobalExportDataProvider.java:208) at org.sigmah.server.endpoint.export.sigmah.exporter.GlobalExportExporter.prepareData(GlobalExportExporter.java:123) at org.sigmah.server.endpoint.export.sigmah.exporter.GlobalExportExporter.export(GlobalExportExporter.java:58) at org.sigmah.server.endpoint.export.sigmah.SigmahExportServlet.doPost(SigmahExportServlet.java:109) at javax.servlet.http.HttpServlet.service(HttpServlet.java:727) Do you know where this error might come from? |
|
(0001093) osarrat (administrator) 2013-02-12 18:39 |
Button design issue moved to separate issue 0000505. |
|
(0001094) sherzod (developer) 2013-02-12 21:46 |
I tested Global export with attached db. It works correctly both with admin (admin@sigmah.org) or ordinary user (user1@sigmah.org). I checked the part that throwing null pointer. basically, i am putting model name and its flexible elements to a hashmap. after filling list of flex elems i get them by their model name key. in that point, map returning null which supposed to return at least empty list. I need more details on this. |
|
(0001096) osarrat (administrator) 2013-02-12 22:14 edited on: 2013-02-13 14:10 |
I've attached the full stacktrace to this issue. My java version is 1.7.0_13-b20. I'm using Jetty 7.4.2 as application server. I've also reproduced the bug with Tomcat 7.0.33 and Jetty 8.1.9. Issue reproduced with admin@sigmah.org both on Firefox and Chrome. What could I share with you as other details to help you? |
|
(0001122) Guerline (developer) 2013-04-23 16:19 |
Issue fixed in the commit 0000490:0001063 (fixing the issue 0000490). The list of project model was built according to the list of projects. That's why, when it tries to get project model from the map, it raised a nullpointerexception. |
|
(0001196) svn_mantis-robot (developer) 2013-05-27 16:26 |
Added test case DPT9 "Automatic Excel global export" to test resolution of part of issue 0000388 on wiki page TestScenario4DashboardProjectTable through web user interface. Modified : /wiki/TestScenario4DashboardProjectTable.wiki |
|
(0001197) svn_mantis-robot (developer) 2013-05-27 16:36 |
Modified test case R1 to test implementation of part issue 0000388 on wiki page TestScenario4Rights through web user interface. Modified : /wiki/TestScenario4Rights.wiki |
|
(0001201) svn_mantis-robot (developer) 2013-05-27 17:31 |
Added test case I6 "Export all project's indicators to Excel" to test part of implementation of issue 0000388 on wiki page TestScenario4Indicators through web user interface. Modified : /wiki/TestScenario4Indicators.wiki |
|
(0001202) svn_mantis-robot (developer) 2013-05-27 17:57 |
Added test case PRJM26 "Export Project synthesis Excel file" test part of implementation of issue 0000388 on wiki page TestScenario4ProjectManagement through web user interface. Modified : /wiki/TestScenario4ProjectManagement.wiki |
|
(0001203) svn_mantis-robot (developer) 2013-05-27 18:08 |
Added test case AGM6 "Default spreadsheet export file format" to test part of implementation of issue 0000388 on wiki page TestScenario4AdministrationGlobalManagement through web user interface. Modified : /wiki/TestScenario4AdministrationGlobalManagement.wiki |
|
(0001204) svn_mantis-robot (developer) 2013-05-27 18:17 |
Added test case OUM10 "Export Organizational Unit synthesis Excel file" to test part of implementation of issue 0000388 on wiki page TestScenario4OrgUnitManagement through web user interface. Modified : /wiki/TestScenario4OrgUnitManagement.wiki |
|
(0001205) svn_mantis-robot (developer) 2013-05-27 18:44 |
Added test case POMM26 "Remove a field from Project Synthesis export files" to test implementation of part of issue 0000388 on wiki page TestScenario4ProjectOrgunitModelManagement through web user interface. Modified : /wiki/TestScenario4ProjectOrgunitModelManagement.wiki |
|
(0001240) svn_mantis-robot (developer) 2013-06-12 14:27 |
Add i18n properties files in war for server side access (issue 0000388). Modified : /trunk/sigmah/pom.xml |
|
(0001246) svn_mantis-robot (developer) 2013-06-14 12:37 |
Corrects path for i18n properties files in war for server side access (issue 0000388). Modified : /trunk/sigmah/pom.xml |
Issue History |
|||
| Date Modified | Username | Field | Change |
| 2011-09-28 13:11 | osarrat | New Issue | |
| 2011-09-28 13:11 | osarrat | Relationship added | parent of 0000038 |
| 2011-09-28 13:11 | osarrat | Relationship added | parent of 0000210 |
| 2011-09-28 13:12 | osarrat | Relationship added | related to 0000213 |
| 2011-09-28 13:12 | osarrat | Relationship deleted | parent of 0000210 |
| 2011-09-28 13:12 | osarrat | Relationship added | parent of 0000110 |
| 2011-09-28 13:13 | osarrat | Priority | normal => high |
| 2011-09-28 13:13 | osarrat | Description Updated | View Revisions |
| 2011-12-03 19:20 | osarrat | Note Added: 0000840 | |
| 2011-12-03 19:21 | osarrat | Note Edited: 0000840 | View Revisions |
| 2012-01-31 10:18 | osarrat | User Report URL | => http://www.sigmah.org/fr/node/550 [^] |
| 2012-01-31 10:18 | osarrat | Additional Information Updated | View Revisions |
| 2012-06-28 13:44 | osarrat | Assigned To | => sherzod |
| 2012-06-28 13:44 | osarrat | Status | new => assigned |
| 2012-07-06 11:43 | sherzod | Description Updated | View Revisions |
| 2012-07-06 11:43 | sherzod | Additional Information Updated | View Revisions |
| 2012-07-06 11:45 | sherzod | Additional Information Updated | View Revisions |
| 2012-07-10 17:32 | osarrat | Relationship added | related to 0000473 |
| 2012-07-27 15:52 | sherzod | Note Added: 0001030 | |
| 2012-07-27 17:15 | osarrat | Note Added: 0001031 | |
| 2012-08-08 04:28 | svn_mantis-robot | Checkin | |
| 2012-08-08 04:28 | svn_mantis-robot | Note Added: 0001038 | |
| 2012-08-08 04:31 | sherzod | File Added: Project_synthesis_20120808012737.xls | |
| 2012-08-08 04:31 | sherzod | File Added: Project_synthesis_20120808012750.ods | |
| 2012-08-08 04:45 | sherzod | Note Added: 0001039 | |
| 2012-08-08 16:43 | osarrat | Additional Information Updated | View Revisions |
| 2012-08-08 18:53 | osarrat | Relationship added | related to 0000479 |
| 2012-08-08 18:53 | osarrat | Relationship added | related to 0000480 |
| 2012-08-08 18:53 | osarrat | Relationship added | related to 0000481 |
| 2012-08-08 18:54 | osarrat | Relationship added | related to 0000482 |
| 2012-08-08 18:54 | osarrat | Relationship added | related to 0000484 |
| 2012-08-08 18:54 | osarrat | Relationship added | related to 0000485 |
| 2012-08-08 18:54 | osarrat | Relationship added | related to 0000486 |
| 2012-08-08 19:05 | osarrat | Note Added: 0001040 | |
| 2012-08-08 19:05 | osarrat | Description Updated | View Revisions |
| 2012-08-08 19:05 | osarrat | Additional Information Updated | View Revisions |
| 2012-08-08 19:07 | osarrat | Note Edited: 0001040 | View Revisions |
| 2012-08-16 18:21 | sherzod | Note Added: 0001045 | |
| 2012-08-16 18:22 | sherzod | File Added: Global_export_20120817005736.xls | |
| 2012-08-17 11:40 | osarrat | Note Added: 0001046 | |
| 2012-08-17 13:13 | sherzod | Note Added: 0001047 | |
| 2012-08-17 13:39 | svn_mantis-robot | Checkin | |
| 2012-08-17 13:39 | svn_mantis-robot | Note Added: 0001048 | |
| 2012-08-20 19:07 | svn_mantis-robot | Checkin | |
| 2012-08-20 19:07 | svn_mantis-robot | Note Added: 0001049 | |
| 2012-09-05 11:26 | osarrat | Target Version | 1.5 => 1.2 |
| 2012-09-07 07:55 | sherzod | File Deleted: Global_export_20120817005736.xls | |
| 2012-09-07 07:55 | sherzod | File Deleted: Project_synthesis_20120808012750.ods | |
| 2012-09-07 07:56 | sherzod | File Deleted: Project_synthesis_20120808012737.xls | |
| 2012-09-07 07:56 | sherzod | File Added: Global_export_20120907130112.xls | |
| 2012-09-07 07:56 | sherzod | File Added: Organisational_unit_synthesis_20120907130816.ods | |
| 2012-09-07 07:57 | sherzod | File Added: Project_synthesis_20120907125203.xls | |
| 2012-09-07 07:57 | sherzod | File Added: Project_synthesis_20120906220403.ods | |
| 2012-09-07 10:37 | svn_mantis-robot | Checkin | |
| 2012-09-07 10:37 | svn_mantis-robot | Note Added: 0001057 | |
| 2012-09-07 10:37 | svn_mantis-robot | Status | assigned => resolved |
| 2012-09-07 10:37 | svn_mantis-robot | Resolution | open => fixed |
| 2012-09-27 17:30 | svn_mantis-robot | Checkin | |
| 2012-09-27 17:30 | svn_mantis-robot | Note Added: 0001061 | |
| 2012-10-05 16:23 | osarrat | Note Added: 0001066 | |
| 2012-10-05 16:23 | osarrat | Status | resolved => feedback |
| 2012-10-07 14:56 | sherzod | Note Added: 0001067 | |
| 2012-10-08 14:53 | osarrat | Note Added: 0001068 | |
| 2012-10-08 14:53 | osarrat | Status | feedback => assigned |
| 2012-10-11 01:22 | svn_mantis-robot | Checkin | |
| 2012-10-11 01:22 | svn_mantis-robot | Note Added: 0001069 | |
| 2012-10-11 18:31 | svn_mantis-robot | Checkin | |
| 2012-10-11 18:31 | svn_mantis-robot | Note Added: 0001070 | |
| 2012-10-11 18:31 | svn_mantis-robot | Status | assigned => resolved |
| 2012-10-12 00:00 | osarrat | Note Added: 0001071 | |
| 2012-10-12 00:00 | osarrat | Status | resolved => assigned |
| 2012-10-25 00:58 | sherzod | File Added: export_button.jpg | |
| 2012-10-25 01:02 | sherzod | Note Added: 0001073 | |
| 2012-10-27 05:22 | osarrat | Note Added: 0001074 | |
| 2012-12-05 15:53 | osarrat | Relationship added | related to 0000498 |
| 2012-12-05 16:30 | osarrat | Relationship added | parent of 0000499 |
| 2012-12-05 16:32 | osarrat | Relationship deleted | related to 0000498 |
| 2012-12-05 16:32 | osarrat | Relationship added | parent of 0000498 |
| 2012-12-05 16:32 | osarrat | Relationship replaced | related to 0000038 |
| 2012-12-05 17:41 | osarrat | Relationship added | parent of 0000500 |
| 2012-12-23 01:10 | svn_mantis-robot | Checkin | |
| 2012-12-23 01:10 | svn_mantis-robot | Note Added: 0001076 | |
| 2012-12-23 01:15 | sherzod | Note Added: 0001077 | |
| 2012-12-23 01:15 | sherzod | File Added: screen1_2.png | |
| 2012-12-23 01:18 | sherzod | Note Edited: 0001077 | View Revisions |
| 2012-12-24 15:20 | osarrat | File Added: Export-and-Delete-buttons.png | |
| 2012-12-24 15:24 | osarrat | Note Added: 0001078 | |
| 2013-02-12 13:48 | osarrat | File Added: sigmah-1.2-demo-crf.sql.zip | |
| 2013-02-12 13:51 | osarrat | Note Added: 0001091 | |
| 2013-02-12 18:37 | osarrat | Relationship added | child of 0000505 |
| 2013-02-12 18:37 | osarrat | Relationship deleted | child of 0000505 |
| 2013-02-12 18:37 | osarrat | Relationship added | related to 0000505 |
| 2013-02-12 18:39 | osarrat | Note Added: 0001093 | |
| 2013-02-12 21:46 | sherzod | Note Added: 0001094 | |
| 2013-02-12 22:07 | osarrat | File Added: Export-NullPointer-Error-StackTrace.TXT | |
| 2013-02-12 22:14 | osarrat | Note Added: 0001096 | |
| 2013-02-13 14:10 | osarrat | Note Edited: 0001096 | View Revisions |
| 2013-03-18 10:06 | osarrat | Relationship added | related to 0000525 |
| 2013-04-19 16:49 | tmiette | Assigned To | sherzod => Guerline |
| 2013-04-23 16:19 | Guerline | Note Added: 0001122 | |
| 2013-05-27 16:26 | svn_mantis-robot | Checkin | |
| 2013-05-27 16:26 | svn_mantis-robot | Note Added: 0001196 | |
| 2013-05-27 16:36 | svn_mantis-robot | Checkin | |
| 2013-05-27 16:36 | svn_mantis-robot | Note Added: 0001197 | |
| 2013-05-27 17:31 | svn_mantis-robot | Checkin | |
| 2013-05-27 17:31 | svn_mantis-robot | Note Added: 0001201 | |
| 2013-05-27 17:57 | svn_mantis-robot | Checkin | |
| 2013-05-27 17:57 | svn_mantis-robot | Note Added: 0001202 | |
| 2013-05-27 18:08 | svn_mantis-robot | Checkin | |
| 2013-05-27 18:08 | svn_mantis-robot | Note Added: 0001203 | |
| 2013-05-27 18:17 | svn_mantis-robot | Checkin | |
| 2013-05-27 18:17 | svn_mantis-robot | Note Added: 0001204 | |
| 2013-05-27 18:44 | svn_mantis-robot | Checkin | |
| 2013-05-27 18:44 | svn_mantis-robot | Note Added: 0001205 | |
| 2013-06-03 14:48 | tmiette | Status | assigned => resolved |
| 2013-06-12 14:27 | svn_mantis-robot | Checkin | |
| 2013-06-12 14:27 | svn_mantis-robot | Note Added: 0001240 | |
| 2013-06-14 12:37 | svn_mantis-robot | Checkin | |
| 2013-06-14 12:37 | svn_mantis-robot | Note Added: 0001246 | |
| Copyright © 2000 - 2010 MantisBT Group |