Fixed invalid url link. (#1177)

* Fixed invalid url link.

* Update docs/features/side-navigation.md

Co-Authored-By: Suzana Dirla <dirla.silvia.suzana@gmail.com>
This commit is contained in:
Yuuki Ebihara 2019-08-02 21:07:00 +09:00 committed by Cilibiu Bogdan
parent 25e5838d00
commit 6ecf20a0bb
8 changed files with 19 additions and 19 deletions

View File

@ -579,7 +579,7 @@ The rule should return `true` if node preview is allowed, otherwise `false`.
## Content metadata presets
The content metadata presets are needed by the [Content Metadata Component](https://www.alfresco.com/abn/adf/docs/content-services/content-metadata-card.component/) to render the properties of metadata aspects for a given node.
The content metadata presets are needed by the [Content Metadata Component](https://www.alfresco.com/abn/adf/docs/content-services/components/content-metadata-card.component/) to render the properties of metadata aspects for a given node.
The different aspects and their properties are configured in the `app.config.json` file, but they can also be set on runtime through extension files.
Configuring these presets from `app.extensions.json` will overwrite the default application setting.

View File

@ -6,10 +6,10 @@ Title: Document List Layout
The main area of the application is composed of several individual ADF components:
1. [Breadcrumb](https://www.alfresco.com/abn/adf/docs/content-services/breadcrumb.component/)
2. [Toolbar](https://www.alfresco.com/abn/adf/docs/core/toolbar.component/)
3. [Document List](https://www.alfresco.com/abn/adf/docs/content-services/document-list.component/)
4. [Pagination](https://www.alfresco.com/abn/adf/docs/core/pagination.component/)
1. [Breadcrumb](https://www.alfresco.com/abn/adf/docs/content-services/components/breadcrumb.component/)
2. [Toolbar](https://www.alfresco.com/abn/adf/docs/core/components/toolbar.component/)
3. [Document List](https://www.alfresco.com/abn/adf/docs/content-services/components/document-list.component/)
4. [Pagination](https://www.alfresco.com/abn/adf/docs/core/components/pagination.component/)
![](../images/doclist.png)
@ -73,7 +73,7 @@ Another custom template layout shows the results when searching for libaries so
## Actions and the Actions Toolbar
All the views incorporate the [toolbar](https://www.alfresco.com/abn/adf/docs/core/toolbar.component/)
All the views incorporate the [toolbar](https://www.alfresco.com/abn/adf/docs/core/components/toolbar.component/)
component from the Alfresco Application Development Framework.
Actions are displayed in the toolbar when item(s) are selected, or a right click is performed; apart from the Trash view they all display the following actions when the current user has the necessary permissions,
@ -89,8 +89,8 @@ actions are automatically hidden when the user does not have permission.
| View | Opens the selected file using the [Preview component](../../src/app/components/preview). If the file cannot be displayed natively in a browser, a PDF rendition is obtained from the repository. | Not applicable |
| Edit | Not applicable | The folder name and description can be edited in a dialog. |
| Favorite | Toggle the favorite mark on or off for files and folders. If multiple items are selected and one or more are not favorites then the mark will be toggled on. |
| Copy | Files and folders can be copied to another location in the content repository using the [Content node selector component](https://www.alfresco.com/abn/adf/docs/content-services/content-node-selector.component/). When the copy action has completed the user is notified and can undo the action (which permanently deletes the created copies). |
| Move | Files and folders can be moved to another location in the content repository using the [Content node selector component](https://www.alfresco.com/abn/adf/docs/content-services/content-node-selector.component/). When the move action has completed the user is notified and can undo the action (which moves the items back to the original location). |
| Copy | Files and folders can be copied to another location in the content repository using the [Content node selector component](https://www.alfresco.com/abn/adf/docs/content-services/components/content-node-selector.component/). When the copy action has completed the user is notified and can undo the action (which permanently deletes the created copies). |
| Move | Files and folders can be moved to another location in the content repository using the [Content node selector component](https://www.alfresco.com/abn/adf/docs/content-services/components/content-node-selector.component/). When the move action has completed the user is notified and can undo the action (which moves the items back to the original location). |
| Delete | Files and folders can be deleted from their location in the content repository. When the delete action has completed the user is notified and can undo the action (which restores the items from the trash). |
| Manage Versions | Versions of files can be viewed, uploaded, restored, downloaded and deleted by using the version manager dialog. When each action has completed the list of versions is updated according to the change. | Not applicable |
| Permissions | Permissions on a file can be adjusted as required in a number of ways; disable inheritance from the parent folder, change a user or groups role and grant users/groups access. | Not available |

View File

@ -21,7 +21,7 @@ Please refer to the [Application Configuration](/getting-started/configuration)
## Search
The application [Search](../../src/app/components/search) -
uses the [ADF Search Component](https://www.alfresco.com/abn/adf/docs/content-services/search.component/).
uses the [ADF Search Component](https://www.alfresco.com/abn/adf/docs/content-services/components/search.component/).
The app provides a 'live' search feature, where users can open files and folders directly from the Search API results.
![Search Input](../images/search.png)

View File

@ -10,10 +10,10 @@ When you type queries into the Search Input component, the application will retu
This page consists of the following ADF components:
- [Search Filter](https://www.alfresco.com/abn/adf/docs/content-services/search-filter.component/)
- [Search Chip List](https://www.alfresco.com/abn/adf/docs/content-services/search-chip-list.component/)
- [Search Sorting Picker](https://www.alfresco.com/abn/adf/docs/content-services/search-sorting-picker.component/)
- [Document List](https://www.alfresco.com/abn/adf/docs/content-services/document-list.component/) with custom layout template
- [Search Filter](https://www.alfresco.com/abn/adf/docs/content-services/components/search-filter.component/)
- [Search Chip List](https://www.alfresco.com/abn/adf/docs/content-services/components/search-chip-list.component/)
- [Search Sorting Picker](https://www.alfresco.com/abn/adf/docs/content-services/components/search-sorting-picker.component/)
- [Document List](https://www.alfresco.com/abn/adf/docs/content-services/components/document-list.component/) with custom layout template
- [Info Drawer](/features/info-drawer) with Metadata and [Version Management](#version-manager)
- [Toolbar with basic actions](/features/document-list-layout#actions-and-the-actions-toolbar) like `Preview`, `Download`, `Favorite`, `Copy`, etc.

View File

@ -16,7 +16,7 @@ The New button displays a menu which provides three actions:
- Upload a file - invokes the operating system file browser and allows a user to select file(s) to upload into their current location in the content repository.
- Upload a folder - invokes the operating system folder browser and allows a user to select a folder to upload to their current location in the content repository.
When an upload starts the [upload component](https://www.alfresco.com/abn/adf/docs/content-services/upload.component/)
When an upload starts the [upload component](https://www.alfresco.com/abn/adf/docs/content-services/components/file-uploading-dialog.component/)
is displayed which shows the user the progress of the uploads they have started.
The upload dialog persists on the screen and can be minimized; users are able to continue using the application whilst uploads are in progress
and uploads can be canceled which will stop uploads in progress or permanently delete already completed uploads.

View File

@ -125,7 +125,7 @@ By default, the application ships with the following rules already predefined:
}
```
**Tip:** You can find more details on the supported rules in the ADF [Upload Service](https://www.alfresco.com/abn/adf/docs/core/upload.service/) docs.
**Tip:** You can find more details on the supported rules in the ADF [Upload Service](https://www.alfresco.com/abn/adf/docs/core/services/upload.service/) docs.
### Pagination settings
@ -150,4 +150,4 @@ You can change the default settings of the pagination that gets applied to all t
You can store any information in the application configuration file, and access it at runtime by using the `AppConfigService` service provided by ADF.
**Tip:** Please refer to the ADF
[App Config Service](https://www.alfresco.com/abn/adf/docs/core/app-config.service/) documentation to get more details on the Application Configuration features and APIs available.
[App Config Service](https://www.alfresco.com/abn/adf/docs/core/services/app-config.service/) documentation to get more details on the Application Configuration features and APIs available.

View File

@ -29,7 +29,7 @@ The default language is English, however the current browser language is taken a
## User-defined language
You can allow users to set custom languages that are saved to their preferences.
The main application menu already has the [ADF Language Menu](https://www.alfresco.com/abn/adf/docs/core/language-menu.component/) component integrated and pre-filled with the supported items.
The main application menu already has the [ADF Language Menu](https://www.alfresco.com/abn/adf/docs/core/components/language-menu.component/) component integrated and pre-filled with the supported items.
To change the default language set edit the `app.config.json` file and add or remove items:
@ -86,7 +86,7 @@ You can copy the content over to your newly created file and replace the English
The Content Application automatically bundles your file when the project builds.
You can test your locale by changing the browser language settings and reloading the page.
Optionally, you can extend the [ADF Language Menu](https://www.alfresco.com/abn/adf/docs/core/language-menu.component/) component with the newly added language by updating the `app.config.json` file.
Optionally, you can extend the [ADF Language Menu](https://www.alfresco.com/abn/adf/docs/core/components/language-menu.component/) component with the newly added language by updating the `app.config.json` file.
## Customizing ADF translations

View File

@ -56,4 +56,4 @@ as the login process is handled entirely by Kerberos.
## See also
For more details on the ADF Login component and configuration options please refer to the [Login](https://www.alfresco.com/abn/adf/docs/core/login.component/#single-sign-on-sso) documentation.
For more details on the ADF Login component and configuration options please refer to the [Login](https://www.alfresco.com/abn/adf/docs/core/components/login.component/#single-sign-on-sso) documentation.