Changeset 12797

Show
Ignore:
Timestamp:
10/13/07 02:01:58 (1 year ago)
Author:
solt
Message:

minor fixes, version bump

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/midcom/midgard.admin.asgard/config/manifest.inc

    r12742 r12797  
    11'name' => 'midgard.admin.asgard', 
    22'purecode' => true, 
    3 'version' => '2.0.0beta1', 
     3'version' => '2.0.1beta1', 
    44'state' => 'devel', 
    55'privileges' => array 
  • trunk/midcom/midgard.admin.asgard/documentation/CHANGES

    r11332 r12797  
    88  which might even break existing functionality. 
    99- All items marked with "+" represent completly new features. 
     102007-10-12 solt 
     11  + More styling 
     12  + Added interface for plugin navigation 
     13  + Fixed help on objects reading 
    1014 
    11152007-07-24 bergie 
  • trunk/midcom/midgard.admin.asgard/documentation/asgard_midgard_topic.en.txt

    r11209 r12797  
    1 topic to taki topic 
     1Topic is a core Midgard type. It is usualy used for storing content in similar to folders way. 
  • trunk/midcom/midgard.admin.asgard/handler/type.php

    r12792 r12797  
    111111        $midcom_dba_classname = $_MIDCOM->dbclassloader->get_midcom_class_name_for_mgdschema_object($dummy); 
    112112        $component = $_MIDCOM->dbclassloader->_mgdschema_class_handler[$midcom_dba_classname]; 
     113        $help_component; 
    113114        if ( $component == 'midcom') 
    114115        { 
    115116            $component = 'midgard'; 
     117            $help_component = 'midgard.admin.asgard'; 
    116118        } 
    117119 
    118120        $help = new midcom_admin_help_help(); 
    119         $data['help'] =  $help->get_help_contents('asgard_'.$this->type, $component); 
     121        $data['help'] =  $help->get_help_contents('asgard_'.$this->type, $help_component); 
    120122        $data['component'] =  $component; 
    121123        $data['type'] = $this->type;