~ubuntu-branches/ubuntu/quantal/texmacs/quantal

« back to all changes in this revision

Viewing changes to TeXmacs/progs/texmacs/menus/main-menu.scm

  • Committer: Bazaar Package Importer
  • Author(s): Atsuhito KOHDA, Kamaraju Kusumanchi, kohda
  • Date: 2009-04-26 19:35:14 UTC
  • mfrom: (1.1.10 upstream) (4.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090426193514-9yo3oggdslgdls4b
Tags: 1:1.0.7.2-1
[Kamaraju Kusumanchi <kamaraju@gmail.com>]
* New upstream release
* texmacs crashes if /usr/share/texmacs/TeXmacs/misc/pixmaps/unknown.ps
  is not present. Do not remove it. (Closes: #484073, #497021)
* update patches 03_mupad.dpatch, 04_axiom.dpatch, 11-desktop-file.dpatch
* fix the mime problem in gnome. Thanks to Andrea Gamba for the fix.
[kohda]
* Refined a fix for the mime problem in gnome a bit.
* Try to fix /bin/sh problem (debian/fixsh) but it is not complete fix yet.
* Try to fix hard coded settings for ipa fonts(patches/09_ipa.dpatch), 
  especially for Debian where no ipa fonts exist yet.
* Fixed obsolete Build-Depends: changed libltdl3-dev to 
  libltdl-dev | libltdl7-dev (the latter for Ubuntu?)

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
;; DESCRIPTION : the default main menu of TeXmacs
6
6
;; COPYRIGHT   : (C) 1999  Joris van der Hoeven
7
7
;;
8
 
;; This software falls under the GNU general public license and comes WITHOUT
9
 
;; ANY WARRANTY WHATSOEVER. See the file $TEXMACS_PATH/LICENSE for details.
10
 
;; If you don't have this file, write to the Free Software Foundation, Inc.,
11
 
;; 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
8
;; This software falls under the GNU general public license version 3 or later.
 
9
;; It comes WITHOUT ANY WARRANTY WHATSOEVER. For details, see the file LICENSE
 
10
;; in the root directory or <http://www.gnu.org/licenses/gpl-3.0.html>.
12
11
;;
13
12
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
14
13
 
40
39
  (if (in-source?) (=> "Source" (link source-menu)))
41
40
  (if (in-text?) (=> "Text" (link text-menu)))
42
41
  (if (in-math?) (=> "Mathematics" (link math-menu)))
43
 
  (if (in-io?) (=> "Session" (link session-menu)))
 
42
  (if (in-session?) (=> "Session" (link session-menu)))
44
43
  (if (in-graphics?) (=> "Graphics" (link graphics-menu)))
45
44
  (if (in-table?) (link vertical-table-cell-menu))
46
45
  (link texmacs-extra-menu)
71
70
  (if (in-text?) (-> "Text" (link text-menu)))
72
71
  (if (in-math?) (-> "Mathematics" (link math-menu)))
73
72
  (if (in-graphics?) (-> "Graphics" (link graphics-menu)))
74
 
  (if (in-io?) (-> "Session" (link session-menu)))
 
73
  (if (in-session?) (-> "Session" (link session-menu)))
75
74
  (if (in-table?) (link horizontal-table-cell-menu))
76
75
  (if (not (in-graphics?)) (-> "Format" (link format-menu)))
77
76
  (-> "Document" (link document-menu))
157
156
(menu-bind texmacs-context-icons
158
157
  (if (in-source?) (link source-icons))
159
158
  (if (in-text?) (link text-icons))
160
 
  (if (in-io?) (link session-icons))
 
159
  (if (in-session?) (link session-icons))
161
160
  (if (in-math?) (link math-icons))
162
161
  (if (in-graphics?) (link graphics-icons))
163
162
  (if (not (in-graphics?)) |)