Saltar al contenido principal
Inicio del contenido principal
Methods: Source: Variables:
[All Methods | Documented Methods | Hide Methods] [Display Source | Hide Source] [Show Variables | Hide Variables]

::xotcl::MetaSlot[i] ::xotcl::Attribute

Class Hierarchy of ::xotcl::Attribute

  • ::xotcl::Object[i]
    Meta-class:
    ::xotcl::Class[i]
    Methods for instances:
    __api_make_doc, __api_make_forward_doc, __nextC, __timediff, abstract, ad_doc, ad_forward, ad_proc, appendC, arrayC, asHTML, autonameC, checkC, classC, cleanupC, configureC, contains, copy, db_1rowC, debug, defaultmethod, destroyC, destroy_on_cleanup, evalC, existsC, extractConfigureArg, filterC, filterguardC, filtersearchC, forwardC, hasclass, incrC, infoC, init, instvarC, invarC, isclassC, ismetaclassC, ismixinC, isobjectC, istypeC, lappendC, log, method, mixinC, mixinguardC, move, msg, noinitC, parametercmdC, procC, procsearchC, qn, requireNamespaceC, self, serialize, setC, substC, traceC, unsetC, uplevelC, upvarC, volatileC, vwaitC
    Methods to be applied on the class (in addition to the methods provided by the meta-class):
    __exitHandler, getExitHandler, setExitHandler, unsetExitHandler
    • ::xotcl::Slot[i]
      Meta-class:
      ::xotcl::MetaSlot[i]
      Methods for instances:
      add, assignC, defaultC, defaultmethodsC, delete, domainC, getC, init, initcmdC, managerC, multivaluedC, nameC, per-objectC, typeC, unknown, valuechangedcmdC, valuecmdC
      Methods to be applied on the class:
      Methods provided by the meta-class
      • ::xotcl::Attribute[i]
        Meta-class:
        ::xotcl::MetaSlot[i]
        Methods for instances:
        __default_from_cmd, __value_changed_cmd, __value_from_cmd, check_multiple_values, check_single_value, defaultC, destroy, init, initcmdC, mk_type_checker, value_checkC, valuechangedcmdC, valuecmdC
        Methods to be applied on the class:
        Methods provided by the meta-class

Class Relations

  • superclass: ::xotcl::Slot[i]
  • subclass: ::xo::Attribute[i]
::xotcl::MetaSlot create ::xotcl::Attribute \
     -superclass ::xotcl::Slot

Methods

  • instproc __default_from_cmd

    ::xotcl::Attribute instproc __default_from_cmd {obj cmd var sub op} {
    $obj trace remove variable $var $op [list [self] [self proc] $obj $cmd]
    $obj set $var [$obj eval $cmd]}
  • instproc __value_changed_cmd

    ::xotcl::Attribute instproc __value_changed_cmd {obj cmd var sub op} {
    eval $cmd}
  • instproc __value_from_cmd

    ::xotcl::Attribute instproc __value_from_cmd {obj cmd var sub op} {
    $obj set $var [$obj eval $cmd]}
  • instproc check_multiple_values

    ::xotcl::Attribute instproc check_multiple_values {values predicate type obj var} {
    foreach value $values {
    my check_single_value -keep_old_value false $value $predicate $type $obj $var}
    $obj set __oldvalue($var) $value}
  • instproc check_single_value

    ::xotcl::Attribute instproc check_single_value {{-keep_old_value:boolean true} value predicate type obj var} {
    if {![expr $predicate]} {
    if {[$obj exists __oldvalue($var)]} {
    $obj set $var [$obj set __oldvalue($var)]} else {
    $obj unset -nocomplain $var}
    error "$value is not of type $type"}
    if {$keep_old_value} {$obj set __oldvalue($var) $value}}
  • instproc destroy

    ::xotcl::Attribute instproc destroy {} {
    next}
  • instproc init

    ::xotcl::Attribute instproc init {} {
    my instvar domain name
    next ;# do first ordinary slot initialization
    $domain unset -nocomplain __defaults($name)
    set __initcmd ""
    if {[my exists default]} {
    if {[my per-object] && ![$domain exists $name]} {
    $domain set $name [my default]} elseif {![my per-object]} {
    $domain set __defaults($name) [my default]}} elseif [my exists initcmd] {
    append __initcmd "my trace add variable [list $name] read  \[list [self] __default_from_cmd \[self\] [list [my initcmd]]\]\n"} elseif [my exists valuecmd] {
    append __initcmd "my trace add variable [list $name] read  \[list [self] __value_from_cmd \[self\] [list [my valuecmd]]\]"}
    append __initcmd [my mk_type_checker]
    if {[my exists valuechangedcmd]} {
    append __initcmd "my trace add variable [list $name] write  \[list [self] __value_changed_cmd \[self\] [list [my valuechangedcmd]]\]"}
    if {$__initcmd ne ""} {
    if {[my per-object]} {
    $domain eval $__initcmd} else {
    $domain set __initcmds($name) $__initcmd}}}
  • instproc mk_type_checker

    ::xotcl::Attribute instproc mk_type_checker {} {
    set __initcmd ""
    if {[my exists type]} {
    my instvar type name
    if {[::xotcl::Object isclass $type]} {
    set predicate [subst -nocommands {[::xotcl::Object isobject \$value]
    && [\$value istype $type]}]} elseif {[llength $type]>1} {
    set predicate "\[$type \$value\]"} else {
    set predicate "\[string is $type \$value\]"}
    my append valuechangedcmd [subst {
    my [expr {[my multivalued] ? "check_multiple_values" : "check_single_value"}] \[\$obj set $name\]  {$predicate} [list $type] \$obj $name}]
    append __initcmd [subst -nocommands {
    if {[my exists $name]} {my set __oldvalue($name) [my set $name]}\n}]}
    return $__initcmd}

Instances

::Generic::Form::slot::action[i], ::Generic::Form::slot::add_page_title[i], ::Generic::Form::slot::data[i], ::Generic::Form::slot::edit_page_title[i], ::Generic::Form::slot::fields[i], ::Generic::Form::slot::folder_id[i], ::Generic::Form::slot::html[i], ::Generic::Form::slot::name[i], ::Generic::Form::slot::submit_link[i], ::Generic::Form::slot::validate[i], ::Generic::Form::slot::with_categories[i], ::blocks::BlockPlainWikiForm::slot::f.text[i], ::blocks::BlockWikiForm::slot::f.block_id[i], ::blocks::BlockWikiForm::slot::f.description[i], ::blocks::BlockWikiForm::slot::f.name[i], ::blocks::BlockWikiForm::slot::f.page_order[i], ::blocks::BlockWikiForm::slot::field_list[i], ::blocks::BlockWikiForm::slot::validate[i], ::blocks::BlockWikiForm::slot::with_categories[i], ::learning_content::ContentForm::slot::f.description[i], ::learning_content::ContentForm::slot::f.page_order[i], ::learning_content::ContentForm::slot::field_list[i], ::learning_content::ContentForm::slot::validate[i], ::learning_content::ContentForm::slot::with_categories[i], ::learning_content::ContentTemplateForm::slot::f.name[i], ::learning_content::ContentTemplateForm::slot::field_list[i], ::learning_content::ContentWikiForm::slot::f.description[i], ::learning_content::ContentWikiForm::slot::f.name[i], ::learning_content::ContentWikiForm::slot::f.page_order[i], ::learning_content::ContentWikiForm::slot::f.title[i], ::learning_content::ContentWikiForm::slot::field_list[i], ::learning_content::ContentWikiForm::slot::with_categories[i], ::xo::AsyncHttpRequest::RequestManager::slot::condition[i], ::xo::AsyncHttpRequest::slot::request_manager[i], ::xo::AsyncHttpRequest::slot::timeout[i], ::xo::Attribute::slot::constraint_values[i], ::xo::Attribute::slot::datatype[i], ::xo::Attribute::slot::help_text[i], ::xo::Attribute::slot::pretty_name[i], ::xo::Attribute::slot::pretty_plural[i], ::xo::Attribute::slot::required[i], ::xo::Attribute::slot::spec[i], ::xo::Attribute::slot::validator[i], ::xo::Chat::slot::chat_id[i], ::xo::Chat::slot::encoder[i], ::xo::Chat::slot::mode[i], ::xo::Chat::slot::session_id[i], ::xo::Chat::slot::sweepinterval[i], ::xo::Chat::slot::timewindow[i], ::xo::Chat::slot::user_id[i], ::xo::Cluster::slot::host[i], ::xo::Cluster::slot::port[i], ::xo::ConnectionContext::slot::requestor[i], ::xo::ConnectionContext::slot::url[i], ::xo::ConnectionContext::slot::user[i], ::xo::ConnectionContext::slot::user_id[i], ::xo::Context::slot::actual_query[i], ::xo::Context::slot::locale[i], ::xo::Context::slot::package_id[i], ::xo::Context::slot::parameter_declaration[i], ::xo::HttpCore::slot::content_type[i], ::xo::HttpCore::slot::host[i], ::xo::HttpCore::slot::path[i], ::xo::HttpCore::slot::port[i], ::xo::HttpCore::slot::post_data[i], ::xo::HttpCore::slot::protocol[i], ::xo::HttpCore::slot::request_header_fields[i], ::xo::HttpCore::slot::url[i], ::xo::HttpCore::slot::user_agent[i], ::xo::HttpRequest::slot::timeout[i], ::xo::Localizer::slot::key[i], ::xo::Localizer::slot::type[i], ::xo::Localizer::slot::url[i], ::xo::Message::slot::color[i], ::xo::Message::slot::msg[i], ::xo::Message::slot::time[i], ::xo::Message::slot::user_id[i], ::xo::Package::slot::context[i], ::xo::Package::slot::force_refresh_login[i], ::xo::Package::slot::id[i], ::xo::Package::slot::package_url[i], ::xo::Package::slot::url[i], ::xo::PackageMgr::slot::package_key[i], ::xo::ProtocolHandler::slot::package[i], ::xo::ProtocolHandler::slot::url[i], ::xo::Table::Action::slot::label[i], ::xo::Table::Action::slot::tooltip[i], ::xo::Table::Action::slot::url[i], ::xo::Table::BulkAction::slot::html[i], ::xo::Table::BulkAction::slot::id[i], ::xo::Table::BulkAction::slot::name[i], ::xo::Table::Field::slot::html[i], ::xo::Table::Field::slot::label[i], ::xo::Table::Field::slot::name[i], ::xo::Table::Field::slot::no_csv[i], ::xo::Table::Field::slot::orderby[i], ::xo::Table::Field::slot::richtext[i], ::xo::Table::ImageField::slot::alt[i], ::xo::Table::ImageField::slot::border[i], ::xo::Table::ImageField::slot::height[i], ::xo::Table::ImageField::slot::src[i], ::xo::Table::ImageField::slot::title[i], ::xo::Table::ImageField::slot::width[i], ::xo::Table::ImageField_AddIcon::slot::alt[i], ::xo::Table::ImageField_AddIcon::slot::border[i], ::xo::Table::ImageField_AddIcon::slot::height[i], ::xo::Table::ImageField_AddIcon::slot::src[i], ::xo::Table::ImageField_AddIcon::slot::title[i], ::xo::Table::ImageField_AddIcon::slot::width[i], ::xo::Table::ImageField_DeleteIcon::slot::alt[i], ::xo::Table::ImageField_DeleteIcon::slot::border[i], ::xo::Table::ImageField_DeleteIcon::slot::height[i], ::xo::Table::ImageField_DeleteIcon::slot::src[i], ::xo::Table::ImageField_DeleteIcon::slot::title[i], ::xo::Table::ImageField_DeleteIcon::slot::width[i], ::xo::Table::ImageField_EditIcon::slot::alt[i], ::xo::Table::ImageField_EditIcon::slot::border[i], ::xo::Table::ImageField_EditIcon::slot::height[i], ::xo::Table::ImageField_EditIcon::slot::src[i], ::xo::Table::ImageField_EditIcon::slot::title[i], ::xo::Table::ImageField_EditIcon::slot::width[i], ::xo::Table::ImageField_ViewIcon::slot::alt[i], ::xo::Table::ImageField_ViewIcon::slot::border[i], ::xo::Table::ImageField_ViewIcon::slot::height[i], ::xo::Table::ImageField_ViewIcon::slot::src[i], ::xo::Table::ImageField_ViewIcon::slot::title[i], ::xo::Table::ImageField_ViewIcon::slot::width[i], ::xo::Table::slot::name[i], ::xo::Table::slot::no_data[i], ::xo::Table::slot::renderer[i], ::xo::dav::slot::url[i], ::xo::db::Attribute::slot::column_name[i], ::xo::db::Attribute::slot::create_acs_attribute[i], ::xo::db::Attribute::slot::max_n_values[i], ::xo::db::Attribute::slot::min_n_values[i], ::xo::db::Attribute::slot::references[i], ::xo::db::Attribute::slot::sqltype[i], ::xo::db::Class::slot::abstract_p[i], ::xo::db::Class::slot::auto_save[i], ::xo::db::Class::slot::id_column[i], ::xo::db::Class::slot::name_method[i], ::xo::db::Class::slot::object_type[i], ::xo::db::Class::slot::pretty_name[i], ::xo::db::Class::slot::pretty_plural[i], ::xo::db::Class::slot::security_inherit_p[i], ::xo::db::Class::slot::sql_package_name[i], ::xo::db::Class::slot::supertype[i], ::xo::db::Class::slot::table_name[i], ::xo::db::Class::slot::with_table[i], ::xo::db::CrClass::slot::edit_form[i], ::xo::db::CrClass::slot::folder_id[i], ::xo::db::CrClass::slot::form[i], ::xo::db::CrClass::slot::mime_type[i], ::xo::db::CrClass::slot::storage_type[i], ::xo::db::CrClass::slot::supertype[i], ::xo::db::CrItem::slot::package_id[i], ::xo::db::CrItem::slot::parent_id[i], ::xo::db::CrItem::slot::publish_status[i], ::xo::db::temp_table::slot::name[i], ::xo::db::temp_table::slot::query[i], ::xo::db::temp_table::slot::vars[i], ::xo::ical::VCALENDAR::slot::method[i], ::xo::ical::VCALENDAR::slot::prodid[i], ::xo::ical::VCALENDAR::slot::version[i], ::xo::ical::VCALITEM::slot::creation_date[i], ::xo::ical::VCALITEM::slot::description[i], ::xo::ical::VCALITEM::slot::dtstamp[i], ::xo::ical::VCALITEM::slot::dtstart[i], ::xo::ical::VCALITEM::slot::geo[i], ::xo::ical::VCALITEM::slot::last_modified[i], ::xo::ical::VCALITEM::slot::location[i], ::xo::ical::VCALITEM::slot::priority[i], ::xo::ical::VCALITEM::slot::status[i], ::xo::ical::VCALITEM::slot::summary[i], ::xo::ical::VCALITEM::slot::uid[i], ::xo::ical::VCALITEM::slot::url[i], ::xo::ical::VEVENT::slot::dtend[i], ::xo::ical::VTODO::slot::completed[i], ::xo::ical::VTODO::slot::due[i], ::xo::ical::VTODO::slot::percent-complete[i], ::xo::tdom::Class::slot::autoimport[i], ::xo::tdom::Object::slot::autorender[i], ::xotcl::Object::CopyHandler::slot::dest[i], ::xotcl::Object::CopyHandler::slot::objLength[i], ::xotcl::Object::CopyHandler::slot::targetList[i], ::xotcl::RecreationClass::slot::instreconfigure[i], ::xotcl::RecreationClass::slot::instrecreate[i], ::xotcl::RecreationClass::slot::instreinit[i], ::xotcl::RecreationClass::slot::reconfigure[i], ::xotcl::RecreationClass::slot::reinit[i], ::xotcl::THREAD::Client::slot::server[i], ::xotcl::THREAD::Client::slot::serverobj[i], ::xotcl::THREAD::slot::lightweight[i], ::xotcl::THREAD::slot::persistent[i], ::xotcl::package::slot::autoexport[i], ::xotcl::package::slot::export[i], ::xotcl::package::slot::provide[i], ::xotcl::package::slot::version[i], ::xotcl::serializer::Serializer::slot::ignoreVarsRE[i], ::xotcl::serializer::Serializer::slot::map[i], ::xowiki::ADP_Generator::slot::extra_header_stuff[i], ::xowiki::ADP_Generator::slot::footer[i], ::xowiki::ADP_Generator::slot::master[i], ::xowiki::ADP_Generator::slot::recreate[i], ::xowiki::ADP_Generator::slot::wikicmds[i], ::xowiki::BaseLink::slot::anchor[i], ::xowiki::BaseLink::slot::cssclass[i], ::xowiki::BaseLink::slot::extra_query_parameter[i], ::xowiki::BaseLink::slot::href[i], ::xowiki::BaseLink::slot::label[i], ::xowiki::BaseLink::slot::target[i], ::xowiki::BaseLink::slot::title[i], ::xowiki::CatTree::slot::name[i], ::xowiki::Category::slot::category_id[i], ::xowiki::Category::slot::count[i], ::xowiki::Category::slot::href[i], ::xowiki::Category::slot::label[i], ::xowiki::Category::slot::level[i], ::xowiki::Category::slot::open_requests[i], ::xowiki::Category::slot::package_id[i], ::xowiki::Category::slot::pos[i], ::xowiki::File::slot::mime_type[i], ::xowiki::File::slot::render_adp[i], ::xowiki::FileForm::slot::f.name[i], ::xowiki::FileForm::slot::f.text[i], ::xowiki::FileForm::slot::f.title[i], ::xowiki::FileForm::slot::field_list[i], ::xowiki::FileForm::slot::html[i], ::xowiki::FileForm::slot::validate[i], ::xowiki::Form::slot::mime_type[i], ::xowiki::FormForm::slot::f.form[i], ::xowiki::FormForm::slot::f.form_constraints[i], ::xowiki::FormForm::slot::f.text[i], ::xowiki::FormForm::slot::field_list[i], ::xowiki::FormForm::slot::validate[i], ::xowiki::FormPage::slot::mime_type[i], ::xowiki::Importer::slot::added[i], ::xowiki::Importer::slot::folder_id[i], ::xowiki::Importer::slot::package_id[i], ::xowiki::Importer::slot::replaced[i], ::xowiki::Importer::slot::updated[i], ::xowiki::Importer::slot::user_id[i], ::xowiki::Includelet::slot::__decoration[i], ::xowiki::Includelet::slot::id[i], ::xowiki::Includelet::slot::name[i], ::xowiki::Includelet::slot::parameter_declaration[i], ::xowiki::Includelet::slot::title[i], ::xowiki::IncludeletClass::slot::aggregating[i], ::xowiki::IncludeletClass::slot::cacheable[i], ::xowiki::IncludeletClass::slot::localized[i], ::xowiki::IncludeletClass::slot::personalized[i], ::xowiki::Link::file::slot::align[i], ::xowiki::Link::file::slot::autostart[i], ::xowiki::Link::file::slot::controller[i], ::xowiki::Link::file::slot::controls[i], ::xowiki::Link::file::slot::endtime[i], ::xowiki::Link::file::slot::height[i], ::xowiki::Link::file::slot::hidden[i], ::xowiki::Link::file::slot::href[i], ::xowiki::Link::file::slot::loop[i], ::xowiki::Link::file::slot::mastersound[i], ::xowiki::Link::file::slot::pluginspage[i], ::xowiki::Link::file::slot::pluginurl[i], ::xowiki::Link::file::slot::starttime[i], ::xowiki::Link::file::slot::target[i], ::xowiki::Link::file::slot::volume[i], ::xowiki::Link::file::slot::width[i], ::xowiki::Link::image::slot::border[i], ::xowiki::Link::image::slot::border-width[i], ::xowiki::Link::image::slot::botton[i], ::xowiki::Link::image::slot::center[i], ::xowiki::Link::image::slot::float[i], ::xowiki::Link::image::slot::height[i], ::xowiki::Link::image::slot::href[i], ::xowiki::Link::image::slot::left[i], ::xowiki::Link::image::slot::margin[i], ::xowiki::Link::image::slot::margin-bottom[i], ::xowiki::Link::image::slot::margin-left[i], ::xowiki::Link::image::slot::margin-right[i], ::xowiki::Link::image::slot::margin-top[i], ::xowiki::Link::image::slot::padding[i], ::xowiki::Link::image::slot::padding-bottom[i], ::xowiki::Link::image::slot::padding-left[i], ::xowiki::Link::image::slot::padding-right[i], ::xowiki::Link::image::slot::padding-top[i], ::xowiki::Link::image::slot::position[i], ::xowiki::Link::image::slot::right[i], ::xowiki::Link::image::slot::top[i], ::xowiki::Link::image::slot::width[i], ::xowiki::Link::language::slot::return_only[i], ::xowiki::Link::slot::lang[i], ::xowiki::Link::slot::name[i], ::xowiki::Link::slot::package_id[i], ::xowiki::Link::slot::page[i], ::xowiki::Link::slot::parent_id[i], ::xowiki::Link::slot::stripped_name[i], ::xowiki::Link::slot::type[i], ::xowiki::Link::swf::slot::align[i], ::xowiki::Link::swf::slot::bgcolor[i], ::xowiki::Link::swf::slot::height[i], ::xowiki::Link::swf::slot::loop[i], ::xowiki::Link::swf::slot::menu[i], ::xowiki::Link::swf::slot::play[i], ::xowiki::Link::swf::slot::quality[i], ::xowiki::Link::swf::slot::salign[i], ::xowiki::Link::swf::slot::scale[i], ::xowiki::Link::swf::slot::version[i], ::xowiki::Link::swf::slot::width[i], ::xowiki::Link::swf::slot::wmode[i], ::xowiki::Object::slot::mime_type[i], ::xowiki::ObjectForm::slot::f.text[i], ::xowiki::ObjectForm::slot::with_categories[i], ::xowiki::Package::slot::folder_id[i], ::xowiki::Package::slot::force_refresh_login[i], ::xowiki::Page::slot::absolute_links[i], ::xowiki::Page::slot::do_substitutions[i], ::xowiki::Page::slot::lang[i], ::xowiki::Page::slot::mime_type[i], ::xowiki::Page::slot::render_adp[i], ::xowiki::PageInstance::slot::mime_type[i], ::xowiki::PageInstanceEditForm::slot::f.name[i], ::xowiki::PageInstanceEditForm::slot::f.nls_language[i], ::xowiki::PageInstanceEditForm::slot::f.page_template[i], ::xowiki::PageInstanceEditForm::slot::field_list_bottom[i], ::xowiki::PageInstanceEditForm::slot::field_list_top[i], ::xowiki::PageInstanceEditForm::slot::textfieldspec[i], ::xowiki::PageInstanceEditForm::slot::with_categories[i], ::xowiki::PageInstanceForm::slot::f.page_template[i], ::xowiki::PageInstanceForm::slot::field_list[i], ::xowiki::PageInstanceForm::slot::with_categories[i], ::xowiki::PageTemplate::slot::mime_type[i], ::xowiki::PageTemplate::slot::render_adp[i], ::xowiki::PageTemplateForm::slot::field_list[i], ::xowiki::PlainPage::slot::mime_type[i], ::xowiki::PlainPage::slot::render_adp[i], ::xowiki::PlainWikiForm::slot::f.text[i], ::xowiki::Podcast::slot::author[i], ::xowiki::Podcast::slot::description[i], ::xowiki::Podcast::slot::explicit[i], ::xowiki::Podcast::slot::subtitle[i], ::xowiki::Podcast::slot::summary[i], ::xowiki::PodcastForm::slot::field_list[i], ::xowiki::PodcastForm::slot::html[i], ::xowiki::PodcastForm::slot::validate[i], ::xowiki::PodcastItem::slot::mime_type[i], ::xowiki::RSS-client::channel::slot::root[i], ::xowiki::RSS-client::item::slot::node[i], ::xowiki::RSS-client::slot::url[i], ::xowiki::RSS::slot::css[i], ::xowiki::RSS::slot::days[i], ::xowiki::RSS::slot::description[i], ::xowiki::RSS::slot::entries_of[i], ::xowiki::RSS::slot::language[i], ::xowiki::RSS::slot::maxentries[i], ::xowiki::RSS::slot::name_filter[i], ::xowiki::RSS::slot::siteurl[i], ::xowiki::RSS::slot::title[i], ::xowiki::Timeline::slot::limit[i], ::xowiki::Timeline::slot::user_id[i], ::xowiki::Weblog::slot::category_id[i], ::xowiki::Weblog::slot::compute_summary[i], ::xowiki::Weblog::slot::date[i], ::xowiki::Weblog::slot::entries_of[i], ::xowiki::Weblog::slot::entry_flag[i], ::xowiki::Weblog::slot::entry_label[i], ::xowiki::Weblog::slot::entry_renderer[i], ::xowiki::Weblog::slot::exclude_item_ids[i], ::xowiki::Weblog::slot::filter_msg[i], ::xowiki::Weblog::slot::locale[i], ::xowiki::Weblog::slot::name_filter[i], ::xowiki::Weblog::slot::no_footer[i], ::xowiki::Weblog::slot::package_id[i], ::xowiki::Weblog::slot::page_number[i], ::xowiki::Weblog::slot::page_size[i], ::xowiki::Weblog::slot::ptag[i], ::xowiki::Weblog::slot::sort_composite[i], ::xowiki::Weblog::slot::summary[i], ::xowiki::Weblog::slot::summary_chars[i], ::xowiki::Weblog::slot::tag[i], ::xowiki::WikiForm::slot::autoname[i], ::xowiki::WikiForm::slot::f.creator[i], ::xowiki::WikiForm::slot::f.description[i], ::xowiki::WikiForm::slot::f.item_id[i], ::xowiki::WikiForm::slot::f.name[i], ::xowiki::WikiForm::slot::f.nls_language[i], ::xowiki::WikiForm::slot::f.page_order[i], ::xowiki::WikiForm::slot::f.text[i], ::xowiki::WikiForm::slot::f.title[i], ::xowiki::WikiForm::slot::field_list[i], ::xowiki::WikiForm::slot::folderspec[i], ::xowiki::WikiForm::slot::submit_link[i], ::xowiki::WikiForm::slot::validate[i], ::xowiki::WikiForm::slot::with_categories[i], ::xowiki::XMLSyndication::slot::package_id[i], ::xowiki::formfield::CompoundField::slot::components[i], ::xowiki::formfield::CompoundField::slot::validator[i], ::xowiki::formfield::FormField::slot::CSSclass[i], ::xowiki::formfield::FormField::slot::answer[i], ::xowiki::formfield::FormField::slot::correct_when[i], ::xowiki::formfield::FormField::slot::default[i], ::xowiki::formfield::FormField::slot::disabled[i], ::xowiki::formfield::FormField::slot::display_field[i], ::xowiki::formfield::FormField::slot::error_msg[i], ::xowiki::formfield::FormField::slot::feedback_answer_correct[i], ::xowiki::formfield::FormField::slot::feedback_answer_incorrect[i], ::xowiki::formfield::FormField::slot::form-widget-CSSclass[i], ::xowiki::formfield::FormField::slot::help_text[i], ::xowiki::formfield::FormField::slot::hide_value[i], ::xowiki::formfield::FormField::slot::id[i], ::xowiki::formfield::FormField::slot::inline[i], ::xowiki::formfield::FormField::slot::label[i], ::xowiki::formfield::FormField::slot::locale[i], ::xowiki::formfield::FormField::slot::name[i], ::xowiki::formfield::FormField::slot::object[i], ::xowiki::formfield::FormField::slot::required[i], ::xowiki::formfield::FormField::slot::show_raw_value[i], ::xowiki::formfield::FormField::slot::slot[i], ::xowiki::formfield::FormField::slot::spec[i], ::xowiki::formfield::FormField::slot::style[i], ::xowiki::formfield::FormField::slot::type[i], ::xowiki::formfield::FormField::slot::validator[i], ::xowiki::formfield::FormField::slot::value[i], ::xowiki::formfield::YYYY::slot::maxlength[i], ::xowiki::formfield::YYYY::slot::size[i], ::xowiki::formfield::abstract_page::slot::as_box[i], ::xowiki::formfield::boolean::slot::default[i], ::xowiki::formfield::checkbox::slot::horizontal[i], ::xowiki::formfield::date::slot::display_format[i], ::xowiki::formfield::date::slot::format[i], ::xowiki::formfield::detail_link::slot::link_label[i], ::xowiki::formfield::enumeration::slot::category_tree[i], ::xowiki::formfield::enumeration::slot::options[i], ::xowiki::formfield::event::slot::multiday[i], ::xowiki::formfield::file::slot::link_label[i], ::xowiki::formfield::file::slot::size[i], ::xowiki::formfield::form::slot::height[i], ::xowiki::formfield::form::slot::validator[i], ::xowiki::formfield::form_constraints::slot::rows[i], ::xowiki::formfield::form_constraints::slot::validator[i], ::xowiki::formfield::form_page::slot::form[i], ::xowiki::formfield::form_page::slot::where[i], ::xowiki::formfield::image::slot::border[i], ::xowiki::formfield::image::slot::border-width[i], ::xowiki::formfield::image::slot::botton[i], ::xowiki::formfield::image::slot::cssclass[i], ::xowiki::formfield::image::slot::float[i], ::xowiki::formfield::image::slot::height[i], ::xowiki::formfield::image::slot::href[i], ::xowiki::formfield::image::slot::left[i], ::xowiki::formfield::image::slot::margin[i], ::xowiki::formfield::image::slot::margin-bottom[i], ::xowiki::formfield::image::slot::margin-left[i], ::xowiki::formfield::image::slot::margin-right[i], ::xowiki::formfield::image::slot::margin-top[i], ::xowiki::formfield::image::slot::padding[i], ::xowiki::formfield::image::slot::padding-bottom[i], ::xowiki::formfield::image::slot::padding-left[i], ::xowiki::formfield::image::slot::padding-right[i], ::xowiki::formfield::image::slot::padding-top[i], ::xowiki::formfield::image::slot::position[i], ::xowiki::formfield::image::slot::right[i], ::xowiki::formfield::image::slot::top[i], ::xowiki::formfield::image::slot::width[i], ::xowiki::formfield::image_url::slot::border[i], ::xowiki::formfield::image_url::slot::border-width[i], ::xowiki::formfield::image_url::slot::botton[i], ::xowiki::formfield::image_url::slot::cssclass[i], ::xowiki::formfield::image_url::slot::float[i], ::xowiki::formfield::image_url::slot::height[i], ::xowiki::formfield::image_url::slot::href[i], ::xowiki::formfield::image_url::slot::left[i], ::xowiki::formfield::image_url::slot::margin[i], ::xowiki::formfield::image_url::slot::margin-bottom[i], ::xowiki::formfield::image_url::slot::margin-left[i], ::xowiki::formfield::image_url::slot::margin-right[i], ::xowiki::formfield::image_url::slot::margin-top[i], ::xowiki::formfield::image_url::slot::padding[i], ::xowiki::formfield::image_url::slot::padding-bottom[i], ::xowiki::formfield::image_url::slot::padding-left[i], ::xowiki::formfield::image_url::slot::padding-right[i], ::xowiki::formfield::image_url::slot::padding-top[i], ::xowiki::formfield::image_url::slot::position[i], ::xowiki::formfield::image_url::slot::right[i], ::xowiki::formfield::image_url::slot::top[i], ::xowiki::formfield::image_url::slot::validator[i], ::xowiki::formfield::image_url::slot::width[i], ::xowiki::formfield::label::slot::disableOutputEscaping[i], ::xowiki::formfield::numeric::slot::format[i], ::xowiki::formfield::numeric::slot::validator[i], ::xowiki::formfield::page::slot::glob[i], ::xowiki::formfield::page::slot::type[i], ::xowiki::formfield::page::slot::with_subtypes[i], ::xowiki::formfield::party_id::slot::validator[i], ::xowiki::formfield::radio::slot::horizontal[i], ::xowiki::formfield::richtext::slot::folder_id[i], ::xowiki::formfield::richtext::slot::height[i], ::xowiki::formfield::richtext::slot::plugins[i], ::xowiki::formfield::richtext::slot::script_dir[i], ::xowiki::formfield::richtext::slot::validator[i], ::xowiki::formfield::richtext::slot::width[i], ::xowiki::formfield::richtext::slot::wiki[i], ::xowiki::formfield::richtext::wym::slot::CSSclass[i], ::xowiki::formfield::richtext::wym::slot::editor[i], ::xowiki::formfield::richtext::wym::slot::height[i], ::xowiki::formfield::richtext::wym::slot::plugins[i], ::xowiki::formfield::richtext::wym::slot::skin[i], ::xowiki::formfield::richtext::wym::slot::width[i], ::xowiki::formfield::richtext::xinha::slot::height[i], ::xowiki::formfield::richtext::xinha::slot::javascript[i], ::xowiki::formfield::richtext::xinha::slot::style[i], ::xowiki::formfield::scale::slot::horizontal[i], ::xowiki::formfield::scale::slot::n[i], ::xowiki::formfield::select::slot::multiple[i], ::xowiki::formfield::text::slot::maxlength[i], ::xowiki::formfield::text::slot::size[i], ::xowiki::formfield::textarea::slot::cols[i], ::xowiki::formfield::textarea::slot::rows[i], ::xowiki::formfield::textarea::slot::spell[i], ::xowiki::formfield::url::slot::link_label[i], ::xowiki::includelet::activity-graph::slot::parameter_declaration[i], ::xowiki::includelet::available-includelets::slot::title[i], ::xowiki::includelet::book::slot::__decoration[i], ::xowiki::includelet::book::slot::parameter_declaration[i], ::xowiki::includelet::bookmarklet-button::slot::__decoration[i], ::xowiki::includelet::bookmarklet-button::slot::parameter_declaration[i], ::xowiki::includelet::categories-recent::slot::parameter_declaration[i], ::xowiki::includelet::categories-recent::slot::title[i], ::xowiki::includelet::categories::slot::parameter_declaration[i], ::xowiki::includelet::categories::slot::title[i], ::xowiki::includelet::collab-graph::slot::parameter_declaration[i], ::xowiki::includelet::composite-form::slot::parameter_declaration[i], ::xowiki::includelet::copy-item-button::slot::__decoration[i], ::xowiki::includelet::copy-item-button::slot::parameter_declaration[i], ::xowiki::includelet::copy-item-button::slot::src[i], ::xowiki::includelet::create-item-button::slot::__decoration[i], ::xowiki::includelet::create-item-button::slot::parameter_declaration[i], ::xowiki::includelet::create-item-button::slot::src[i], ::xowiki::includelet::creation-date::slot::__decoration[i], ::xowiki::includelet::creation-date::slot::parameter_declaration[i], ::xowiki::includelet::delete-item-button::slot::__decoration[i], ::xowiki::includelet::delete-item-button::slot::parameter_declaration[i], ::xowiki::includelet::delete-item-button::slot::src[i], ::xowiki::includelet::delicious::slot::__decoration[i], ::xowiki::includelet::delicious::slot::parameter_declaration[i], ::xowiki::includelet::digg::slot::__decoration[i], ::xowiki::includelet::digg::slot::parameter_declaration[i], ::xowiki::includelet::edit-item-button::slot::parameter_declaration[i], ::xowiki::includelet::form-menu-button-answers::slot::method[i], ::xowiki::includelet::form-menu-button-form::slot::method[i], ::xowiki::includelet::form-menu-button-new::slot::method[i], ::xowiki::includelet::form-menu-button::slot::base[i], ::xowiki::includelet::form-menu-button::slot::form[i], ::xowiki::includelet::form-menu-button::slot::label_suffix[i], ::xowiki::includelet::form-menu-button::slot::link[i], ::xowiki::includelet::form-menu-button::slot::method[i], ::xowiki::includelet::form-menu-button::slot::package_id[i], ::xowiki::includelet::form-menu-button::slot::return_url[i], ::xowiki::includelet::form-menu::slot::__decoration[i], ::xowiki::includelet::form-menu::slot::parameter_declaration[i], ::xowiki::includelet::form-usages::slot::__decoration[i], ::xowiki::includelet::form-usages::slot::parameter_declaration[i], ::xowiki::includelet::get::slot::__decoration[i], ::xowiki::includelet::get::slot::parameter_declaration[i], ::xowiki::includelet::graph::slot::__decoration[i], ::xowiki::includelet::iframe::slot::parameter_declaration[i], ::xowiki::includelet::item-button::slot::__decoration[i], ::xowiki::includelet::item-button::slot::return_url[i], ::xowiki::includelet::last-visited::slot::parameter_declaration[i], ::xowiki::includelet::last-visited::slot::title[i], ::xowiki::includelet::most-frequent-visitors::slot::parameter_declaration[i], ::xowiki::includelet::most-frequent-visitors::slot::title[i], ::xowiki::includelet::most-popular::slot::parameter_declaration[i], ::xowiki::includelet::most-popular::slot::title[i], ::xowiki::includelet::my-categories::slot::__decoration[i], ::xowiki::includelet::my-categories::slot::parameter_declaration[i], ::xowiki::includelet::my-general-comments::slot::__decoration[i], ::xowiki::includelet::my-references::slot::__decoration[i], ::xowiki::includelet::my-refers::slot::__decoration[i], ::xowiki::includelet::my-tags::slot::__decoration[i], ::xowiki::includelet::my-tags::slot::id[i], ::xowiki::includelet::my-tags::slot::parameter_declaration[i], ::xowiki::includelet::my-yahoo-publisher::slot::__decoration[i], ::xowiki::includelet::my-yahoo-publisher::slot::parameter_declaration[i], ::xowiki::includelet::presence::slot::__decoration[i], ::xowiki::includelet::presence::slot::parameter_declaration[i], ::xowiki::includelet::recent::slot::parameter_declaration[i], ::xowiki::includelet::recent::slot::title[i], ::xowiki::includelet::rss-button::slot::__decoration[i], ::xowiki::includelet::rss-button::slot::parameter_declaration[i], ::xowiki::includelet::rss-client::slot::parameter_declaration[i], ::xowiki::includelet::rss-client::slot::title[i], ::xowiki::includelet::selection::slot::__decoration[i], ::xowiki::includelet::selection::slot::parameter_declaration[i], ::xowiki::includelet::set-parameter::slot::__decoration[i], ::xowiki::includelet::tags::slot::parameter_declaration[i], ::xowiki::includelet::tags::slot::title[i], ::xowiki::includelet::timeline::slot::parameter_declaration[i], ::xowiki::includelet::toc::slot::__decoration[i], ::xowiki::includelet::toc::slot::id[i], ::xowiki::includelet::toc::slot::parameter_declaration[i], ::xowiki::includelet::unread-items::slot::parameter_declaration[i], ::xowiki::includelet::unread-items::slot::title[i], ::xowiki::includelet::user-timeline::slot::parameter_declaration[i], ::xowiki::includelet::view-item-button::slot::__decoration[i], ::xowiki::includelet::view-item-button::slot::parameter_declaration[i], ::xowiki::includelet::view-item-button::slot::src[i]

Methods: Source: Variables:
[All Methods | Documented Methods | Hide Methods] [Display Source | Hide Source] [Show Variables | Hide Variables]
Mi calendario