Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/develop-activity/develop_app.py
Commit message (Collapse)AuthorAgeFilesLines
* Open the main source when start a new activityGonzalo Odiard2014-02-131-10/+7
|
* Make welcome page a classGonzalo Odiard2014-02-131-131/+153
|
* Fix resize of notebook hidding scrollbarsGonzalo Odiard2014-02-131-5/+1
|
* Add a run activity buttonGonzalo Odiard2014-02-131-0/+18
|
* Pyflake fixesGonzalo Odiard2014-02-131-1/+1
|
* Fix set the activity name in the treeview title and the titleGonzalo Odiard2014-02-131-7/+5
|
* Remove unused codeGonzalo Odiard2014-02-131-35/+3
|
* Fixes in new file alertGonzalo Odiard2014-02-121-13/+14
|
* Simplify management of dirty flagsGonzalo Odiard2014-02-121-17/+10
| | | | Now the flags are private, and the sources are saved only in write_file
* Reorganize source_editor relation with rhe activityGonzalo Odiard2014-02-121-9/+20
| | | | | | Now emit events, and don't have references to the activityy. This patch solves the issueof the symbols tree update when the editor tab is changed.
* reMove code to open a log file to sourceview_editorGonzalo Odiard2014-02-121-15/+3
|
* Big logviewer refactoring. Fix update of opened filesGonzalo Odiard2014-02-111-2/+31
|
* Fix save and restore opened session filesGonzalo Odiard2014-02-101-7/+5
|
* Make variable name more conssitentGonzalo Odiard2014-02-101-5/+5
|
* Fix upate the tree when the tab is selectedGonzalo Odiard2014-02-101-8/+13
|
* Load log & python files, monitoring don't workGonzalo Odiard2014-02-101-4/+4
|
* Refactor activity tree viewGonzalo Odiard2014-02-101-22/+116
| | | | Heavily based on View Source code in Sugar
* Initial port to gtk3. Starts, but can't open a activityGonzalo Odiard2014-02-071-75/+77
|
* Fix broken searchGonzalo Odiard2014-02-071-11/+7
|
* Fix opening of log filesGonzalo Odiard2014-02-071-8/+8
| | | | Did a refactoring renaming fullPath to full_path too.
* Don't save in the journal when a source file is selectedGonzalo Odiard2014-02-071-1/+0
| | | | | | Is slow, and should not be needed. Signed-off-by: Gonzalo Odiard <godiard@sugarlabs.org>
* Comment code related to "replace text" buttonGonzalo Odiard2014-02-061-1/+15
| | | | | | | | | The functionality to do "Search and Replace" is commented, mainly because I am not sure about the need and the UI. Didn't removed the code, because there are a lot of work here, and need think about this more. Signed-off-by: Gonzalo Odiard <godiard@sugarlabs.org>
* Simplfy loggingGonzalo Odiard2014-02-061-12/+5
|
* Remove toolbar with file operationsGonzalo Odiard2014-02-061-193/+0
|
* Add a button to create a new file, and to remove a fileGonzalo Odiard2014-02-061-5/+79
|
* Add tooltip to save_bundle buttonGonzalo Odiard2014-02-061-0/+1
|
* Use skeletons to create activitiesGonzalo Odiard2014-02-061-11/+18
|
* Improve welcome screen (new activity)Gonzalo Odiard2014-02-061-8/+34
|
* Improve welcome screen (edit activity)Gonzalo Odiard2014-02-061-17/+18
|
* Better icons for sources, symbols ands logs radiotoolbuttonsGonzalo Odiard2014-02-041-10/+10
|
* Pep8 fixesGonzalo Odiard2014-02-041-72/+80
|
* Comment advanced search options and replace because are not workingGonzalo Odiard2014-02-041-0/+2
|
* Avoid error if a activity.info file can't be readGonzalo Odiard2014-02-041-12/+16
| | | | Signed-off-by: Gonzalo Odiard <godiard@sugarlabs.org>
* Fix error with activity path managementGonzalo Odiard2012-07-251-1/+3
| | | | Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
* Add symbols treestoreAgustin Zubiaga2012-07-161-7/+26
| | | | Signed-off-by: Agustin Zubiaga <aguz@sugarlabs.org>
* Init instrospectionGonzalo Odiard2012-07-161-0/+11
| | | | | | Add code from ninja-ide project to support analysis of code. Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
* Remove unused importGonzalo Odiard2012-07-161-1/+0
|
* Add a button to save a bundle in the journalGonzalo Odiard2012-07-161-9/+18
| | | | Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
* Change initial message due to changes in the activity behaviourGonzalo Odiard2012-07-161-10/+4
| | | | Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
* Change the way read_file and write_file worksGonzalo Odiard2012-07-101-87/+68
| | | | | | | | | | | | | | | Until now, the activity do not modified the real activities sources, but a copy in the instance directory. At saving, Develop created a bundle with the new version of the modified files. This metodology was safe, but doing tests was complex and the code was complex too. Now Develop activity will save the code in the Activities directory. Safety will be solved using git or cloning the activity with the new Sugar functionality. write_file save only a json file with session data, the bundle will be created by the user with a new button when needed. This functionality is not available right now. Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
* Treeview and Editor width fixedAgustin Zubiaga2012-07-101-1/+1
| | | | Signed-off-by: Agustin Zubiaga <aguz@sugarlabs.org>
* Replace the welcome dialog by a page in the notebookGonzalo Odiard2012-07-101-42/+109
| | | | | | | The wording in the big text is the same, probably we will need change later. Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
* Editor fixesAgustin Zubiaga2012-07-101-10/+3
| | | | | | | | | | | | Fixes: - Use TextTag to highlight a search text - Use a class only for gtksourceview2.View Bugs: - Replace, is doesn't working - Capitalization option (in search), doesn't work good. Signed-off-by: Agustin Zubiaga <aguz@sugarlabs.org>
* Fix scrollbarsGonzalo Odiard2012-07-101-1/+1
| | | | Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
* Use radio buttons in the toolbar to toggle list of sources and log filesGonzalo Odiard2012-07-101-0/+24
| | | | Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
* Remove code to update MANIFEST fileGonzalo Odiard2012-07-101-4/+0
| | | | Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
* Use new toolbarsGonzalo Odiard2012-07-101-20/+33
| | | | | | The "files" toolbar is commented Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
* Pylint fixesGonzalo Odiard2012-07-101-30/+16
|
* Use logging methods instead of a logger objectGonzalo Odiard2012-07-101-9/+6
| | | | Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
* Pep8 fixes in develop_app.pyGonzalo Odiard2012-07-101-205/+201
| | | | Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>