; CDSVN: subversion compatibility for Cadence/CDS tools ; Copyright (c) 2008 Poojan Wagh (poojanwagh {at} circuitdesign {dot} info) ; This file is part of CDSVN. ; ; CDSVN is free software: you can redistribute it and/or modify ; it under the terms of the GNU General Public License as published by ; the Free Software Foundation, either version 3 of the License, or ; (at your option) any later version. ; ; CDSVN is distributed in the hope that it will be useful, ; but WITHOUT ANY WARRANTY; without even the implied warranty of ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ; GNU General Public License for more details. ; ; You should have received a copy of the GNU General Public License ; along with CDSVN. If not, see . ; This file is read when library manager starts and loads customization ; of library manager menus (and pop-up menus on cells, etc.). ;;;;;;;;;;;;;;;;;;;; ;;; SVN Add View ;;; ;;;;;;;;;;;;;;;;;;;; ; ; skill code to load customization in Cadence Library Manager ; this file loads callbacks which are defined in svnAddCV.il ; svnAddCV.il should be sourced in .cdsinit lmgrCreateMenuItem("svnAddCV" "simple" '(("label" "SVN Add View") ("callback" ("svnAddCV" "updateIf")) ) ) ; show the pop-up in cell view (V) list box only, and on the ; design manager pull-down menu lmgrAddMenuItems("designCascade" "V" '("svnAddCV")) ;;;;;;;;;;;;;;;;;;;;; ;;; SVN Copy View ;;; ;;;;;;;;;;;;;;;;;;;;; ; ; skill code to load customization in Cadence Library Manager ; this file loads callbacks which are defined in svnCopyCV.il ; svnCopyCV.il should be sourced in .cdsinit lmgrCreateMenuItem("svnCopyCV" "simple" '(("label" "SVN Copy View") ("callback" ("svnCopyCV" "updateIf")) ) ) ; show the pop-up in cell view (V) list box only, and on the ; design manager pull-down menu lmgrAddMenuItems("designCascade" "V" '("svnCopyCV")) ;;;;;;;;;;;;;;;;;;;;; ;;; SVN Lock View ;;; ;;;;;;;;;;;;;;;;;;;;; ; ; skill code to load customization in Cadence Library Manager ; this file loads callbacks which are defined in svnLockCV.il ; svnLockCV.il should be sourced in .cdsinit lmgrCreateMenuItem("svnLockCV" "simple" '(("label" "SVN Lock View") ("callback" ("svnLockCV" "updateIf")) ) ) ; show the pop-up in cell view (V) list box only, and on the ; design manager pull-down menu lmgrAddMenuItems("designCascade" "V" '("svnLockCV")) ;;;;;;;;;;;;;;;;;;;;;;; ;;; SVN Unlock View ;;; ;;;;;;;;;;;;;;;;;;;;;;; ; ; skill code to load customization in Cadence Library Manager ; this file loads callbacks which are defined in svnLockCV.il ; svnLockCV.il should be sourced in .cdsinit lmgrCreateMenuItem("svnUnlockCV" "simple" '(("label" "SVN Unlock View") ("callback" ("svnUnlockCV" "updateIf")) ) ) ; show the pop-up in cell view (V) list box only, and on the ; design manager pull-down menu lmgrAddMenuItems("designCascade" "V" '("svnUnlockCV")) ;;;;;;;;;;;;;;;;;;;; ;;; SVN Add Cell ;;; ;;;;;;;;;;;;;;;;;;;; ; ; skill code to load customization in Cadence Library Manager ; this file loads callbacks which are defined in svnAddCell.il ; svnAddCell.il should be sourced in .cdsinit lmgrCreateMenuItem("svnAddCell" "simple" '(("label" "SVN Add Cell") ("callback" ("svnAddCell" "updateIf")) ) ) ; show the pop-up in cell (C) list box only, and on the ; design manager pull-down menu lmgrAddMenuItems("designCascade" "C" '("svnAddCell")) ;;;;;;;;;;;;;;;;;;;;; ;;; SVN Copy Cell ;;; ;;;;;;;;;;;;;;;;;;;;; ; ; skill code to load customization in Cadence Library Manager ; this file loads callbacks which are defined in svnCopyCell.il ; svnCopyCell.il should be sourced in .cdsinit lmgrCreateMenuItem("svnCopyCell" "simple" '(("label" "SVN Copy Cell") ("callback" ("svnCopyCell" "updateIf")) ) ) ; show the pop-up in cell (C) list box only, and on the ; design manager pull-down menu lmgrAddMenuItems("designCascade" "C" '("svnCopyCell")) ;;;;;;;;;;;;;;;;;;;;; ;;; SVN Lock Cell ;;; ;;;;;;;;;;;;;;;;;;;;; ; ; skill code to load customization in Cadence Library Manager ; this file loads callbacks which are defined in svnLockCell.il ; svnLockCell.il should be sourced in .cdsinit lmgrCreateMenuItem("svnLockCell" "simple" '(("label" "SVN Lock Cell") ("callback" ("svnLockCell" "updateIf")) ) ) ; show the pop-up in cell (C) list box only, and on the ; design manager pull-down menu lmgrAddMenuItems("designCascade" "C" '("svnLockCell")) ;;;;;;;;;;;;;;;;;;;;;;; ;;; SVN Unlock Cell ;;; ;;;;;;;;;;;;;;;;;;;;;;; ; ; skill code to load customization in Cadence Library Manager ; this file loads callbacks which are defined in svnLockCell.il ; svnLockCell.il should be sourced in .cdsinit lmgrCreateMenuItem("svnUnlockCell" "simple" '(("label" "SVN Unlock Cell") ("callback" ("svnUnlockCell" "updateIf")) ) ) ; show the pop-up in cell view (V) list box only, and on the ; design manager pull-down menu lmgrAddMenuItems("designCascade" "C" '("svnUnlockCell"))