main
Last change
on this file was
42bd667,
checked in by David Fuertes <dfuertes@…>, 4 years ago
|
Historial Limpio
|
-
Property mode set to
100755
|
File size:
707 bytes
|
Line | |
---|
1 | import time |
---|
2 | import os |
---|
3 | import sys |
---|
4 | import re |
---|
5 | import urllib |
---|
6 | import cgi |
---|
7 | import difflib |
---|
8 | import shutil |
---|
9 | import stat |
---|
10 | import socket |
---|
11 | |
---|
12 | from textwrap import dedent |
---|
13 | |
---|
14 | try: |
---|
15 | from mercurial import ui, hg, cmdutil |
---|
16 | try: |
---|
17 | from mercurial.scmutil import addremove |
---|
18 | except: |
---|
19 | from mercurial.cmdutil import addremove |
---|
20 | have_mercurial = True |
---|
21 | except ImportError: |
---|
22 | have_mercurial = False |
---|
23 | |
---|
24 | from gluon.utils import md5_hash |
---|
25 | from gluon.fileutils import listdir, cleanpath, up |
---|
26 | from gluon.fileutils import tar, tar_compiled, untar, fix_newlines |
---|
27 | from gluon.languages import findT, update_all_languages |
---|
28 | from gluon.restricted import * |
---|
29 | from gluon.compileapp import compile_application, remove_compiled_application |
---|
Note: See
TracBrowser
for help on using the repository browser.