[FIX] website_forum: add fake tour for people waiting the tour. To remove in master...
authorJeremy Kersten <jke@odoo.com>
Mon, 17 Nov 2014 15:04:57 +0000 (16:04 +0100)
committerJeremy Kersten <jke@odoo.com>
Mon, 17 Nov 2014 15:50:52 +0000 (16:50 +0100)
addons/website_forum/data/forum_data.xml
addons/website_forum/static/src/js/website.tour.forum.js

index 379e746..8099bc5 100644 (file)
@@ -19,6 +19,7 @@
         <record id="action_open_forum" model="ir.actions.act_url">
             <field name="name">Forum</field>
             <field name="target">self</field>
+            <!-- TODO in master : remove the tutorial or create one tutorial forum -->
             <field name="url" eval="'/forum/'+str(ref('website_forum.forum_help'))+'/#tutorial.forum=true'"/>
         </record>
         <record id="base.open_menu" model="ir.actions.todo">
index b4ca841..009b9a5 100644 (file)
@@ -4,28 +4,10 @@
     var website = openerp.website;
     var _t = openerp._t;
 
-    // website.EditorBar.include({
-    //     start: function () {
-    //         this.registerTour(new website.Tour.Forum(this));
-    //         return this._super();
-    //     },
-    // });
-
-    // website.Tour.Forum = website.Tour.extend({
-    //     id: 'question',
-    //     name: "Create a question",
-    //     testPath: '/forum(/[0-9]+/register)?',
-    //     init: function (editor) {
-    //         var self = this;
-    //         self.steps = [
-    //             {
-    //                 title:     _t("Create a question"),
-    //                 content:   _t("Let's go through the first steps to create a new question."),
-    //                 popover:   { next: _("Start Tutorial"), end: _("Skip It") },
-    //             },
-    //         ];
-    //         return this._super();
-    //     }
-    // });
+    openerp.Tour.register({
+        id: 'forum',
+        name: '',
+        steps : [{}],
+    });
 
 }());