From: alex <bin...@li...> - 2001-09-25 20:01:25
|
alex Tue Sep 25 13:01:19 2001 EDT Modified files: /r2/binarycloud/docs/specs/xml EntityDefinition.php EntityDefinition.php.xml Log: Added encrypt and entity description to defs Index: r2/binarycloud/docs/specs/xml/EntityDefinition.php diff -u r2/binarycloud/docs/specs/xml/EntityDefinition.php:1.1 r2/binarycloud/docs/specs/xml/EntityDefinition.php:1.2 --- r2/binarycloud/docs/specs/xml/EntityDefinition.php:1.1 Sun Sep 23 17:18:57 2001 +++ r2/binarycloud/docs/specs/xml/EntityDefinition.php Tue Sep 25 13:01:19 2001 @@ -26,7 +26,8 @@ 'default' => '0', 'notnull' => '1', 'type' => 'int', - 'maxlength' => '20', + 'maxlength' => '20', + 'encrypt' => 'true', 'processors' => array( array( 'name' => 'EncodeEntitiesProcessor', Index: r2/binarycloud/docs/specs/xml/EntityDefinition.php.xml diff -u r2/binarycloud/docs/specs/xml/EntityDefinition.php.xml:1.2 r2/binarycloud/docs/specs/xml/EntityDefinition.php.xml:1.3 --- r2/binarycloud/docs/specs/xml/EntityDefinition.php.xml:1.2 Sat Sep 8 23:54:25 2001 +++ r2/binarycloud/docs/specs/xml/EntityDefinition.php.xml Tue Sep 25 13:01:19 2001 @@ -13,6 +13,12 @@ --> <entity:name>furbees</entity:name> + + <!-- + A description of the entity. + --> + <entity:desc>This is an example entity used for development.</entity:desc> + <!-- the manager which should be imported by EntityManager. the role of an individual Entity Manager is to check @@ -87,6 +93,12 @@ <type>int</type> <!-- the maximum number of chars allowed in input fields and posts --> <maxlength>20</maxlength> + <!-- + is this field encrypted? + 'true' encrypts all database i/o through a custom addition to metabase + this tag can be safely omitted + --> + <encrypt>true</encrypt> <!-- Processors are classes which will condition the input somehow. |