aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArtur <artur@vaadin.com>2017-02-21 14:46:46 +0200
committerPekka Hyvönen <pekka@vaadin.com>2017-02-21 14:46:46 +0200
commit22a6a37aa41df3efba4cb29d90392c602389ccd9 (patch)
tree8f0b8e94a72cc835ab00ccb14685789abcdfbdec
parent948b14bd93064e30481ccb23a6197f557a880d5a (diff)
downloadvaadin-framework-22a6a37aa41df3efba4cb29d90392c602389ccd9.tar.gz
vaadin-framework-22a6a37aa41df3efba4cb29d90392c602389ccd9.zip
Remove class names from documentation headers (#8642)
* Remove class names from documentation headers
-rw-r--r--documentation/components/components-button.asciidoc2
-rw-r--r--documentation/components/components-checkbox.asciidoc2
-rw-r--r--documentation/components/components-combobox.asciidoc2
-rw-r--r--documentation/components/components-customcomponent.asciidoc2
-rw-r--r--documentation/components/components-customfield.asciidoc2
-rw-r--r--documentation/components/components-datefield.asciidoc2
-rw-r--r--documentation/components/components-grid.asciidoc2
-rw-r--r--documentation/components/components-label.asciidoc2
-rw-r--r--documentation/components/components-link.asciidoc2
-rw-r--r--documentation/components/components-listselect.asciidoc2
-rw-r--r--documentation/components/components-menubar.asciidoc2
-rw-r--r--documentation/components/components-nativeselect.asciidoc2
-rw-r--r--documentation/components/components-optiongroups.asciidoc2
-rw-r--r--documentation/components/components-passwordfield.asciidoc2
-rw-r--r--documentation/components/components-popupview.asciidoc2
-rw-r--r--documentation/components/components-progressbar.asciidoc2
-rw-r--r--documentation/components/components-richtextarea.asciidoc2
-rw-r--r--documentation/components/components-slider.asciidoc2
-rw-r--r--documentation/components/components-textarea.asciidoc2
-rw-r--r--documentation/components/components-textfield.asciidoc2
-rw-r--r--documentation/components/components-twincolselect.asciidoc2
-rw-r--r--documentation/components/components-upload.asciidoc2
-rw-r--r--documentation/layout/layout-absolutelayout.asciidoc2
-rw-r--r--documentation/layout/layout-accordion.asciidoc2
-rw-r--r--documentation/layout/layout-csslayout.asciidoc2
-rw-r--r--documentation/layout/layout-formlayout.asciidoc2
-rw-r--r--documentation/layout/layout-gridlayout.asciidoc2
-rw-r--r--documentation/layout/layout-orderedlayout.asciidoc2
-rw-r--r--documentation/layout/layout-panel.asciidoc2
-rw-r--r--documentation/layout/layout-splitpanel.asciidoc2
-rw-r--r--documentation/layout/layout-tabsheet.asciidoc2
31 files changed, 31 insertions, 31 deletions
diff --git a/documentation/components/components-button.asciidoc b/documentation/components/components-button.asciidoc
index ec887f8644..0e7ed50215 100644
--- a/documentation/components/components-button.asciidoc
+++ b/documentation/components/components-button.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[components.button]]
-= [classname]#Button#
+= Button
ifdef::web[]
[.sampler]
diff --git a/documentation/components/components-checkbox.asciidoc b/documentation/components/components-checkbox.asciidoc
index 5887dc1094..4e1205be8f 100644
--- a/documentation/components/components-checkbox.asciidoc
+++ b/documentation/components/components-checkbox.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[components.checkbox]]
-= [classname]#CheckBox#
+= CheckBox
ifdef::web[]
[.sampler]
diff --git a/documentation/components/components-combobox.asciidoc b/documentation/components/components-combobox.asciidoc
index 021d8c87a1..e78ea6395d 100644
--- a/documentation/components/components-combobox.asciidoc
+++ b/documentation/components/components-combobox.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[components.combobox]]
-= [classname]#ComboBox#
+= ComboBox
ifdef::web[]
[.sampler]
diff --git a/documentation/components/components-customcomponent.asciidoc b/documentation/components/components-customcomponent.asciidoc
index 7f392885a9..dd5a86b823 100644
--- a/documentation/components/components-customcomponent.asciidoc
+++ b/documentation/components/components-customcomponent.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[components.customcomponent]]
-= Composition with [classname]#CustomComponent#
+= Composition with CustomComponent
The ease of making new user interface components is one of the core features of
Vaadin. Typically, you simply combine existing built-in components to produce
diff --git a/documentation/components/components-customfield.asciidoc b/documentation/components/components-customfield.asciidoc
index 47e291611a..38ac780e8f 100644
--- a/documentation/components/components-customfield.asciidoc
+++ b/documentation/components/components-customfield.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[components.customfield]]
-= Composite Fields with [classname]#CustomField#
+= Composite Fields with CustomField
The [classname]#CustomField# is a way to create composite components as with [classname]#CustomComponent#, except that it implements the [interfacename]#Field# interface and inherits [classname]#AbstractField#, described in <<dummy/../../../framework/components/components-fields#components.fields,"Field Components">>.
A field allows editing a property value in the data model, and can be bound to data with [classname]#Binder#, as described in <<dummy/../../../framework/datamodel/datamodel-forms#datamodel.forms, "Binding Data to Forms">>.
diff --git a/documentation/components/components-datefield.asciidoc b/documentation/components/components-datefield.asciidoc
index a5aae85a1f..3cbba0588f 100644
--- a/documentation/components/components-datefield.asciidoc
+++ b/documentation/components/components-datefield.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[components.datefield]]
-= Date Input with [classname]#DateField#
+= Date Input with DateField
ifdef::web[]
[.sampler]
diff --git a/documentation/components/components-grid.asciidoc b/documentation/components/components-grid.asciidoc
index 52d2301a46..ed118ef726 100644
--- a/documentation/components/components-grid.asciidoc
+++ b/documentation/components/components-grid.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[components.grid]]
-= [classname]#Grid#
+= Grid
ifdef::web[]
[.sampler]
diff --git a/documentation/components/components-label.asciidoc b/documentation/components/components-label.asciidoc
index 71efc6bf9e..3f305726d4 100644
--- a/documentation/components/components-label.asciidoc
+++ b/documentation/components/components-label.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[components.label]]
-= [classname]#Label#
+= Label
ifdef::web[]
[.sampler]
diff --git a/documentation/components/components-link.asciidoc b/documentation/components/components-link.asciidoc
index de5ff4617d..5f2a3a153c 100644
--- a/documentation/components/components-link.asciidoc
+++ b/documentation/components/components-link.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[components.link]]
-= [classname]#Link#
+= Link
ifdef::web[]
[.sampler]
diff --git a/documentation/components/components-listselect.asciidoc b/documentation/components/components-listselect.asciidoc
index 4573f77c97..e57d028800 100644
--- a/documentation/components/components-listselect.asciidoc
+++ b/documentation/components/components-listselect.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[components.listselect]]
-= [classname]#ListSelect#
+= ListSelect
ifdef::web[]
[.sampler]
diff --git a/documentation/components/components-menubar.asciidoc b/documentation/components/components-menubar.asciidoc
index 921116909b..be3548012f 100644
--- a/documentation/components/components-menubar.asciidoc
+++ b/documentation/components/components-menubar.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[components.menubar]]
-= [classname]#MenuBar#
+= MenuBar
ifdef::web[]
[.sampler]
diff --git a/documentation/components/components-nativeselect.asciidoc b/documentation/components/components-nativeselect.asciidoc
index d7897bf513..116f175af5 100644
--- a/documentation/components/components-nativeselect.asciidoc
+++ b/documentation/components/components-nativeselect.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[components.nativeselect]]
-= [classname]#NativeSelect#
+= NativeSelect
ifdef::web[]
[.sampler]
diff --git a/documentation/components/components-optiongroups.asciidoc b/documentation/components/components-optiongroups.asciidoc
index f0e420c375..dbb8647234 100644
--- a/documentation/components/components-optiongroups.asciidoc
+++ b/documentation/components/components-optiongroups.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[components.optiongroups]]
-= [classname]#CheckBoxGroup# and [classname]#RadioButtonGroup#
+= CheckBoxGroup and RadioButtonGroup
ifdef::web[]
[.sampler]
diff --git a/documentation/components/components-passwordfield.asciidoc b/documentation/components/components-passwordfield.asciidoc
index ddc61439a5..d1c18b1605 100644
--- a/documentation/components/components-passwordfield.asciidoc
+++ b/documentation/components/components-passwordfield.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[components.passwordfield]]
-= [classname]#PasswordField#
+= PasswordField
ifdef::web[]
[.sampler]
diff --git a/documentation/components/components-popupview.asciidoc b/documentation/components/components-popupview.asciidoc
index 32807e3e87..a1296ad14d 100644
--- a/documentation/components/components-popupview.asciidoc
+++ b/documentation/components/components-popupview.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[components.popupview]]
-= [classname]#PopupView#
+= PopupView
ifdef::web[]
[.sampler]
diff --git a/documentation/components/components-progressbar.asciidoc b/documentation/components/components-progressbar.asciidoc
index 753dd0f735..3d300d241e 100644
--- a/documentation/components/components-progressbar.asciidoc
+++ b/documentation/components/components-progressbar.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[components.progressbar]]
-= [classname]#ProgressBar#
+= ProgressBar
ifdef::web[]
[.sampler]
diff --git a/documentation/components/components-richtextarea.asciidoc b/documentation/components/components-richtextarea.asciidoc
index 6b72759456..9dd97bfb85 100644
--- a/documentation/components/components-richtextarea.asciidoc
+++ b/documentation/components/components-richtextarea.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[components.richtextarea]]
-= [classname]#RichTextArea#
+= RichTextArea
ifdef::web[]
[.sampler]
diff --git a/documentation/components/components-slider.asciidoc b/documentation/components/components-slider.asciidoc
index ea35c538a5..9b447f27fe 100644
--- a/documentation/components/components-slider.asciidoc
+++ b/documentation/components/components-slider.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[components.slider]]
-= [classname]#Slider#
+= Slider
ifdef::web[]
[.sampler]
diff --git a/documentation/components/components-textarea.asciidoc b/documentation/components/components-textarea.asciidoc
index 9329f38d16..d982117253 100644
--- a/documentation/components/components-textarea.asciidoc
+++ b/documentation/components/components-textarea.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[components.textarea]]
-= [classname]#TextArea#
+= TextArea
ifdef::web[]
[.sampler]
diff --git a/documentation/components/components-textfield.asciidoc b/documentation/components/components-textfield.asciidoc
index 34ec9d05a0..a14dedb548 100644
--- a/documentation/components/components-textfield.asciidoc
+++ b/documentation/components/components-textfield.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[components.textfield]]
-= [classname]#TextField#
+= TextField
ifdef::web[]
[.sampler]
diff --git a/documentation/components/components-twincolselect.asciidoc b/documentation/components/components-twincolselect.asciidoc
index 29945b4053..66c2428f16 100644
--- a/documentation/components/components-twincolselect.asciidoc
+++ b/documentation/components/components-twincolselect.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[components.twincolselect]]
-= [classname]#TwinColSelect#
+= TwinColSelect
ifdef::web[]
[.sampler]
diff --git a/documentation/components/components-upload.asciidoc b/documentation/components/components-upload.asciidoc
index 5be4c5fbba..8288bd2bc1 100644
--- a/documentation/components/components-upload.asciidoc
+++ b/documentation/components/components-upload.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[components.upload]]
-= [classname]#Upload#
+= Upload
ifdef::web[]
[.sampler]
diff --git a/documentation/layout/layout-absolutelayout.asciidoc b/documentation/layout/layout-absolutelayout.asciidoc
index 14613ec1c2..cb719b7114 100644
--- a/documentation/layout/layout-absolutelayout.asciidoc
+++ b/documentation/layout/layout-absolutelayout.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[layout.absolutelayout]]
-= [classname]#AbsoluteLayout#
+= AbsoluteLayout
ifdef::web[]
[.sampler]
diff --git a/documentation/layout/layout-accordion.asciidoc b/documentation/layout/layout-accordion.asciidoc
index b84ccf4100..737f25082f 100644
--- a/documentation/layout/layout-accordion.asciidoc
+++ b/documentation/layout/layout-accordion.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[layout.accordion]]
-= [classname]#Accordion#
+= Accordion
ifdef::web[]
[.sampler]
diff --git a/documentation/layout/layout-csslayout.asciidoc b/documentation/layout/layout-csslayout.asciidoc
index 8be6fbeea3..d6a50157ce 100644
--- a/documentation/layout/layout-csslayout.asciidoc
+++ b/documentation/layout/layout-csslayout.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[layout.csslayout]]
-= [classname]#CssLayout#
+= CssLayout
ifdef::web[]
[.sampler]
diff --git a/documentation/layout/layout-formlayout.asciidoc b/documentation/layout/layout-formlayout.asciidoc
index a74e69e64b..dc56bfd5d6 100644
--- a/documentation/layout/layout-formlayout.asciidoc
+++ b/documentation/layout/layout-formlayout.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[layout.formlayout]]
-= [classname]#FormLayout#
+= FormLayout
ifdef::web[]
[.sampler]
diff --git a/documentation/layout/layout-gridlayout.asciidoc b/documentation/layout/layout-gridlayout.asciidoc
index fbd45fad98..a1b3c4f798 100644
--- a/documentation/layout/layout-gridlayout.asciidoc
+++ b/documentation/layout/layout-gridlayout.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[layout.gridlayout]]
-= [classname]#GridLayout#
+= GridLayout
ifdef::web[]
[.sampler]
diff --git a/documentation/layout/layout-orderedlayout.asciidoc b/documentation/layout/layout-orderedlayout.asciidoc
index 13fc82ad41..b937042ccc 100644
--- a/documentation/layout/layout-orderedlayout.asciidoc
+++ b/documentation/layout/layout-orderedlayout.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[layout.orderedlayout]]
-= [classname]#VerticalLayout# and [classname]#HorizontalLayout#
+= VerticalLayout and HorizontalLayout
[classname]#VerticalLayout# and [classname]#HorizontalLayout# are ordered
layouts for laying components out either vertically or horizontally,
diff --git a/documentation/layout/layout-panel.asciidoc b/documentation/layout/layout-panel.asciidoc
index 72621a578c..6fb4188780 100644
--- a/documentation/layout/layout-panel.asciidoc
+++ b/documentation/layout/layout-panel.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[layout.panel]]
-= [classname]#Panel#
+= Panel
ifdef::web[]
[.sampler]
diff --git a/documentation/layout/layout-splitpanel.asciidoc b/documentation/layout/layout-splitpanel.asciidoc
index 9d16392e82..0b9db3980e 100644
--- a/documentation/layout/layout-splitpanel.asciidoc
+++ b/documentation/layout/layout-splitpanel.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[layout.splitpanel]]
-= [classname]#HorizontalSplitPanel# and [classname]#VerticalSplitPanel#
+= HorizontalSplitPanel and VerticalSplitPanel
ifdef::web[]
[.sampler]
diff --git a/documentation/layout/layout-tabsheet.asciidoc b/documentation/layout/layout-tabsheet.asciidoc
index 30d12d6172..2eed4ad8a9 100644
--- a/documentation/layout/layout-tabsheet.asciidoc
+++ b/documentation/layout/layout-tabsheet.asciidoc
@@ -5,7 +5,7 @@ layout: page
---
[[layout.tabsheet]]
-= [classname]#TabSheet#
+= TabSheet
ifdef::web[]
[.sampler]