mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
Rename branch to develop
This commit is contained in:
parent
b138ec780b
commit
794d6a6c83
@ -1,10 +1,11 @@
|
|||||||
<p align="left"> <img title="Alfresco" src="alfresco.png" alt="Alfresco - Simply a better way to create amazing digital experiences"></p>
|
<p align="left"> <img title="Alfresco" src="alfresco.png" alt="Alfresco - Simply a better way to create amazing digital experiences"></p>
|
||||||
|
|
||||||
# Alfresco Content Application
|
# Alfresco Content Application
|
||||||
|
|
||||||
| branch | status |
|
| branch | status |
|
||||||
| --- | --- |
|
| ------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
| master | [](https://travis-ci.com/Alfresco/alfresco-content-app) |
|
| master | [](https://travis-ci.com/Alfresco/alfresco-content-app) |
|
||||||
| development | [](https://travis-ci.com/Alfresco/alfresco-content-app) |
|
| develop | [](https://travis-ci.com/Alfresco/alfresco-content-app) |
|
||||||
|
|
||||||
## Introduction
|
## Introduction
|
||||||
|
|
||||||
@ -71,7 +72,7 @@ Read up on our guidelines for [contributing] and then check out one of our issue
|
|||||||
## Available Features
|
## Available Features
|
||||||
|
|
||||||
| Version | Feature | Description |
|
| Version | Feature | Description |
|
||||||
| ------- | -------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
| ------- | ---------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
| 1.5 | My Files | Folder/File browsing of Personal Files. |
|
| 1.5 | My Files | Folder/File browsing of Personal Files. |
|
||||||
| 1.5 | File Libraries | Create, find, join and browse the file libraries of sites created in the repository. |
|
| 1.5 | File Libraries | Create, find, join and browse the file libraries of sites created in the repository. |
|
||||||
| 1.5 | Shared Files | Lists all files that have shared. |
|
| 1.5 | Shared Files | Lists all files that have shared. |
|
||||||
@ -98,7 +99,7 @@ Read up on our guidelines for [contributing] and then check out one of our issue
|
|||||||
| 1.8 | Extensibility improvements | Various - see [release notes](https://github.com/Alfresco/alfresco-content-app/releases) for details |
|
| 1.8 | Extensibility improvements | Various - see [release notes](https://github.com/Alfresco/alfresco-content-app/releases) for details |
|
||||||
| 1.9 | Single Log Out | Users will be automatically logged out from the Content App after logging out from another application in the same browser session |
|
| 1.9 | Single Log Out | Users will be automatically logged out from the Content App after logging out from another application in the same browser session |
|
||||||
| 1.9 | Accessibility improvements | Various - see [release notes](https://github.com/Alfresco/alfresco-content-app/releases) for details |
|
| 1.9 | Accessibility improvements | Various - see [release notes](https://github.com/Alfresco/alfresco-content-app/releases) for details |
|
||||||
1.10 | Create (file/folder) from template | Users can create files and folders structures from pre-set templates |
|
| 1.10 | Create (file/folder) from template | Users can create files and folders structures from pre-set templates |
|
||||||
|
|
||||||
[contributing]: https://github.com/Alfresco/alfresco-content-app/blob/master/CONTRIBUTING.md
|
[contributing]: https://github.com/Alfresco/alfresco-content-app/blob/master/CONTRIBUTING.md
|
||||||
[github]: https://github.com/Alfresco/alfresco-content-app/issues
|
[github]: https://github.com/Alfresco/alfresco-content-app/issues
|
||||||
|
@ -7,7 +7,7 @@ Title: Creating custom evaluators
|
|||||||
Rule evaluators are plain JavaScript (or TypeScript) functions that take `RuleContext` references and an optional list of `RuleParameter` instances.
|
Rule evaluators are plain JavaScript (or TypeScript) functions that take `RuleContext` references and an optional list of `RuleParameter` instances.
|
||||||
|
|
||||||
Application provides a special
|
Application provides a special
|
||||||
[RuleEvaluator](https://github.com/Alfresco/alfresco-ng2-components/blob/development/lib/extensions/src/lib/config/rule.extensions.ts)
|
[RuleEvaluator](https://github.com/Alfresco/alfresco-ng2-components/blob/develop/lib/extensions/src/lib/config/rule.extensions.ts)
|
||||||
type alias for evaluator functions:
|
type alias for evaluator functions:
|
||||||
|
|
||||||
```ts
|
```ts
|
||||||
@ -25,7 +25,7 @@ export function hasSelection(
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
The `context` is a reference to a special instance of the [RuleContext](https://github.com/Alfresco/alfresco-ng2-components/blob/development/lib/extensions/src/lib/config/rule.extensions.ts) type,
|
The `context` is a reference to a special instance of the [RuleContext](https://github.com/Alfresco/alfresco-ng2-components/blob/develop/lib/extensions/src/lib/config/rule.extensions.ts) type,
|
||||||
that provides each evaluator access to runtime entities.
|
that provides each evaluator access to runtime entities.
|
||||||
|
|
||||||
```ts
|
```ts
|
||||||
|
@ -116,7 +116,7 @@ export class CustomComponent {
|
|||||||
|
|
||||||
In the above example, passing `location` when calling `ViewNodeAction` will open the viewer relative to current activated route _/custom-path/(viewer:view/nodeId)_.
|
In the above example, passing `location` when calling `ViewNodeAction` will open the viewer relative to current activated route _/custom-path/(viewer:view/nodeId)_.
|
||||||
|
|
||||||
If no location is passed, the viewer will default to open on a [predefined route](https://github.com/Alfresco/alfresco-content-app/blob/development/src/app/app.routes.ts#L58). In this case, in order to get back to original location from where the viewer was invoked, `ViewNodeAction` should be called by passing a `path`.
|
If no location is passed, the viewer will default to open on a [predefined route](https://github.com/Alfresco/alfresco-content-app/blob/develop/src/app/app.routes.ts#L58). In this case, in order to get back to original location from where the viewer was invoked, `ViewNodeAction` should be called by passing a `path`.
|
||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
// when invoked from an extension
|
// when invoked from an extension
|
||||||
|
@ -40,4 +40,4 @@ In the app.config.json file, these are the current settings for the ACA version
|
|||||||
|
|
||||||
Set the allowComments to false if the version comments should not be displayed on the version list.
|
Set the allowComments to false if the version comments should not be displayed on the version list.
|
||||||
|
|
||||||
Clicking to delete a version of a file triggers a confirmation dialog. Please see the [Confirm Dialog Component](https://github.com/Alfresco/alfresco-ng2-components/blob/development/lib/content-services/dialogs/confirm.dialog.ts) for more info.
|
Clicking to delete a version of a file triggers a confirmation dialog. Please see the [Confirm Dialog Component](https://github.com/Alfresco/alfresco-ng2-components/blob/develop/lib/content-services/dialogs/confirm.dialog.ts) for more info.
|
||||||
|
@ -8,7 +8,7 @@ nav: ja
|
|||||||
ルールエバリュエータは、`RuleContext` 参照とオプションの `RuleParameter` インスタンスのリストを受け取るプレーンな JavaScript (または TypeScript) 関数です。
|
ルールエバリュエータは、`RuleContext` 参照とオプションの `RuleParameter` インスタンスのリストを受け取るプレーンな JavaScript (または TypeScript) 関数です。
|
||||||
|
|
||||||
アプリケーションは、評価関数に特別な
|
アプリケーションは、評価関数に特別な
|
||||||
[RuleEvaluator](https://github.com/Alfresco/alfresco-ng2-components/blob/development/lib/extensions/src/lib/config/rule.extensions.ts)
|
[RuleEvaluator](https://github.com/Alfresco/alfresco-ng2-components/blob/develop/lib/extensions/src/lib/config/rule.extensions.ts)
|
||||||
タイプエイリアスを提供します:
|
タイプエイリアスを提供します:
|
||||||
|
|
||||||
```ts
|
```ts
|
||||||
@ -26,7 +26,7 @@ export function hasSelection(
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
`context` は、[RuleContext](https://github.com/Alfresco/alfresco-ng2-components/blob/development/lib/extensions/src/lib/config/rule.extensions.ts) 型の特別なインスタンスへの参照であり、
|
`context` は、[RuleContext](https://github.com/Alfresco/alfresco-ng2-components/blob/develop/lib/extensions/src/lib/config/rule.extensions.ts) 型の特別なインスタンスへの参照であり、
|
||||||
各エバリュエータがランタイムエンティティにアクセスできるようにします。
|
各エバリュエータがランタイムエンティティにアクセスできるようにします。
|
||||||
|
|
||||||
```ts
|
```ts
|
||||||
|
@ -41,4 +41,4 @@ app.config.json ファイルで、これらは ACA バージョンマネージ
|
|||||||
|
|
||||||
バージョンコメントをバージョンリストに表示しない場合は、allowComments を false に設定します。
|
バージョンコメントをバージョンリストに表示しない場合は、allowComments を false に設定します。
|
||||||
|
|
||||||
ファイルのバージョンをクリックして削除すると、確認ダイアログが表示されます。詳細については、[Confirm Dialog Component](https://github.com/Alfresco/alfresco-ng2-components/blob/development/lib/content-services/dialogs/confirm.dialog.ts) をご覧ください。
|
ファイルのバージョンをクリックして削除すると、確認ダイアログが表示されます。詳細については、[Confirm Dialog Component](https://github.com/Alfresco/alfresco-ng2-components/blob/develop/lib/content-services/dialogs/confirm.dialog.ts) をご覧ください。
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||||
"$id": "https://github.com/Alfresco/alfresco-content-app/blob/development/extension.schema.json",
|
"$id": "https://github.com/Alfresco/alfresco-content-app/blob/develop/extension.schema.json",
|
||||||
"title": "ACA Extension Schema",
|
"title": "ACA Extension Schema",
|
||||||
"description": "Provides a validation schema for ACA extensions",
|
"description": "Provides a validation schema for ACA extensions",
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ DIST=${ROOT}/dist/@alfresco
|
|||||||
if [[ $TRAVIS_PULL_REQUEST == "false" ]];
|
if [[ $TRAVIS_PULL_REQUEST == "false" ]];
|
||||||
then
|
then
|
||||||
TAG_NPM=latest
|
TAG_NPM=latest
|
||||||
if [[ $TRAVIS_BRANCH == "development" ]];
|
if [[ $TRAVIS_BRANCH == "develop" ]];
|
||||||
then
|
then
|
||||||
TAG_NPM=alpha
|
TAG_NPM=alpha
|
||||||
if [[ $TRAVIS_EVENT_TYPE == "cron" ]];
|
if [[ $TRAVIS_EVENT_TYPE == "cron" ]];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user