mod_read_dir_outline.py :  » Development » Leo » Leo-4.7.1-final » leo » plugins » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Development » Leo 
Leo » Leo 4.7.1 final » leo » plugins » mod_read_dir_outline.py
# -*- coding: utf-8 -*-
#@+leo-ver=4-thin
#@+node:ekr.20050301083306:@thin mod_read_dir_outline.py
#@@first

#@<< docstring >>
#@+node:ekr.20050301084207:<< docstring >>
'''This plugin allows Leo to read a complete directory's outline into a Leo's
Outline. Directories are converted into headlines and files names are listed
into the bodies.

Ce plug-in permet de traduire l'arborescence d'un rpertoire en une arborescence
Leo : Chaque dossier est converti en noeud dans Leo ; son nom est plac dans
l'entte du noeud et chaque nom de fichier qu'il contient est list dans son
contenu.

Feedback on this plugin can be sent to::

    Frdric Mommja
    <frederic [point] mommeja [at] laposte [point] net>
'''
#@-node:ekr.20050301084207:<< docstring >>
#@nl

#@@language python
#@@tabwidth -4

#@<< imports >>
#@+node:ekr.20050301083306.2:<< imports >>
import leo.core.leoGlobals as g
import leo.core.leoPlugins as leoPlugins

# import leo.core.leoImport as leoImport
# import leo.core.leoCommands as leoCommands

tkFileDialog = g.importExtension('tkFileDialog',pluginName=__name__,verbose=True)

import os
#@nonl
#@-node:ekr.20050301083306.2:<< imports >>
#@nl

__version__ = '1.6'
#@<< version history >>
#@+node:ekr.20050301083306.3:<< version history >>
#@@killcolor

#@+at
# 
# 1.3 Original version by Frdric Mommja
# 
# 1.4 EKR:  Changes for 4.3 code base and new plugins style.
# 
#     - Created typical init and onCreate functions.
#     - Created language global.
#     - Use g.importExtension to import Tkinter
#     - Changed true/false to True/False.
#     - Used g.os_path functions to support Unicode properly.
#     - Added '@first # -*- coding: utf-8 -*-' to suppress deprecation 
# warning.
# 1.5 EKR:
#     - use g.importExtension to import tkFileDialog.
#     - Redraw the screen only once (in readDir instead of importDir).
# 
# 1.6 EKR:
#     - Changed 'new_c' logic to 'c' logic.
#     - Added init function.
#@-at
#@nonl
#@-node:ekr.20050301083306.3:<< version history >>
#@nl

language = 'english' # Anything except 'french' uses english.

#@+others
#@+node:ekr.20050301083306.4:init
def init ():

    if tkFileDialog is None: return False

    if g.app.gui is None:
        g.app.createTkGui(__file__)

    ok = g.app.gui.guiName() == "tkinter"

    if ok:
        leoPlugins.registerHandler(("new2","open2"), onCreate)
        g.plugin_signon(__name__)

    return ok
#@nonl
#@-node:ekr.20050301083306.4:init
#@+node:ekr.20050301083306.5:onCreate
def onCreate (tag, keywords):

    c = keywords.get('c')
    cc = controller(c)

    menu = c.frame.menu.getMenu('Outline')

    if language == 'french':
        mess1 = "Lit un Rpertoire..."
    else:
        mess1 = "Read a Directory..."

    table = (
        ("-", None, None),
        (mess1, "Shift+Ctrl+Alt+D",cc.readDir))

    c.frame.menu.createMenuEntries(menu,table,dynamicMenu=True)
#@nonl
#@-node:ekr.20050301083306.5:onCreate
#@+node:ekr.20050301083306.6:class controller
class controller:

    #@    @+others
    #@+node:ekr.20050301083306.7:ctor
    def __init__ (self,c):

        self.c = c
    #@nonl
    #@-node:ekr.20050301083306.7:ctor
    #@+node:ekr.20050301083306.8:readDir
    def readDir (self,event=None):

        # fr - Modifier pour adapter  votre environnement
        # en - Change it to select the starting browsing directory
        c = self.c ; startdir = "/home/"

        if language == 'french':
            titledialog = "Choisir le rpertoire..."
        else:
            titledialog = "Please, select a directory..."

        dirName = tkFileDialog.askdirectory(
            title=titledialog,initialdir=startdir,mustexist="true")

        if dirName and len(dirName) > 0:
            g.es(dirName)
            compteur, compteurglobal = self.importDir(dirName,compteur=0,compteurglobal=0)
            c.selectVnode(c.currentVnode())
            c.frame.tree.redraw_now()
            self.esfm("\n")
            if language == 'french':
                g.es(str(compteurglobal)+" fichiers traits.")
            else:
                g.es(str(compteurglobal)+" files outlined.")
    #@-node:ekr.20050301083306.8:readDir
    #@+node:ekr.20050301083306.9:esfm
    def esfm (self,chaine,**keys):

        """ Pour imprimer une chane de caractres sans retour  la ligne """

        if 1: # No longer needed so much now that we don't redraw as much.

            color = keys.get('color')

            if g.app.log:
                g.app.log.put(chaine,color=color)
            else:
                g.app.logWaiting.append((chaine,color),)
                g.pr(chaine,newline=False)
    #@nonl
    #@-node:ekr.20050301083306.9:esfm
    #@+node:ekr.20050301083306.10:importDir
    def importDir (self,dir,compteur,compteurglobal):

        """ La routine rcursive de lecture des fichiers """

        if not g.os_path_exists(dir):
            if language == 'french':
                g.es("Ce rpertoire n'existe pas: %s" + dir)
            else:
                g.es("No such Directory: %s" + dir)
            return compteur, compteurglobal # EKR

        head,tail = g.os_path_split(dir)
        c = self.c ; v = c.currentVnode()
        try:
            #ici, on liste le contenu du rpertoire
            body=""
            #@        << listdir >>
            #@+node:ekr.20050301083306.11:<< listdir >>
            try:
                fichiers = os.listdir(dir)
                dossiers = []
                for f in fichiers:
                    if compteur == 25:
                        self.esfm("\n")
                        compteur = 0
                    # mettre ici le code de cration des noeuds
                    path = g.os_path_join(dir,f)
                    # est-ce un fichier ?
                    if g.os_path_isfile(path):
                        body += (f+"\n")
                    else:
                        # c'est alors un rpertoire
                        dossiers.append(path)

                    self.esfm(".")
                    compteur += 1
                    compteurglobal += 1
            except Exception:
                if language == 'french':
                    g.es("erreur dans listage fichiers...")
                else:
                    g.es("os.listdir error...")
                g.es_exception()
            #@-node:ekr.20050301083306.11:<< listdir >>
            #@nl
            retour = c.importCommands.createHeadline(v,body,tail)
            #slectionne le noeud nouvellement cr
            c.selectVnode(retour)
            if len(dossiers) > 0:
                for d in dossiers:
                    compteur,compteurglobal = self.importDir(d,compteur,compteurglobal)
            c.setChanged(True)
            #slectionne le noeud parent
            c.selectVnode(v)
        except:
            if language == 'french':
                g.es("erreur d'insertion de noeud...")
            else:
                g.es("error while creating vnode...")
            g.es_exception()

        return compteur, compteurglobal
    #@nonl
    #@-node:ekr.20050301083306.10:importDir
    #@-others
#@nonl
#@-node:ekr.20050301083306.6:class controller
#@-others
#@nonl
#@-node:ekr.20050301083306:@thin mod_read_dir_outline.py
#@-leo
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.