]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fix documentation links (#8726)
authorArtur <artur@vaadin.com>
Fri, 3 Mar 2017 08:17:11 +0000 (10:17 +0200)
committerPekka Hyvönen <pekka@vaadin.com>
Fri, 3 Mar 2017 08:17:11 +0000 (10:17 +0200)
* Fix documentation links

documentation/datamodel/datamodel-overview.asciidoc
documentation/migration/migrating-to-vaadin8.asciidoc

index 42dd0a73d6ed77ebe0a9e01342a87fc52e33bffc..ea11d63f2fcae4c09129e875e1770801c79d7d6d 100644 (file)
@@ -11,7 +11,7 @@ The Vaadin Data Model is one of the core concepts of the library.
 There is a standard data interface that all UI components use to access and modify the application's data.
 
 The most basic UI component for handling data is a field component that lets the user define a single value, for instance a text field for writing the name of a product or a dropdown menu for selecting which department an employee belongs to.
-See <<dummy/../../../framework/datamodel/datamodel-fields.asciidoc,"Editing Values in Fields">> to learn how these components can be used on their own.
+See <<dummy/../../../framework/datamodel/datamodel-fields.asciidoc#datamodel.fields,"Editing Values in Fields">> to learn how these components can be used on their own.
 
 In most applications, there are business classes that represent real-world objects like a single employee or a product in an inventory.
 The user interface is structured as a form that lets the user edit all the different properties of a single business object instance.
@@ -22,11 +22,11 @@ You have full control over how you configure and lay out the individual input fi
 There are UI components in the framework that lists multiple similar objects and lets the user view, select and in some cases even edit those objects.
 A listing component can get its data from an in-memory collection or lazily fetch it from some backend.
 In either case, there are options available for defining how the data is sorted and filtered before being displayed to the user.
-Read more about how to provide lists of data to these components in <<dummy/../../../framework/datamodel/datamodel-providers.asciidoc,"Showing Many Items in a Listing">>.
-Using a listing component as an input field to select one or many of the listed items is described in <<dummy/../../../framework/datamodel/datamodel-selection.asciidoc,"Selecting items">>.
+Read more about how to provide lists of data to these components in <<dummy/../../../framework/datamodel/datamodel-providers.asciidoc#datamodel.providers,"Showing Many Items in a Listing">>.
+Using a listing component as an input field to select one or many of the listed items is described in <<dummy/../../../framework/datamodel/datamodel-selection.asciidoc#datamodel.selection,"Selecting items">>.
 
 Vaadin Data Model topic references::
-* <<dummy/../../../framework/datamodel/datamodel-fields.asciidoc,"Editing Values in Fields">>
+* <<dummy/../../../framework/datamodel/datamodel-fields.asciidoc#datamodel.fields,"Editing Values in Fields">>
 * <<dummy/../../../framework/datamodel/datamodel-forms.asciidoc#datamodel.forms,"Binding Data to Forms">>
-* <<dummy/../../../framework/datamodel/datamodel-providers.asciidoc,"Showing Many Items in a Listing">>
-* <<dummy/../../../framework/datamodel/datamodel-selection.asciidoc,"Selecting items">>
+* <<dummy/../../../framework/datamodel/datamodel-providers.asciidoc#datamodel.providers,"Showing Many Items in a Listing">>
+* <<dummy/../../../framework/datamodel/datamodel-selection.asciidoc#datamodel.selection,"Selecting items">>
index 0a351240ab413752c5e234bafb76a264ca48c49c..2aa14dfbb7ddd46e72c56cceaef02cb0ab1212aa 100644 (file)
@@ -125,13 +125,13 @@ Framework 8 no longer uses `Item`, `Property` nor `Container`.
 These building blocks for the old data binding have been deprecated in favor of more Java 8 friendly APIs.
 
 The new data model can be roughly split into three main topics, namely binding data to field components, providing data to listing components and handling selections.
-The revised <<dummy/../../../framework/datamodel/datamodel-fields.asciidoc, "Binding Components to Data">> chapter is the recommended resource to get started with learning these new concepts.
+The revised <<dummy/../../../framework/datamodel/datamodel-fields.asciidoc#datamodel.fields, "Binding Components to Data">> chapter is the recommended resource to get started with learning these new concepts.
 For migration from Framework 7 the key references are the following sections:
 
-* <<dummy/../../../framework/datamodel/datamodel-fields.asciidoc, "Editing Values in Fields">> and <<dummy/../../../framework/datamodel/datamodel-forms.asciidoc, "Binding Data to Forms">>, which cover the new data binding concepts that replace `Property` and `FieldGroup`.
+* <<dummy/../../../framework/datamodel/datamodel-fields.asciidoc#datamodel.fields, "Editing Values in Fields">> and <<dummy/../../../framework/datamodel/datamodel-forms.asciidoc, "Binding Data to Forms">>, which cover the new data binding concepts that replace `Property` and `FieldGroup`.
 
-* <<dummy/../../../framework/datamodel/datamodel-providers.asciidoc, "Showing Many Items in a Listing">>, which covers the new `Container` and `Item` replacement, the `DataProvider`, as well as the associated sorting and filtering APIs.
+* <<dummy/../../../framework/datamodel/datamodel-providers.asciidoc#datamodel.providers, "Showing Many Items in a Listing">>, which covers the new `Container` and `Item` replacement, the `DataProvider`, as well as the associated sorting and filtering APIs.
 
-* And for the new selection APIs,  <<dummy/../../../framework/datamodel/datamodel-selection.asciidoc, "Selecting Items">>.
+* And for the new selection APIs,  <<dummy/../../../framework/datamodel/datamodel-selection.asciidoc#datamodel.selection, "Selecting Items">>.
 
 For a full list of incompatible changes between Framework 7 and 8, please refer to the _Incompatible or Behavior-altering Changes_ section of the release notes, available at link:https://vaadin.com/download/prerelease/8.0/8.0.0/8.0.0.beta1/release-notes.html#incompatible[].