From 9c85e0893f485ca9e5c14a6f6941cec11049b170 Mon Sep 17 00:00:00 2001 From: Tamyris Torres Date: Fri, 18 Aug 2023 11:23:14 -0300 Subject: [PATCH] LPS-193777 Documentation --- .../src/main/resources/documentation/all_checks.markdown | 1 + .../src/main/resources/documentation/upgrade_checks.markdown | 1 + .../documentation/upgrade_source_processor_checks.markdown | 1 + 3 files changed, 3 insertions(+) diff --git a/modules/util/source-formatter/src/main/resources/documentation/all_checks.markdown b/modules/util/source-formatter/src/main/resources/documentation/all_checks.markdown index e8d06a980eb435..7c81e00ac229a4 100644 --- a/modules/util/source-formatter/src/main/resources/documentation/all_checks.markdown +++ b/modules/util/source-formatter/src/main/resources/documentation/all_checks.markdown @@ -489,6 +489,7 @@ UpgradeJavaPortletSharedSearchSettingsCheck | [Upgrade](upgrade_checks.markdown# UpgradeJavaSearchVocabulariesMethodCheck | [Upgrade](upgrade_checks.markdown#upgrade-checks) | .bnd, .ftl, .gradle, .java, .jsp, .jspf or .vm | Fill in the new parameters of the method `searchVocabularies` of 'AssetVocabularyService' and 'AssetVocabularyLocalService' | UpgradeJavaServiceReferenceAnnotationCheck | [Upgrade](upgrade_checks.markdown#upgrade-checks) | .bnd, .ftl, .gradle, .java, .jsp, .jspf or .vm | Run code migration to replace '@ServiceReference' by '@Reference' | UpgradeJavaUpdateCommerceAddressCheck | [Upgrade](upgrade_checks.markdown#upgrade-checks) | .bnd, .ftl, .gradle, .java, .jsp, .jspf or .vm | Replace parameter in updateCommerceAddress method by other parameters list | +UpgradePortletFTLCheck | [Upgrade](upgrade_checks.markdown#upgrade-checks) | .bnd, .ftl, .gradle, .java, .jsp, .jspf or .vm | Include the CSS classes 'cadmin' and include for impression of 'right cadmin' in 'portlet.ftl' file | [UpgradeProcessCheck](check/upgrade_process_check.markdown#upgradeprocesscheck) | [Performance](performance_checks.markdown#performance-checks) | .java | Performs several checks on `*UpgradeProcess` classes. | UpgradeRejectedExecutionHandlerCheck | [Upgrade](upgrade_checks.markdown#upgrade-checks) | .bnd, .ftl, .gradle, .java, .jsp, .jspf or .vm | Replace Liferay's RejectedExecutionHandler with Java's RejectedExecutionHandler | UpgradeRemovedAPICheck | [Upgrade](upgrade_checks.markdown#upgrade-checks) | .java | Finds cases where calls are made to removed API after an upgrade. | diff --git a/modules/util/source-formatter/src/main/resources/documentation/upgrade_checks.markdown b/modules/util/source-formatter/src/main/resources/documentation/upgrade_checks.markdown index 31a5a883a4d4d7..ea905a0fa07993 100644 --- a/modules/util/source-formatter/src/main/resources/documentation/upgrade_checks.markdown +++ b/modules/util/source-formatter/src/main/resources/documentation/upgrade_checks.markdown @@ -46,6 +46,7 @@ UpgradeJavaPortletSharedSearchSettingsCheck | .bnd, .ftl, .gradle, .java, .jsp, UpgradeJavaSearchVocabulariesMethodCheck | .bnd, .ftl, .gradle, .java, .jsp, .jspf or .vm | Fill in the new parameters of the method `searchVocabularies` of 'AssetVocabularyService' and 'AssetVocabularyLocalService' | UpgradeJavaServiceReferenceAnnotationCheck | .bnd, .ftl, .gradle, .java, .jsp, .jspf or .vm | Run code migration to replace '@ServiceReference' by '@Reference' | UpgradeJavaUpdateCommerceAddressCheck | .bnd, .ftl, .gradle, .java, .jsp, .jspf or .vm | Replace parameter in updateCommerceAddress method by other parameters list | +UpgradePortletFTLCheck | .bnd, .ftl, .gradle, .java, .jsp, .jspf or .vm | Include the CSS classes 'cadmin' and include for impression of 'right cadmin' in 'portlet.ftl' file | UpgradeRejectedExecutionHandlerCheck | .bnd, .ftl, .gradle, .java, .jsp, .jspf or .vm | Replace Liferay's RejectedExecutionHandler with Java's RejectedExecutionHandler | UpgradeRemovedAPICheck | .java | Finds cases where calls are made to removed API after an upgrade. | UpgradeSetResultsSetTotalMethodCheck | .bnd, .ftl, .gradle, .java, .jsp, .jspf or .vm | Run code migration of method searchContainer.setResults to the searchContainer.setResultsAndTotal and delete searchContainer.setTotal | diff --git a/modules/util/source-formatter/src/main/resources/documentation/upgrade_source_processor_checks.markdown b/modules/util/source-formatter/src/main/resources/documentation/upgrade_source_processor_checks.markdown index 6cb25c8975ddf7..751970c94e856f 100644 --- a/modules/util/source-formatter/src/main/resources/documentation/upgrade_source_processor_checks.markdown +++ b/modules/util/source-formatter/src/main/resources/documentation/upgrade_source_processor_checks.markdown @@ -35,6 +35,7 @@ UpgradeJavaPortletSharedSearchSettingsCheck | [Upgrade](upgrade_checks.markdown# UpgradeJavaSearchVocabulariesMethodCheck | [Upgrade](upgrade_checks.markdown#upgrade-checks) | Fill in the new parameters of the method `searchVocabularies` of 'AssetVocabularyService' and 'AssetVocabularyLocalService' | UpgradeJavaServiceReferenceAnnotationCheck | [Upgrade](upgrade_checks.markdown#upgrade-checks) | Run code migration to replace '@ServiceReference' by '@Reference' | UpgradeJavaUpdateCommerceAddressCheck | [Upgrade](upgrade_checks.markdown#upgrade-checks) | Replace parameter in updateCommerceAddress method by other parameters list | +UpgradePortletFTLCheck | [Upgrade](upgrade_checks.markdown#upgrade-checks) | Include the CSS classes 'cadmin' and include for impression of 'right cadmin' in 'portlet.ftl' file | UpgradeRejectedExecutionHandlerCheck | [Upgrade](upgrade_checks.markdown#upgrade-checks) | Replace Liferay's RejectedExecutionHandler with Java's RejectedExecutionHandler | UpgradeSetResultsSetTotalMethodCheck | [Upgrade](upgrade_checks.markdown#upgrade-checks) | Run code migration of method searchContainer.setResults to the searchContainer.setResultsAndTotal and delete searchContainer.setTotal | UpgradeVelocityCommentMigrationCheck | [Upgrade](upgrade_checks.markdown#upgrade-checks) | Run code migration of comments from a Velocity file to a Freemarker file with the syntax replacements |