1
0
mirror of synced 2025-01-07 09:37:11 +03:00

Fix bug in configurationblock.css destroying simple bullet lists.

This commit is contained in:
Benjamin Eberlei 2011-01-02 11:53:12 +01:00
parent f4e93e7550
commit 721915d61b
2 changed files with 58 additions and 61 deletions

View File

@ -1,9 +1,9 @@
ul.simple div.configuration-block ul.simple
{ {
padding: 5px 0 0 0; padding: 5px 0 0 0;
} }
ul.simple li div.configuration-block ul.simple li
{ {
margin: 0; margin: 0;
margin-right: 5px; margin-right: 5px;

View File

@ -7,7 +7,6 @@ with short explanations on their context and usage.
Index Index
----- -----
- :ref:`@Column <annref_column>` - :ref:`@Column <annref_column>`
- :ref:`@ChangeTrackingPolicy <annref_changetrackingpolicy>` - :ref:`@ChangeTrackingPolicy <annref_changetrackingpolicy>`
- :ref:`@DiscriminatorColumn <annref_discriminatorcolumn>` - :ref:`@DiscriminatorColumn <annref_discriminatorcolumn>`
@ -53,27 +52,31 @@ as part of the lifecycle of the instance variables entity-class.
Required attributes: Required attributes:
- **type**: Name of the Doctrine Type which is converted between PHP
- type - Name of the Doctrine Type which is converted between PHP
and Database representation. and Database representation.
Optional attributes: Optional attributes:
- **name**: By default the property name is used for the database
- name - By default the property name is used for the database
column name also, however the 'name' attribute allows you to column name also, however the 'name' attribute allows you to
determine the column name. determine the column name.
- length - Used by the "string" type to determine its maximum
- **length**: Used by the "string" type to determine its maximum
length in the database. Doctrine does not validate the length of a length in the database. Doctrine does not validate the length of a
string values for you. string values for you.
- precision - The precision for a decimal (exact numeric) column
- **precision**: The precision for a decimal (exact numeric) column
(Applies only for decimal column) (Applies only for decimal column)
- scale - The scale for a decimal (exact numeric) column (Applies
- **scale**: The scale for a decimal (exact numeric) column (Applies
only for decimal column) only for decimal column)
- unique - Boolean value to determine if the value of the column
- **unique**: Boolean value to determine if the value of the column
should be unique across all rows of the underlying entities table. should be unique across all rows of the underlying entities table.
- nullable - Determines if NULL values allowed for this column.
- columnDefinition - DDL SQL snippet that starts after the column - **nullable**: Determines if NULL values allowed for this column.
- **columnDefinition**: DDL SQL snippet that starts after the column
name and specifies the complete (non-portable!) column definition. name and specifies the complete (non-portable!) column definition.
This attribute allows to make use of advanced RMDBS features. This attribute allows to make use of advanced RMDBS features.
However you should make careful use of this feature and the However you should make careful use of this feature and the
@ -146,14 +149,14 @@ actually instantiated as.
Required attributes: Required attributes:
- name - The column name of the discriminator. This name is also - **name**: The column name of the discriminator. This name is also
used during Array hydration as key to specify the class-name. used during Array hydration as key to specify the class-name.
Optional attributes: Optional attributes:
- type - By default this is string. - **type**: By default this is string.
- length - By default this is 255. - **length**: By default this is 255.
.. _annref_discriminatormap: .. _annref_discriminatormap:
@ -192,7 +195,7 @@ the persistence of all classes marked as entity.
Optional attributes: Optional attributes:
- repositoryClass - Specifies the FQCN of a subclass of the - **repositoryClass**: Specifies the FQCN of a subclass of the
Doctrine. Use of repositories for entities is encouraged to keep Doctrine. Use of repositories for entities is encouraged to keep
specialized DQL and SQL operations separated from the Model/Domain specialized DQL and SQL operations separated from the Model/Domain
Layer. Layer.
@ -226,7 +229,7 @@ used as default.
Required attributes: Required attributes:
- strategy - Set the name of the identifier generation strategy. - **strategy**: Set the name of the identifier generation strategy.
Valid values are AUTO, SEQUENCE, TABLE, IDENTITY and NONE. Valid values are AUTO, SEQUENCE, TABLE, IDENTITY and NONE.
Example: Example:
@ -283,8 +286,8 @@ has meaning in the SchemaTool schema generation context.
Required attributes: Required attributes:
- name - Name of the Index - **name**: Name of the Index
- columns - Array of columns. - **columns**: Array of columns.
Example: Example:
@ -377,23 +380,23 @@ inferred from the table and primary key names.
Required attributes: Required attributes:
- name - Column name that holds the foreign key identifier for - **name**: Column name that holds the foreign key identifier for
this relation. In the context of @JoinTable it specifies the column this relation. In the context of @JoinTable it specifies the column
name in the join table. name in the join table.
- referencedColumnName - Name of the primary key identifier that - **referencedColumnName**: Name of the primary key identifier that
is used for joining of this relation. is used for joining of this relation.
Optional attributes: Optional attributes:
- unique - Determines if this relation exclusive between the - **unique**: Determines if this relation exclusive between the
affected entities and should be enforced so on the database affected entities and should be enforced so on the database
constraint level. Defaults to false. constraint level. Defaults to false.
- nullable - Determine if the related entity is required, or if - **nullable**: Determine if the related entity is required, or if
null is an allowed state for the relation. Defaults to true. null is an allowed state for the relation. Defaults to true.
- onDelete - Cascade Action (Database-level) - **onDelete**: Cascade Action (Database-level)
- onUpdate - Cascade Action (Database-level) - **onUpdate**: Cascade Action (Database-level)
- columnDefinition - DDL SQL snippet that starts after the column - **columnDefinition**: DDL SQL snippet that starts after the column
name and specifies the complete (non-portable!) column definition. name and specifies the complete (non-portable!) column definition.
This attribute allows to make use of advanced RMDBS features. Using This attribute allows to make use of advanced RMDBS features. Using
this attribute on @JoinColumn is necessary if you need slightly this attribute on @JoinColumn is necessary if you need slightly
@ -438,18 +441,13 @@ using the affected table and the column names.
Required attributes: Required attributes:
- name - Database name of the join-table - **name**: Database name of the join-table
- joinColumns - An array of @JoinColumn annotations describing the - **joinColumns**: An array of @JoinColumn annotations describing the
join-relation between the owning entities table and the join table. join-relation between the owning entities table and the join table.
- inverseJoinColumns - An array of @JoinColumn annotations - **inverseJoinColumns**: An array of @JoinColumn annotations
describing the join-relation between the inverse entities table and describing the join-relation between the inverse entities table and
the join table. the join table.
Optional attributes:
- schema - Database schema name of this table.
Example: Example:
.. code-block:: php .. code-block:: php
@ -475,15 +473,15 @@ describes a many-to-one relationship between two entities.
Required attributes: Required attributes:
- targetEntity - FQCN of the referenced target entity. Can be the - **targetEntity**: FQCN of the referenced target entity. Can be the
unqualified class name if both classes are in the same namespace. unqualified class name if both classes are in the same namespace.
*IMPORTANT:* No leading backslash! *IMPORTANT:* No leading backslash!
Optional attributes: Optional attributes:
- cascade - Cascade Option - **cascade**: Cascade Option
- fetch - One of LAZY or EAGER - **fetch**: One of LAZY or EAGER
- inversedBy - The inversedBy attribute designates the field in - inversedBy - The inversedBy attribute designates the field in
the entity that is the inverse side of the relationship. the entity that is the inverse side of the relationship.
@ -511,20 +509,20 @@ entities.
Required attributes: Required attributes:
- targetEntity - FQCN of the referenced target entity. Can be the - **targetEntity**: FQCN of the referenced target entity. Can be the
unqualified class name if both classes are in the same namespace. unqualified class name if both classes are in the same namespace.
*IMPORTANT:* No leading backslash! *IMPORTANT:* No leading backslash!
Optional attributes: Optional attributes:
- mappedBy - This option specifies the property name on the - **mappedBy**: This option specifies the property name on the
targetEntity that is the owning side of this relation. Its a targetEntity that is the owning side of this relation. Its a
required attribute for the inverse side of a relationship. required attribute for the inverse side of a relationship.
- inversedBy - The inversedBy attribute designates the field in the - **inversedBy**: The inversedBy attribute designates the field in the
entity that is the inverse side of the relationship. entity that is the inverse side of the relationship.
- cascade - Cascade Option - **cascade**: Cascade Option
- fetch - One of LAZY or EAGER - **fetch**: One of LAZY or EAGER
**NOTE** For ManyToMany bidirectional relationships either side may **NOTE** For ManyToMany bidirectional relationships either side may
be the owning side (the side that defines the @JoinTable and/or be the owning side (the side that defines the @JoinTable and/or
@ -583,19 +581,19 @@ primary key column names apply here too.
Required attributes: Required attributes:
- targetEntity - FQCN of the referenced target entity. Can be the - **targetEntity**: FQCN of the referenced target entity. Can be the
unqualified class name if both classes are in the same namespace. unqualified class name if both classes are in the same namespace.
*IMPORTANT:* No leading backslash! *IMPORTANT:* No leading backslash!
Optional attributes: Optional attributes:
- cascade - Cascade Option - **cascade**: Cascade Option
- fetch - One of LAZY or EAGER - **fetch**: One of LAZY or EAGER
- orphanRemoval - Boolean that specifies if orphans, inverse - **orphanRemoval**: Boolean that specifies if orphans, inverse
OneToOne entities that are not connected to any owning instance, OneToOne entities that are not connected to any owning instance,
should be removed by Doctrine. Defaults to false. should be removed by Doctrine. Defaults to false.
- inversedBy - The inversedBy attribute designates the field in the - **inversedBy**: The inversedBy attribute designates the field in the
entity that is the inverse side of the relationship. entity that is the inverse side of the relationship.
Example: Example:
@ -617,18 +615,18 @@ Example:
Required attributes: Required attributes:
- targetEntity - FQCN of the referenced target entity. Can be the - **targetEntity**: FQCN of the referenced target entity. Can be the
unqualified class name if both classes are in the same namespace. unqualified class name if both classes are in the same namespace.
*IMPORTANT:* No leading backslash! *IMPORTANT:* No leading backslash!
Optional attributes: Optional attributes:
- cascade - Cascade Option - **cascade**: Cascade Option
- orphanRemoval - Boolean that specifies if orphans, inverse - **orphanRemoval**: Boolean that specifies if orphans, inverse
OneToOne entities that are not connected to any owning instance, OneToOne entities that are not connected to any owning instance,
should be removed by Doctrine. Defaults to false. should be removed by Doctrine. Defaults to false.
- mappedBy - This option specifies the property name on the - **mappedBy**: This option specifies the property name on the
targetEntity that is the owning side of this relation. Its a targetEntity that is the owning side of this relation. Its a
required attribute for the inverse side of a relationship. required attribute for the inverse side of a relationship.
@ -747,16 +745,16 @@ the increment size and initial values of the sequence.
Required attributes: Required attributes:
- sequenceName - Name of the sequence - **sequenceName**: Name of the sequence
Optional attributes: Optional attributes:
- allocationSize - Increment the sequence by the allocation size - **allocationSize**: Increment the sequence by the allocation size
when its fetched. A value larger than 1 allows to optimize for when its fetched. A value larger than 1 allows to optimize for
scenarios where you create more than one new entity per request. scenarios where you create more than one new entity per request.
Defaults to 10 Defaults to 10
- initialValue - Where does the sequence start, defaults to 1. - **initialValue**: Where does the sequence start, defaults to 1.
Example: Example:
@ -784,13 +782,13 @@ unqualified classname.
Required attributes: Required attributes:
- name - Name of the table - **name**: Name of the table
Optional attributes: Optional attributes:
- indexes - Array of @Index annotations - **indexes**: Array of @Index annotations
- uniqueConstraints - Array of @UniqueConstraint annotations. - **uniqueConstraints**: Array of @UniqueConstraint annotations.
Example: Example:
@ -820,8 +818,8 @@ context.
Required attributes: Required attributes:
- name - Name of the Index - **name**: Name of the Index
- columns - Array of columns. - **columns**: Array of columns.
Example: Example:
@ -857,4 +855,3 @@ Example:
*/ */
protected $version; protected $version;