Search Results

Capability
Feature
Deployment Approach
Changes Between Bundler 1.x and 2.x
Changes Between Bundler 1.x and 2.x The Liferay npm bundler is deprecated of Liferay 2024.Q4/Portal GA129, and it's planned for future removal. This article outlines the key changes between...
公開日: 2024/05/09 18:55
Migrating Your Project to Use liferay-npm-bundler's New Mode
Migrating Your Project to Use liferay-npm-bundler's New Mode The Liferay npm bundler is deprecated of Liferay 2024.Q4/Portal GA129, and it's planned for future removal. Since issue #303, two...
公開日: 2024/05/09 18:55
Understanding Bundler Configuration Presets
Understanding Bundler Configuration Presets The Liferay npm bundler is deprecated of Liferay 2024.Q4/Portal GA129, and it's planned for future removal. The liferay-npm-bundler comes with a...
公開日: 2024/05/09 18:55
OSGi Bundles and npm Package Structure
OSGi Bundles and npm Package Structure The Liferay npm bundler is deprecated of Liferay 2024.Q4/Portal GA129, and it's planned for future removal. To deploy JavaScript modules, you must create an...
公開日: 2024/05/09 18:55
Getting Started
Getting Started Previously, Poshi tests could only be executed by downloading and creating the test files within the Liferay source code. The Poshi Standalone gradle project enables you to use...
公開日: 2024/05/09 18:55
Creating a Macro File
Creating a Macro File Test Scenario Write your first macro file using the test scenario below: You would like to test that your name does not appear on any learn.liferay.com article. The steps you...
公開日: 2024/05/09 18:55
Creating A Path File
Creating A Path File Test Scenario Write your first path file using the test scenario below: You would like to test that your name does not appear on any learn.liferay.com article. The steps you...
公開日: 2024/05/09 18:55
Default Bundler Loaders
Default Bundler Loaders The Liferay npm bundler is deprecated of Liferay 2024.Q4/Portal GA129, and it's planned for future removal. Several loaders are available for the liferay-npm-bundler by...
公開日: 2024/05/09 18:55
How AMD Loader Configuration is Exported
How AMD Loader Configuration is Exported The Liferay npm bundler is deprecated of Liferay 2024.Q4/Portal GA129, and it's planned for future removal. If you don't understand how Liferay AMD...
公開日: 2024/05/09 18:55
How the Bundler Publishes npm Packages
How the Bundler Publishes npm Packages The Liferay npm bundler is deprecated of Liferay 2024.Q4/Portal GA129, and it's planned for future removal. When you deploy an OSGi bundle with the...
公開日: 2024/05/09 18:55
How JavaScript Modules are Formatted for AMD
How JavaScript Modules are Formatted for AMD The Liferay npm bundler is deprecated of Liferay 2024.Q4/Portal GA129, and it's planned for future removal. Liferay AMD Loader is based on the AMD...
公開日: 2024/05/09 18:55
Liferay npm Bundler
Liferay npm Bundler The Liferay npm bundler is deprecated of Liferay 2024.Q4/Portal GA129, and it's planned for future removal. The liferay-npm-bundler is a bundler (like Webpack or Browserify)...
公開日: 2024/05/09 18:55
Understanding the npmbundlerrc Structure
Understanding the npmbundlerrc Structure The Liferay npm bundler is deprecated of Liferay 2024.Q4/Portal GA129, and it's planned for future removal. The liferay-npm-bundler is configured via a...
公開日: 2024/05/09 18:55
Understanding the Liferay npm Bundler Loader
Understanding the Liferay npm Bundler Loader The Liferay npm bundler is deprecated of Liferay 2024.Q4/Portal GA129, and it's planned for future removal. liferay-npm-bundler's mechanism is...
公開日: 2024/05/09 18:55
Poshi Test Automation
Poshi Test Automation Poshi is a test automation framework that is simple, easy to understand, and does not require prior development experience to get started. Poshi tests can be written to...
公開日: 2024/05/09 18:55
Syntax Validation
Syntax Validation The Poshi Standalone grade projects includes a validation task that can be used to check your code for syntax errors before running your test. To use this, simply run ./gradlew...
公開日: 2024/05/09 18:55
Understanding Test Results and Debugging Tests
Understanding Test Results and Debugging Tests Poshi tests are run on the terminal or command line. When a test run is completed there are multiple ways to view the test results and diagnose test...
公開日: 2024/05/09 18:55
Poshi Basics
Poshi Basics New features, improvements, and system upgrades can sometimes introduce unexpected behaviors and bugs. Running suites of automated tests is an advantageous method of identifying issues...
公開日: 2024/05/09 18:55
Paths
Paths A path is an element on a page that a test will interact with. An element can be a button, text field, link, image, paragraph, or just about anything you would need to assert, click, or type...
公開日: 2024/05/09 18:55
Creating the Testcase File
Creating the Testcase File Test Scenario Write your first testcase file using the test scenario below: You would like to test that your name does not appear on any learn.liferay.com article. The...
公開日: 2024/05/09 18:55
Running a Test
Running a Test Open the poshi-ext.properties file on your poshi-standalone directory and add the following line, replacing the TestCaseFileName#TestCaseName with the one you created in Creating A...
公開日: 2024/05/09 18:55
Setup
Setup Prerequisites A supported version of Java. Google Chrome. Gradle or Gradle Wrapper 6.6.1 or higher. Setting up the Poshi Standalone Gradle Project Create a new directory, example...
公開日: 2024/05/09 18:55
Poshi Advantages
Poshi Advantages Simplified Syntax To make it easier for less technical testers to read and write test automation, Poshi uses a simplified Groovy-like script syntax. It is less wordy than most...
公開日: 2024/05/09 18:55
Poshi Layers
Poshi Layers
公開日: 2024/05/09 18:55
Functions
Functions In Poshi, Functions handle extra WebDriver commands that an element might require to interact with a page object or element. Functions combine the basic methods defined in the...
公開日: 2024/05/09 18:55
Macros
Macros A macro is a set of functions that perform a task. Macros are where locators (paths) and functions are brought together to script interactions that a user performs on the system being...
公開日: 2024/05/09 18:55
Testcases
Testcases A testcase file in Poshi is a collection of test scenarios grouped in blocks of code called test blocks. The three main test blocks: setUp, test, and tearDown, are made up of multiple...
公開日: 2024/05/09 18:55
Using Variables
Using Variables Though not a Poshi layer, variables are a large part of Poshi tests. Variables, like in other programming languages, are used to store data which can be referenced and reused in...
公開日: 2024/05/09 18:55
Poshi Resources
Poshi Resources To give Poshi test writers easy access to commonly used functions or other files, Poshi resources were created to store existing Poshi files as dependencies that can be loaded apart...
公開日: 2024/05/09 18:55
Configuration
Configuration In order to give test writers easy access to commonly used functions, paths, or macros, Poshi resources were created to store existing Poshi files as dependencies. These resources can...
公開日: 2024/05/09 18:55
Using Poshi Resources
Using Poshi Resources Once the Poshi resources jar file is loaded onto your Poshi project, you are now able to use Liferay's commonly used functions, paths, and macros. To distinguish between files...
公開日: 2024/05/09 18:55
Reference
Reference Node Version Information
公開日: 2024/05/09 18:55
Node Version Information
Node Version Information Liferay DXP uses Node (and NPM) for many different frontend components. Specifically, the Liferay Theme Generator and Liferay's JavaScript application tools require the use...
公開日: 2024/05/09 18:55
Liferayクラスローダー階層
Liferayクラスローダー階層 すべてのLiferay DXP/Portalアプリケーションは、OSGiコンテナにあります。 DXP/Portalは、アプリケーションサーバーにデプロイされたWebアプリケーションです。 そのモジュールフレームワークのバンドル(モジュール)は、OSGiコンテナにあり、クラスローダーを備えています。...
公開日: 2024/05/09 18:55
モジュール性のメリット
モジュール性のメリット Dictionary.comでは、 モジュール性 を、 電子システムまたは機械システムの組み立てのように、個別に異なる機能ユニットを使用することと定義しています。 個別の機能ユニットは モジュール と呼ばれます。 たとえば、NASAのアポロ宇宙船は3つのモジュールで構成されており、それぞれに異なる機能があります。 月着モジュール...
公開日: 2024/05/09 18:55
Using the Bootstrap 3 Compatibility Layer in Liferay 7.4
Using the Bootstrap 3 Compatibility Layer in Liferay 7.4 As of Liferay DXP 7.4 GA1, the Bootstrap 3 compatibility layer is removed from the built-in packages in Liferay frontend applications. If...
公開日: 2024/05/09 18:55
アーキテクチャ
アーキテクチャ Liferay DXP/Portalのアーキテクチャには、次の3つの部分があります。 コア: DXPとそのフレームワークをブートストラップします。 コアは、サービス、UIコンポーネント、およびカスタマイゼーションを管理するためのランタイム環境を提供します。 サービス: Java APIおよびWeb APIを介してDXP機能とカスタム機能を公開します。 UI:...
公開日: 2024/05/09 18:55
条件付きフィールドを使用したフォームの作成
条件付きフィールドを使用したフォームの作成 フォームは、1つの質問に回答することで回答者が次の3つの質問をスキップできたり、回答者に追加の質問への回答を要求するなど、動的なフォームにすることができます。 このように、各フィールドは条件付きのフィールドにすることができます。...
公開日: 2024/05/09 18:55
自動保存動作のカスタマイズ
自動保存動作のカスタマイズ フォーム アプリケーションは、 フォームの作成 時に、フォーム作成の進行状況を自動的に保存します。 デフォルトでは、フォームの下書きは1分ごとに自動保存されます。 時間を変更するには: [コントロールパネル] → [設定] → [システム設定] に移動します。 [コンテンツとデータ] の下で、 [フォーム] をクリックします。 左側のメニューで、...
公開日: 2024/05/09 18:55
フォームレイアウトのカスタマイズ
フォームレイアウトのカスタマイズ デフォルトでは、フォーム上の新しい要素は新しい行に追加され、フォームの幅全体を占めるようになります。 すべての要素がフォームの幅全体を占めているフォーム。 各要素を別々の行に配置する必要がない場合もあります。 代わりに、要素の幅を変更して一行に配置することで、スペースを節約することができます。 ...
公開日: 2024/05/09 18:55
7.2 旧バージョンと非互換の変更
7.2 旧バージョンと非互換の変更 このドキュメントは、サードパーティのLiferay開発者またはユーザーとの既存の機能、API、または契約に違反する変更の時系列リストを示しています。 私たちはこれらの混乱を最小限にするために最善を尽くしていますが、時には避けられないこともあります。 このファイルに記載されている変更の種類の一部を次に示します。 削除または置換される機能 ...
公開日: 2024/05/09 18:55
ベータ版の機能と機能フラグ
ベータ版の機能と機能フラグ 機能フラグ DXP 7.4 U69+/GA69+. Liferayのいくつかの機能は feature flags の後ろに隠されています。 機能フラグを使うことで、Liferayインスタンスに導入される新しい機能をコントロールすることができます。 新機能や実験的な機能は、機能フラグによってより効果的に採用され、検証される。 ...
公開日: 2024/05/09 18:58
各国の経営
各国の経営 liferay DXP 7.4 U36/Liferay Portal 7.4 GA36 以上。 Liferay には ISO 3166 Standard で定義された利用可能な国のリストが含まれていますが、Countries Management アプリを使って既存のエントリーを修正したり、新しいエントリーを追加したりすることができます。 liferay DXP 7.4...
公開日: 2024/05/09 18:58
カスタムフィールドの追加
カスタムフィールドの追加 Liferayのアセットとリソースの多くは、カスタムフィールドで拡張できます。 カスタムフィールドを追加すると、サイトをより細かく制御し、柔軟性を高めることができます。 以下のさまざまな場所でカスタムフィールドを使用できます。 ブログのエントリ カレンダーの予定 ドキュメント ドキュメントとメディアフォルダー ナレッジベースの記事 ...
公開日: 2024/05/09 18:58
翻訳ファイルの変更
翻訳ファイルの変更 利用可能:Liferay DXP 7.4 U4/Liferay Portal 7.4 GA8 Liferay DXP 7.4 U17 / Liferay Portal 7.4 GA17のインポート/エクスポートおよびフィルタリング機能 Language Override...
公開日: 2024/05/09 18:58
構成ファイルの使用
構成ファイルの使用 システム設定 は、システムスコープの構成変更を行い、他の スコープのデフォルト構成を設定するためのユーザーインターフェイスを提供します。 UIの同じ構成は、構成ファイルを介して行うことができます。 バージョンが同一であれば、構成ファイルを使用して、構成を実動前のシステムから実動システムに、または他のLiferay DXPシステム間で転送できます。 構成ファイルは、...
公開日: 2024/05/09 18:58
セキュリティ設定
セキュリティ設定 アップロードされたファイルのウイルス対策スキャンを有効にする 近日公開予定です。
公開日: 2024/05/09 18:58
設定スコープについて
設定スコープについて Liferay DXPのサービスとアプリケーションの設定は、4つのレベルのいずれか、または スコープ(システム、仮想インスタンス、サイト、またはウィジェット)で適用されます。 システム設定で行われた設定は、システムスコープレベルで設定されます。 システム以外のラベルが付いたスコープの場合、システム設定値がデフォルトとして機能します。...
公開日: 2024/05/09 18:58
システム設定
システム設定 コントロールパネルの システムスコープの 設定は、 → [設定]→ [システム設定]から行うことができます。 システム設定アプリケーションでは、プラットフォーム、セキュリティ、コンテンツとデータ、その他の4つのカテゴリの下に設定セクションが表示されます。 各セクションには、1つ以上の設定エントリーが含まれています。 ...
公開日: 2024/05/09 18:58
仮想インスタンス
仮想インスタンス 仮想インスタンスを理解する 仮想インスタンスの追加 インスタンス設定 ユーザー ユーザー認証 メール設定 アナリティクス ローカライズ インフラストラクチャー サードパーティ リダイレクト URL
公開日: 2024/05/09 18:58
アナリティクス
アナリティクス アナリティクスカテゴリは、仮想インスタンスで使用可能なアナリティクスシステムを定義します。 アナリティクスシステムを入力するか、あらかじめ設定されている2つのオプション(google および piwik)のうち1つを削除します。 ここでこれらのシステムを有効にし、 サイトレベル で設定します。 [詳細設定]セクションのサイト管理設定でアナリティクスエンジンを設定します。 ...
公開日: 2024/05/09 18:58
インフラストラクチャー
インフラストラクチャー インフラストラクチャカテゴリには、インポート/エクスポートプロセス中に検証されるコンテンツの種類と、インポート/エクスポートプロセス中に一時LARファイルを削除するかどうかを指定する設定が含まれています。 仮想インスタンススコープでインポート/エクスポート設定を構成します。 これらの設定にアクセスするには、コントロールパネルを開き、 [設定] →...
公開日: 2024/05/09 18:58
インスタンス設定
インスタンス設定 インスタンス設定は、仮想インスタンスの外観から利用規約まで、ユーザーが最初にサインインするときに同意する仮想インスタンスの構成情報を定義します。 コントロールパネルの [設定] → [インスタンス設定] のセクションからインスタンス設定にアクセスし、 [プラットフォーム] の下の [インスタンス設定] カテゴリを選択します。...
公開日: 2024/05/09 18:58
仮想インスタンスの追加
仮想インスタンスの追加 Liferay DXPで仮想インスタンスを追加する前に、インストールされているLiferay DXPシステムを指すようにネットワークでドメイン名を設定する必要があります。 デフォルトでは1つの仮想インスタンスがあります。 ドメイン名の準備ができたら、仮想インスタンスを作成します。 [コントロールパネル] → [設定] → [Virtual...
公開日: 2024/05/09 18:58
メール設定
メール設定 メール設定は、仮想インスタンススコープでのメール通知を設定するところです。 これらのオプションにアクセスするには、次のようにします、 グローバルメニュー(Global Menu) を開き、 コントロールパネル → 構成 → インスタンス設定 に移動します。 プラットフォーム」の「Email」を選択します。 左側に設定オプションが表示されます: 設定目的...
公開日: 2024/05/09 18:58
サードパーティー
サードパーティー サードパーティカテゴリは、ジオローカライズされたアセットのマップのAPIプロバイダーを指定します。 マップのAPIプロバイダーとしてOpenStreetMapまたはGoogleマップを選択します。 ジオローカライズされたアセットをマッピングするためのAPIプロバイダーを設定します。 サードパーティーの設定にアクセスするには、コントロールパネルを開き、 [設定] →...
公開日: 2024/05/09 18:58
ユーザー認証
ユーザー認証 ユーザー認証設定は、ユーザーの認証方法、ユーザーに必要なさまざまな認証方法、および予約されていてユーザーが登録できないスクリーン名と電子メールアドレスを定義します。 コントロールパネルの [設定] → [Instance Settings] セクションでユーザー認証の設定にアクセスし、 [プラットフォーム] セクションで [User Authentication]...
公開日: 2024/05/09 18:58
ユーザー
ユーザー ユーザー設定は、個人用メニューのルックアンドフィール、デフォルトのユーザーの関連付け、および新規ユーザーがアカウントを作成するときに使用できるフィールドを定義します。 ユーザー設定にアクセスするには、コントロールパネルを開き、 [設定] → [インスタンス設定] に移動し、 [プラットフォーム] セクションで [ユーザー] カテゴリを選択します。 ...
公開日: 2024/05/09 18:58
Liferay Talendコンポーネントのインストール
Liferay Talendコンポーネントのインストール 未対応 LiferayのTalend Open Studio用コンポーネントは、Liferay DXP/PortalとMySQL、SAP、Salesforceなどの外部システム、あるいはファイルとの間でデータのインポート/エクスポートが可能です。 これらのコンポーネントを使用するには、Talend Open...
公開日: 2024/05/09 18:58
ローカライズ
ローカライズ ローカリゼーションカテゴリには、次のエントリが含まれています。 設定目的 言語デフォルトのインスタンス言語と、インスタンスで使用可能な言語を設定します。 標準時インスタンスの標準時を設定します 言語選択(ウィジェットスコープ)言語選択ウィジェットのインスタンススコープのデフォルトを設定します。 ウィジェット自体でこの設定を上書きします。 ...
公開日: 2024/05/09 18:58

Capabilities

Product

Education

Contact Us

Connect

Powered by Liferay
© 2024 Liferay Inc. All Rights Reserved • Privacy Policy