[IMP] Better file naming

bzr revid: ddm@openerp.com-20131120142631-e4fsdx2vw7q3u3pp
This commit is contained in:
ddm 2013-11-20 15:26:31 +01:00
parent bdafd44f06
commit ba8364c717
4 changed files with 12 additions and 12 deletions

View File

@ -7,14 +7,14 @@
website.EditorBar.include({
start: function () {
this.registerTour(new website.InstallAppTour(this));
this.registerTour(new website.AppTour(this));
return this._super();
},
});
website.InstallAppTour = website.Tour.extend({
id: 'install-app',
name: "Install a new App",
website.AppTour = website.Tour.extend({
id: 'app-tutorial',
name: "Install a new application",
init: function (editor) {
var self = this;
self.steps = [

View File

@ -7,12 +7,12 @@
website.EditorBar.include({
start: function () {
this.registerTour(new website.AddBannerTour(this));
this.registerTour(new website.BannerTour(this));
return this._super();
},
});
website.AddBannerTour = website.Tour.extend({
website.BannerTour = website.Tour.extend({
id: 'banner-tutorial',
name: "Insert a banner",
startPath: '/page/website.homepage',

View File

@ -7,13 +7,13 @@
website.EditorBar.include({
start: function () {
this.registerTour(new website.EditorBuilderTour(this));
this.registerTour(new website.PageTour(this));
return this._super();
},
});
website.EditorBuilderTour = website.Tour.extend({
id: 'menu-editor',
website.PageTour = website.Tour.extend({
id: 'page-tutorial',
name: "Add a new page",
init: function (editor) {
var self = this;
@ -71,7 +71,7 @@
},
{
stepId: 'enter-page-name',
element: '#link-new',
element: '.modal .select2-container',
placement: 'left',
title: "Link your menu to a 'gallery' page",
content: "This page does not exist. Create it by filling the name here. For instance, 'gallery'.",

View File

@ -102,8 +102,8 @@
<script type="text/javascript" src="/website/static/src/js/website.seo.js"></script>
<script type="text/javascript" src="/website/static/src/js/website.tour.js"></script>
<script type="text/javascript" src="/website/static/src/js/website.tour.banner.js"></script>
<script type="text/javascript" src="/website/static/src/js/website.tour.menu-editor.js"></script>
<script type="text/javascript" src="/website/static/src/js/website.tour.install-app.js"></script>
<script type="text/javascript" src="/website/static/src/js/website.tour.page.js"></script>
<script type="text/javascript" src="/website/static/src/js/website.tour.app.js"></script>
<script t-if="not translatable" type="text/javascript" src="/website/static/src/js/website.snippets.editor.js"></script>
<script t-if="not translatable" type="text/javascript" src="/website/static/src/js/website.ace.js"></script>
<script t-if="translatable" type="text/javascript" src="/website/static/src/js/website.translator.js"></script>