~ubuntu-branches/ubuntu/maverick/gallery2/maverick

« back to all changes in this revision

Viewing changes to modules/webdav/module.inc

  • Committer: Bazaar Package Importer
  • Author(s): Michael C. Schultheiss
  • Date: 2007-09-10 20:22:19 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070910202219-0jsuntvqge4ade6b
Tags: 2.2.3-2
Add Slovak translation of Debconf templates.  (Thanks to 
Ivan Masá.  Closes: #441671)

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 * WebDAV Module.  Mount Gallery on your desktop.
23
23
 * @package WebDav
24
24
 * @author Jack Bates <ms419@freezone.co.uk>
25
 
 * @version $Revision: 16137 $
 
25
 * @version $Revision: 16994 $
26
26
 */
27
27
class WebDavModule extends GalleryModule /* and GalleryEventListener */ {
28
28
 
31
31
 
32
32
        $this->setId('webdav');
33
33
        $this->setName($gallery->i18n('WebDAV'));
34
 
        $this->setVersion('1.0.0.1'); /* Update upgrade() too! */
 
34
        $this->setVersion('1.0.0.3'); /* Update upgrade() too! */
35
35
        $this->setDescription($gallery->i18n('Mount Gallery on your desktop.'));
36
36
        $this->setGroup('interfaces', $gallery->i18n('Remote Interfaces'));
37
37
        $this->setCallbacks('getItemLinks|getSiteAdminViews|registerEventListeners');
142
142
            if ($ret && !($ret->getErrorCode() & ERROR_CONFIGURATION_REQUIRED)) {
143
143
                return $ret;
144
144
            }
 
145
        case '1.0.0.1':
 
146
            /* Fix entity-type bug (1681406) */
 
147
        case '1.0.0.2':
145
148
 
146
149
        case 'end of upgrade path':
147
150
            break;