stable
Clone or download
request #14553: Methods should have an explicit visibility
No changes have been made to the API, all existing methods without an explicit visibility has been set to the equivalent 'public' visibility. The change has been fully automated by making the sniff fixable temporarily using the following patch: --- a/src/Standards/Squiz/Sniffs/Scope/MethodScopeSniff.php +++ b/src/Standards/Squiz/Sniffs/Scope/MethodScopeSniff.php @@ -64,12 +64,18 @@ class MethodScopeSniff extends AbstractScopeSniff } } + $fix = false; if ($modifier === null) { $error = 'Visibility must be declared on method "%s"'; $data = [$methodName]; - $phpcsFile->addError($error, $stackPtr, 'Missing', $data); + $fix = $phpcsFile->addFixableError($error, $stackPtr, 'Missing', $data); } + if ($fix) { + $phpcsFile->fixer->beginChangeset(); + $phpcsFile->fixer->addContentBefore($stackPtr, 'public '); + $phpcsFile->fixer->endChangeset(); + } }//end processTokenWithinScope() Change-Id: I2a0f3e50fbe9d893678fb39108a68e82ad44829f
Modified Files
Name | ||||
---|---|---|---|---|
M | plugins/admindelegation/include/AdminDelegation_ShowProjectWidget.class.php | +5 | −5 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/Milestone/Backlog/IBacklogItemCollection.class.php | +4 | −4 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/Milestone/Backlog/IBuildBacklogItemAndBacklogItemCollection.class.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboardPluginDescriptor.class.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboardPluginInfo.class.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/Planning/Planning.class.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/Planning/PlanningDao.class.php | +11 | −11 | Go to diff View file |
M | plugins/agiledashboard/tests/include/MilestoneSelectorControllerTest.php | +3 | −3 | Go to diff View file |
M | plugins/cardwall/include/CardInCellPresenterNode.class.php | +1 | −1 | Go to diff View file |
M | plugins/cardwall/include/CardwallPluginDescriptor.class.php | +1 | −1 | Go to diff View file |
M | plugins/cardwall/include/CardwallPluginInfo.class.php | +1 | −1 | Go to diff View file |
M | plugins/cardwall/include/Cardwall_RendererDao.class.php | +6 | −6 | Go to diff View file |
M | plugins/cardwall/include/OnTop/Config/ColumnsVisitor.class.php | +1 | −1 | Go to diff View file |
M | plugins/cardwall/include/OnTop/ConfigFactory.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/bin/DocmanImport/DateParser.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/ApprovalTable/ApprovalTable.class.php | +29 | −29 | Go to diff View file |
M | plugins/docman/include/ApprovalTable/FactoriesFactory.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/ApprovalTable/Factory.class.php | +12 | −12 | Go to diff View file |
M | plugins/docman/include/ApprovalTable/File/File.class.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/ApprovalTable/File/FileDao.class.php | +4 | −4 | Go to diff View file |
M | plugins/docman/include/ApprovalTable/File/FileFactory.class.php | +8 | −8 | Go to diff View file |
M | plugins/docman/include/ApprovalTable/Item/Item.class.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/ApprovalTable/Item/ItemDao.class.php | +10 | −10 | Go to diff View file |
M | plugins/docman/include/ApprovalTable/Item/ItemFactory.class.php | +6 | −6 | Go to diff View file |
M | plugins/docman/include/ApprovalTable/Link/Link.class.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/ApprovalTable/NotificationCycle.class.php | +32 | −32 | Go to diff View file |
M | plugins/docman/include/ApprovalTable/Reviewer/Reviewer.class.php | +14 | −14 | Go to diff View file |
M | plugins/docman/include/ApprovalTable/Reviewer/ReviewerDao.class.php | +16 | −16 | Go to diff View file |
M | plugins/docman/include/ApprovalTable/Reviewer/ReviewerFactory.class.php | +23 | −23 | Go to diff View file |
M | plugins/docman/include/ApprovalTable/Versionned/Versionned.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/ApprovalTable/Versionned/VersionnedFactory.class.php | +6 | −6 | Go to diff View file |
M | plugins/docman/include/ApprovalTable/Wiki/Wiki.class.php | +5 | −5 | Go to diff View file |
M | plugins/docman/include/ApprovalTable/Wiki/WikiDao.class.php | +7 | −7 | Go to diff View file |
M | plugins/docman/include/ApprovalTable/Wiki/WikiFactory.class.php | +8 | −8 | Go to diff View file |
M | plugins/docman/include/DocmanOneFolderIsWriteable.class.php | +6 | −6 | Go to diff View file |
M | plugins/docman/include/DocmanPluginDescriptor.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/Docman_Actions.class.php | +50 | −50 | Go to diff View file |
M | plugins/docman/include/Docman_ActionsDeleteVisitor.class.php | +10 | −10 | Go to diff View file |
M | plugins/docman/include/Docman_BuildItemMappingVisitor.class.php | +18 | −18 | Go to diff View file |
M | plugins/docman/include/Docman_CloneItemsVisitor.class.php | +15 | −15 | Go to diff View file |
M | plugins/docman/include/Docman_Controller.class.php | +34 | −34 | Go to diff View file |
M | plugins/docman/include/Docman_Document.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/Docman_EmbeddedFile.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/Docman_Empty.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/Docman_Error_PermissionDenied.class.php | +10 | −10 | Go to diff View file |
M | plugins/docman/include/Docman_ExpandAllHierarchyVisitor.class.php | +7 | −7 | Go to diff View file |
M | plugins/docman/include/Docman_File.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/Docman_FileStorage.class.php | +8 | −8 | Go to diff View file |
M | plugins/docman/include/Docman_Filter.class.php | +51 | −51 | Go to diff View file |
M | plugins/docman/include/Docman_FilterDao.class.php | +6 | −6 | Go to diff View file |
M | plugins/docman/include/Docman_FilterFactory.class.php | +20 | −20 | Go to diff View file |
M | plugins/docman/include/Docman_Folder.class.php | +7 | −7 | Go to diff View file |
M | plugins/docman/include/Docman_FolderFactory.class.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/Docman_HTTPController.class.php | +10 | −10 | Go to diff View file |
M | plugins/docman/include/Docman_HtmlFilter.class.php | +17 | −17 | Go to diff View file |
M | plugins/docman/include/Docman_Icons.class.php | +7 | −7 | Go to diff View file |
M | plugins/docman/include/Docman_ItemAction.class.php | +17 | −17 | Go to diff View file |
M | plugins/docman/include/Docman_ItemDao.class.php | +32 | −32 | Go to diff View file |
M | plugins/docman/include/Docman_ItemFactory.class.php | +34 | −34 | Go to diff View file |
M | plugins/docman/include/Docman_Link.class.php | +5 | −5 | Go to diff View file |
M | plugins/docman/include/Docman_LinkVersionDao.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/Docman_LockDao.class.php | +6 | −6 | Go to diff View file |
M | plugins/docman/include/Docman_LockFactory.class.php | +7 | −7 | Go to diff View file |
M | plugins/docman/include/Docman_Log.class.php | +8 | −8 | Go to diff View file |
M | plugins/docman/include/Docman_MetaMetadataHtml.class.php | +7 | −7 | Go to diff View file |
M | plugins/docman/include/Docman_Metadata.class.php | +58 | −58 | Go to diff View file |
M | plugins/docman/include/Docman_MetadataComparator.class.php | +5 | −5 | Go to diff View file |
M | plugins/docman/include/Docman_MetadataDao.class.php | +10 | −10 | Go to diff View file |
M | plugins/docman/include/Docman_MetadataFactory.class.php | +30 | −30 | Go to diff View file |
M | plugins/docman/include/Docman_MetadataHtml.class.php | +24 | −24 | Go to diff View file |
M | plugins/docman/include/Docman_MetadataListOfValuesElement.class.php | +12 | −12 | Go to diff View file |
M | plugins/docman/include/Docman_MetadataListOfValuesElementDao.class.php | +11 | −11 | Go to diff View file |
M | plugins/docman/include/Docman_MetadataListOfValuesElementFactory.class.php | +11 | −11 | Go to diff View file |
M | plugins/docman/include/Docman_MetadataSqlQueryChunk.class.php | +5 | −5 | Go to diff View file |
M | plugins/docman/include/Docman_MetadataValue.class.php | +25 | −25 | Go to diff View file |
M | plugins/docman/include/Docman_MetadataValueDao.class.php | +13 | −13 | Go to diff View file |
M | plugins/docman/include/Docman_MetadataValueFactory.class.php | +11 | −11 | Go to diff View file |
M | plugins/docman/include/Docman_NotificationsManager.class.php | +12 | −12 | Go to diff View file |
M | plugins/docman/include/Docman_NotificationsManager_Add.class.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/Docman_NotificationsManager_Delete.class.php | +4 | −4 | Go to diff View file |
M | plugins/docman/include/Docman_NotificationsManager_Move.class.php | +4 | −4 | Go to diff View file |
M | plugins/docman/include/Docman_NotificationsManager_Subscribers.class.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/Docman_Path.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/Docman_PermissionsManager.class.php | +26 | −26 | Go to diff View file |
M | plugins/docman/include/Docman_PermissionsManagerDao.class.php | +6 | −6 | Go to diff View file |
M | plugins/docman/include/Docman_Report.class.php | +33 | −33 | Go to diff View file |
M | plugins/docman/include/Docman_ReportColumn.class.php | +19 | −19 | Go to diff View file |
M | plugins/docman/include/Docman_ReportColumnFactory.class.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/Docman_ReportDao.class.php | +11 | −11 | Go to diff View file |
M | plugins/docman/include/Docman_ReportFactory.class.php | +18 | −18 | Go to diff View file |
M | plugins/docman/include/Docman_ReportHtml.class.php | +8 | −8 | Go to diff View file |
M | plugins/docman/include/Docman_SOAPActions.class.php | +7 | −7 | Go to diff View file |
M | plugins/docman/include/Docman_SOAPController.class.php | +10 | −10 | Go to diff View file |
M | plugins/docman/include/Docman_Sample.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/Docman_SettingsBo.class.php | +11 | −11 | Go to diff View file |
M | plugins/docman/include/Docman_SettingsDao.class.php | +5 | −5 | Go to diff View file |
M | plugins/docman/include/Docman_SqlFilter.class.php | +23 | −23 | Go to diff View file |
M | plugins/docman/include/Docman_SqlReportColumn.class.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/Docman_SubItemsRemovalVisitor.class.php | +7 | −7 | Go to diff View file |
M | plugins/docman/include/Docman_SubItemsWritableVisitor.class.php | +7 | −7 | Go to diff View file |
M | plugins/docman/include/Docman_Token.class.php | +6 | −6 | Go to diff View file |
M | plugins/docman/include/Docman_TokenDao.class.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/Docman_ValidateFilter.class.php | +7 | −7 | Go to diff View file |
M | plugins/docman/include/Docman_Validator.class.php | +5 | −5 | Go to diff View file |
M | plugins/docman/include/Docman_Version.class.php | +20 | −20 | Go to diff View file |
M | plugins/docman/include/Docman_VersionDao.class.php | +24 | −24 | Go to diff View file |
M | plugins/docman/include/Docman_VersionFactory.class.php | +15 | −15 | Go to diff View file |
M | plugins/docman/include/Docman_Widget_Embedded.class.php | +5 | −5 | Go to diff View file |
M | plugins/docman/include/Docman_Widget_MyDocman.class.php | +5 | −5 | Go to diff View file |
M | plugins/docman/include/Docman_Widget_MyDocmanSearch.class.php | +5 | −5 | Go to diff View file |
M | plugins/docman/include/Docman_Wiki.class.php | +5 | −5 | Go to diff View file |
M | plugins/docman/include/Docman_WikiController.class.php | +17 | −17 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Admin.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Admin_LockInfos.class.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Admin_Metadata.class.php | +5 | −5 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Admin_MetadataDetails.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Admin_MetadataDetailsUpdateLove.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Admin_MetadataImport.class.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Admin_Obsolete.class.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Admin_Permissions.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Admin_View.class.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_AjaxReferenceTooltip.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_AjaxReferenceTooltipError.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ApprovalCreate.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Browse.class.php | +9 | −9 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Delete.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Details.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Display.class.php | +5 | −5 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Download.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Edit.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Embedded.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Empty.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_GetActionOnIconVisitor.class.php | +7 | −7 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_GetClassForLinkVisitor.class.php | +7 | −7 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_GetFieldsVisitor.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_GetMenuItemsVisitor.class.php | +9 | −9 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_GetSpecificFieldsVisitor.class.php | +20 | −20 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Header.class.php | +5 | −5 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Icons.class.php | +9 | −9 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Install.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Installed.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ItemDetails.class.php | +5 | −5 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ItemDetailsSection.class.php | +4 | −4 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ItemDetailsSectionActions.class.php | +9 | −9 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ItemDetailsSectionApproval.class.php | +19 | −19 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ItemDetailsSectionApprovalCreate.class.php | +13 | −13 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ItemDetailsSectionDelete.class.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ItemDetailsSectionEditProperties.class.php | +10 | −10 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ItemDetailsSectionMove.class.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ItemDetailsSectionNewVersion.class.php | +11 | −11 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ItemDetailsSectionNotifications.class.php | +9 | −9 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ItemDetailsSectionPaste.class.php | +10 | −10 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ItemDetailsSectionPermissions.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ItemDetailsSectionProperties.class.php | +16 | −16 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ItemDetailsSectionReferences.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ItemDetailsSectionStatistics.class.php | +4 | −4 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ItemDetailsSectionUpdate.class.php | +11 | −11 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ItemRanking.class.php | +4 | −4 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ItemTreeUlVisitor.class.php | +8 | −8 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_LoveDetails.class.php | +5 | −5 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Move.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_New.class.php | +19 | −19 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_NewDocument.class.php | +6 | −6 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_NewFolder.class.php | +8 | −8 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_NewVersion.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_New_FolderSelection.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ParentsTree.class.php | +11 | −11 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Paste.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_PasteInProgress.class.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_PermissionDeniedError.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_PermissionsForItem.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_PositionWithinFolder.class.php | +9 | −9 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ProjectHeader.class.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_RawTree.class.php | +4 | −4 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Redirect.class.php | +7 | −7 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_RedirectAfterCrud.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ReportSettings.class.php | +6 | −6 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Table.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ToolbarNewDocumentVisitor.class.php | +7 | −7 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Tree.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Update.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_View.class.php | +19 | −19 | Go to diff View file |
M | plugins/docman/include/view/soap/Docman_View_SOAP_List.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/view/soap/Docman_View_SOAP_SOAP.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/view/soap/Docman_View_SOAP_Search.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/phpunit/ApprovalTable/ApprovalTableTest.php | +4 | −4 | Go to diff View file |
M | plugins/docman/phpunit/TokenTest.php | +4 | −4 | Go to diff View file |
M | plugins/forumml/include/ForumMLPluginDescriptor.class.php | +1 | −1 | Go to diff View file |
M | plugins/forumml/include/ForumML_Attachment.class.php | +3 | −3 | Go to diff View file |
M | plugins/forumml/include/ForumML_AttachmentDao.class.php | +2 | −2 | Go to diff View file |
M | plugins/forumml/include/ForumML_FileStorage.class.php | +4 | −4 | Go to diff View file |
M | plugins/forumml/include/ForumML_HTMLPurifier.class.php | +3 | −3 | Go to diff View file |
M | plugins/forumml/include/ForumML_MessageDao.class.php | +2 | −2 | Go to diff View file |
M | plugins/forumml/include/ForumML_MessageManager.class.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/Git/Ci.class.php | +5 | −5 | Go to diff View file |
M | plugins/git/include/Git/Ci/Dao.class.php | +6 | −6 | Go to diff View file |
M | plugins/git/include/Git/Driver/Gerrit/RemoteSSHConfig.class.php | +4 | −4 | Go to diff View file |
M | plugins/git/include/GitActions.class.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/GitForkPermissionsManager.class.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/GitLog.class.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/GitPluginDescriptor.class.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/GitRepository.class.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/Git_Backend_Gitolite.class.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/Git_PostReceiveMailManager.class.php | +4 | −4 | Go to diff View file |
M | plugins/git/include/Git_Widget_ProjectPushes.class.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/Git_Widget_UserPushes.class.php | +3 | −3 | Go to diff View file |
M | plugins/git/include/mvc/PluginController.class.php | +3 | −3 | Go to diff View file |
M | plugins/git/tests/Git_ForkCrossProject_Test.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/GraphOnTrackersV5PluginDescriptor.class.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/GraphOnTrackersV5_Widget_Chart.class.php | +7 | −7 | Go to diff View file |
M | plugins/graphontrackersv5/include/data-access/GraphOnTrackersV5_ChartDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/data-access/GraphOnTrackersV5_Chart_Bar.class.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/data-access/GraphOnTrackersV5_Chart_BarDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/data-access/GraphOnTrackersV5_Chart_BurndownDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/data-access/GraphOnTrackersV5_Chart_CumulativeFlowDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/data-access/GraphOnTrackersV5_Chart_Gantt.class.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/data-access/GraphOnTrackersV5_Chart_GanttDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/data-access/GraphOnTrackersV5_Chart_Pie.class.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/data-access/GraphOnTrackersV5_Chart_PieDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/data-transformation/ChartDataBuilderV5.class.php | +2 | −2 | Go to diff View file |
M | plugins/graphontrackersv5/include/data-transformation/DataBuilderV5.class.php | +2 | −2 | Go to diff View file |
M | plugins/graphontrackersv5/include/data-transformation/GraphOnTrackersV5_Chart_BarDataBuilder.class.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/data-transformation/GraphOnTrackersV5_Chart_GanttDataBuilder.class.php | +2 | −2 | Go to diff View file |
M | plugins/graphontrackersv5/include/data-transformation/GraphOnTrackersV5_Chart_PieDataBuilder.class.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/graphic-library/GraphOnTrackersV5_Engine_Bar.class.php | +3 | −3 | Go to diff View file |
M | plugins/graphontrackersv5/include/graphic-library/GraphOnTrackersV5_Engine_Burndown.class.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/graphic-library/GraphOnTrackersV5_Engine_Gantt.class.php | +16 | −16 | Go to diff View file |
M | plugins/graphontrackersv5/include/graphic-library/GraphOnTrackersV5_Engine_Pie.class.php | +1 | −1 | Go to diff View file |
M | plugins/hudson/include/HudsonBuild.class.php | +10 | −10 | Go to diff View file |
M | plugins/hudson/include/HudsonJobWidget.class.php | +4 | −4 | Go to diff View file |
M | plugins/hudson/include/HudsonOverviewWidget.class.php | +1 | −1 | Go to diff View file |
M | plugins/hudson/include/HudsonWidget.class.php | +2 | −2 | Go to diff View file |
M | plugins/hudson/include/PluginHudsonJobDao.class.php | +8 | −8 | Go to diff View file |
M | plugins/hudson/include/hudson.class.php | +1 | −1 | Go to diff View file |
M | plugins/hudson/include/hudsonActions.class.php | +1 | −1 | Go to diff View file |
M | plugins/hudson/include/hudsonPluginDescriptor.class.php | +1 | −1 | Go to diff View file |
M | plugins/hudson/include/hudsonViews.class.php | +13 | −13 | Go to diff View file |
M | plugins/hudson/include/hudson_Widget_JobBuildHistory.class.php | +5 | −5 | Go to diff View file |
M | plugins/hudson/include/hudson_Widget_MyMonitoredJobs.class.php | +2 | −2 | Go to diff View file |
M | plugins/ldap/include/LDAP.class.php | +16 | −16 | Go to diff View file |
M | plugins/ldap/include/LDAPResult.class.php | +28 | −28 | Go to diff View file |
M | plugins/ldap/include/LDAP_BackendSVN.class.php | +3 | −3 | Go to diff View file |
M | plugins/ldap/include/LDAP_ProjectDao.class.php | +3 | −3 | Go to diff View file |
M | plugins/ldap/include/LDAP_ProjectManager.class.php | +4 | −4 | Go to diff View file |
M | plugins/ldap/include/LDAP_SyncMail.class.php | +1 | −1 | Go to diff View file |
M | plugins/ldap/include/LDAP_SyncNotificationManager.class.php | +1 | −1 | Go to diff View file |
M | plugins/ldap/include/LDAP_SyncReminderNotificationManager.class.php | +1 | −1 | Go to diff View file |
M | plugins/ldap/include/LDAP_UserDao.class.php | +5 | −5 | Go to diff View file |
M | plugins/ldap/include/LDAP_UserGroupDao.class.php | +9 | −9 | Go to diff View file |
M | plugins/ldap/include/LDAP_UserManager.class.php | +17 | −17 | Go to diff View file |
M | plugins/ldap/include/LdapPluginDescriptor.class.php | +1 | −1 | Go to diff View file |
M | plugins/ldap/include/LdapPluginInfo.class.php | +1 | −1 | Go to diff View file |
M | plugins/ldap/include/ldapPlugin.php | +22 | −22 | Go to diff View file |
M | plugins/mediawiki/fusionforge/FusionForge.php | +7 | −7 | Go to diff View file |
M | plugins/mediawiki/include/MediaWikiPluginDescriptor.class.php | +1 | −1 | Go to diff View file |
M | plugins/mediawiki/include/MediaWikiPluginInfo.class.php | +1 | −1 | Go to diff View file |
M | plugins/mediawiki/mediawiki-skin/Tuleap.php | +7 | −7 | Go to diff View file |
M | plugins/mediawiki/www/DatabaseForgeMysql.php | +2 | −2 | Go to diff View file |
M | plugins/mediawiki/www/DatabaseForgeMysql123.php | +2 | −2 | Go to diff View file |
M | plugins/mediawiki/www/DatabaseForgePgsql.php | +5 | −5 | Go to diff View file |
M | plugins/mediawiki/www/LocalSettings.php | +4 | −4 | Go to diff View file |
M | plugins/mediawiki/www/skins/Tuleap123/Tuleap123.php | +8 | −8 | Go to diff View file |
M | plugins/pluginsadministration/include/PluginsAdministrationActions.class.php | +9 | −9 | Go to diff View file |
M | plugins/pluginsadministration/include/PluginsAdministrationPluginDescriptor.class.php | +1 | −1 | Go to diff View file |
M | plugins/pluginsadministration/include/PluginsAdministrationViews.class.php | +5 | −5 | Go to diff View file |
M | plugins/projectlinks/include/ProjectLinksDao.class.php | +4 | −4 | Go to diff View file |
M | plugins/projectlinks/include/ProjectLinksPluginDescriptor.class.php | +1 | −1 | Go to diff View file |
M | plugins/projectlinks/include/projectlinksPlugin.php | +11 | −11 | Go to diff View file |
M | plugins/statistics/include/StatisticsPluginDescriptor.class.php | +1 | −1 | Go to diff View file |
M | plugins/statistics/include/StatisticsPluginInfo.class.php | +1 | −1 | Go to diff View file |
M | plugins/statistics/include/Statistics_DiskUsageGraph.class.php | +5 | −5 | Go to diff View file |
M | plugins/statistics/include/Statistics_DiskUsageHtml.class.php | +1 | −1 | Go to diff View file |
M | plugins/statistics/include/Statistics_Formatter_Cvs.class.php | +2 | −2 | Go to diff View file |
M | plugins/statistics/include/Statistics_Formatter_Scm.class.php | +7 | −7 | Go to diff View file |
M | plugins/statistics/include/Statistics_Formatter_Svn.class.php | +2 | −2 | Go to diff View file |
M | plugins/statistics/include/Statistics_SOAPServer.class.php | +1 | −1 | Go to diff View file |
M | plugins/statistics/include/Statistics_ScmCvsDao.class.php | +8 | −8 | Go to diff View file |
M | plugins/statistics/include/Statistics_ScmSvnDao.class.php | +8 | −8 | Go to diff View file |
M | plugins/statistics/include/Statistics_Widget_ProjectStatistics.class.php | +2 | −2 | Go to diff View file |
M | plugins/statistics/include/statisticsPlugin.php | +4 | −4 | Go to diff View file |
M | plugins/template/tests/TemplateTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Tracker_Artifact.class.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/DateReminder/Tracker_DateReminder_Role_Assignee.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/DateReminder/Tracker_DateReminder_Role_Commenter.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/DateReminder/Tracker_DateReminder_Role_Submitter.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement.class.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElementFactory.class.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Container_Fieldset.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_Date.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_List.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_List_BindDecorator.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_List_BindFactory.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_PermissionsOnArtifact.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_StaticField_LineBreak.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_StaticField_Separator.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_SharedFormElementFactory.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/dao/Tracker_FormElement_FieldDao.class.php | +9 | −9 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/dao/Tracker_FormElement_Field_ComputedDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/dao/Tracker_FormElement_Field_DateDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/dao/Tracker_FormElement_Field_FloatDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/dao/Tracker_FormElement_Field_IntegerDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/dao/Tracker_FormElement_Field_ListDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/dao/Tracker_FormElement_Field_List_BindDecoratorDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/dao/Tracker_FormElement_Field_List_Bind_DefaultvalueDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/dao/Tracker_FormElement_Field_List_Bind_StaticDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/dao/Tracker_FormElement_Field_List_Bind_Static_ValueDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/dao/Tracker_FormElement_Field_List_Bind_Ugroups_ValueDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/dao/Tracker_FormElement_Field_List_Bind_UsersDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/dao/Tracker_FormElement_Field_List_OpenValueDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/dao/Tracker_FormElement_Field_MultiSelectboxDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/dao/Tracker_FormElement_Field_OpenListDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/dao/Tracker_FormElement_Field_StringDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/dao/Tracker_FormElement_Field_TextDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/dao/Tracker_FormElement_Field_ValueDao.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/dao/Tracker_FormElement_Field_Value_OpenListDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/dao/Tracker_FormElement_StaticField_RichTextDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Hierarchy/CyclicHierarchyException.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Hierarchy/NotInHierarchyException.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/dao/Tracker_ReportDao.class.php | +10 | −10 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/dao/Tracker_Report_CriteriaDao.class.php | +8 | −8 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/dao/Tracker_Report_Criteria_Alphanum_ValueDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/dao/Tracker_Report_Criteria_Date_ValueDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/dao/Tracker_Report_Criteria_File_ValueDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/dao/Tracker_Report_Criteria_List_ValueDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/dao/Tracker_Report_Criteria_OpenList_ValueDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/dao/Tracker_Report_Criteria_PermissionsOnArtifact_ValueDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/dao/Tracker_Report_RendererDao.class.php | +10 | −10 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/dao/Tracker_Report_Renderer_TableDao.class.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/dao/Tracker_Report_Renderer_Table_ColumnsDao.class.php | +7 | −7 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/dao/Tracker_Report_Renderer_Table_FunctionsAggregatesDao.class.php | +7 | −7 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/dao/Tracker_Report_Renderer_Table_SortDao.class.php | +8 | −8 | Go to diff View file |
M | plugins/tracker/include/Tracker/Rule/List/View.class.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Rule/Tracker_RulesManager.class.php | +11 | −11 | Go to diff View file |
M | plugins/tracker/include/Tracker/Rule/dao/Tracker_RuleDao.class.php | +8 | −8 | Go to diff View file |
M | plugins/tracker/include/Tracker/Sample.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Semantic/Tracker_SemanticFactory.class.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/include/Tracker/Tracker.class.php | +12 | −12 | Go to diff View file |
M | plugins/tracker/include/Tracker/TrackerFactory.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/TrackerManager.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Tracker_Report_Field.class.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/Tracker_URL.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Widget/Tracker_Widget_MyRenderer.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Widget/Tracker_Widget_Renderer.class.php | +10 | −10 | Go to diff View file |
M | plugins/tracker/include/Tracker/dao/TrackerDao.class.php | +7 | −7 | Go to diff View file |
M | plugins/tracker/include/Tracker/dao/Tracker_FileInfoDao.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/dao/Tracker_GlobalNotificationDao.class.php | +11 | −11 | Go to diff View file |
M | plugins/tracker/include/Tracker/dao/Tracker_NotificationDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/dao/Tracker_WatcherDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Workflow/Transition/Condition/FieldNotEmpty/Dao.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/trackerPluginDescriptor.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/trackerPluginInfo.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/Tracker/Hierarchy/HierarchicalTrackerFactoryTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/Tracker/Hierarchy/HierarchicalTrackerTest.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/tests/Tracker/Permission/PermissionCheckerTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/Tracker/Rule/Date/FactoryTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/Tracker/Rule/List/FactoryTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/Tracker_ArtifactTest.php | +9 | −9 | Go to diff View file |
M | plugins/tracker/tests/Tracker_FileInfoTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/Tracker_FormElementFactoryTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/Tracker_FormElement_FieldTest.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/tests/Tracker_FormElement_Field_FileTest.php | +19 | −19 | Go to diff View file |
M | plugins/tracker/tests/Tracker_FormElement_Field_ListTest.php | +13 | −13 | Go to diff View file |
M | plugins/tracker/tests/Tracker_FormElement_Field_ListTypes_GetDefaultValueTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/Tracker_FormElement_Field_OpenListTest.php | +12 | −12 | Go to diff View file |
M | plugins/tracker/tests/Tracker_FormElement_Field_SubmittedOnTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/workflow/TransitionTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/workflow/WorkflowTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker_date_reminder/include/ArtifactDateReminder.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker_date_reminder/include/ArtifactDateReminderFactory.class.php | +21 | −21 | Go to diff View file |
M | plugins/tracker_date_reminder/include/TrackerDateReminderPluginDescriptor.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker_date_reminder/include/TrackerDateReminderPluginInfo.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker_date_reminder/include/TrackerDateReminder_ArtifactField.class.php | +4 | −4 | Go to diff View file |
M | plugins/tracker_date_reminder/include/TrackerDateReminder_ArtifactFieldFactory.class.php | +4 | −4 | Go to diff View file |
M | plugins/tracker_date_reminder/include/TrackerDateReminder_ArtifactFieldHtml.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker_date_reminder/include/TrackerDateReminder_ArtifactType.class.php | +3 | −3 | Go to diff View file |
M | plugins/tracker_date_reminder/include/tracker_date_reminderPlugin.php | +9 | −9 | Go to diff View file |
M | plugins/userlog/include/UserLogDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/userlog/include/UserLogManager.class.php | +4 | −4 | Go to diff View file |
M | plugins/userlog/include/UserLogPluginDescriptor.class.php | +1 | −1 | Go to diff View file |
M | plugins/webdav/include/BrowserPlugin.class.php | +6 | −6 | Go to diff View file |
M | plugins/webdav/include/FS/WebDAVDocmanDocument.class.php | +11 | −11 | Go to diff View file |
M | plugins/webdav/include/FS/WebDAVDocmanFile.class.php | +7 | −7 | Go to diff View file |
M | plugins/webdav/include/FS/WebDAVDocmanFolder.class.php | +18 | −18 | Go to diff View file |
M | plugins/webdav/include/FS/WebDAVFRS.class.php | +14 | −14 | Go to diff View file |
M | plugins/webdav/include/FS/WebDAVFRSFile.class.php | +22 | −22 | Go to diff View file |
M | plugins/webdav/include/FS/WebDAVFRSPackage.class.php | +15 | −15 | Go to diff View file |
M | plugins/webdav/include/FS/WebDAVFRSRelease.class.php | +26 | −26 | Go to diff View file |
M | plugins/webdav/include/FS/WebDAVProject.class.php | +13 | −13 | Go to diff View file |
M | plugins/webdav/include/FS/WebDAVRoot.class.php | +8 | −8 | Go to diff View file |
M | plugins/webdav/include/WebDAVAuthentication.class.php | +5 | −5 | Go to diff View file |
M | plugins/webdav/include/WebDAVPluginDescriptor.class.php | +1 | −1 | Go to diff View file |
M | plugins/webdav/include/WebDAVPluginInfo.class.php | +1 | −1 | Go to diff View file |
M | plugins/webdav/include/WebDAVTree.class.php | +4 | −4 | Go to diff View file |
M | plugins/webdav/include/WebDAVUtils.class.php | +19 | −19 | Go to diff View file |
M | plugins/webdav/include/Webdav_URLVerification.class.php | +2 | −2 | Go to diff View file |
M | src/common/FRS/FRSFile.class.php | +45 | −45 | Go to diff View file |
M | src/common/FRS/FRSFileFactory.class.php | +20 | −20 | Go to diff View file |
M | src/common/FRS/FRSLog.class.php | +6 | −6 | Go to diff View file |
M | src/common/FRS/FRSPackage.class.php | +15 | −15 | Go to diff View file |
M | src/common/FRS/FRSPackageFactory.class.php | +15 | −15 | Go to diff View file |
M | src/common/FRS/FRSRelease.class.php | +31 | −31 | Go to diff View file |
M | src/common/FRS/FRSReleaseFactory.class.php | +21 | −21 | Go to diff View file |
M | src/common/FRS/FileModuleMonitorFactory.class.php | +10 | −10 | Go to diff View file |
M | src/common/FRS/ServiceFile.class.php | +1 | −1 | Go to diff View file |
M | src/common/Password/PasswordRegexpValidator.class.php | +2 | −2 | Go to diff View file |
M | src/common/Password/PasswordStrategy.class.php | +1 | −1 | Go to diff View file |
M | src/common/Password/PasswordValidator.class.php | +3 | −3 | Go to diff View file |
M | src/common/Project/Group.class.php | +19 | −19 | Go to diff View file |
M | src/common/Project/Project_Creation_Exception.class.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Project_InvalidFullName_Exception.class.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Project_InvalidShortName_Exception.class.php | +1 | −1 | Go to diff View file |
M | src/common/Project/UGroup_Invalid_Exception.class.php | +1 | −1 | Go to diff View file |
M | src/common/RSS/RSS.php | +3 | −3 | Go to diff View file |
M | src/common/TreeNode/TreeNode.class.php | +13 | −13 | Go to diff View file |
M | src/common/TreeNode/TreeNodeCallback.class.php | +1 | −1 | Go to diff View file |
M | src/common/User/User.class.php | +71 | −71 | Go to diff View file |
M | src/common/User/UserHelper.class.php | +11 | −11 | Go to diff View file |
M | src/common/User/UserNotActiveException.class.php | +1 | −1 | Go to diff View file |
M | src/common/User/UserNotAuthorizedException.class.php | +1 | −1 | Go to diff View file |
M | src/common/User/UserNotExistException.class.php | +1 | −1 | Go to diff View file |
M | src/common/Widget/Rule_Widget.class.php | +1 | −1 | Go to diff View file |
M | src/common/Widget/Valid_Widget.class.php | +1 | −1 | Go to diff View file |
M | src/common/Widget/Widget.class.php | +11 | −11 | Go to diff View file |
M | src/common/Widget/Widget_MyArtifacts.class.php | +7 | −7 | Go to diff View file |
M | src/common/Widget/Widget_MyBookmarks.class.php | +3 | −3 | Go to diff View file |
M | src/common/Widget/Widget_MyLatestSvnCommits.class.php | +4 | −4 | Go to diff View file |
M | src/common/Widget/Widget_MyMonitoredFp.class.php | +5 | −5 | Go to diff View file |
M | src/common/Widget/Widget_MySystemEvent.class.php | +1 | −1 | Go to diff View file |
M | src/common/Widget/Widget_ProjectDescription.class.php | +1 | −1 | Go to diff View file |
M | src/common/Widget/Widget_ProjectLatestCommits.class.php | +2 | −2 | Go to diff View file |
M | src/common/Widget/Widget_ProjectLatestCvsCommits.class.php | +4 | −4 | Go to diff View file |
M | src/common/Widget/Widget_ProjectLatestFileReleases.class.php | +5 | −5 | Go to diff View file |
M | src/common/Widget/Widget_ProjectLatestNews.class.php | +4 | −4 | Go to diff View file |
M | src/common/Widget/Widget_ProjectLatestSvnCommits.class.php | +5 | −5 | Go to diff View file |
M | src/common/Widget/Widget_ProjectPublicAreas.class.php | +3 | −3 | Go to diff View file |
M | src/common/Widget/Widget_Rss.class.php | +8 | −8 | Go to diff View file |
M | src/common/backend/BackendAliases.class.php | +2 | −2 | Go to diff View file |
M | src/common/backend/BackendCVS.class.php | +7 | −7 | Go to diff View file |
M | src/common/backend/BackendSVN.class.php | +7 | −7 | Go to diff View file |
M | src/common/backend/BackendSystem.class.php | +2 | −2 | Go to diff View file |
M | src/common/collection/Collection.class.php | +9 | −9 | Go to diff View file |
M | src/common/collection/LinkedList.class.php | +3 | −3 | Go to diff View file |
M | src/common/collection/Map.class.php | +11 | −11 | Go to diff View file |
M | src/common/collection/PrioritizedList.class.php | +3 | −3 | Go to diff View file |
M | src/common/dao/ArtifactFieldDao.class.php | +2 | −2 | Go to diff View file |
M | src/common/dao/ArtifactGlobalNotificationDao.class.php | +9 | −9 | Go to diff View file |
M | src/common/dao/ArtifactReportFieldDao.class.php | +6 | −6 | Go to diff View file |
M | src/common/dao/ArtifactRuleDao.class.php | +18 | −18 | Go to diff View file |
M | src/common/dao/DBDatabasesDao.class.php | +2 | −2 | Go to diff View file |
M | src/common/dao/DBTablesDao.class.php | +6 | −6 | Go to diff View file |
M | src/common/dao/FRSFileDao.class.php | +26 | −26 | Go to diff View file |
M | src/common/dao/FRSLogDao.class.php | +1 | −1 | Go to diff View file |
M | src/common/dao/FRSPackageDao.class.php | +15 | −15 | Go to diff View file |
M | src/common/dao/FRSReleaseDao.class.php | +16 | −16 | Go to diff View file |
M | src/common/dao/FileModuleMonitorDao.class.php | +7 | −7 | Go to diff View file |
M | src/common/dao/MailingListDao.class.php | +5 | −5 | Go to diff View file |
M | src/common/dao/PermissionsDao.class.php | +4 | −4 | Go to diff View file |
M | src/common/dao/PluginDao.class.php | +10 | −10 | Go to diff View file |
M | src/common/dao/ProjectDao.class.php | +1 | −1 | Go to diff View file |
M | src/common/dao/ReferenceDao.class.php | +20 | −20 | Go to diff View file |
M | src/common/dao/SvnNotificationDao.class.php | +3 | −3 | Go to diff View file |
M | src/common/dao/SystemEventDao.class.php | +3 | −3 | Go to diff View file |
M | src/common/dao/UGroupDao.class.php | +12 | −12 | Go to diff View file |
M | src/common/dao/UGroupUserDao.class.php | +3 | −3 | Go to diff View file |
M | src/common/dao/UserDao.class.php | +15 | −15 | Go to diff View file |
M | src/common/dao/UserGroupDao.class.php | +5 | −5 | Go to diff View file |
M | src/common/dao/UserPreferencesDao.class.php | +5 | −5 | Go to diff View file |
M | src/common/dao/WikiDao.class.php | +8 | −8 | Go to diff View file |
M | src/common/dao/include/DataAccessObject.class.php | +1 | −1 | Go to diff View file |
M | src/common/html/HTML_Element_Columns.class.php | +2 | −2 | Go to diff View file |
M | src/common/include/Codendi_Diff.class.php | +67 | −67 | Go to diff View file |
M | src/common/include/Codendi_HTMLPurifier.class.php | +5 | −5 | Go to diff View file |
M | src/common/include/Codendi_HTTPPurifier.class.php | +1 | −1 | Go to diff View file |
M | src/common/include/Codendi_Request.class.php | +1 | −1 | Go to diff View file |
M | src/common/include/Feedback.class.php | +7 | −7 | Go to diff View file |
M | src/common/include/FeedbackFormatter.class.php | +1 | −1 | Go to diff View file |
M | src/common/include/GroupFactory.class.php | +4 | −4 | Go to diff View file |
M | src/common/include/HTTPRequest.class.php | +1 | −1 | Go to diff View file |
M | src/common/include/MIME.class.php | +2 | −2 | Go to diff View file |
M | src/common/include/PropertyDescriptor.class.php | +4 | −4 | Go to diff View file |
M | src/common/include/Response.class.php | +9 | −9 | Go to diff View file |
M | src/common/include/TemplateSingleton.class.php | +8 | −8 | Go to diff View file |
M | src/common/include/URL.class.php | +9 | −9 | Go to diff View file |
M | src/common/include/URLVerification.class.php | +10 | −10 | Go to diff View file |
M | src/common/language/BaseLanguage.class.php | +19 | −19 | Go to diff View file |
M | src/common/layout/Layout.class.php | +21 | −21 | Go to diff View file |
M | src/common/mail/Codendi_Mail.class.php | +4 | −4 | Go to diff View file |
M | src/common/mvc/Actions.class.php | +3 | −3 | Go to diff View file |
M | src/common/mvc/Controler.class.php | +4 | −4 | Go to diff View file |
M | src/common/mvc/Views.class.php | +6 | −6 | Go to diff View file |
M | src/common/plugin/PluginDescriptor.class.php | +4 | −4 | Go to diff View file |
M | src/common/plugin/PluginFactory.class.php | +19 | −19 | Go to diff View file |
M | src/common/plugin/PluginFileInfo.class.php | +4 | −4 | Go to diff View file |
M | src/common/plugin/PluginInfo.class.php | +7 | −7 | Go to diff View file |
M | src/common/plugin/PluginManager.class.php | +23 | −23 | Go to diff View file |
M | src/common/reference/CrossReference.class.php | +17 | −17 | Go to diff View file |
M | src/common/reference/CrossReferenceFactory.class.php | +7 | −7 | Go to diff View file |
M | src/common/reference/Reference.class.php | +18 | −18 | Go to diff View file |
M | src/common/reference/ReferenceInstance.class.php | +7 | −7 | Go to diff View file |
M | src/common/reference/ReferenceManager.class.php | +29 | −29 | Go to diff View file |
M | src/common/soap/SOAP_RequestLimitatorFactory.class.php | +1 | −1 | Go to diff View file |
M | src/common/svn/SVN_AccessFile_Writer.class.php | +1 | −1 | Go to diff View file |
M | src/common/svn/SVN_Apache_SvnrootConf.class.php | +1 | −1 | Go to diff View file |
M | src/common/svn/SvnNotification.class.php | +4 | −4 | Go to diff View file |
M | src/common/system_event/SystemEvent.class.php | +18 | −18 | Go to diff View file |
M | src/common/system_event/SystemEventManager.class.php | +5 | −5 | Go to diff View file |
M | src/common/system_event/SystemEventMissingParameterException.class.php | +1 | −1 | Go to diff View file |
M | src/common/system_event/include/SystemEvent_COMPUTE_MD5SUM.class.php | +3 | −3 | Go to diff View file |
M | src/common/system_event/include/SystemEvent_CVS_IS_PRIVATE.class.php | +1 | −1 | Go to diff View file |
M | src/common/system_event/include/SystemEvent_MAILING_LIST_CREATE.class.php | +1 | −1 | Go to diff View file |
M | src/common/system_event/include/SystemEvent_MAILING_LIST_DELETE.class.php | +1 | −1 | Go to diff View file |
M | src/common/system_event/include/SystemEvent_MEMBERSHIP_CREATE.class.php | +1 | −1 | Go to diff View file |
M | src/common/system_event/include/SystemEvent_MEMBERSHIP_DELETE.class.php | +1 | −1 | Go to diff View file |
M | src/common/system_event/include/SystemEvent_PROJECT_CREATE.class.php | +1 | −1 | Go to diff View file |
M | src/common/system_event/include/SystemEvent_PROJECT_DELETE.class.php | +1 | −1 | Go to diff View file |
M | src/common/system_event/include/SystemEvent_SERVICE_USAGE_SWITCH.class.php | +1 | −1 | Go to diff View file |
M | src/common/system_event/include/SystemEvent_SYSTEM_CHECK.class.php | +2 | −2 | Go to diff View file |
M | src/common/system_event/include/SystemEvent_USER_DELETE.class.php | +1 | −1 | Go to diff View file |
M | src/common/tracker/Artifact.class.php | +77 | −77 | Go to diff View file |
M | src/common/tracker/ArtifactCanned.class.php | +9 | −9 | Go to diff View file |
M | src/common/tracker/ArtifactFactory.class.php | +4 | −4 | Go to diff View file |
M | src/common/tracker/ArtifactField.class.php | +70 | −70 | Go to diff View file |
M | src/common/tracker/ArtifactFieldFactory.class.php | +16 | −16 | Go to diff View file |
M | src/common/tracker/ArtifactFieldSet.class.php | +17 | −17 | Go to diff View file |
M | src/common/tracker/ArtifactFieldSetFactory.class.php | +12 | −12 | Go to diff View file |
M | src/common/tracker/ArtifactFile.class.php | +15 | −15 | Go to diff View file |
M | src/common/tracker/ArtifactGlobalNotification.class.php | +6 | −6 | Go to diff View file |
M | src/common/tracker/ArtifactGlobalNotificationFactory.class.php | +5 | −5 | Go to diff View file |
M | src/common/tracker/ArtifactImport.class.php | +26 | −26 | Go to diff View file |
M | src/common/tracker/ArtifactReport.class.php | +29 | −29 | Go to diff View file |
M | src/common/tracker/ArtifactReportFactory.class.php | +6 | −6 | Go to diff View file |
M | src/common/tracker/ArtifactReportField.class.php | +10 | −10 | Go to diff View file |
M | src/common/tracker/ArtifactRule.class.php | +1 | −1 | Go to diff View file |
M | src/common/tracker/ArtifactRuleFactory.class.php | +16 | −16 | Go to diff View file |
M | src/common/tracker/ArtifactRuleValue.class.php | +4 | −4 | Go to diff View file |
M | src/common/tracker/ArtifactRuleValueView.class.php | +3 | −3 | Go to diff View file |
M | src/common/tracker/ArtifactRulesManager.class.php | +21 | −21 | Go to diff View file |
M | src/common/tracker/ArtifactType.class.php | +76 | −76 | Go to diff View file |
M | src/common/tracker/ArtifactTypeFactory.class.php | +12 | −12 | Go to diff View file |
M | src/common/tracker/HTML/ArtifactCannedHtml.class.php | +4 | −4 | Go to diff View file |
M | src/common/tracker/HTML/ArtifactFieldHtml.class.php | +13 | −13 | Go to diff View file |
M | src/common/tracker/HTML/ArtifactImportHtml.class.php | +7 | −7 | Go to diff View file |
M | src/common/tracker/HTML/ArtifactReportHtml.class.php | +13 | −13 | Go to diff View file |
M | src/common/tracker/HTML/ArtifactRuleValueJavascript.class.php | +2 | −2 | Go to diff View file |
M | src/common/tracker/HTML/ArtifactRulesManagerHtml.class.php | +12 | −12 | Go to diff View file |
M | src/common/valid/Rule.class.php | +22 | −22 | Go to diff View file |
M | src/common/valid/Valid.class.php | +12 | −12 | Go to diff View file |
M | src/common/valid/ValidFactory.class.php | +17 | −17 | Go to diff View file |
M | src/common/wiki/WikiService.class.php | +3 | −3 | Go to diff View file |
M | src/common/wiki/WikiServiceAdmin.class.php | +2 | −2 | Go to diff View file |
M | src/common/wiki/actions/WikiServiceAdminActions.class.php | +8 | −8 | Go to diff View file |
M | src/common/wiki/lib/Wiki.class.php | +13 | −13 | Go to diff View file |
M | src/common/wiki/lib/WikiAttachment.class.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/lib/WikiAttachmentDao.class.php | +9 | −9 | Go to diff View file |
M | src/common/wiki/lib/WikiAttachmentRevision.class.php | +23 | −23 | Go to diff View file |
M | src/common/wiki/lib/WikiAttachmentRevisionDao.class.php | +4 | −4 | Go to diff View file |
M | src/common/wiki/lib/WikiCloner.class.php | +36 | −36 | Go to diff View file |
M | src/common/wiki/lib/WikiEntry.class.php | +21 | −21 | Go to diff View file |
M | src/common/wiki/lib/WikiPage.class.php | +3 | −3 | Go to diff View file |
M | src/common/wiki/lib/WikiPageWrapper.class.php | +9 | −9 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/ASCIIMathPHP/ASCIIMathPHP.class.php | +54 | −54 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/ArchiveCleaner.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/BlockParser.php | +78 | −78 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/CachedMarkup.php | +48 | −48 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/DbaDatabase.php | +18 | −18 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/DbaListSet.php | +20 | −20 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/DbaPartition.php | +14 | −14 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/EditToolbar.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/ErrorManager.php | +30 | −30 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/ExternalReferrer.php | +1 | −1 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/FileFinder.php | +21 | −21 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/HtmlElement.php | +70 | −70 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/HtmlParser.php | +19 | −19 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/InlineParser.php | +41 | −41 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/PageList.php | +76 | −76 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/PagePerm.php | +15 | −15 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/PageType.php | +27 | −27 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/RSSWriter091.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/Request.php | +51 | −51 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/RssParser.php | +4 | −4 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/RssWriter.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/RssWriter2.php | +3 | −3 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/SemanticWeb.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/Template.php | +12 | −12 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/TextSearchQuery.php | +64 | −64 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/Theme.php | +64 | −64 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiCallback.php | +10 | −10 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiDB.php | +101 | −101 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiDB/SQL.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiDB/backend.php | +46 | −46 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiDB/backend/PearDB.php | +55 | −55 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiDB/backend/PearDB_mysql.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiDB/backend/dumb/AllRevisionsIter.php | +2 | −2 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiDB/backend/dumb/BackLinkIter.php | +3 | −3 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiDB/backend/dumb/MostPopularIter.php | +3 | −3 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiDB/backend/dumb/MostRecentIter.php | +3 | −3 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiDB/backend/dumb/TextSearchIter.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiDB/backend/dumb/WantedPagesIter.php | +3 | −3 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiGroup.php | +19 | −19 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiPlugin.php | +30 | −30 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiPluginCached.php | +18 | −18 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiUser.php | +47 | −47 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiUser/BogoLogin.php | +2 | −2 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiUser/Codendi.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiUser/Forbidden.php | +1 | −1 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiUserNew.php | +82 | −82 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/XmlElement.php | +42 | −42 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/XmlParser.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/diff.php | +24 | −24 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/diff3.php | +16 | −16 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/difflib.php | +47 | −47 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/editpage.php | +24 | −24 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/fortune.php | +9 | −9 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/gif.php | +30 | −30 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/loadsave.php | +3 | −3 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/main.php | +51 | −51 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/pear/DB.php | +16 | −16 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/pear/DB/Pager.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/pear/DB/common.php | +44 | −44 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/pear/PEAR.php | +26 | −26 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/AddComment.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/AllPages.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/AllUsers.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/AppendText.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/AsciiMath.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/AuthorHistory.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/BackLinks.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/BlogArchives.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/BlogJournal.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/Calendar.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/CalendarList.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/CategoryPage.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/Comment.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/CreateBib.php | +9 | −9 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/CreatePage.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/CreateToc.php | +14 | −14 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/DeadEndPages.php | +1 | −1 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/Diff.php | +30 | −30 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/EditMetaData.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/ExternalSearch.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/FileInfo.php | +12 | −12 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/FrameInclude.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/FullTextSearch.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/FuzzyPages.php | +16 | −16 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/GoTo.php | +4 | −4 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/HelloWorld.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/HtmlConverter.php | +8 | −8 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/IncludePage.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/IncludePages.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/IncludeSiteMap.php | +4 | −4 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/InterWikiSearch.php | +8 | −8 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/JabberPresence.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/LikePages.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/LinkDatabase.php | +9 | −9 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/ListPages.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/ListSubpages.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/MostPopular.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/NoCache.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/OldStyleTable.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/OrphanedPages.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/PageDump.php | +8 | −8 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/PageGroup.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/PageHistory.php | +25 | −25 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/PageInfo.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/PageTrail.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/PhotoAlbum.php | +9 | −9 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/PhpHighlight.php | +9 | −9 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/PluginManager.php | +9 | −9 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/PopularNearby.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/PrevNext.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/RandomPage.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/RdfDefinition.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/RecentChanges.php | +70 | −70 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/RecentChangesCached.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/RecentComments.php | +11 | −11 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/RecentEdits.php | +4 | −4 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/RedirectTo.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/RelatedChanges.php | +9 | −9 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/RichTable.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/RssFeed.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/SearchHighlight.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/SiteMap.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/SyntaxHighlighter.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/SystemInfo.php | +22 | −22 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/Template.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/TitleSearch.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/Transclude.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/TranslateText.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/UnfoldSubpages.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/UpLoad.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/UserPreferences.php | +4 | −4 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WantedPages.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WantedPagesOld.php | +8 | −8 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiAdminChmod.php | +9 | −9 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiAdminChown.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiAdminMarkup.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiAdminRemove.php | +8 | −8 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiAdminRename.php | +10 | −10 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiAdminSearchReplace.php | +8 | −8 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiAdminSelect.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiAdminSetAcl.php | +9 | −9 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiAdminUtils.php | +16 | −16 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiBlog.php | +15 | −15 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiForm.php | +4 | −4 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiFormRich.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiForum.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/_AuthInfo.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/_BackendInfo.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/_GroupInfo.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/_PreferencesInfo.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/_WikiTranslation.php | +11 | −11 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/text2png.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/prepend.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/stdlib.php | +22 | −22 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/wikilens/CustomPrefs.php | +2 | −2 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/wikilens/PageListColumns.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/ziplib.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/themes/Sidebar/themeinfo.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/views/WikiServiceAdminViews.class.php | +18 | −18 | Go to diff View file |
M | src/common/wiki/views/WikiServiceViews.class.php | +16 | −16 | Go to diff View file |
M | src/common/wiki/views/WikiViews.class.php | +4 | −4 | Go to diff View file |
M | src/embedded_vendor/jpgraph/imgdata_balls.inc.php | +2 | −2 | Go to diff View file |
M | src/embedded_vendor/jpgraph/imgdata_bevels.inc.php | +1 | −1 | Go to diff View file |
M | src/embedded_vendor/jpgraph/imgdata_diamonds.inc.php | +1 | −1 | Go to diff View file |
M | src/embedded_vendor/jpgraph/imgdata_pushpins.inc.php | +1 | −1 | Go to diff View file |
M | src/embedded_vendor/jpgraph/imgdata_stars.inc.php | +1 | −1 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph.php | +260 | −260 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_bar.php | +31 | −31 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_canvas.php | +3 | −3 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_canvtools.php | +37 | −37 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_contour.php | +23 | −23 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_date.php | +13 | −13 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_errhandler.inc.php | +8 | −8 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_error.php | +9 | −9 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_gantt.php | +183 | −183 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_gb2312.php | +2 | −2 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_gradient.php | +5 | −5 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_iconplot.php | +21 | −21 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_imgtrans.php | +5 | −5 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_led.php | +5 | −5 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_legend.inc.php | +27 | −27 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_line.php | +24 | −24 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_log.php | +13 | −13 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_meshinterpolate.inc.php | +2 | −2 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_mgraph.php | +15 | −15 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_pie.php | +47 | −47 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_pie3d.php | +20 | −20 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_plotband.php | +42 | −42 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_plotline.php | +18 | −18 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_plotmark.inc.php | +25 | −25 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_polar.php | +39 | −39 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_radar.php | +46 | −46 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_regstat.php | +6 | −6 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_rgb.inc.php | +6 | −6 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_scatter.php | +14 | −14 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_stock.php | +10 | −10 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_table.php | +87 | −87 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_text.inc.php | +30 | −30 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_theme.inc.php | +8 | −8 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_ttf.inc.php | +8 | −8 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_utils.inc.php | +15 | −15 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_windrose.php | +83 | −83 | Go to diff View file |
M | src/embedded_vendor/jpgraph/themes/AquaTheme.class.php | +5 | −5 | Go to diff View file |
M | src/embedded_vendor/jpgraph/themes/GreenTheme.class.php | +5 | −5 | Go to diff View file |
M | src/embedded_vendor/jpgraph/themes/OceanTheme.class.php | +5 | −5 | Go to diff View file |
M | src/embedded_vendor/jpgraph/themes/OrangeTheme.class.php | +5 | −5 | Go to diff View file |
M | src/embedded_vendor/jpgraph/themes/PastelTheme.class.php | +5 | −5 | Go to diff View file |
M | src/embedded_vendor/jpgraph/themes/RoseTheme.class.php | +5 | −5 | Go to diff View file |
M | src/embedded_vendor/jpgraph/themes/SoftyTheme.class.php | +5 | −5 | Go to diff View file |
M | src/embedded_vendor/jpgraph/themes/UniversalTheme.class.php | +5 | −5 | Go to diff View file |
M | src/embedded_vendor/jpgraph/themes/VividTheme.class.php | +5 | −5 | Go to diff View file |
M | src/www/include/nusoap.php | +129 | −129 | Go to diff View file |
M | src/www/themes/FlamingParrot/BodyPresenter.class.php | +1 | −1 | Go to diff View file |
M | src/www/themes/FlamingParrot/Bootstrap_FeedbackFormatter.class.php | +1 | −1 | Go to diff View file |
M | src/www/themes/FlamingParrot/HeaderPresenter.class.php | +1 | −1 | Go to diff View file |
M | tests/phpcs/tuleap-ruleset-minimal.xml | +0 | −1 | Go to diff View file |
M | tests/phpunit/common/FRS/FRSFileFactoryTest.php | +51 | −51 | Go to diff View file |
M | tests/phpunit/common/FRS/FRSFileTest.php | +6 | −6 | Go to diff View file |
M | tests/phpunit/common/FRS/FRSPackageTest.php | +3 | −3 | Go to diff View file |
M | tests/phpunit/common/FRS/FRSReleaseTest.php | +8 | −8 | Go to diff View file |
M | tests/phpunit/common/Include/SimpleSanitizerTest.php | +1 | −1 | Go to diff View file |
M | tests/phpunit/common/Include/URLTest.php | +13 | −13 | Go to diff View file |
M | tests/simpletest/LanguageFilesTest.php | +1 | −1 | Go to diff View file |
M | tests/simpletest/common/backend/BackendCVSTest.php | +10 | −10 | Go to diff View file |
M | tests/simpletest/common/backend/BackendMailingListTest.php | +3 | −3 | Go to diff View file |
M | tests/simpletest/common/backend/BackendSVNTest.php | +7 | −7 | Go to diff View file |
M | tests/simpletest/common/backend/BackendSystemTest.php | +7 | −7 | Go to diff View file |
M | tests/simpletest/common/backend/BackendTest.php | +10 | −10 | Go to diff View file |