Skip to content

Commit

Permalink
Item713: Started converting to Foswiki
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk/QuickMenuSkin@1913 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
LarsEik authored and LarsEik committed Jan 10, 2009
1 parent 9094b49 commit 11abac2
Show file tree
Hide file tree
Showing 25 changed files with 46 additions and 45 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@

---++ Why is the !QuickMenu disabled?

The QuickMenuSkin requires a browser with Javascript enabled. Without Javascript the menu will not load and the usual links will not be accessible. This makes navigating through the TWiki difficult.
The QuickMenuSkin requires a browser with Javascript enabled. Without Javascript the menu will not load and the usual links will not be accessible. This makes navigating through the wiki difficult.

---++ Solution

You have 2 choices:

* Use a browser that has javascript enabled.
* Use a different TWiki skin like:
* Use a different skin like:
[[%SCRIPTURLPATH{"view"}%/%SYSTEMWEB%/PatternSkin?skin=pattern][PatternSkin]]
or [[%SCRIPTURLPATH{"view"}%/%SYSTEMWEB%/ClassicSkin?skin=classic][ClassicSkin]]
%BR% To activate a skin see: [[%SYSTEMWEB%.Skins#Activating_Skins][Skins]]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@

---++ Installation

*Note:* You do not need to install anything on the browser to use this skin. The following instructions are for the administrator who installs the skin on the server where TWiki is running.
*Note:* You do not need to install anything on the browser to use this skin. The following instructions are for the administrator who installs the skin on the server where Foswiki is running.

* Download the ZIP file from the Skin Home page (see below)
* Unzip ==QuickMenuSkin.zip== in your twiki installation directory
* Unzip ==QuickMenuSkin.zip== in your Foswiki installation directory
* Test if installed: %SCRIPTURL{"view"}%/%WEB%/%TOPIC%?skin=quickmenu
* For skin activation see %SYSTEMWEB%.Skins

Expand All @@ -44,7 +44,7 @@ The menu bar is built by default from %SYSTEMWEB%.QuickMenuBar, which in turn in
* *To create a new menu* %BR%
=mymenu = new QuickMenu.Menu(menuBar, "Menu Text", "", "/icons/icon.gif", "Menu Tip Information");= %BR%
or just a link:%BR%
=new QuickMenu.Menu(menuBar, "TWiki.org", "http://twiki.org/");= %BR%
=new QuickMenu.Menu(menuBar, "Foswiki.org", "http://foswiki.org/");= %BR%
or a javascript function:%BR%
=new QuickMenu.Menu(menuBar, "Say Hello", "js:alert('Hello')");=

Expand Down Expand Up @@ -99,8 +99,9 @@ The menu bar is built by default from %SYSTEMWEB%.QuickMenuBar, which in turn in
| Preview: | [[%SCRIPTURL{"view"}%/%WEB%/%TOPIC%?skin=quickmenu][Preview with this topic]] |
| Base Name: | quickmenu |
| Skin Author: | TWiki:Main/VernonLyon |
| Skin Version: | 1 Feb 2007 (v1.07) |
| Skin Version: | 10 Jan 2009 |
| Change&nbsp;History: | <!-- specify latest version first -->&nbsp; |
| 9 Jan 2009: | Tasks.Item713: Converting to Foswiki - Main.LarsEik |
| 1 Feb 2007: | Added a missing template for TWiki 4.1.0 (v1.07) |
| 21 Nov 2006: | Added backlinks template, Fixed IE "select" bug, Menu items are actual links, Cleaner interface (v1.06) |
| 13 Sep 2006: | Fixed IE bug (v1.05) |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package TWiki::Contrib::QuickMenuSkin;
package Foswiki::Contrib::QuickMenuSkin;
use vars qw( $VERSION );
$VERSION = '$Rev: 12023$';
1;
36 changes: 36 additions & 0 deletions lib/Foswiki/Contrib/QuickMenuSkin/MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
data/System/QuickMenuBar.txt 0644
data/System/QuickMenuBarLanguage.txt 0644
data/System/QuickMenuBarLogin.txt 0644
data/System/QuickMenuBarUtilities.txt 0644
data/System/QuickMenuBarWebs.txt 0644
data/System/QuickMenuDisabled.txt 0644
data/System/QuickMenuSkin.txt 0644
lib/Foswiki/Contrib/QuickMenuSkin.pm 0444
pub/System/QuickMenuSkin/arrow.gif 0444
pub/System/QuickMenuSkin/arrow_over.gif 0444
pub/System/QuickMenuSkin/fullscreen.gif 0444
pub/System/QuickMenuSkin/menu_bg.gif 0444
pub/System/QuickMenuSkin/menu_over.gif 0444
pub/System/QuickMenuSkin/menubar.gif 0444
pub/System/QuickMenuSkin/menubaritem_bg.gif 0444
pub/System/QuickMenuSkin/menuitem_bg.gif 0444
pub/System/QuickMenuSkin/menuitem_over.gif 0444
pub/System/QuickMenuSkin/qmenu.css 0444
pub/System/QuickMenuSkin/qmenu.js 0444
pub/System/QuickMenuSkin/screenshot.gif 0444
pub/System/QuickMenuSkin/style.css 0444
templates/attach.quickmenu.tmpl 0444
templates/attachtables.quickmenu.tmpl 0444
templates/changeform.quickmenu.tmpl 0444
templates/edit.quickmenu.tmpl 0444
templates/login.quickmenu.tmpl 0444
templates/moveattachment.quickmenu.tmpl 0444
templates/preview.quickmenu.tmpl 0444
templates/renamebase.quickmenu.tmpl 0444
templates/rdiff.quickmenu.tmpl 0444
templates/search.quickmenu.tmpl 0444
templates/searchformat.quickmenu.tmpl 0444
templates/foswiki.quickmenu.tmpl 0444
templates/view.plain.quickmenu.tmpl 0444
templates/view.print.quickmenu.tmpl 0444
templates/view.quickmenu.tmpl 0444
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ BEGIN
unshift @INC, $pc;
}
}
use TWiki::Contrib::Build;
$build = new TWiki::Contrib::Build("QuickMenuSkin" );
use Foswiki::Contrib::Build;
$build = new Foswiki::Contrib::Build("QuickMenuSkin" );
$build->build($build->{target});
36 changes: 0 additions & 36 deletions lib/TWiki/Contrib/QuickMenuSkin/MANIFEST

This file was deleted.

File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.

0 comments on commit 11abac2

Please sign in to comment.