~ubuntu-branches/ubuntu/quantal/gallery2/quantal

« 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-12-24 05:36:33 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20071224053633-1ha6lnfqkfvpgdia
Tags: 2.2.4-1
* New upstream release (Urgency high due to security fixes.
  Closes: #457644)
* debian/control: 
  + Update Standards-Version (No changes needed)
  + Add Homepage field, remove Homepage from Description
* debian/rules: No longer set DH_COMPAT (use debian/compat instead)

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: 16994 $
 
25
 * @version $Revision: 17265 $
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.3'); /* Update upgrade() too! */
 
34
        $this->setVersion('1.0.0.4'); /* 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');
145
145
        case '1.0.0.1':
146
146
            /* Fix entity-type bug (1681406) */
147
147
        case '1.0.0.2':
 
148
        case '1.0.0.3':
148
149
 
149
150
        case 'end of upgrade path':
150
151
            break;