Changeset 12014

Show
Ignore:
Timestamp:
09/04/07 20:26:16 (1 year ago)
Author:
flack
Message:

replaces all occurences of datamanger by datamanager

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/midcom/midcom.core/midcom/baseclasses/components/request_admin.php

    r11910 r12014  
    1919 * toolbars available to the user. 
    2020 * 
    21  * <b>Custom Handler: Datamanger driven component configuration</b> 
     21 * <b>Custom Handler: Datamanager driven component configuration</b> 
    2222 * 
    2323 * It defines a handler that can be used for Datamanager driven configuration. It requires 
     
    151151    /** 
    152152     * Helper function that prepares a datamanager instance for the config_dm handler. 
    153      * You can override this function to influence the way the datamanger is initialized, 
     153     * You can override this function to influence the way the datamanager is initialized, 
    154154     * for example to modify the schema after it has been loaded. 
    155155     * 
     
    266266 
    267267    /** 
    268      * Event handler, called before the configuration datamanger is created. Use this to 
     268     * Event handler, called before the configuration datamanager is created. Use this to 
    269269     * prepare anything that is required to start up the Datamanager. 
    270270     * 
  • trunk/midcom/midcom.core/midcom/core/handler/configdm.php

    r5041 r12014  
    99 
    1010/** 
    11  * Handler for Datamanger driven component configuration 
     11 * Handler for Datamanager driven component configuration 
    1212 * 
    1313 * It defines a handler that can be used for Datamanager driven configuration. It requires 
     
    9292    /** 
    9393     * Helper function that prepares a datamanager instance for the configdm handler. 
    94      * You can override this function to influence the way the datamanger is initialized, 
     94     * You can override this function to influence the way the datamanager is initialized, 
    9595     * for example to modify the schema after it has been loaded. 
    9696     * 
     
    236236 
    237237    /** 
    238      * Event handler, called before the configuration datamanger is created. Use this to 
     238     * Event handler, called before the configuration datamanager is created. Use this to 
    239239     * prepare anything that is required to start up the Datamanager. 
    240240     * 
  • trunk/midcom/midcom.core/midcom/exec/config-test.php

    r11907 r12014  
    370370// HTML_Quickform for Datamanager validation support 
    371371println_check_for_include_file('HTML/QuickForm/RuleRegistry.php', 'PEAR Package: HTML_QuickForm', 
    372     WARNING, 'The HTML_QuickForm pacakge is required for the Datamanger Form Validation code. If you use more then is_empty checks you should install it.'); 
     372    WARNING, 'The HTML_QuickForm pacakge is required for the Datamanager Form Validation code. If you use more then is_empty checks you should install it.'); 
    373373 
    374374// HTML_Treemenu 
  • trunk/midcom/midcom.core/midcom/helper/mailtemplate.php

    r11907 r12014  
    137137     
    138138    /** 
    139      * The Mail template, a mailtemplate datamanger type. 
     139     * The Mail template, a mailtemplate datamanager type. 
    140140     *  
    141141     * @var Array 
     
    317317             * Datamanager notes: Currently the get_csv interface to get a string 
    318318             * representation of a given datatype. Should be ok for now, at least 
    319              * until the Datamanger v3 arrives. 
     319             * until the Datamanager v3 arrives. 
    320320             * 
    321321             * Note, that all key's will be compared case-insensitive. 
  • trunk/midcom/midcom.helper.datamanager/datamanager.php

    r11972 r12014  
    8989 * 
    9090 * The save_text and cancel_text values will be used as labels for the save and cancel 
    91  * buttons in the datamanger. They are translated using the rules outlined above. 
     91 * buttons in the datamanager. They are translated using the rules outlined above. 
    9292 * 
    9393 * <pre> 
     
    112112 * 
    113113 * &lt;object identifier&gt; ::= Any valid PHP class name in the namespace of the 
    114  *   Datamanger. (See above-) 
     114 *   Datamanager. (See above-) 
    115115 * &lt;storage name&gt; ::=   'parameter' | 'config' | 'attachment' 
    116116 *                    | &lt;storage object member name&gt; 
     
    131131 * datatypes) do not allow you a choice of where to store your data. 
    132132 * 
    133  * Note also, that the Datamanger adds another entry into this array internally: 
     133 * Note also, that the Datamanager adds another entry into this array internally: 
    134134 * 
    135135 * <pre> 
     
    144144 * generators. Hidden fields are ignored completly, nothing will be displayed 
    145145 * either in view- or in form-mode. Readonly fields are displayed in both views, 
    146  * but instead of drawing the widget in form-mode, the datamanger draws the 
     146 * but instead of drawing the widget in form-mode, the datamanager draws the 
    147147 * regular view there. Both fields default to FALSE. 
    148148 * 
     
    247247 * <b>Object destruction:</b> 
    248248 * 
    249  * Due to the complex nature of the Datamanger's object hierarchy, PHP cannot 
     249 * Due to the complex nature of the Datamanager's object hierarchy, PHP cannot 
    250250 * reliably garbage collect Datamanager instances (it fails to resolve the cyclic 
    251251 * references between the datamanager class, its datatypes and the widgets). Therefore 
    252  * you have to call the destroy method every time you do no longer need a datamanger 
     252 * you have to call the destroy method every time you do no longer need a datamanager 
    253253 * instance. Only then you can safely let a datamanager reference out of scope. 
    254254 * It will destroy all datatypes and widgets and clears all internal references. 
     
    15061506     * This is a small version of the display_view method above for use outside of 
    15071507     * the datamanager. It calls the draw_view method of the corresponding widget 
    1508      * which essentially renders the data in the datamangers default view 
     1508     * which essentially renders the data in the datamanagers default view 
    15091509     * representation. It does not display an headings or the like, so it can be 
    15101510     * easily used to created custom database applications without having to 
     
    21302130            if ($user->parameter("Interface","Power_User") == "YES") { 
    21312131 
    2132                 debug_add("DATAMANGER: Cleared lock due to poweruser privileges"); 
     2132                debug_add("DATAMANAGER: Cleared lock due to poweruser privileges"); 
    21332133                $this->_lock = false; 
    21342134                return $this->_storage->parameter("midcom.helper.datamanager", "lock", ""); 
  • trunk/midcom/midcom.helper.datamanager/datatype.php

    r11359 r12014  
    1212 * The DATATYPE concept is the main interface between the data stored 
    1313 * at a Midgard Object, the Widget that displays the Data and the  
    14  * Datamanger core class. 
     14 * Datamanager core class. 
    1515 *  
    1616 * It does: 
     
    2222 * - Provide good configuration defaults. 
    2323 *   
    24  * This is the cornerstone of the Datamanger Design. Though the  
    25  * Datamanger knows how to use Widgets, the DATATYPE is the instance  
     24 * This is the cornerstone of the Datamanager Design. Though the  
     25 * Datamanager knows how to use Widgets, the DATATYPE is the instance  
    2626 * actually responsible for createion, configuration of and  
    2727 * data synchronization with the widget. 
     
    145145    /** 
    146146     * The constructor populates the internal members with a reference to the 
    147      * datamanger we belong to, a reference of the Midgard Object we must use 
     147     * datamanager we belong to, a reference of the Midgard Object we must use 
    148148     * for storage and the definition of the field we use. 
    149149     *  
     
    275275     * It will not synchronize the datatype's data with the widget. This has 
    276276     * to be done manually using sync_data_with_widget, which is what the 
    277      * Datamanger core does when neccessary. 
     277     * Datamanager core does when neccessary. 
    278278     *  
    279279     * This member should make no changes to the storage object in memory that cannot 
     
    282282     * valid. if not, the in-memory object must be reverted. 
    283283     *  
    284      * @return int Any valid returncode from midcom_helper_datamanger::process_form(). 
     284     * @return int Any valid returncode from midcom_helper_datamanager::process_form(). 
    285285     */ 
    286286    function save_to_storage ()  
     
    571571    /** 
    572572     * This function destroys the Widget so that the type can be destroyed 
    573      * as well. This is usually only called by the Datamanger main class. 
     573     * as well. This is usually only called by the Datamanager main class. 
    574574     */ 
    575575    function destroy() 
  • trunk/midcom/midcom.helper.datamanager/widget.php

    r11907 r12014  
    141141    /** 
    142142     * The constructor populates the internal members with a reference to the 
    143      * datamanger we belong to, the definition of the field we use and the 
     143     * datamanager we belong to, the definition of the field we use and the 
    144144     * default value we should use to initialize the widget's data. 
    145145     * 
  • trunk/midcom/midcom.helper.datamanager/widget_html.php

    r11907 r12014  
    322322     * 
    323323     * - /$GLOBALS['midcom_config']['midcom_sgconfig_basedir']/midcom.helper.datamanager.widget_html/config 
    324      * - file:/midcom/helper/datamanager/config/midcom.helper.datamanger.widget_html 
     324     * - file:/midcom/helper/datamanager/config/midcom.helper.datamanager.widget_html 
    325325     * - local fallback default configuration 
    326326     * 
     
    341341            eval ('?>' . mgd_preparse($snippet->code)); 
    342342        } 
    343         else if ( file_exists(MIDCOM_ROOT . '/midcom/helper/datamanager/config/midcom.helper.datamanger.widget_html') ) 
    344         { 
    345             $code = file_get_contents(MIDCOM_ROOT . '/midcom/helper/datamanager/config/midcom.helper.datamanger.widget_html'); 
     343        else if ( file_exists(MIDCOM_ROOT . '/midcom/helper/datamanager/config/midcom.helper.datamanager.widget_html') ) 
     344        { 
     345            $code = file_get_contents(MIDCOM_ROOT . '/midcom/helper/datamanager/config/midcom.helper.datamanager.widget_html'); 
    346346            if ($code) 
    347347            { 
     
    351351        else 
    352352        { 
    353             $file = MIDCOM_ROOT . 'lib/midcom/helper/datamanager/config/midcom.helper.datamanger.widget_html'; 
     353            $file = MIDCOM_ROOT . 'lib/midcom/helper/datamanager/config/midcom.helper.datamanager.widget_html'; 
    354354            $result = <<<EOF 
    355355// FIELD {$this->_fieldname} HTMLAREA init script START 
  • trunk/midcom/midcom.helper.datamanager2/type/tags.php

    r10973 r12014  
    1212 
    1313/** 
    14  * Datamanger 2 tag datatype. The text value encapsulated by this type is 
     14 * Datamanager 2 tag datatype. The text value encapsulated by this type is 
    1515 * passed to the net.nemein.tag library and corresponding tag objects and 
    1616 * relations will be handled there. 
  • trunk/midcom/midcom.helper.datamanager2/type/tagselect.php

    r11400 r12014  
    1212 
    1313/** 
    14  * Datamanger 2 tag datatype. The values encapsulated by this type are 
     14 * Datamanager 2 tag datatype. The values encapsulated by this type are 
    1515 * passed to the net.nemein.tag library and corresponding tag objects and 
    1616 * relations will be handled there or to callback functions if set. 
  • trunk/midcom/midcom.helper.dm2config/midcom/interfaces.php

    r11702 r12014  
    99 
    1010/** 
    11  * Datamanger 2 Component Interface Class. This is a pure code library. 
     11 * Datamanager 2 Component Interface Class. This is a pure code library. 
    1212 * 
    1313 * @package midcom.helper.datamanager2 
  • trunk/midcom/midcom.helper.imagepopup/static/functions.js

    r6177 r12014  
    1010{ 
    1111    // We convert the image "size lists" into the addition clickers 
    12     imageRows = document.getElementsByClassName('midcom_helper_datamanger2_widget_images_image'); 
     12    imageRows = document.getElementsByClassName('midcom_helper_datamanager2_widget_images_image'); 
    1313    if (imageRows) 
    1414    { 
     
    6565{ 
    6666    // We convert the image "size lists" into the addition clickers 
    67     imageRows = document.getElementsByClassName('midcom_helper_datamanger2_widget_downloads_download'); 
     67    imageRows = document.getElementsByClassName('midcom_helper_datamanager2_widget_downloads_download'); 
    6868    if (imageRows) 
    6969    { 
  • trunk/midcom/net.nehmer.blog/handler/archive.php

    r11666 r12014  
    3939     * The datamanager for the currently displayed article. 
    4040     * 
    41      * @var midcom_helper_datamanger2_datamanager 
     41     * @var midcom_helper_datamanager2_datamanager 
    4242     */ 
    4343    var $_datamanager = null; 
  • trunk/midcom/net.nehmer.blog/handler/feed.php

    r11821 r12014  
    3737     * The datamanager for the currently displayed article. 
    3838     * 
    39      * @var midcom_helper_datamanger2_datamanager 
     39     * @var midcom_helper_datamanager2_datamanager 
    4040     */ 
    4141    var $_datamanager = null; 
  • trunk/midcom/net.nehmer.blog/handler/index.php

    r11986 r12014  
    3737     * The datamanager for the currently displayed article. 
    3838     * 
    39      * @var midcom_helper_datamanger2_datamanager 
     39     * @var midcom_helper_datamanager2_datamanager 
    4040     */ 
    4141    var $_datamanager = null; 
  • trunk/midcom/net.nehmer.blog/locale/default.en.txt

    r11833 r12014  
    197197 
    198198---STRING public posting schema 
    199 Datamanger schema to use for public posting 
     199Datamanager schema to use for public posting 
    200200---STRINGEND 
    201201 
  • trunk/midcom/net.nehmer.blog/midcom/interfaces.php

    r11885 r12014  
    5555 
    5656    /** 
    57      * Iterate over all articles and create index record using the datamanger indexer 
     57     * Iterate over all articles and create index record using the datamanager indexer 
    5858     * method. 
    5959     */ 
  • trunk/midcom/net.nehmer.branchenbuch/midcom/interfaces.php

    r11913 r12014  
    7979 
    8080    /** 
    81      * Iterate over all entries and create an index record using the datamanger2 indexer 
     81     * Iterate over all entries and create an index record using the datamanager2 indexer 
    8282     * method. We reuse the same DM2 instance. We use the set branchen to limit the number 
    8383     * of objects we look at simultaneously. 
  • trunk/midcom/net.nehmer.comments/handler/view.php

    r12003 r12014  
    223223        if (! $this->_display_datamanager) 
    224224        { 
    225             $_MIDCOM->generate_error(MIDCOM_ERRCRIT, 'Failed to create a DM2 instance (display_datamanger).'); 
     225            $_MIDCOM->generate_error(MIDCOM_ERRCRIT, 'Failed to create a DM2 instance (display_datamanager).'); 
    226226            // This will exit. 
    227227        } 
  • trunk/midcom/net.nehmer.jobmarket/midcom/interfaces.php

    r11912 r12014  
    8686 
    8787    /** 
    88      * Iterate over all entries and create an index record using the datamanger2 indexer 
     88     * Iterate over all entries and create an index record using the datamanager2 indexer 
    8989     * method. We reuse the same DM2 instance. We use the set branchen to limit the number 
    9090     * of objects we look at simultaneously. 
  • trunk/midcom/net.nehmer.publications/handler/archive.php

    r3218 r12014  
    3131     * The datamanager for the currently displayed publication. 
    3232     * 
    33      * @var midcom_helper_datamanger2_datamanager 
     33     * @var midcom_helper_datamanager2_datamanager 
    3434     */ 
    3535    var $_datamanager = null; 
  • trunk/midcom/net.nehmer.publications/handler/feed.php

    r3218 r12014  
    2929     * The datamanager for the currently displayed publication. 
    3030     * 
    31      * @var midcom_helper_datamanger2_datamanager 
     31     * @var midcom_helper_datamanager2_datamanager 
    3232     */ 
    3333    var $_datamanager = null; 
  • trunk/midcom/net.nehmer.publications/handler/welcome.php

    r3344 r12014  
    3232     * The datamanager for the currently displayed publication. 
    3333     * 
    34      * @var midcom_helper_datamanger2_datamanager 
     34     * @var midcom_helper_datamanager2_datamanager 
    3535     * @access private 
    3636     */ 
  • trunk/midcom/net.nehmer.publications/midcom/interfaces.php

    r11912 r12014  
    4242 
    4343    /** 
    44      * Iterate over all articles and create index record using the datamanger indexer 
     44     * Iterate over all articles and create index record using the datamanager indexer 
    4545     * method. 
    4646     */ 
  • trunk/midcom/net.nehmer.static/midcom/interfaces.php

    r11879 r12014  
    4747 
    4848    /** 
    49      * Iterate over all articles and create index record using the datamanger indexer 
     49     * Iterate over all articles and create index record using the datamanager indexer 
    5050     * method. 
    5151     */ 
  • trunk/midcom/net.nemein.bookmarks/admin.php

    r11907 r12014  
    403403            { 
    404404                $_MIDCOM->generate_error(MIDCOM_ERRCRIT, 
    405                     "Failied to initialize the datamanger in creation mode for schema '{$schema}'."); 
     405                    "Failied to initialize the datamanager in creation mode for schema '{$schema}'."); 
    406406                // This will exit 
    407407            } 
     
    422422            { 
    423423                $_MIDCOM->generate_error(MIDCOM_ERRCRIT, 
    424                     "Failied to initialize the datamanger to article ID '{$id}'."); 
     424                    "Failied to initialize the datamanager to article ID '{$id}'."); 
    425425                // This will exit 
    426426            } 
     
    461461             
    462462            case MIDCOM_DATAMGR_SAVED: 
    463                 debug_add('Datamanger has saved, relocating to view.'); 
     463                debug_add('Datamanager has saved, relocating to view.'); 
    464464                $session->remove('admin_create_id'); 
    465465                    if ($this->_article->name == '' && $this->_config->get("create_name_from_title"))  
     
    514514            case MIDCOM_DATAMGR_CREATEFAILED: 
    515515                debug_add('The DM failed critically, see above.'); 
    516                 $this->errstr = 'The Datamanger failed to process the request, see the Debug Log for details'; 
     516                $this->errstr = 'The Datamanager failed to process the request, see the Debug Log for details'; 
    517517                $this->errcode = MIDCOM_ERRCRIT; 
    518518                debug_pop(); 
  • trunk/midcom/net.nemein.bookmarks/locale/default.dat

    r885 r12014  
    1 a:5:{s:2:"da";a:5:{s:14:"create article";s:13:"Opret artikel";s:10:"newsticker";s:11:"Nyhedsliste";s:25:"newsticker administration";s:29:"Administration af nyhedsliste";s:19:"no schema available";s:31:"Intet layoutskema tilgÊngeligt";s:19:"select article type";s:17:"VÊlg artikeltype";}s:2:"en";a:42:{s:15:"add a new entry";s:15:"Add a new entry";s:33:"advanced schema and data settings";s:33:"Advanced schema and data settings";s:16:"back to overview";s:16:"Back to overview";s:14:"create article";s:14:"Create Article";s:22:"create name from title";s:38:"Generate URL names from article titles";s:14:"delete article";s:14:"Delete Article";s:16:"display settings";s:31:"News item display configuration";s:12:"edit article";s:12:"Edit Article";s:20:"enable blogging apis";s:40:"Enable remote editing via MetaWebLog API";s:23:"enable date filters get";s:35:"Enable date filters (GET parameter)";s:24:"enable date filters path";s:49:"Enable date filters (in path, format /YYYY/MM/DD)";s:14:"enable details";s:19:"Enable detail pages";s:18:"enable filters get";s:36:"Enable field filters (GET parameter)";s:21:"enable public posting";s:41:"Enable public posting ("Guestbook style")";s:21:"enable subdirectories";s:57:"Include all subtopic's News Articles into Index (and RSS)";s:15:"expert settings";s:15:"Expert settings";s:11:"index count";s:11:"Index count";s:14:"index settings";s:14:"Index settings";s:23:"list old items in index";s:23:"List old items in Index";s:10:"newsticker";s:12:"News listing";s:25:"newsticker administration";s:19:"News Administration";s:19:"no schema available";s:26:"No Layout Schema available";s:14:"public posting";s:34:"Public posting ("Guestbook style")";s:23:"public posting password";s:92:"Midgard Password to use for public posting (only neccessary if an username has been entered)";s:21:"public posting schema";s:43:"Datamanger schema to use for public posting";s:19:"public posting user";s:96:"Midgard username to use for public posting (leave empty to use the currently authenticated user)";s:19:"rss export settings";s:10:"RSS export";s:9:"rss_count";s:31:"List this many items in rss.xml";s:15:"rss_description";s:11:"Description";s:10:"rss_enable";s:65:"Enable RSS export (activates the URLs rss.xml and rss/$count.xml)";s:17:"rss_include_image";s:62:"Include full-size image from schema field "image" to RSS items";s:12:"rss_language";s:8:"Language";s:9:"rss_title";s:53:"RSS Feed title (leave empty to use the topic's title)";s:13:"rss_webmaster";s:23:"Webmaster email address";s:15:"schema database";s:27:"Path to the schema database";s:19:"select article type";s:19:"Select Article type";s:8:"settings";s:8:"Settings";s:10:"sort order";s:10:"Sort order";s:13:"symlink_topic";s:41:"Link to another content topic ("symlink")";s:22:"symlink_topic disabled";s:17:"No topic selected";s:7:"visible";s:27:"Should the topic be visible";s:19:"de.linkm.newsticker";s:12:"News listing";}s:2:"fi";a:27:{s:15:"add a new entry";s:22:"LisÀÀ uusi artikkeli";s:14:"create article";s:13:"Luo artikkeli";s:22:"create name from title";s:40:"Luo tiedostonimet artikkelien otsikoista";s:14:"delete article";s:16:"Poista artikkeli";s:12:"edit article";s:18:"Muokkaa artikkelia";s:20:"enable blogging apis";s:49:"Salli artikkelien etÀhallinta MetaWebLog API:lla";s:23:"enable date filters get";s:50:"Salli pÀivÀmÀÀrÀllÀ suodatus (GET-parametri)";s:24:"enable date filters path";s:65:"Salli pÀivÀmÀÀrÀllÀ suodatus (polussa muodossa /VVVV/KK/PP)";s:14:"enable details";s:21:"Salli lisÀtietosivut";s:18:"enable filters get";s:49:"Salli sisÀltökentillÀ suodatus (GET-parametri)";s:21:"enable public posting";s:58:"Salli avoin artikkelien lisÀys ("vieraskirja-tyylisesti")";s:21:"enable subdirectories";s:57:"LisÀÀ alikansioiden artikkelit listaan (ja RSS-listaan)";s:15:"expert settings";s:26:"TehokÀyttÀjÀn asetukset";s:11:"index count";s:15:"Listan mÀÀrÀ";s:14:"index settings";s:16:"Listan asetukset";s:23:"list old items in index";s:34:"NÀytÀ vanhat artikkelit listassa";s:10:"newsticker";s:11:"Uutiskansio";s:25:"newsticker administration";s:22:"Uutiskansion yllÀpito";s:19:"no schema available";s:37:"Tietokantakuvausta (schema) ei löydy";s:14:"public posting";s:49:"Avoin artikkelien lisÀys ("vieraskirja-tyyliin")";s:23:"public posting password";s:100:"Midgard-salasana avoimeen artikkelien lisÀykseen (tarvitaan vain jos kÀyttÀjÀtunnus on lisÀtty)";s:21:"public posting schema";s:54:"Avoimessa lisÀyksessÀ kÀytettÀvÀ tietokantakuvaus";s:19:"public posting user";s:116:"Midgard-kÀyttÀjÀtunnus avoimeen artikkelien lisÀykseen (jÀtÀ tyhjÀksi kÀyttÀÀksesi kirjautunutta tunnusta)";s:15:"schema database";s:43:"Tietokantakuvauksen (schema) snippet-tietue";s:19:"select article type";s:25:"Valitse artikkelin tyyppi";s:8:"settings";s:9:"Asetukset";s:10:"sort order";s:10:"JÀrjestys";}s:2:"de";a:41:{s:15:"add a new entry";s:31:"Einen neuen Eintrag hinzufÃŒgen";s:33:"advanced schema and data settings";s:44:"Erweiterte Einstellungen zu Schema und Daten";s:16:"back to overview";s:22:"ZurÃŒck zur Übersicht";s:14:"create article";s:15:"Artikel anlegen";s:22:"create name from title";s:55:"URL Namen automatisch vom Titel des Artikels generieren";s:14:"delete article";s:16:"Artikel löschen";s:16:"display settings";s:25:"Konfiguration der Anzeige";s:12:"edit article";s:18:"Artikel bearbeiten";s:20:"enable blogging apis";s:47:"Fernzugriff ÃŒber die MetaWebLog API aktivieren";s:23:"enable date filters get";s:36:"Datum-Filter via HTTP GET aktivieren";s:24:"enable date filters path";s:48:"Datum-Filter via URL (.../JJJJ/MM/TT) aktivieren";s:14:"enable details";s:24:"Detail-Seiten aktivieren";s:18:"enable filters get";s:35:"Feld-Filter via HTTP GET aktivieren";s:21:"enable public posting";s:52:"Öffentliche Eingaben aktivieren ("GÀstebuch-Stil")";s:21:"enable subdirectories";s:82:"News-Artikel aus untergeordneten Rubriken in die Übersicht einbeziehen (auch RSS)";s:15:"expert settings";s:22:"Experten-Einstellungen";s:11:"index count";s:32:"Anzahl Artikel in der Übersicht";s:14:"index settings";s:25:"Übersichts-Einstellungen";s:23:"list old items in index";s:36:"Vergangene Artikel in der Übersicht";s:10:"newsticker";s:10:"News-Liste";s:25:"newsticker administration";s:15:"News-Verwaltung";s:19:"no schema available";s:29:"Kein Layout-Schema verfÃŒgbar";s:14:"public posting";s:41:"Öffentliche Eingaben ("GÀstebuch-Stil")";s:23:"public posting password";s:104:"Midgard Passwort fÃŒr die öffentlichen Eingaben (nur notwendig, wenn ein Benutzername eingegeben wurde)";s:21:"public posting schema";s:51:"Datamanager-Schema fÃŒr die öffentlichen BeitrÀge";s:19:"public posting user";s:103:"Midgard Benutzername fÃŒr die öffentlichen Eingaben (leer um den gerade aktiven Benutzer zu verwenden)";s:19:"rss export settings";s:10:"RSS Export";s:9:"rss_count";s:57:"Anzahl der Artikel, die in rss.xml gelistet werden sollen";s:15:"rss_description";s:12:"Beschreibung";s:10:"rss_enable";s:74:"RSS Export aktivieren (stellt die URLs rss.xml und rss/$anzahl.xml bereit)";s:12:"rss_language";s:7:"Sprache";s:9:"rss_title";s:83:"Titel des RSS-Feeds (keine Eingabe verwendet den Titel der Rubrik als Standardwert)";s:13:"rss_webmaster";s:9:"Webmaster";s:15:"schema database";s:25:"Pfad zur Schema-Datenbank";s:19:"select article type";s:22:"Artikel-Typ auswÀhlen";s:8:"settings";s:13:"Einstellungen";s:10:"sort order";s:18:"Sortierreihenfolge";s:13:"symlink_topic";s:49:"Daten aus einer anderen Rubrik nehmen ("Symlink")";s:22:"symlink_topic disabled";s:24:"Keine Rubrik ausgewÀhlt";s:7:"visible";s:32:"Soll die Rubrik angezeigt werden";s:19:"de.linkm.newsticker";s:10:"News-Liste";}s:2:"sv";a:22:{s:15:"add a new entry";s:27:"LÀgg till ett nytt inlÀgg";s:14:"create article";s:13:"Skapa Artikel";s:14:"delete article";s:14:"Radera Artikel";s:12:"edit article";s:14:"Ändra Artikel";s:14:"enable details";s:26:"SlÃ¥ pÃ¥ detaljerade sidor";s:21:"enable public posting";s:50:"SlÃ¥ pÃ¥ publik postning ("GÀstbok och liknande")";s:21:"enable subdirectories";s:62:"Inkludera alla underÀmnenas Nyhets Artiklar i Index (och RSS)";s:15:"expert settings";s:25:"Avancerade instÀllningar";s:11:"index count";s:27:"Antal som ska visas i Index";s:14:"index settings";s:20:"Index instÀllningar";s:23:"list old items in index";s:28:"Lista gamla artiklar i Index";s:10:"newsticker";s:12:"Nyhets lista";s:25:"newsticker administration";s:20:"Administrera nyheter";s:19:"no schema available";s:26:"Inget Schema tillgÀngligt";s:14:"public posting";s:41:"Publik postning ("GÀstbok och liknande")";s:23:"public posting password";s:105:"Midgard Lösenord att anvÀnda för publik access (endast nödvÀndigt om ett anvÀndarnamn har angivits)";s:21:"public posting schema";s:52:"Datamanager schema att abvÀnda för publik postning";s:19:"public posting user";s:107:"Midgard anvÀndarnamn att anvÀnda för publik postning (lÀmna tomt för att anvÀnda inloggad anvÀndare)";s:15:"schema database";s:14:"Schema databas";s:19:"select article type";s:17:"VÀlj artikel typ";s:8:"settings";s:14:"InstÀllningar";s:10:"sort order";s:18:"Sorterings ordning";}} 
     1a:5:{s:2:"da";a:5:{s:14:"create article";s:13:"Opret artikel";s:10:"newsticker";s:11:"Nyhedsliste";s:25:"newsticker administration";s:29:"Administration af nyhedsliste";s:19:"no schema available";s:31:"Intet layoutskema tilgÊngeligt";s:19:"select article type";s:17:"VÊlg artikeltype";}s:2:"en";a:42:{s:15:"add a new entry";s:15:"Add a new entry";s:33:"advanced schema and data settings";s:33:"Advanced schema and data settings";s:16:"back to overview";s:16:"Back to overview";s:14:"create article";s:14:"Create Article";s:22:"create name from title";s:38:"Generate URL names from article titles";s:14:"delete article";s:14:"Delete Article";s:16:"display settings";s:31:"News item display configuration";s:12:"edit article";s:12:"Edit Article";s:20:"enable blogging apis";s:40:"Enable remote editing via MetaWebLog API";s:23:"enable date filters get";s:35:"Enable date filters (GET parameter)";s:24:"enable date filters path";s:49:"Enable date filters (in path, format /YYYY/MM/DD)";s:14:"enable details";s:19:"Enable detail pages";s:18:"enable filters get";s:36:"Enable field filters (GET parameter)";s:21:"enable public posting";s:41:"Enable public posting ("Guestbook style")";s:21:"enable subdirectories";s:57:"Include all subtopic's News Articles into Index (and RSS)";s:15:"expert settings";s:15:"Expert settings";s:11:"index count";s:11:"Index count";s:14:"index settings";s:14:"Index settings";s:23:"list old items in index";s:23:"List old items in Index";s:10:"newsticker";s:12:"News listing";s:25:"newsticker administration";s:19:"News Administration";s:19:"no schema available";s:26:"No Layout Schema available";s:14:"public posting";s:34:"Public posting ("Guestbook style")";s:23:"public posting password";s:92:"Midgard Password to use for public posting (only neccessary if an username has been entered)";s:21:"public posting schema";s:43:"Datamanager schema to use for public posting";s:19:"public posting user";s:96:"Midgard username to use for public posting (leave empty to use the currently authenticated user)";s:19:"rss export settings";s:10:"RSS export";s:9:"rss_count";s:31:"List this many items in rss.xml";s:15:"rss_description";s:11:"Description";s:10:"rss_enable";s:65:"Enable RSS export (activates the URLs rss.xml and rss/$count.xml)";s:17:"rss_include_image";s:62:"Include full-size image from schema field "image" to RSS items";s:12:"rss_language";s:8:"Language";s:9:"rss_title";s:53:"RSS Feed title (leave empty to use the topic's title)";s:13:"rss_webmaster";s:23:"Webmaster email address";s:15:"schema database";s:27:"Path to the schema database";s:19:"select article type";s:19:"Select Article type";s:8:"settings";s:8:"Settings";s:10:"sort order";s:10:"Sort order";s:13:"symlink_topic";s:41:"Link to another content topic ("symlink")";s:22:"symlink_topic disabled";s:17:"No topic selected";s:7:"visible";s:27:"Should the topic be visible";s:19:"de.linkm.newsticker";s:12:"News listing";}s:2:"fi";a:27:{s:15:"add a new entry";s:22:"LisÀÀ uusi artikkeli";s:14:"create article";s:13:"Luo artikkeli";s:22:"create name from title";s:40:"Luo tiedostonimet artikkelien otsikoista";s:14:"delete article";s:16:"Poista artikkeli";s:12:"edit article";s:18:"Muokkaa artikkelia";s:20:"enable blogging apis";s:49:"Salli artikkelien etÀhallinta MetaWebLog API:lla";s:23:"enable date filters get";s:50:"Salli pÀivÀmÀÀrÀllÀ suodatus (GET-parametri)";s:24:"enable date filters path";s:65:"Salli pÀivÀmÀÀrÀllÀ suodatus (polussa muodossa /VVVV/KK/PP)";s:14:"enable details";s:21:"Salli lisÀtietosivut";s:18:"enable filters get";s:49:"Salli sisÀltökentillÀ suodatus (GET-parametri)";s:21:"enable public posting";s:58:"Salli avoin artikkelien lisÀys ("vieraskirja-tyylisesti")";s:21:"enable subdirectories";s:57:"LisÀÀ alikansioiden artikkelit listaan (ja RSS-listaan)";s:15:"expert settings";s:26:"TehokÀyttÀjÀn asetukset";s:11:"index count";s:15:"Listan mÀÀrÀ";s:14:"index settings";s:16:"Listan asetukset";s:23:"list old items in index";s:34:"NÀytÀ vanhat artikkelit listassa";s:10:"newsticker";s:11:"Uutiskansio";s:25:"newsticker administration";s:22:"Uutiskansion yllÀpito";s:19:"no schema available";s:37:"Tietokantakuvausta (schema) ei löydy";s:14:"public posting";s:49:"Avoin artikkelien lisÀys ("vieraskirja-tyyliin")";s:23:"public posting password";s:100:"Midgard-salasana avoimeen artikkelien lisÀykseen (tarvitaan vain jos kÀyttÀjÀtunnus on lisÀtty)";s:21:"public posting schema";s:54:"Avoimessa lisÀyksessÀ kÀytettÀvÀ tietokantakuvaus";s:19:"public posting user";s:116:"Midgard-kÀyttÀjÀtunnus avoimeen artikkelien lisÀykseen (jÀtÀ tyhjÀksi kÀyttÀÀksesi kirjautunutta tunnusta)";s:15:"schema database";s:43:"Tietokantakuvauksen (schema) snippet-tietue";s:19:"select article type";s:25:"Valitse artikkelin tyyppi";s:8:"settings";s:9:"Asetukset";s:10:"sort order";s:10:"JÀrjestys";}s:2:"de";a:41:{s:15:"add a new entry";s:31:"Einen neuen Eintrag hinzufÃŒgen";s:33:"advanced schema and data settings";s:44:"Erweiterte Einstellungen zu Schema und Daten";s:16:"back to overview";s:22:"ZurÃŒck zur Übersicht";s:14:"create article";s:15:"Artikel anlegen";s:22:"create name from title";s:55:"URL Namen automatisch vom Titel des Artikels generieren";s:14:"delete article";s:16:"Artikel löschen";s:16:"display settings";s:25:"Konfiguration der Anzeige";s:12:"edit article";s:18:"Artikel bearbeiten";s:20:"enable blogging apis";s:47:"Fernzugriff ÃŒber die MetaWebLog API aktivieren";s:23:"enable date filters get";s:36:"Datum-Filter via HTTP GET aktivieren";s:24:"enable date filters path";s:48:"Datum-Filter via URL (.../JJJJ/MM/TT) aktivieren";s:14:"enable details";s:24:"Detail-Seiten aktivieren";s:18:"enable filters get";s:35:"Feld-Filter via HTTP GET aktivieren";s:21:"enable public posting";s:52:"Öffentliche Eingaben aktivieren ("GÀstebuch-Stil")";s:21:"enable subdirectories";s:82:"News-Artikel aus untergeordneten Rubriken in die Übersicht einbeziehen (auch RSS)";s:15:"expert settings";s:22:"Experten-Einstellungen";s:11:"index count";s:32:"Anzahl Artikel in der Übersicht";s:14:"index settings";s:25:"Übersichts-Einstellungen";s:23:"list old items in index";s:36:"Vergangene Artikel in der Übersicht";s:10:"newsticker";s:10:"News-Liste";s:25:"newsticker administration";s:15:"News-Verwaltung";s:19:"no schema available";s:29:"Kein Layout-Schema verfÃŒgbar";s:14:"public posting";s:41:"Öffentliche Eingaben ("GÀstebuch-Stil")";s:23:"public posting password";s:104:"Midgard Passwort fÃŒr die öffentlichen Eingaben (nur notwendig, wenn ein Benutzername eingegeben wurde)";s:21:"public posting schema";s:51:"Datamanager-Schema fÃŒr die öffentlichen BeitrÀge";s:19:"public posting user";s:103:"Midgard Benutzername fÃŒr die öffentlichen Eingaben (leer um den gerade aktiven Benutzer zu verwenden)";s:19:"rss export settings";s:10:"RSS Export";s:9:"rss_count";s:57:"Anzahl der Artikel, die in rss.xml gelistet werden sollen";s:15:"rss_description";s:12:"Beschreibung";s:10:"rss_enable";s:74:"RSS Export aktivieren (stellt die URLs rss.xml und rss/$anzahl.xml bereit)";s:12:"rss_language";s:7:"Sprache";s:9:"rss_title";s:83:"Titel des RSS-Feeds (keine Eingabe verwendet den Titel der Rubrik als Standardwert)";s:13:"rss_webmaster";s:9:"Webmaster";s:15:"schema database";s:25:"Pfad zur Schema-Datenbank";s:19:"select article type";s:22:"Artikel-Typ auswÀhlen";s:8:"settings";s:13:"Einstellungen";s:10:"sort order";s:18:"Sortierreihenfolge";s:13:"symlink_topic";s:49:"Daten aus einer anderen Rubrik nehmen ("Symlink")";s:22:"symlink_topic disabled";s:24:"Keine Rubrik ausgewÀhlt";s:7:"visible";s:32:"Soll die Rubrik angezeigt werden";s:19:"de.linkm.newsticker";s:10:"News-Liste";}s:2:"sv";a:22:{s:15:"add a new entry";s:27:"LÀgg till ett nytt inlÀgg";s:14:"create article";s:13:"Skapa Artikel";s:14:"delete article";s:14:"Radera Artikel";s:12:"edit article";s:14:"Ändra Artikel";s:14:"enable details";s:26:"SlÃ¥ pÃ¥ detaljerade sidor";s:21:"enable public posting";s:50:"SlÃ¥ pÃ¥ publik postning ("GÀstbok och liknande")";s:21:"enable subdirectories";s:62:"Inkludera alla underÀmnenas Nyhets Artiklar i Index (och RSS)";s:15:"expert settings";s:25:"Avancerade instÀllningar";s:11:"index count";s:27:"Antal som ska visas i Index";s:14:"index settings";s:20:"Index instÀllningar";s:23:"list old items in index";s:28:"Lista gamla artiklar i Index";s:10:"newsticker";s:12:"Nyhets lista";s:25:"newsticker administration";s:20:"Administrera nyheter";s:19:"no schema available";s:26:"Inget Schema tillgÀngligt";s:14:"public posting";s:41:"Publik postning ("GÀstbok och liknande")";s:23:"public posting password";s:105:"Midgard Lösenord att anvÀnda för publik access (endast nödvÀndigt om ett anvÀndarnamn har angivits)";s:21:"public posting schema";s:52:"Datamanager schema att abvÀnda för publik postning";s:19:"public posting user";s:107:"Midgard anvÀndarnamn att anvÀnda för publik postning (lÀmna tomt för att anvÀnda inloggad anvÀndare)";s:15:"schema database";s:14:"Schema databas";s:19:"select article type";s:17:"VÀlj artikel typ";s:8:"settings";s:14:"InstÀllningar";s:10:"sort order";s:18:"Sorterings ordning";}} 
  • trunk/midcom/net.nemein.calendar/handler/feed.php

    r11992 r12014  
    3737     * The datamanager for the currently displayed event. 
    3838     * 
    39      * @var midcom_helper_datamanger2_datamanager 
     39     * @var midcom_helper_datamanager2_datamanager 
    4040     */ 
    4141    var $_datamanager = null; 
  • trunk/midcom/net.nemein.discussion/midcom/interfaces.php

    r11912 r12014  
    5555 
    5656    /** 
    57      * Iterate over all articles and create index record using the datamanger indexer 
     57     * Iterate over all articles and create index record using the datamanager indexer 
    5858     * method. 
    5959     */ 
  • trunk/midcom/net.nemein.simpledb/handler/admin.php

    r4175 r12014  
    225225             
    226226            case MIDCOM_DATAMGR_SAVED: 
    227                 debug_add('Datamanger has saved, relocating to view.'); 
     227                debug_add('Datamanager has saved, relocating to view.'); 
    228228                if ($data['entry']->name == '')  
    229229                { 
     
    326326        $data['datamanager']->init($data['entry']); 
    327327         
    328         // Now launch the datamanger processing loop 
     328        // Now launch the datamanager processing loop 
    329329        switch ($data['datamanager']->process_form())  
    330330        { 
  • trunk/midcom/no.odindata.quickform/handler/reports.php

    r11359 r12014  
    8282        if (! $this->_datamanager->init_creation_mode($schema, $this)) 
    8383        { 
    84             $this->errstr = "Failed to initialize the datamanger in creation mode for schema '{$schema}'."; 
     84            $this->errstr = "Failed to initialize the datamanager in creation mode for schema '{$schema}'."; 
    8585            $this->errcode = MIDCOM_ERRCRIT; 
    8686            return false; 
  • trunk/midcom/no.odindata.quickform/viewer.php

    r11359 r12014  
    206206        $this->_request_data['form_description'] = $this->_config->get('form_description'); 
    207207         
    208         // Now launch the datamanger processing loop 
     208        // Now launch the datamanager processing loop 
    209209        switch ($this->_datamanager->process_form_to_array()) 
    210210        { 
     
    331331        if (! $this->_datamanager->init_creation_mode($schema, $this)) 
    332332        { 
    333             $this->errstr = "Failed to initialize the datamanger in creation mode for schema '{$schema}'."; 
     333            $this->errstr = "Failed to initialize the datamanager in creation mode for schema '{$schema}'."; 
    334334            $this->errcode = MIDCOM_ERRCRIT; 
    335335            return false; 
  • trunk/midcom/org.openpsa.calendar/midcom/interfaces.php

    r11912 r12014  
    8686 
    8787    /** 
    88      * Iterate over all events and create index record using the datamanger indexer 
     88     * Iterate over all events and create index record using the datamanager indexer 
    8989     * method. 
    9090     */ 
  • trunk/midcom/org.openpsa.calendar/viewer.php

    r11907 r12014  
    927927            debug_pop(); 
    928928            $_MIDCOM->generate_error(MIDCOM_ERRCRIT, 
    929                 "Failed to initialize datamanger in creation mode for schema 'default'."); 
     929                "Failed to initialize datamanager in creation mode for schema 'default'."); 
    930930            // This will exit 
    931931        } 
     
    995995                { 
    996996                    debug_add('The DM failed critically, see above.'); 
    997                     $this->errstr = 'The Datamanger failed to process the request, see the Debug Log for details'; 
     997                    $this->errstr = 'The Datamanager failed to process the request, see the Debug Log for details'; 
    998998                    $this->errcode = MIDCOM_ERRCRIT; 
    999999                    debug_pop(); 
  • trunk/midcom/org.openpsa.contacts/group_handler.php

    r11907 r12014  
    132132        { 
    133133            $_MIDCOM->generate_error(MIDCOM_ERRCRIT, 
    134                 "Failed to initialize datamanger in creation mode for schema 'newgroup'."); 
     134                "Failed to initialize datamanager in creation mode for schema 'newgroup'."); 
    135135            // This will exit 
    136136        } 
     
    181181            case MIDCOM_DATAMGR_CREATEFAILED: 
    182182                debug_add('The DM failed critically, see above.'); 
    183                 $this->errstr = 'The Datamanger failed to process the request, see the Debug Log for details'; 
     183                $this->errstr = 'The Datamanager failed to process the request, see the Debug Log for details'; 
    184184                $this->errcode = MIDCOM_ERRCRIT; 
    185185                debug_pop(); 
  • trunk/midcom/org.openpsa.contacts/person_handler.php

    r11907 r12014  
    9696        { 
    9797            $_MIDCOM->generate_error(MIDCOM_ERRCRIT, 
    98                 "Failed to initialize datamanger in creation mode for schema 'newperson'."); 
     98                "Failed to initialize datamanager in creation mode for schema 'newperson'."); 
    9999            // This will exit 
    100100        } 
     
    176176            case MIDCOM_DATAMGR_CREATEFAILED: 
    177177                debug_add('The DM failed critically, see above.'); 
    178                 $this->errstr = 'The Datamanger failed to process the request, see the Debug Log for details'; 
     178                $this->errstr = 'The Datamanager failed to process the request, see the Debug Log for details'; 
    179179                $this->errcode = MIDCOM_ERRCRIT; 
    180180                debug_pop(); 
  • trunk/midcom/org.openpsa.documents/directory_handler.php