コード例 #1
0
 def __do_on_document_saved(self, document, userData=None):
     if document.get_location() != None:
         filepath = document.get_location().get_path()
         indexFilepath = self.get_index_filepath()
         if indexFilepath != None:
             indexPathManager = self.get_index_path_manager()
             index = PhpIndex(indexFilepath, indexPathManager=indexPathManager)
             index.reindex_phpfile(filepath)
コード例 #2
0
ファイル: run.py プロジェクト: addiks/gedit-phpide
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

import sys
from PHP.PhpIndex import PhpIndex
from update_gtk import update_gtk

def update_callback(done_count, all_count, file_path):
    progressStr = str(done_count) + "/" + str(all_count) + " : "
    print(progressStr + file_path)

def error_callback(message):
    sys.stderr.write(message)

if len(sys.argv)<4:
    print(" USAGE: "+sys.argv[0]+" [build|update|update-gtk] [INDEX-FILEPATH] [FOLDER-PATH]")

elif sys.argv[1] == 'build':
    index = PhpIndex(sys.argv[2], update_callback, error_callback)
    index.build(sys.argv[3])

elif sys.argv[1] == 'update':
    index = PhpIndex(sys.argv[2], update_callback, error_callback)
    index.update(sys.argv[3])

elif sys.argv[1] == 'update-gtk':
    from gi.repository import Gtk
    index_filepath = sys.argv[1]
    folder_path    = sys.argv[2]
    update_gtk(index_filepath, folder_path)
    Gtk.main()