@sitevision/api 1.0.20 → 1.1.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/hidden/javax/jcr/Binary/index.d.ts +86 -0
- package/hidden/javax/jcr/Credentials/index.d.ts +11 -0
- package/hidden/javax/jcr/ImportUUIDBehavior/index.d.ts +11 -0
- package/hidden/javax/jcr/Item/index.d.ts +353 -0
- package/hidden/javax/jcr/ItemVisitor/index.d.ts +41 -0
- package/hidden/javax/jcr/NamespaceRegistry/index.d.ts +100 -0
- package/hidden/javax/jcr/Node/index.d.ts +2808 -0
- package/hidden/javax/jcr/NodeIterator/index.d.ts +18 -0
- package/hidden/javax/jcr/Property/index.d.ts +801 -0
- package/hidden/javax/jcr/PropertyIterator/index.d.ts +17 -0
- package/hidden/javax/jcr/RangeIterator/index.d.ts +75 -0
- package/hidden/javax/jcr/Repository/index.d.ts +318 -0
- package/hidden/javax/jcr/RepositoryFactory/index.d.ts +90 -0
- package/hidden/javax/jcr/Value/index.d.ts +190 -0
- package/hidden/javax/jcr/ValueFactory/index.d.ts +179 -0
- package/hidden/javax/jcr/Workspace/index.d.ts +1061 -0
- package/hidden/javax/jcr/lock/Lock/index.d.ts +142 -0
- package/hidden/javax/jcr/lock/LockManager/index.d.ts +217 -0
- package/hidden/javax/jcr/nodetype/ItemDefinition/index.d.ts +219 -0
- package/hidden/javax/jcr/nodetype/NodeDefinition/index.d.ts +158 -0
- package/hidden/javax/jcr/nodetype/NodeDefinitionTemplate/index.d.ts +74 -0
- package/hidden/javax/jcr/nodetype/NodeType/index.d.ts +349 -0
- package/hidden/javax/jcr/nodetype/NodeTypeDefinition/index.d.ts +248 -0
- package/hidden/javax/jcr/nodetype/NodeTypeIterator/index.d.ts +16 -0
- package/hidden/javax/jcr/nodetype/NodeTypeManager/index.d.ts +218 -0
- package/hidden/javax/jcr/nodetype/NodeTypeTemplate/index.d.ts +98 -0
- package/hidden/javax/jcr/nodetype/PropertyDefinition/index.d.ts +536 -0
- package/hidden/javax/jcr/nodetype/PropertyDefinitionTemplate/index.d.ts +97 -0
- package/hidden/javax/jcr/observation/Event/index.d.ts +133 -0
- package/hidden/javax/jcr/observation/EventIterator/index.d.ts +20 -0
- package/hidden/javax/jcr/observation/EventJournal/index.d.ts +22 -0
- package/hidden/javax/jcr/observation/EventListener/index.d.ts +23 -0
- package/hidden/javax/jcr/observation/EventListenerIterator/index.d.ts +20 -0
- package/hidden/javax/jcr/observation/ObservationManager/index.d.ts +227 -0
- package/hidden/javax/jcr/query/Query/index.d.ts +201 -0
- package/hidden/javax/jcr/query/QueryManager/index.d.ts +73 -0
- package/hidden/javax/jcr/query/QueryResult/index.d.ts +51 -0
- package/hidden/javax/jcr/query/Row/index.d.ts +159 -0
- package/hidden/javax/jcr/query/RowIterator/index.d.ts +20 -0
- package/hidden/javax/jcr/query/qom/And/index.d.ts +26 -0
- package/hidden/javax/jcr/query/qom/BindVariableValue/index.d.ts +15 -0
- package/hidden/javax/jcr/query/qom/ChildNode/index.d.ts +27 -0
- package/hidden/javax/jcr/query/qom/ChildNodeJoinCondition/index.d.ts +27 -0
- package/hidden/javax/jcr/query/qom/Column/index.d.ts +39 -0
- package/hidden/javax/jcr/query/qom/Comparison/index.d.ts +82 -0
- package/hidden/javax/jcr/query/qom/Constraint/index.d.ts +13 -0
- package/hidden/javax/jcr/query/qom/DescendantNode/index.d.ts +31 -0
- package/hidden/javax/jcr/query/qom/DescendantNodeJoinCondition/index.d.ts +29 -0
- package/hidden/javax/jcr/query/qom/DynamicOperand/index.d.ts +9 -0
- package/hidden/javax/jcr/query/qom/EquiJoinCondition/index.d.ts +41 -0
- package/hidden/javax/jcr/query/qom/FullTextSearch/index.d.ts +89 -0
- package/hidden/javax/jcr/query/qom/FullTextSearchScore/index.d.ts +24 -0
- package/hidden/javax/jcr/query/qom/Join/index.d.ts +36 -0
- package/hidden/javax/jcr/query/qom/JoinCondition/index.d.ts +9 -0
- package/hidden/javax/jcr/query/qom/Length/index.d.ts +24 -0
- package/hidden/javax/jcr/query/qom/Literal/index.d.ts +18 -0
- package/hidden/javax/jcr/query/qom/LowerCase/index.d.ts +26 -0
- package/hidden/javax/jcr/query/qom/NodeLocalName/index.d.ts +16 -0
- package/hidden/javax/jcr/query/qom/NodeName/index.d.ts +16 -0
- package/hidden/javax/jcr/query/qom/Not/index.d.ts +20 -0
- package/hidden/javax/jcr/query/qom/Operand/index.d.ts +9 -0
- package/hidden/javax/jcr/query/qom/Or/index.d.ts +30 -0
- package/hidden/javax/jcr/query/qom/Ordering/index.d.ts +53 -0
- package/hidden/javax/jcr/query/qom/PropertyExistence/index.d.ts +24 -0
- package/hidden/javax/jcr/query/qom/PropertyValue/index.d.ts +25 -0
- package/hidden/javax/jcr/query/qom/QueryObjectModel/index.d.ts +64 -0
- package/hidden/javax/jcr/query/qom/QueryObjectModelConstants/index.d.ts +9 -0
- package/hidden/javax/jcr/query/qom/QueryObjectModelFactory/index.d.ts +638 -0
- package/hidden/javax/jcr/query/qom/SameNode/index.d.ts +27 -0
- package/hidden/javax/jcr/query/qom/SameNodeJoinCondition/index.d.ts +36 -0
- package/hidden/javax/jcr/query/qom/Selector/index.d.ts +35 -0
- package/hidden/javax/jcr/query/qom/Source/index.d.ts +9 -0
- package/hidden/javax/jcr/query/qom/StaticOperand/index.d.ts +10 -0
- package/hidden/javax/jcr/query/qom/UpperCase/index.d.ts +26 -0
- package/hidden/javax/jcr/retention/Hold/index.d.ts +34 -0
- package/hidden/javax/jcr/retention/RetentionManager/index.d.ts +189 -0
- package/hidden/javax/jcr/retention/RetentionPolicy/index.d.ts +21 -0
- package/hidden/javax/jcr/security/AccessControlEntry/index.d.ts +24 -0
- package/hidden/javax/jcr/security/AccessControlList/index.d.ts +91 -0
- package/hidden/javax/jcr/security/AccessControlManager/index.d.ts +297 -0
- package/hidden/javax/jcr/security/AccessControlPolicy/index.d.ts +11 -0
- package/hidden/javax/jcr/security/AccessControlPolicyIterator/index.d.ts +20 -0
- package/hidden/javax/jcr/security/NamedAccessControlPolicy/index.d.ts +22 -0
- package/hidden/javax/jcr/security/Privilege/index.d.ts +117 -0
- package/hidden/javax/jcr/version/Version/index.d.ts +121 -0
- package/hidden/javax/jcr/version/VersionHistory/index.d.ts +307 -0
- package/hidden/javax/jcr/version/VersionIterator/index.d.ts +20 -0
- package/hidden/javax/jcr/version/VersionManager/index.d.ts +1082 -0
- package/hidden/senselogic/sitevision/api/base/Builder/index.d.ts +102 -0
- package/hidden/senselogic/sitevision/api/base/Filter/index.d.ts +25 -0
- package/hidden/senselogic/sitevision/api/base/FilterSplit/index.d.ts +50 -0
- package/hidden/senselogic/sitevision/api/base/Loadable/index.d.ts +15 -0
- package/hidden/senselogic/sitevision/api/base/Resolver/index.d.ts +31 -0
- package/hidden/senselogic/sitevision/api/base/Wrapper/index.d.ts +24 -0
- package/hidden/senselogic/sitevision/api/collaboration/CollaborationGroupWrapper/index.d.ts +417 -0
- package/hidden/senselogic/sitevision/api/format/NumericFormatter/index.d.ts +80 -0
- package/hidden/senselogic/sitevision/api/format/NumericFormatterBuilder/index.d.ts +100 -0
- package/hidden/senselogic/sitevision/api/i18n/Currency/index.d.ts +120 -0
- package/hidden/senselogic/sitevision/api/link/CustomLinkProcessor/index.d.ts +45 -0
- package/hidden/senselogic/sitevision/api/link/CustomLinkRenderData/index.d.ts +65 -0
- package/hidden/senselogic/sitevision/api/mail/Mail/index.d.ts +32 -0
- package/hidden/senselogic/sitevision/api/message/MessageTextLinker/index.d.ts +15 -0
- package/hidden/senselogic/sitevision/api/metadata/value/LinkValue/index.d.ts +23 -0
- package/hidden/senselogic/sitevision/api/metadata/value/RelatedValue/index.d.ts +23 -0
- package/hidden/senselogic/sitevision/api/property/VersionedPropertyUtil/index.d.ts +642 -0
- package/hidden/senselogic/sitevision/api/render/BuddyIconRenderer/BuddyIconInfo/index.d.ts +51 -0
- package/hidden/senselogic/sitevision/api/render/ImageScaler/index.d.ts +58 -0
- package/hidden/senselogic/sitevision/api/render/TextModuleRenderer/index.d.ts +301 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/ArticleUtilConstants/index.d.ts +85 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/ExceptionSuppressingProxyConstants/index.d.ts +31 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/IndexingUtilConstants/index.d.ts +31 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/LinkPageUtilConstants/index.d.ts +67 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/MathInstanceConstants/index.d.ts +25 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/MimeTypeUtilConstants/index.d.ts +19 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/NodeTypeUtilConstants/index.d.ts +1243 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/OutputUtilConstants/index.d.ts +31 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/PageUtilConstants/index.d.ts +91 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/PortletContextUtilConstants/index.d.ts +27 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/PortletUtilConstants/index.d.ts +19 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/QueryStringUtilConstants/index.d.ts +19 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/SearchHitConstants/index.d.ts +25 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/SearchResultConstants/index.d.ts +37 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/VersionUtilConstants/index.d.ts +25 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/index.d.ts +8 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityContext/index.d.ts +50 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityEvaluator/index.d.ts +89 -0
- package/hidden/senselogic/sitevision/api/script/RequesterChainable/index.d.ts +119 -0
- package/hidden/senselogic/sitevision/api/script/app/RestAppInvoker/index.d.ts +272 -0
- package/hidden/senselogic/sitevision/api/script/factory/TypedArgument/index.d.ts +43 -0
- package/hidden/senselogic/sitevision/api/script/proxy/ExceptionSuppressingCollection/index.d.ts +94 -0
- package/hidden/senselogic/sitevision/api/script/proxy/ExceptionSuppressingIterator/index.d.ts +117 -0
- package/hidden/senselogic/sitevision/api/script/proxy/ExceptionSuppressingProxy/index.d.ts +90 -0
- package/hidden/senselogic/sitevision/api/search/SearchFieldUtil/index.d.ts +89 -0
- package/hidden/senselogic/sitevision/api/search/SearchHighlighter/index.d.ts +45 -0
- package/hidden/senselogic/sitevision/api/search/SearchHit/index.d.ts +1176 -0
- package/hidden/senselogic/sitevision/api/search/SearchResult/index.d.ts +414 -0
- package/hidden/senselogic/sitevision/api/search/facet/SearchFacetField/index.d.ts +27 -0
- package/hidden/senselogic/sitevision/api/search/facet/SearchFacetValue/index.d.ts +61 -0
- package/hidden/senselogic/sitevision/api/search/searcher/Searcher/index.d.ts +277 -0
- package/hidden/senselogic/sitevision/api/search/searcher/component/Filter/index.d.ts +25 -0
- package/hidden/senselogic/sitevision/api/search/searcher/component/Highlight/index.d.ts +29 -0
- package/hidden/senselogic/sitevision/api/search/searcher/component/Monitor/index.d.ts +25 -0
- package/hidden/senselogic/sitevision/api/search/searcher/component/Parser/index.d.ts +35 -0
- package/hidden/senselogic/sitevision/api/search/searcher/component/Sort/index.d.ts +25 -0
- package/hidden/senselogic/sitevision/api/search/searcher/component/SpellCheck/index.d.ts +29 -0
- package/hidden/senselogic/sitevision/api/search/sort/CustomSort/index.d.ts +82 -0
- package/hidden/senselogic/sitevision/api/search/suggestion/SearchSuggestion/index.d.ts +21 -0
- package/hidden/senselogic/sitevision/api/security/DirectoryAttributes/index.d.ts +70 -0
- package/hidden/senselogic/sitevision/api/security/MessageDigester/index.d.ts +50 -0
- package/hidden/senselogic/sitevision/api/security/RoleAssignment/index.d.ts +72 -0
- package/hidden/senselogic/sitevision/api/security/RoleMatcher/index.d.ts +29 -0
- package/hidden/senselogic/sitevision/api/security/SecretStore/index.d.ts +55 -0
- package/hidden/senselogic/sitevision/api/security/UserUtil/index.d.ts +80 -0
- package/hidden/senselogic/sitevision/api/security/jaas/filter/AuthenticationFilter/index.d.ts +36 -0
- package/hidden/senselogic/sitevision/api/security/jaas/filter/AuthenticationFilterChain/index.d.ts +32 -0
- package/hidden/senselogic/sitevision/api/user/UserIdentityWrapper/index.d.ts +599 -0
- package/hidden/senselogic/sitevision/api/webresource/LinkTarget/index.d.ts +20 -0
- package/hidden/senselogic/sitevision/api/xml/XmlElement/index.d.ts +55 -0
- package/hidden/senselogic/sitevision/api/xml/XmlElementHandler/index.d.ts +17 -0
- package/package.json +2 -4
- package/server/AliasUtil/index.d.ts +25 -0
- package/server/AliasUtil/index.js +10 -0
- package/server/ArchiveUtil/index.d.ts +65 -11
- package/server/ArraysInstance/index.d.ts +1846 -0
- package/server/ArticleUtil/index.d.ts +381 -69
- package/server/AuthenticationUtil/index.d.ts +106 -0
- package/server/BookmarkUtil/index.d.ts +36 -28
- package/server/BuddyIconRenderer/index.d.ts +240 -0
- package/server/ClientUtil/index.d.ts +18 -4
- package/server/CollaborationFactory/index.d.ts +42 -25
- package/server/CollaborationGroupFolderUtil/index.d.ts +40 -29
- package/server/CollaborationGroupTemplateUtil/index.d.ts +71 -39
- package/server/CollaborationGroupUtil/index.d.ts +128 -55
- package/server/CollectionsInstance/index.d.ts +738 -0
- package/server/ColorUtil/index.d.ts +22 -17
- package/server/CompoundAndFilterBuilder/index.d.ts +60 -0
- package/server/CompoundComparatorBuilder/index.d.ts +63 -0
- package/server/CompoundOrFilterBuilder/index.d.ts +59 -0
- package/server/ContentNodeUtil/index.d.ts +76 -0
- package/server/CurrencyFactory/index.d.ts +135 -0
- package/server/DateUtil/index.d.ts +154 -77
- package/server/DecorationUtil/index.d.ts +23 -0
- package/server/DeviceUtil/index.d.ts +36 -0
- package/server/DirectoryUtil/index.d.ts +107 -47
- package/server/DocTypeUtil/index.d.ts +149 -0
- package/server/EndecUtil/index.d.ts +537 -91
- package/server/ExtendedDismaxParserBuilder/index.d.ts +311 -0
- package/server/FileIconRenderer/index.d.ts +346 -0
- package/server/FileUtil/index.d.ts +462 -0
- package/server/FilterBuilder/index.d.ts +120 -0
- package/server/FolderUtil/index.d.ts +161 -0
- package/server/FontUtil/index.d.ts +49 -0
- package/server/FormatterBuilderFactory/index.d.ts +129 -0
- package/server/HighlightBuilder/index.d.ts +194 -0
- package/server/IconUtil/index.d.ts +37 -0
- package/server/ImageLinkRenderer/index.d.ts +134 -0
- package/server/ImageRenderer/index.d.ts +613 -231
- package/server/ImageUtil/index.d.ts +430 -0
- package/server/IndexUtil/index.d.ts +71 -0
- package/server/IndexingUtil/index.d.ts +92 -0
- package/server/InstanceCreatorUtil/index.d.ts +661 -0
- package/server/InstanceTypeUtil/index.d.ts +202 -0
- package/server/JwtUtil/index.d.ts +217 -0
- package/server/LandingPageUtil/index.d.ts +67 -50
- package/server/LinkPageUtil/index.d.ts +468 -0
- package/server/LinkRenderer/index.d.ts +1157 -0
- package/server/LinkTargetBuilder/index.d.ts +146 -0
- package/server/LinkValueBuilder/index.d.ts +129 -52
- package/server/ListWrapper/index.d.ts +172 -0
- package/server/LocaleUtil/index.d.ts +695 -61
- package/server/LogUtil/index.d.ts +118 -77
- package/server/MailBuilder/index.d.ts +238 -0
- package/server/MailUtil/index.d.ts +98 -0
- package/server/MathInstance/index.d.ts +681 -0
- package/server/MessageDigesterFactory/index.d.ts +49 -0
- package/server/MetadataDefinitionUtil/index.d.ts +118 -0
- package/server/MetadataUtil/index.d.ts +524 -79
- package/server/MimeTypeUtil/index.d.ts +316 -0
- package/server/MonitorBuilder/index.d.ts +51 -0
- package/server/NodeComparatorUtil/index.d.ts +397 -0
- package/server/NodeFactoryUtil/index.d.ts +32 -0
- package/server/NodeFilterUtil/index.d.ts +924 -0
- package/server/NodeIteratorUtil/index.d.ts +322 -72
- package/server/NodeResolverUtil/index.d.ts +767 -0
- package/server/NodeTreeUtil/index.d.ts +339 -63
- package/server/NodeTypeUtil/index.d.ts +391 -197
- package/server/OfflineVersionPropertyUtil/index.d.ts +30 -0
- package/server/OnlineVersionPropertyUtil/index.d.ts +30 -0
- package/server/OutputUtil/index.d.ts +641 -0
- package/server/PageUtil/index.d.ts +330 -0
- package/server/PermissionUtil/index.d.ts +650 -0
- package/server/PortletContextUtil/index.d.ts +118 -37
- package/server/PortletContextUtil/index.js +1 -0
- package/server/PortletUtil/index.d.ts +40 -0
- package/server/PrincipalUtil/index.d.ts +51 -0
- package/server/Properties/index.d.ts +185 -38
- package/server/PropertyUtil/index.d.ts +2330 -406
- package/server/PublishingUtil/index.d.ts +385 -49
- package/server/QueryStringUtil/index.d.ts +737 -0
- package/server/RedirectUtil/index.d.ts +98 -0
- package/server/RelatedValueBuilder/index.d.ts +81 -39
- package/server/Requester/index.d.ts +441 -65
- package/server/ResourceLocatorUtil/index.d.ts +483 -227
- package/server/RestApi/index.d.ts +208 -23
- package/server/RestAppInvokerFactory/index.d.ts +73 -0
- package/server/RoleAssignmentBuilder/index.d.ts +60 -0
- package/server/RoleMatcherBuilder/index.d.ts +59 -0
- package/server/RoleUtil/index.d.ts +57 -0
- package/server/ScriptUtil/index.d.ts +625 -143
- package/server/SearchFactory/index.d.ts +133 -0
- package/server/SearchUtil/index.d.ts +164 -0
- package/server/SearcherBuilder/index.d.ts +260 -0
- package/server/Session/index.d.ts +1758 -0
- package/server/SimpleUserUtil/index.d.ts +39 -30
- package/server/SiteCookieUtil/index.d.ts +78 -53
- package/server/SortBuilder/index.d.ts +111 -0
- package/server/SpellCheckBuilder/index.d.ts +68 -0
- package/server/StandardParserBuilder/index.d.ts +112 -0
- package/server/StructureUtil/index.d.ts +167 -0
- package/server/SubscriberUtil/index.d.ts +122 -0
- package/server/SubscriptionUtil/index.d.ts +197 -0
- package/server/SystemUserUtil/index.d.ts +201 -98
- package/server/TagUtil/index.d.ts +193 -0
- package/server/TemplateUtil/index.d.ts +217 -0
- package/server/TemporaryFileNodeBuilder/index.d.ts +63 -0
- package/server/TemporaryNodeBuilder/index.d.ts +241 -0
- package/server/TextModuleRendererBuilder/index.d.ts +68 -0
- package/server/TimestampUtil/index.d.ts +98 -82
- package/server/TranslationUtil/index.d.ts +175 -0
- package/server/TrashcanUtil/index.d.ts +193 -24
- package/server/UserDataUtil/index.d.ts +167 -85
- package/server/UserFactory/index.d.ts +45 -30
- package/server/UserFieldRenderer/index.d.ts +258 -0
- package/server/UserIdentityUtil/index.d.ts +61 -29
- package/server/UserUtil/index.d.ts +69 -28
- package/server/Utils/index.d.ts +870 -12
- package/server/VelocityRenderer/index.d.ts +248 -0
- package/server/VersionUtil/index.d.ts +15 -12
- package/server/WebContentUtil/index.d.ts +644 -0
- package/server/WebResourceFactory/index.d.ts +66 -0
- package/server/XSLTUtil/index.d.ts +49 -10
- package/server/XmlParserUtil/index.d.ts +82 -81
- package/builtins/Binary/index.d.ts +0 -3
- package/builtins/Calendar/index.d.ts +0 -3
- package/builtins/Collection/index.d.ts +0 -3
- package/builtins/Date/index.d.ts +0 -3
- package/builtins/InputStream/index.d.ts +0 -3
- package/builtins/Instant/index.d.ts +0 -3
- package/builtins/List/index.d.ts +0 -3
- package/builtins/LocalDateTime/index.d.ts +0 -3
- package/builtins/Locale/index.d.ts +0 -3
- package/builtins/Node/index.d.ts +0 -3
- package/builtins/NodeIterator/index.d.ts +0 -27
- package/builtins/Property/index.d.ts +0 -3
- package/builtins/Serializable/index.d.ts +0 -3
- package/builtins/Set/index.d.ts +0 -3
- package/builtins/Throwable/index.d.ts +0 -3
- package/builtins/byte/index.d.ts +0 -3
|
@@ -0,0 +1,641 @@
|
|
|
1
|
+
import Node from "../../hidden/javax/jcr/Node";
|
|
2
|
+
import LinkRenderer from "../LinkRenderer";
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Gets a text embedded in a html element with a class attribute.
|
|
6
|
+
*
|
|
7
|
+
* The html element used depends on the element type settings of the <code>aFontNode</code>. The html element in the returned result
|
|
8
|
+
* will always be a paragraph (<code><p></code>) with no class attribute if <code>aFontNode</code> is <code>null</code>
|
|
9
|
+
* or not of primary type <code>sv:font</code>.
|
|
10
|
+
*
|
|
11
|
+
* <p><strong>Some examples:</strong></p>
|
|
12
|
+
* <p>
|
|
13
|
+
* Method call: <code>getHtmlText("Hello world! one < two", myFontNode)</code><br>
|
|
14
|
+
* will return any of the following:
|
|
15
|
+
* </p>
|
|
16
|
+
* <ul>
|
|
17
|
+
* <li><code><h1 class="selectorTextOfMyFontNode">Hello world! one < two</h1></code></li>
|
|
18
|
+
* <li><code><h2 class="selectorTextOfMyFontNode">Hello world! one < two</h2></code></li>
|
|
19
|
+
* <li><code><h3 class="selectorTextOfMyFontNode">Hello world! one < two</h3></code></li>
|
|
20
|
+
* <li><code><h4 class="selectorTextOfMyFontNode">Hello world! one < two</h4></code></li>
|
|
21
|
+
* <li><code><h5 class="selectorTextOfMyFontNode">Hello world! one < two</h5></code></li>
|
|
22
|
+
* <li><code><h6 class="selectorTextOfMyFontNode">Hello world! one < two</h6></code></li>
|
|
23
|
+
* <li><code><p class="selectorTextOfMyFontNode">Hello world! one < two</p></code></li>
|
|
24
|
+
* <li><code><span class="selectorTextOfMyFontNode">Hello world! one < two</span></code></li>
|
|
25
|
+
* <li><code><code class="selectorTextOfMyFontNode">Hello world! one < two</code></code></li>
|
|
26
|
+
* <li><code><sub class="selectorTextOfMyFontNode">Hello world! one < two</sub></code></li>
|
|
27
|
+
* <li><code><sup class="selectorTextOfMyFontNode">Hello world! one < two</sup></code></li>
|
|
28
|
+
* </ul>
|
|
29
|
+
*
|
|
30
|
+
* <p>
|
|
31
|
+
* Method call: <code>getHtmlText("Hello world! one < two", null)</code><br>
|
|
32
|
+
* will return this:
|
|
33
|
+
* </p>
|
|
34
|
+
* <ul>
|
|
35
|
+
* <li><code><p>Hello world! one < two</p></code></li>
|
|
36
|
+
* </ul>
|
|
37
|
+
* @param aText the text to be embedded in a html element
|
|
38
|
+
* @param aFontNode a <code>Node</code> of primary type <code>sv:font</code> that determines the type of html element to use and the class attribute value of the element
|
|
39
|
+
* @return <code>aText</code> embedded in a html element, or empty <code>String</code> if <code>aText</code> is <code>null</code>
|
|
40
|
+
* @see #getEscapedHtmlText(String, javax.jcr.Node)
|
|
41
|
+
* @since Sitevision 2.6.1_02
|
|
42
|
+
*/
|
|
43
|
+
export function getHtmlText(aText: string, aFontNode: Node): string;
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Gets a text embedded in a html element with a class attribute and a style attribute.
|
|
47
|
+
*
|
|
48
|
+
* The html element used depends on the element type settings of the <code>aFontNode</code>. The html element in the returned result
|
|
49
|
+
* will always be a paragraph (<code><p></code>) with no class attribute if <code>aFontNode</code> is <code>null</code>
|
|
50
|
+
* or not of primary type <code>sv:font</code>.
|
|
51
|
+
*
|
|
52
|
+
* <code>aStyle</code> will be ignored if it is <code>null</code>.
|
|
53
|
+
*
|
|
54
|
+
* <p><strong>Some examples:</strong></p>
|
|
55
|
+
* <p>
|
|
56
|
+
* Method call: <code>getHtmlText("Hello world! one < two", myFontNode, "padding-left:0.7em")</code><br>
|
|
57
|
+
* will return any of the following:
|
|
58
|
+
* </p>
|
|
59
|
+
* <ul>
|
|
60
|
+
* <li><code><h1 class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one < two</h1></code></li>
|
|
61
|
+
* <li><code><h2 class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one < two</h2></code></li>
|
|
62
|
+
* <li><code><h3 class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one < two</h3></code></li>
|
|
63
|
+
* <li><code><h4 class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one < two</h4></code></li>
|
|
64
|
+
* <li><code><h5 class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one < two</h5></code></li>
|
|
65
|
+
* <li><code><h6 class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one < two</h6></code></li>
|
|
66
|
+
* <li><code><p class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one < two</p></code></li>
|
|
67
|
+
* <li><code><span class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one < two</span></code></li>
|
|
68
|
+
* <li><code><code class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one < two</code></code></li>
|
|
69
|
+
* <li><code><sub class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one < two</sub></code></li>
|
|
70
|
+
* <li><code><sup class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one < two</sup></code></li>
|
|
71
|
+
* </ul>
|
|
72
|
+
*
|
|
73
|
+
* <p>Method call: <code>getHtmlText("Hello world! one < two", null, "padding-left:0.7em")</code><br>
|
|
74
|
+
* will return this:
|
|
75
|
+
* </p>
|
|
76
|
+
* <ul>
|
|
77
|
+
* <li><code><p style="padding-left:0.7em">Hello world! one < two</p></code></li>
|
|
78
|
+
* </ul>
|
|
79
|
+
*
|
|
80
|
+
* <p>Method call: <code>getHtmlText("Hello world! one < two", null, null)</code><br>
|
|
81
|
+
* will return this:
|
|
82
|
+
* </p>
|
|
83
|
+
* <ul>
|
|
84
|
+
* <li><code><p>Hello world! one < two</p></code></li>
|
|
85
|
+
* </ul>
|
|
86
|
+
*
|
|
87
|
+
* <p>Method call: <code>getHtmlText("Hello world! one < two", myFontNode, null)</code><br>
|
|
88
|
+
* will return the same result as if the {@link #getHtmlText(String, javax.jcr.Node) getHtmlText(String, Node)} method had been invoked.
|
|
89
|
+
* </p>
|
|
90
|
+
* @param aText the text to be embedded in a html element
|
|
91
|
+
* @param aFontNode a <code>Node</code> of primary type <code>sv:font</code> that determines the type of html element to use and the class attribute value of the element
|
|
92
|
+
* @param aStyle the style that should be inserted in the style attribute of the element
|
|
93
|
+
* @return <code>aText</code> embedded in a html element, or empty <code>String</code> if <code>aText</code> is <code>null</code>
|
|
94
|
+
* @see #getEscapedHtmlText(String, javax.jcr.Node, String)
|
|
95
|
+
* @since Sitevision 2.6.1_02
|
|
96
|
+
*/
|
|
97
|
+
export function getHtmlText(
|
|
98
|
+
aText: string,
|
|
99
|
+
aFontNode: Node,
|
|
100
|
+
aStyle: string
|
|
101
|
+
): string;
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* Gets a text escaped and embedded in a html element with a class attribute.
|
|
105
|
+
*
|
|
106
|
+
* The html element used depends on the element type settings of the <code>aFontNode</code>. The html element in the returned result
|
|
107
|
+
* will always be a paragraph (<code><p></code>) with no class attribute if <code>aFontNode</code> is <code>null</code>
|
|
108
|
+
* or not of primary type <code>sv:font</code>.
|
|
109
|
+
*
|
|
110
|
+
* <p><strong>Some examples:</strong></p>
|
|
111
|
+
* <p>
|
|
112
|
+
* Method call: <code>getEscapedHtmlText("Hello world! one < two", myFontNode)</code><br>
|
|
113
|
+
* will return any of the following:
|
|
114
|
+
* </p>
|
|
115
|
+
* <ul>
|
|
116
|
+
* <li><code><h1 class="selectorTextOfMyFontNode">Hello world! one &lt; two</h1></code></li>
|
|
117
|
+
* <li><code><h2 class="selectorTextOfMyFontNode">Hello world! one &lt; two</h2></code></li>
|
|
118
|
+
* <li><code><h3 class="selectorTextOfMyFontNode">Hello world! one &lt; two</h3></code></li>
|
|
119
|
+
* <li><code><h4 class="selectorTextOfMyFontNode">Hello world! one &lt; two</h4></code></li>
|
|
120
|
+
* <li><code><h5 class="selectorTextOfMyFontNode">Hello world! one &lt; two</h5></code></li>
|
|
121
|
+
* <li><code><h6 class="selectorTextOfMyFontNode">Hello world! one &lt; two</h6></code></li>
|
|
122
|
+
* <li><code><p class="selectorTextOfMyFontNode">Hello world! one &lt; two</p></code></li>
|
|
123
|
+
* <li><code><span class="selectorTextOfMyFontNode">Hello world! one &lt; two</span></code></li>
|
|
124
|
+
* <li><code><code class="selectorTextOfMyFontNode">Hello world! one &lt; two</code></code></li>
|
|
125
|
+
* <li><code><sub class="selectorTextOfMyFontNode">Hello world! one &lt; two</sub></code></li>
|
|
126
|
+
* <li><code><sup class="selectorTextOfMyFontNode">Hello world! one &lt; two</sup></code></li>
|
|
127
|
+
* </ul>
|
|
128
|
+
*
|
|
129
|
+
* <p>
|
|
130
|
+
* Method call: <code>getEscapedHtmlText("Hello world! one < two", null)</code><br>
|
|
131
|
+
* will return this:
|
|
132
|
+
* </p>
|
|
133
|
+
* <ul>
|
|
134
|
+
* <li><code><p>Hello world! one &lt; two</p></code></li>
|
|
135
|
+
* </ul>
|
|
136
|
+
* @param aPlainText the text to be escaped and embedded in a html element
|
|
137
|
+
* @param aFontNode a <code>Node</code> of primary type <code>sv:font</code> that determines the type of html element to use and the class attribute value of the element
|
|
138
|
+
* @return <code>aPlainText</code> escaped and embedded in a html element, or empty String if <code>aPlainText</code> is null
|
|
139
|
+
* @see #getHtmlText(String, javax.jcr.Node)
|
|
140
|
+
* @since Sitevision 2.6.1_02
|
|
141
|
+
*/
|
|
142
|
+
export function getEscapedHtmlText(aPlainText: string, aFontNode: Node): string;
|
|
143
|
+
|
|
144
|
+
/**
|
|
145
|
+
* Gets a text escaped and embedded in a html element with a class attribute and a style attribute.
|
|
146
|
+
*
|
|
147
|
+
* The html element used depends on the element type settings of the <code>aFontNode</code>. The html element in the returned result
|
|
148
|
+
* will always be a paragraph (<code><p></code>) with no class attribute if <code>aFontNode</code> is <code>null</code>
|
|
149
|
+
* or not of primary type <code>sv:font</code>.
|
|
150
|
+
*
|
|
151
|
+
* <code>aStyle</code> will be ignored if it is <code>null</code>.
|
|
152
|
+
*
|
|
153
|
+
* <p><strong>Some examples:</strong></p>
|
|
154
|
+
* <p>
|
|
155
|
+
* Method call: <code>getEscapedHtmlText("Hello world! one < two", myFontNode, "padding-left:0.7em")</code><br>
|
|
156
|
+
* will return any of the following:
|
|
157
|
+
* </p>
|
|
158
|
+
* <ul>
|
|
159
|
+
* <li><code><h1 class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one &lt; two</h1></code></li>
|
|
160
|
+
* <li><code><h2 class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one &lt; two</h2></code></li>
|
|
161
|
+
* <li><code><h3 class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one &lt; two</h3></code></li>
|
|
162
|
+
* <li><code><h4 class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one &lt; two</h4></code></li>
|
|
163
|
+
* <li><code><h5 class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one &lt; two</h5></code></li>
|
|
164
|
+
* <li><code><h6 class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one &lt; two</h6></code></li>
|
|
165
|
+
* <li><code><p class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one &lt; two</p></code></li>
|
|
166
|
+
* <li><code><span class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one &lt; two</span></code></li>
|
|
167
|
+
* <li><code><code class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one &lt; two</code></code></li>
|
|
168
|
+
* <li><code><sub class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one &lt; two</sub></code></li>
|
|
169
|
+
* <li><code><sup class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one &lt; two</sup></code></li>
|
|
170
|
+
* </ul>
|
|
171
|
+
*
|
|
172
|
+
* <p>Method call: <code>getEscapedHtmlText("Hello world! one < two", null, "padding-left:0.7em")</code><br>
|
|
173
|
+
* will return this:
|
|
174
|
+
* </p>
|
|
175
|
+
* <ul>
|
|
176
|
+
* <li><code><p style="padding-left:0.7em">Hello world! one &lt; two</p></code></li>
|
|
177
|
+
* </ul>
|
|
178
|
+
*
|
|
179
|
+
* <p>Method call: <code>getEscapedHtmlText("Hello world! one < two", null, null)</code><br>
|
|
180
|
+
* will return this:
|
|
181
|
+
* </p>
|
|
182
|
+
* <ul>
|
|
183
|
+
* <li><code><p>Hello world! one &lt; two</p></code></li>
|
|
184
|
+
* </ul>
|
|
185
|
+
*
|
|
186
|
+
* <p>Method call: <code>getEscapedHtmlText("Hello world! one < two", myFontNode, null)</code><br>
|
|
187
|
+
* will return the same result as if the {@link #getEscapedHtmlText(String, javax.jcr.Node) getEscapedHtmlText(String, Node)}
|
|
188
|
+
* method had been invoked.
|
|
189
|
+
* </p>
|
|
190
|
+
* @param aPlainText the text to be escaped and embedded in a html element
|
|
191
|
+
* @param aFontNode a <code>Node</code> of primary type <code>sv:font</code> that determines the type of html element to use and the class attribute value of the element
|
|
192
|
+
* @param aStyle the style that should be inserted in the style attribute of the element
|
|
193
|
+
* @return <code>aPlainText</code> embedded in a html element, or empty <code>String</code> if <code>aPlainText</code> is <code>null</code>
|
|
194
|
+
* @see #getHtmlText(String, javax.jcr.Node, String)
|
|
195
|
+
* @since Sitevision 2.6.1_02
|
|
196
|
+
*/
|
|
197
|
+
export function getEscapedHtmlText(
|
|
198
|
+
aPlainText: string,
|
|
199
|
+
aFontNode: Node,
|
|
200
|
+
aStyle: string
|
|
201
|
+
): string;
|
|
202
|
+
|
|
203
|
+
/**
|
|
204
|
+
* Hyperlinks text and uses a specified css class for created anchors.
|
|
205
|
+
*
|
|
206
|
+
* <p>
|
|
207
|
+
* Inserts an hyperlink/anchor (<code><a href="...">...</a></code>) with a title and optional class and style where the text seems
|
|
208
|
+
* to indicate a hyperlink. Text blocks that starts with <em>http://</em>, <em>https://</em>, <em>www.</em> or contains an <em>@</em> will be
|
|
209
|
+
* considered for hyperlinking.
|
|
210
|
+
* </p>
|
|
211
|
+
* @param aText a text that might contain hyperlinkable parts
|
|
212
|
+
* @param aClass the class of the hyperlinks (the <code>class</code> attribute of the <code>a</code> element). if <code>aClass</code> is <code>null</code> or empty, it will not be used in any hyperlinks.
|
|
213
|
+
* @param aStyle the style of the hyperlinks (the <code>style</code> attribute of the <code>a</code> element) if <code>aStyle</code> is <code>null</code> or empty, it will not be used in any hyperlinks.
|
|
214
|
+
* @return <code>aText</code> hyperlinked
|
|
215
|
+
* @since Sitevision 2.6.1_06
|
|
216
|
+
* @see OutputUtil#getHyperlinkedText(String)
|
|
217
|
+
*/
|
|
218
|
+
export function getHyperlinkedText(
|
|
219
|
+
aText: string,
|
|
220
|
+
aClass: string,
|
|
221
|
+
aStyle: string
|
|
222
|
+
): string;
|
|
223
|
+
|
|
224
|
+
/**
|
|
225
|
+
* Hyperlinks text.
|
|
226
|
+
*
|
|
227
|
+
* <p>
|
|
228
|
+
* Inserts an hyperlink/anchor (<code><a href="...">...</a></code>) where the text seems to indicate a hyperlink.
|
|
229
|
+
* Text blocks that starts with <em>http://</em>, <em>https://</em>, <em>www.</em> or contains an <em>@</em> will be considered for hyperlinking.
|
|
230
|
+
* </p>
|
|
231
|
+
* @param aText a text that might contain hyperlinkable parts
|
|
232
|
+
* @return <code>aText</code> hyperlinked
|
|
233
|
+
* @since Sitevision 3.1
|
|
234
|
+
* @see OutputUtil#getHyperlinkedText(String, String, String)
|
|
235
|
+
*/
|
|
236
|
+
export function getHyperlinkedText(aText: string): string;
|
|
237
|
+
|
|
238
|
+
/**
|
|
239
|
+
* Gets a simplistic plain text output from a text portlet.
|
|
240
|
+
* Handles plain text, line breaks and dot lists.
|
|
241
|
+
* @param aNode a text portlet node
|
|
242
|
+
* @return the output from the text portlet as plain text, or an empty <code>String</code> if aNode is <code>null</code> or not a text portlet
|
|
243
|
+
* @deprecated Use {@link #getNodeOutput(javax.jcr.Node, javax.jcr.Node, int)}
|
|
244
|
+
* @see #getNodeOutput(Node,Node,int)
|
|
245
|
+
*/
|
|
246
|
+
export function getNodeAsText(aNode: Node): string;
|
|
247
|
+
|
|
248
|
+
/**
|
|
249
|
+
* Gets the output as a specific content-type from a page node or a page content node.
|
|
250
|
+
*
|
|
251
|
+
* <p>
|
|
252
|
+
* <em>Tip! Consider using {@link TextModuleRenderer} instead if you want the output of a single Text module.</em>
|
|
253
|
+
* </p>
|
|
254
|
+
*
|
|
255
|
+
* <p>
|
|
256
|
+
* <strong>Note! Due to security reasons (potential never-ending loops) it is prohibited to get the output of anything from
|
|
257
|
+
* the currently executing page (i.e. {@link senselogic.sitevision.api.context.PortletContextUtil#getCurrentPage()})!</strong>
|
|
258
|
+
* </p>
|
|
259
|
+
* @param aPageNode a page node (sv:page, sv:article, sv:sitePage) where current user has READ permission, must not be null or "current page".
|
|
260
|
+
* @param aPagePartNode a page part node that exist as content on aPageNode (or null if you want the complete output from aPageNode).
|
|
261
|
+
* @param aContentType a content-type marker, i.e. <a href="#CONTENT_TYPE_TEXT_PLAIN">CONTENT_TYPE_TEXT_PLAIN</a>, <a href="#CONTENT_TYPE_TEXT_HTML">CONTENT_TYPE_TEXT_HTML</a> or <a href="#CONTENT_TYPE_TEXT_XML">CONTENT_TYPE_TEXT_XML</a>.
|
|
262
|
+
* @return the output result for specified aContentType. If aPageNode is null or "current page", an empty String is returned. If current user doesn't have READ permission on aPageNode, an empty String is returned. If aPagePartNode is null, the output result of aPageNode is returned. If aPagePartNode doesn't exist as content on aPageNode, an empty String is returned.
|
|
263
|
+
* @since Sitevision 2.6
|
|
264
|
+
*/
|
|
265
|
+
export function getNodeOutput(
|
|
266
|
+
aPageNode: Node,
|
|
267
|
+
aPagePartNode: Node,
|
|
268
|
+
aContentType: number
|
|
269
|
+
): string;
|
|
270
|
+
|
|
271
|
+
/**
|
|
272
|
+
* Debug method that returns info about the properties of a node and all its sub nodes.
|
|
273
|
+
*
|
|
274
|
+
* <p>
|
|
275
|
+
* <em>
|
|
276
|
+
* <strong>Note!</strong> This method is intended for debugging purposes during development ONLY!
|
|
277
|
+
* Important: Only the types and properties that are officially specified on the
|
|
278
|
+
* <a href="http://help.sitevision.se/nodetypes">Sitevision developer web</a>
|
|
279
|
+
* can be relied upon and used in production. All other types and properties should
|
|
280
|
+
* be considered volatile. Output produced by this method is not indexed by the Sitevision indexer.
|
|
281
|
+
* </em>
|
|
282
|
+
* </p>
|
|
283
|
+
* @param aNode the start node from where all properties should be retrieved
|
|
284
|
+
* @return the node as a {@code String} in HTML or an empty String if it does not contain any properties and sub nodes.
|
|
285
|
+
* @throws IllegalArgumentException if the given node {@code aNode} is null.
|
|
286
|
+
* @throws javax.jcr.RepositoryException if something else goes wrong.
|
|
287
|
+
* @see #getNodeInfoAsHTML(javax.jcr.Node, int)
|
|
288
|
+
* @since Sitevision 3.0
|
|
289
|
+
*/
|
|
290
|
+
export function getNodeInfoAsHTML(aNode: Node): string;
|
|
291
|
+
|
|
292
|
+
/**
|
|
293
|
+
* Debug method that returns info about the properties of a node and all its sub nodes recursively until a given sub level
|
|
294
|
+
* {@code aDepth} is reached.
|
|
295
|
+
*
|
|
296
|
+
* <p>
|
|
297
|
+
* <em>
|
|
298
|
+
* <strong>Note!</strong> This method is intended for debugging purposes during development ONLY!
|
|
299
|
+
* Important: Only the types and properties that are officially specified on the
|
|
300
|
+
* <a href="http://help.sitevision.se/nodetypes">Sitevision developer web</a>
|
|
301
|
+
* can be relied upon and used in production. All other types and properties should
|
|
302
|
+
* be considered volatile. Output produced by this method is not indexed by the Sitevision indexer.
|
|
303
|
+
* </em>
|
|
304
|
+
* </p>
|
|
305
|
+
* @param aNode the start node from where all properties should be retrieved
|
|
306
|
+
* @param aDepth the number of sub levels from the start node to be retrieved
|
|
307
|
+
* @return the node as a {@code String} in HTML or an empty String if it does not contain any properties and sub nodes.
|
|
308
|
+
* @throws IllegalArgumentException if the given node {@code aNode} is null or the given depth {@code aDepth} is negative.
|
|
309
|
+
* @throws RepositoryException if something else goes wrong.
|
|
310
|
+
* @since Sitevision 3.0
|
|
311
|
+
*/
|
|
312
|
+
export function getNodeInfoAsHTML(aNode: Node, aDepth: number): string;
|
|
313
|
+
|
|
314
|
+
/**
|
|
315
|
+
* Convenience method for rendering a linked web path to a specified node.
|
|
316
|
+
*
|
|
317
|
+
* <p>
|
|
318
|
+
* --------------------------------------------------------- <br>
|
|
319
|
+
* <strong>Example:</strong> You use Velocity and want to do a simple "path to this page" menu
|
|
320
|
+
* with a pretty "double arrow" between the links<br>
|
|
321
|
+
* ---------------------------------------------------------
|
|
322
|
+
* </p>
|
|
323
|
+
*
|
|
324
|
+
* <p><strong>A) The explicit way:</strong></p>
|
|
325
|
+
* <p>Use the <code>getWebPathNodes</code> method of {@link senselogic.sitevision.api.node.NodeTreeUtil} to get all nodes in the
|
|
326
|
+
* path to the site page and render a link to each node using a {@link senselogic.sitevision.api.render.LinkRenderer}.
|
|
327
|
+
* Current page can be found via a {@link senselogic.sitevision.api.context.PortletContextUtil} instance.</p><pre><code>
|
|
328
|
+
* <em>## Get all nodes from here to the site page</em>
|
|
329
|
+
* #set ($currentPage = $sitevisionUtils.portletContextUtil.currentPage)
|
|
330
|
+
* #set ($nodeTreeUtil = $sitevisionUtils.nodeTreeUtil)
|
|
331
|
+
* #set ($pathList = $nodeTreeUtil.getWebPathNodes($currentPage))
|
|
332
|
+
*
|
|
333
|
+
* <em>## Iterate the nodes in the list with a LinkRenderer</em>
|
|
334
|
+
* #if (!$pathList.isEmpty())
|
|
335
|
+
* <em>## Set up the link renderer</em>
|
|
336
|
+
* #set ($linkRenderer = $sitevisionUtils.getLinkRenderer())
|
|
337
|
+
*
|
|
338
|
+
* <em>## Render links to all nodes</em>
|
|
339
|
+
* <p class="normal">
|
|
340
|
+
* #foreach ($node in $pathList)
|
|
341
|
+
* $linkRenderer.update($node)
|
|
342
|
+
* #if ($velocityCount > 0)
|
|
343
|
+
* &raquo;
|
|
344
|
+
* #end
|
|
345
|
+
* $linkRenderer.render()
|
|
346
|
+
* #end
|
|
347
|
+
* </p>
|
|
348
|
+
* #end</code></pre>
|
|
349
|
+
*
|
|
350
|
+
* <p><strong>B) The convenient way:</strong></p>
|
|
351
|
+
* <p>Use the <code>getWebPathNodes</code> method!</p><pre><code>
|
|
352
|
+
* <em>## Init</em>
|
|
353
|
+
* #set ($currentPage = $sitevisionUtils.portletContextUtil.currentPage)
|
|
354
|
+
* #set ($outputUtil = $sitevisionUtils.outputUtil)
|
|
355
|
+
* #set ($linkRenderer = $sitevisionUtils.getLinkRenderer())
|
|
356
|
+
*
|
|
357
|
+
* <em>## Render</em>
|
|
358
|
+
* #set ($result = $outputUtil.renderWebPathNodes($currentPage, $linkRenderer, ' &raquo; '))
|
|
359
|
+
* #if ($result != '')
|
|
360
|
+
* <p class="normal">$result</p>
|
|
361
|
+
* #end</code></pre>
|
|
362
|
+
*
|
|
363
|
+
* <p>
|
|
364
|
+
* <em>For a description of "web path", see {@link senselogic.sitevision.api.node.NodeTreeUtil#getWebPathNodes(javax.jcr.Node)}</em>
|
|
365
|
+
* </p>
|
|
366
|
+
* @param aDescendantNode the node the web path should be rendered for
|
|
367
|
+
* @param aLinkRenderer the link renderer that determines how links are rendered
|
|
368
|
+
* @param aSeparator the separator that should be put between the links. <em>Note! This is not encoded by this method.</em>
|
|
369
|
+
* @return a linked web path, or empty string if aDescendantNode is <code>null</code>, <code>aLinkRenderer</code> is <code>null</code>, <code>aSeparator</code> is <code>null</code> or no web path could be created.
|
|
370
|
+
* @see senselogic.sitevision.api.node.NodeTreeUtil#getWebPathNodes(javax.jcr.Node)
|
|
371
|
+
* @since Sitevision 3.0.2
|
|
372
|
+
*/
|
|
373
|
+
export function renderWebPathNodes(
|
|
374
|
+
aDescendantNode: Node,
|
|
375
|
+
aLinkRenderer: LinkRenderer,
|
|
376
|
+
aSeparator: string
|
|
377
|
+
): string;
|
|
378
|
+
|
|
379
|
+
/**
|
|
380
|
+
* Output utility interface with methods that return complete content snippets.
|
|
381
|
+
*
|
|
382
|
+
* <p>
|
|
383
|
+
* An instance of the Sitevision class implementing this interface can be obtained via {@link senselogic.sitevision.api.Utils#getOutputUtil()}.
|
|
384
|
+
* See {@link senselogic.sitevision.api.Utils} for how to obtain an instance of the <code>Utils</code> interface.
|
|
385
|
+
* </p>Gets a text embedded in a html element with a class attribute.
|
|
386
|
+
*
|
|
387
|
+
* The html element used depends on the element type settings of the <code>aFontNode</code>. The html element in the returned result
|
|
388
|
+
* will always be a paragraph (<code><p></code>) with no class attribute if <code>aFontNode</code> is <code>null</code>
|
|
389
|
+
* or not of primary type <code>sv:font</code>.
|
|
390
|
+
*
|
|
391
|
+
* <p><strong>Some examples:</strong></p>
|
|
392
|
+
* <p>
|
|
393
|
+
* Method call: <code>getHtmlText("Hello world! one < two", myFontNode)</code><br>
|
|
394
|
+
* will return any of the following:
|
|
395
|
+
* </p>
|
|
396
|
+
* <ul>
|
|
397
|
+
* <li><code><h1 class="selectorTextOfMyFontNode">Hello world! one < two</h1></code></li>
|
|
398
|
+
* <li><code><h2 class="selectorTextOfMyFontNode">Hello world! one < two</h2></code></li>
|
|
399
|
+
* <li><code><h3 class="selectorTextOfMyFontNode">Hello world! one < two</h3></code></li>
|
|
400
|
+
* <li><code><h4 class="selectorTextOfMyFontNode">Hello world! one < two</h4></code></li>
|
|
401
|
+
* <li><code><h5 class="selectorTextOfMyFontNode">Hello world! one < two</h5></code></li>
|
|
402
|
+
* <li><code><h6 class="selectorTextOfMyFontNode">Hello world! one < two</h6></code></li>
|
|
403
|
+
* <li><code><p class="selectorTextOfMyFontNode">Hello world! one < two</p></code></li>
|
|
404
|
+
* <li><code><span class="selectorTextOfMyFontNode">Hello world! one < two</span></code></li>
|
|
405
|
+
* <li><code><code class="selectorTextOfMyFontNode">Hello world! one < two</code></code></li>
|
|
406
|
+
* <li><code><sub class="selectorTextOfMyFontNode">Hello world! one < two</sub></code></li>
|
|
407
|
+
* <li><code><sup class="selectorTextOfMyFontNode">Hello world! one < two</sup></code></li>
|
|
408
|
+
* </ul>
|
|
409
|
+
*
|
|
410
|
+
* <p>
|
|
411
|
+
* Method call: <code>getHtmlText("Hello world! one < two", null)</code><br>
|
|
412
|
+
* will return this:
|
|
413
|
+
* </p>
|
|
414
|
+
* <ul>
|
|
415
|
+
* <li><code><p>Hello world! one < two</p></code></li>
|
|
416
|
+
* </ul>Gets a text embedded in a html element with a class attribute and a style attribute.
|
|
417
|
+
*
|
|
418
|
+
* The html element used depends on the element type settings of the <code>aFontNode</code>. The html element in the returned result
|
|
419
|
+
* will always be a paragraph (<code><p></code>) with no class attribute if <code>aFontNode</code> is <code>null</code>
|
|
420
|
+
* or not of primary type <code>sv:font</code>.
|
|
421
|
+
*
|
|
422
|
+
* <code>aStyle</code> will be ignored if it is <code>null</code>.
|
|
423
|
+
*
|
|
424
|
+
* <p><strong>Some examples:</strong></p>
|
|
425
|
+
* <p>
|
|
426
|
+
* Method call: <code>getHtmlText("Hello world! one < two", myFontNode, "padding-left:0.7em")</code><br>
|
|
427
|
+
* will return any of the following:
|
|
428
|
+
* </p>
|
|
429
|
+
* <ul>
|
|
430
|
+
* <li><code><h1 class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one < two</h1></code></li>
|
|
431
|
+
* <li><code><h2 class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one < two</h2></code></li>
|
|
432
|
+
* <li><code><h3 class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one < two</h3></code></li>
|
|
433
|
+
* <li><code><h4 class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one < two</h4></code></li>
|
|
434
|
+
* <li><code><h5 class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one < two</h5></code></li>
|
|
435
|
+
* <li><code><h6 class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one < two</h6></code></li>
|
|
436
|
+
* <li><code><p class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one < two</p></code></li>
|
|
437
|
+
* <li><code><span class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one < two</span></code></li>
|
|
438
|
+
* <li><code><code class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one < two</code></code></li>
|
|
439
|
+
* <li><code><sub class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one < two</sub></code></li>
|
|
440
|
+
* <li><code><sup class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one < two</sup></code></li>
|
|
441
|
+
* </ul>
|
|
442
|
+
*
|
|
443
|
+
* <p>Method call: <code>getHtmlText("Hello world! one < two", null, "padding-left:0.7em")</code><br>
|
|
444
|
+
* will return this:
|
|
445
|
+
* </p>
|
|
446
|
+
* <ul>
|
|
447
|
+
* <li><code><p style="padding-left:0.7em">Hello world! one < two</p></code></li>
|
|
448
|
+
* </ul>
|
|
449
|
+
*
|
|
450
|
+
* <p>Method call: <code>getHtmlText("Hello world! one < two", null, null)</code><br>
|
|
451
|
+
* will return this:
|
|
452
|
+
* </p>
|
|
453
|
+
* <ul>
|
|
454
|
+
* <li><code><p>Hello world! one < two</p></code></li>
|
|
455
|
+
* </ul>
|
|
456
|
+
*
|
|
457
|
+
* <p>Method call: <code>getHtmlText("Hello world! one < two", myFontNode, null)</code><br>
|
|
458
|
+
* will return the same result as if the {@link #getHtmlText(String, javax.jcr.Node) getHtmlText(String, Node)} method had been invoked.
|
|
459
|
+
* </p>Gets a text escaped and embedded in a html element with a class attribute.
|
|
460
|
+
*
|
|
461
|
+
* The html element used depends on the element type settings of the <code>aFontNode</code>. The html element in the returned result
|
|
462
|
+
* will always be a paragraph (<code><p></code>) with no class attribute if <code>aFontNode</code> is <code>null</code>
|
|
463
|
+
* or not of primary type <code>sv:font</code>.
|
|
464
|
+
*
|
|
465
|
+
* <p><strong>Some examples:</strong></p>
|
|
466
|
+
* <p>
|
|
467
|
+
* Method call: <code>getEscapedHtmlText("Hello world! one < two", myFontNode)</code><br>
|
|
468
|
+
* will return any of the following:
|
|
469
|
+
* </p>
|
|
470
|
+
* <ul>
|
|
471
|
+
* <li><code><h1 class="selectorTextOfMyFontNode">Hello world! one &lt; two</h1></code></li>
|
|
472
|
+
* <li><code><h2 class="selectorTextOfMyFontNode">Hello world! one &lt; two</h2></code></li>
|
|
473
|
+
* <li><code><h3 class="selectorTextOfMyFontNode">Hello world! one &lt; two</h3></code></li>
|
|
474
|
+
* <li><code><h4 class="selectorTextOfMyFontNode">Hello world! one &lt; two</h4></code></li>
|
|
475
|
+
* <li><code><h5 class="selectorTextOfMyFontNode">Hello world! one &lt; two</h5></code></li>
|
|
476
|
+
* <li><code><h6 class="selectorTextOfMyFontNode">Hello world! one &lt; two</h6></code></li>
|
|
477
|
+
* <li><code><p class="selectorTextOfMyFontNode">Hello world! one &lt; two</p></code></li>
|
|
478
|
+
* <li><code><span class="selectorTextOfMyFontNode">Hello world! one &lt; two</span></code></li>
|
|
479
|
+
* <li><code><code class="selectorTextOfMyFontNode">Hello world! one &lt; two</code></code></li>
|
|
480
|
+
* <li><code><sub class="selectorTextOfMyFontNode">Hello world! one &lt; two</sub></code></li>
|
|
481
|
+
* <li><code><sup class="selectorTextOfMyFontNode">Hello world! one &lt; two</sup></code></li>
|
|
482
|
+
* </ul>
|
|
483
|
+
*
|
|
484
|
+
* <p>
|
|
485
|
+
* Method call: <code>getEscapedHtmlText("Hello world! one < two", null)</code><br>
|
|
486
|
+
* will return this:
|
|
487
|
+
* </p>
|
|
488
|
+
* <ul>
|
|
489
|
+
* <li><code><p>Hello world! one &lt; two</p></code></li>
|
|
490
|
+
* </ul>Gets a text escaped and embedded in a html element with a class attribute and a style attribute.
|
|
491
|
+
*
|
|
492
|
+
* The html element used depends on the element type settings of the <code>aFontNode</code>. The html element in the returned result
|
|
493
|
+
* will always be a paragraph (<code><p></code>) with no class attribute if <code>aFontNode</code> is <code>null</code>
|
|
494
|
+
* or not of primary type <code>sv:font</code>.
|
|
495
|
+
*
|
|
496
|
+
* <code>aStyle</code> will be ignored if it is <code>null</code>.
|
|
497
|
+
*
|
|
498
|
+
* <p><strong>Some examples:</strong></p>
|
|
499
|
+
* <p>
|
|
500
|
+
* Method call: <code>getEscapedHtmlText("Hello world! one < two", myFontNode, "padding-left:0.7em")</code><br>
|
|
501
|
+
* will return any of the following:
|
|
502
|
+
* </p>
|
|
503
|
+
* <ul>
|
|
504
|
+
* <li><code><h1 class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one &lt; two</h1></code></li>
|
|
505
|
+
* <li><code><h2 class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one &lt; two</h2></code></li>
|
|
506
|
+
* <li><code><h3 class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one &lt; two</h3></code></li>
|
|
507
|
+
* <li><code><h4 class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one &lt; two</h4></code></li>
|
|
508
|
+
* <li><code><h5 class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one &lt; two</h5></code></li>
|
|
509
|
+
* <li><code><h6 class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one &lt; two</h6></code></li>
|
|
510
|
+
* <li><code><p class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one &lt; two</p></code></li>
|
|
511
|
+
* <li><code><span class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one &lt; two</span></code></li>
|
|
512
|
+
* <li><code><code class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one &lt; two</code></code></li>
|
|
513
|
+
* <li><code><sub class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one &lt; two</sub></code></li>
|
|
514
|
+
* <li><code><sup class="selectorTextOfMyFontNode" style="padding-left:0.7em">Hello world! one &lt; two</sup></code></li>
|
|
515
|
+
* </ul>
|
|
516
|
+
*
|
|
517
|
+
* <p>Method call: <code>getEscapedHtmlText("Hello world! one < two", null, "padding-left:0.7em")</code><br>
|
|
518
|
+
* will return this:
|
|
519
|
+
* </p>
|
|
520
|
+
* <ul>
|
|
521
|
+
* <li><code><p style="padding-left:0.7em">Hello world! one &lt; two</p></code></li>
|
|
522
|
+
* </ul>
|
|
523
|
+
*
|
|
524
|
+
* <p>Method call: <code>getEscapedHtmlText("Hello world! one < two", null, null)</code><br>
|
|
525
|
+
* will return this:
|
|
526
|
+
* </p>
|
|
527
|
+
* <ul>
|
|
528
|
+
* <li><code><p>Hello world! one &lt; two</p></code></li>
|
|
529
|
+
* </ul>
|
|
530
|
+
*
|
|
531
|
+
* <p>Method call: <code>getEscapedHtmlText("Hello world! one < two", myFontNode, null)</code><br>
|
|
532
|
+
* will return the same result as if the {@link #getEscapedHtmlText(String, javax.jcr.Node) getEscapedHtmlText(String, Node)}
|
|
533
|
+
* method had been invoked.
|
|
534
|
+
* </p>Hyperlinks text and uses a specified css class for created anchors.
|
|
535
|
+
*
|
|
536
|
+
* <p>
|
|
537
|
+
* Inserts an hyperlink/anchor (<code><a href="...">...</a></code>) with a title and optional class and style where the text seems
|
|
538
|
+
* to indicate a hyperlink. Text blocks that starts with <em>http://</em>, <em>https://</em>, <em>www.</em> or contains an <em>@</em> will be
|
|
539
|
+
* considered for hyperlinking.
|
|
540
|
+
* </p>Hyperlinks text.
|
|
541
|
+
*
|
|
542
|
+
* <p>
|
|
543
|
+
* Inserts an hyperlink/anchor (<code><a href="...">...</a></code>) where the text seems to indicate a hyperlink.
|
|
544
|
+
* Text blocks that starts with <em>http://</em>, <em>https://</em>, <em>www.</em> or contains an <em>@</em> will be considered for hyperlinking.
|
|
545
|
+
* </p>Gets a simplistic plain text output from a text portlet.
|
|
546
|
+
* Handles plain text, line breaks and dot lists.Gets the output as a specific content-type from a page node or a page content node.
|
|
547
|
+
*
|
|
548
|
+
* <p>
|
|
549
|
+
* <em>Tip! Consider using {@link TextModuleRenderer} instead if you want the output of a single Text module.</em>
|
|
550
|
+
* </p>
|
|
551
|
+
*
|
|
552
|
+
* <p>
|
|
553
|
+
* <strong>Note! Due to security reasons (potential never-ending loops) it is prohibited to get the output of anything from
|
|
554
|
+
* the currently executing page (i.e. {@link senselogic.sitevision.api.context.PortletContextUtil#getCurrentPage()})!</strong>
|
|
555
|
+
* </p>Debug method that returns info about the properties of a node and all its sub nodes.
|
|
556
|
+
*
|
|
557
|
+
* <p>
|
|
558
|
+
* <em>
|
|
559
|
+
* <strong>Note!</strong> This method is intended for debugging purposes during development ONLY!
|
|
560
|
+
* Important: Only the types and properties that are officially specified on the
|
|
561
|
+
* <a href="http://help.sitevision.se/nodetypes">Sitevision developer web</a>
|
|
562
|
+
* can be relied upon and used in production. All other types and properties should
|
|
563
|
+
* be considered volatile. Output produced by this method is not indexed by the Sitevision indexer.
|
|
564
|
+
* </em>
|
|
565
|
+
* </p>Debug method that returns info about the properties of a node and all its sub nodes recursively until a given sub level
|
|
566
|
+
* {@code aDepth} is reached.
|
|
567
|
+
*
|
|
568
|
+
* <p>
|
|
569
|
+
* <em>
|
|
570
|
+
* <strong>Note!</strong> This method is intended for debugging purposes during development ONLY!
|
|
571
|
+
* Important: Only the types and properties that are officially specified on the
|
|
572
|
+
* <a href="http://help.sitevision.se/nodetypes">Sitevision developer web</a>
|
|
573
|
+
* can be relied upon and used in production. All other types and properties should
|
|
574
|
+
* be considered volatile. Output produced by this method is not indexed by the Sitevision indexer.
|
|
575
|
+
* </em>
|
|
576
|
+
* </p>Convenience method for rendering a linked web path to a specified node.
|
|
577
|
+
*
|
|
578
|
+
* <p>
|
|
579
|
+
* --------------------------------------------------------- <br>
|
|
580
|
+
* <strong>Example:</strong> You use Velocity and want to do a simple "path to this page" menu
|
|
581
|
+
* with a pretty "double arrow" between the links<br>
|
|
582
|
+
* ---------------------------------------------------------
|
|
583
|
+
* </p>
|
|
584
|
+
*
|
|
585
|
+
* <p><strong>A) The explicit way:</strong></p>
|
|
586
|
+
* <p>Use the <code>getWebPathNodes</code> method of {@link senselogic.sitevision.api.node.NodeTreeUtil} to get all nodes in the
|
|
587
|
+
* path to the site page and render a link to each node using a {@link senselogic.sitevision.api.render.LinkRenderer}.
|
|
588
|
+
* Current page can be found via a {@link senselogic.sitevision.api.context.PortletContextUtil} instance.</p><pre><code>
|
|
589
|
+
* <em>## Get all nodes from here to the site page</em>
|
|
590
|
+
* #set ($currentPage = $sitevisionUtils.portletContextUtil.currentPage)
|
|
591
|
+
* #set ($nodeTreeUtil = $sitevisionUtils.nodeTreeUtil)
|
|
592
|
+
* #set ($pathList = $nodeTreeUtil.getWebPathNodes($currentPage))
|
|
593
|
+
*
|
|
594
|
+
* <em>## Iterate the nodes in the list with a LinkRenderer</em>
|
|
595
|
+
* #if (!$pathList.isEmpty())
|
|
596
|
+
* <em>## Set up the link renderer</em>
|
|
597
|
+
* #set ($linkRenderer = $sitevisionUtils.getLinkRenderer())
|
|
598
|
+
*
|
|
599
|
+
* <em>## Render links to all nodes</em>
|
|
600
|
+
* <p class="normal">
|
|
601
|
+
* #foreach ($node in $pathList)
|
|
602
|
+
* $linkRenderer.update($node)
|
|
603
|
+
* #if ($velocityCount > 0)
|
|
604
|
+
* &raquo;
|
|
605
|
+
* #end
|
|
606
|
+
* $linkRenderer.render()
|
|
607
|
+
* #end
|
|
608
|
+
* </p>
|
|
609
|
+
* #end</code></pre>
|
|
610
|
+
*
|
|
611
|
+
* <p><strong>B) The convenient way:</strong></p>
|
|
612
|
+
* <p>Use the <code>getWebPathNodes</code> method!</p><pre><code>
|
|
613
|
+
* <em>## Init</em>
|
|
614
|
+
* #set ($currentPage = $sitevisionUtils.portletContextUtil.currentPage)
|
|
615
|
+
* #set ($outputUtil = $sitevisionUtils.outputUtil)
|
|
616
|
+
* #set ($linkRenderer = $sitevisionUtils.getLinkRenderer())
|
|
617
|
+
*
|
|
618
|
+
* <em>## Render</em>
|
|
619
|
+
* #set ($result = $outputUtil.renderWebPathNodes($currentPage, $linkRenderer, ' &raquo; '))
|
|
620
|
+
* #if ($result != '')
|
|
621
|
+
* <p class="normal">$result</p>
|
|
622
|
+
* #end</code></pre>
|
|
623
|
+
*
|
|
624
|
+
* <p>
|
|
625
|
+
* <em>For a description of "web path", see {@link senselogic.sitevision.api.node.NodeTreeUtil#getWebPathNodes(javax.jcr.Node)}</em>
|
|
626
|
+
* </p>The "text/plain" content-type markerThe "text/html" content-type markerThe "text/xml" content-type marker
|
|
627
|
+
* @author Magnus Lövgren
|
|
628
|
+
*/
|
|
629
|
+
declare namespace OutputUtil {
|
|
630
|
+
export {
|
|
631
|
+
getHtmlText,
|
|
632
|
+
getEscapedHtmlText,
|
|
633
|
+
getHyperlinkedText,
|
|
634
|
+
getNodeAsText,
|
|
635
|
+
getNodeOutput,
|
|
636
|
+
getNodeInfoAsHTML,
|
|
637
|
+
renderWebPathNodes,
|
|
638
|
+
};
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
export default OutputUtil;
|