Mercurial > libervia-web
comparison browser_side/richtext.py @ 323:0b7934e75e76
misc: reorganization of the file panels.py + clean the modules import:
- some existing modules were not found during JS runtime (panels.py was too large?)
- the *Panel classes of panels.py that do not reference "host" have been moved to base_panels.py
- cleaned the import in various files
author | souliane <souliane@mailoo.org> |
---|---|
date | Sat, 04 Jan 2014 00:17:46 +0100 |
parents | 462a0a8894e3 |
children | 8131d0ccf21b |
comparison
equal
deleted
inserted
replaced
322:971e3812903a | 323:0b7934e75e76 |
---|---|
17 | 17 |
18 You should have received a copy of the GNU Affero General Public License | 18 You should have received a copy of the GNU Affero General Public License |
19 along with this program. If not, see <http://www.gnu.org/licenses/>. | 19 along with this program. If not, see <http://www.gnu.org/licenses/>. |
20 """ | 20 """ |
21 | 21 |
22 from dialog import ConfirmDialog | |
23 from pyjamas.ui.TextArea import TextArea | 22 from pyjamas.ui.TextArea import TextArea |
24 from pyjamas.ui.Button import Button | 23 from pyjamas.ui.Button import Button |
25 from dialog import InfoDialog | |
26 from pyjamas.ui.DialogBox import DialogBox | 24 from pyjamas.ui.DialogBox import DialogBox |
27 from pyjamas.ui.Label import Label | 25 from pyjamas.ui.Label import Label |
28 from pyjamas.ui.FlexTable import FlexTable | 26 from pyjamas.ui.FlexTable import FlexTable |
29 from pyjamas.ui.HorizontalPanel import HorizontalPanel | 27 from pyjamas.ui.HorizontalPanel import HorizontalPanel |
28 | |
29 from dialog import ConfirmDialog, InfoDialog | |
30 from list_manager import ListManager | 30 from list_manager import ListManager |
31 | |
31 from sat_frontends.tools import composition | 32 from sat_frontends.tools import composition |
32 import logging | |
33 | 33 |
34 | 34 |
35 # used for onCloseCallback | 35 # used for onCloseCallback |
36 CANCEL, SYNC_NOT_SAVE, SAVE = xrange(0, 3) | 36 CANCEL, SYNC_NOT_SAVE, SAVE = xrange(0, 3) |
37 | 37 |