Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/terminal.py
Commit message (Collapse)AuthorAgeFilesLines
* Do not try to set unsensitive non existing buttonsGonzalo Odiard2013-05-291-5/+0
| | | | | | These buttons were removed in a5416e71dfece58bf4b102bbd01a7cb15ddf319c Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
* Get back a working activity history, SL #4131Simon Schampijer2013-05-291-46/+42
| | | | | | | | | | | | | | | | | | | | Because of the get_text* methods to not be introspectable the functionality to store the activity session data was disabled (no tabs and respective terminal history). The upstream bug [1] will be fixed so this patch does do the following: - uncomment the riginal code - vte_terminal_fork_command_full will return a boolean indicating success and the pid - vte_terminal_get_text will return a tuple and only the first argument is the scrollback_text [1] https://bugzilla.gnome.org/show_bug.cgi?id=676999 [2] http://git.gnome.org/browse/vte/tree/src/vte.c#n3820 Signed-off-by: Simon Schampijer <simon@laptop.org> Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
* Use json instead of simplejsonDaniel Narvaez2013-05-181-3/+3
| | | | | | | | | Signed-off-by: Daniel Narvaez <dwnarvaez@gmail.com> Acked-by: Daniel Francis <francis@sugarlabs.org> The core and most activities have moved already. This feature isn't used at the moment due the regression with saving in Journal. It's applied because it breaks the buildbot.
* Move the helpbutton before the fill separatorAgustin Zubiaga2012-10-171-4/+4
| | | | Signed-off-by: Agustin Zubiaga <aguz@sugarlabs.org>
* Expand tabs properlyDaniel Francis2012-09-261-11/+1
| | | | | | | | - If there is only one tab, it'll have the notebook with divided by two. - If there are more tabs they are expanded correctly. So this commit also corrects the expanding algorithm of the tabs. Minor change: Remove some lines from the old tab toolbar.
* Pep8 fixesDaniel Francis2012-09-251-6/+11
|
* Removing old tab toolbar. SL #3717Daniel Francis2012-06-231-41/+0
|
* Some help correctionsAgustin Zubiaga2012-06-221-3/+3
| | | | Signed-off-by: Agustin Zubiaga <aguz@sugarlabs.org>
* Help Button with useful commandsAgustin Zubiaga2012-06-211-0/+33
| | | | | | | | | Gonzalo's button ported to GTK3 Bugs: Wrap mode doesn't work Grey background Signed-off-by: Agustin Zubiaga <aguz@sugarlabs.org>
* Erasing become-root button codeRafael Ortiz2012-06-201-18/+0
|
* Fixing commentRafael Ortiz2012-06-201-2/+2
|
* Added erroneously removed FIXMEDaniel Francis2012-06-191-0/+3
|
* Drag and Drop; Removing old bug fixes; Uncommenting lines from the Gtk3 PortDaniel Francis2012-06-191-36/+10
|
* typo in commentRafael Ortiz2012-06-061-1/+1
|
* making a comment about previons patch rationaleRafael Ortiz2012-06-041-0/+4
|
* Don't save a data file in journalDaniel Francis2012-06-041-32/+33
|
* The same tabs as browseDaniel Francis2012-06-031-13/+29
|
* comment drag and drop not workingv38Rafael Ortiz2012-05-311-0/+1
|
* Gtk3 PortDaniel Francis2012-05-291-45/+57
|
* Prevent Sugar capture <Ctrl>z and <Ctrl>q send them to vte SL #3222 OLPC #11836Manuel Quiñones2012-05-101-4/+19
| | | | | | | | | | | | | | Used the same approach than the solution for the Escape capture when the activity is fullscreen mode. Refactored the method to allow this keystrokes. This fixes http://dev.laptop.org/ticket/11836 and http://bugs.sugarlabs.org/ticket/3222 . Signed-off-by: Manuel Quiñones <manuq@laptop.org> Reviewed-by: James Cameron <quozl@laptop.org> Tested-by: James Cameron <quozl@laptop.org> Signed-off-by: Rafael Ortiz <rafael@activitycentral.com>
* Revert "Used the same approach than the solution for the Escape"Rafael Ortiz2012-05-101-19/+4
| | | | This reverts commit 2ee6c30ff5d98e381f5eef6caa5bb1c73cd6a035.
* Used the same approach than the solution for the EscapeRafael Ortiz2012-05-101-4/+19
| | | | | | | | | capture when the activity is fullscreen mode. Refactored the method to allow these keystrokes. It prevents sugar to capture-Ctrl-z-and-Ctrl-q and send them to vte This fixes http://dev.laptop.org/ticket/11836 and http://bugs.sugarlabs.org/ticket/3222 .
* pep8 syntax fixedManuel Kaufmann2012-03-261-1/+1
| | | | | | Removed trailing spaces and added one more space before the inline comment Signed-off-by: Rafael Ortiz <rafael@activitycentral.com>
* Avoid Escape key disable fullscreen modeManuel Kaufmann2012-03-261-0/+5
| | | | | | | | | | | | This commit disconnect the __key_press_cb callback used in sugar.graphics.window.Window to handle the Key Press event and connect a new __key_press_cb callback (inside TerminalActivity) to manage the Escape key properly and send this key to the vte module (Virtual Terminal) This solves ticket: #440 - http://bugs.sugarlabs.org/ticket/440 Signed-off-by: Rafael Ortiz <rafael@activitycentral.com>
* Terminal: zoom shortcuts fix and set standard zoom stepManuel Quiñones2011-09-021-3/+3
| | | | | | | Thanks for Simon Schampijer for let me spot this issue. Signed-off-by: Manuel Quiñones <manuq@laptop.org> Signed-off-by: Rafael Ortiz <rafael@activitycentral.com>
*