Coder Social home page Coder Social logo

terminal-ide's People

Contributors

googlecodeexporter avatar

terminal-ide's Issues

HTC Vision hard keyboard ALT keys do not select alternative keys

What steps will reproduce the problem?
1. Using HTC Vision hard keyboard, press ALT + any other key at the Terminal 
IDE bash prompt

What is the expected output? What do you see instead?

I expect to be able to type the alternate character shown on the key above the 
letter (i.e. 1 for ALT+Q, / for ALT+L, & for ALT+G, * for ALT+H...)  Instead, 
no character is printed.  It looks like Terminal IDE is altering the ALT key 
behavior so that it does not select the key's alternate character.  Here is an 
example of right ALT+L, which should display /:

02-18 16:47:37.859 minal IDE KEY_LOGGER  V  Key Logged : 58
02-18 16:47:38.009 minal IDE KEY_LOGGER  V  Key Logged : 40
02-18 16:47:38.249         SpartacusRex  V  EMVIEW : ALT OFF

Is there a way to let the hard keyboard input not be modified?  I do not have 
any custom key mappings (I even reset them in the Terminal IDE keyboard menu).  


What version of the product are you using? On what operating system?

HTC Vision, CyanogenMod-7.1.0-vision (android 2.3.7), Terminal IDE System 1.95

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 18 Feb 2012 at 10:00

Enter key does not behave in some fields.

Example: in terminal (on device) start tmux and enter: ctrl-a, comma (rename 
window), enter a name, and then press the enter key. The enter key is ignored. 
press ctrl-m to simulate an enter key. ctrl-m is accepted.

CTRL-M can be used to simulate an enter key until this is resolved, but it 
would be nice to know what the real problem is.

This is not a problem in telnet with a physical keyboard.

Device used to generate this error is a rooted HTC EVO 4G.

Original issue reported on code.google.com by [email protected] on 9 Dec 2011 at 4:23

nslookup does not work, nameserver is 127.0.0.1

What steps will reproduce the problem?
1. run "nslookup heise.de"
2. see failure
3.

What is the expected output? What do you see instead?
Expect an ip address, get "can't resolve, name or service not known"

What version of the product are you using? On what operating system?
latest on android 3.2


Original issue reported on code.google.com by [email protected] on 30 Jan 2012 at 10:56

Git pull error (syntax error)

What steps will reproduce the problem?
1. after a commit, run: $ git pull; git push 
2.
3.

What is the expected output? What do you see instead?
git pull expected (fetch & merge) but responds with this error:
/data/data/com.spartacusrex.spartacuside/files/system/bin/git-pull: 
/data/data/com.spartacusrex.spartacuside/files/system/bin/git-sh-setup: line 
33: syntax error: unexpected "done"

What version of the product are you using? On what operating system?
"System v1.95" on Asus Transformer (original), running Prime ROM (Android 3.2)

Please provide any additional information below.
Might this be (in some way) related to an SSH key issue? I had some trouble 
with SSH, and tried the steps in other posts.

Original issue reported on code.google.com by [email protected] on 29 Feb 2012 at 9:54

ssh config is ignored

What steps will reproduce the problem?
1. create a ssh Host "example" in .ssh/config
2. ssh example
3. ssh exited: Error resolving: 'example' port '22': No address associated with 
hostname

What is the expected output? What do you see instead?
connect to the host

What version of the product are you using? On what operating system?
TerminalIDE 1.99
ssh: 'Dropbear client v0.52'

Original issue reported on code.google.com by [email protected] on 15 Mar 2012 at 2:53

Low space error on Samsung galaxy s

What steps will reproduce the problem?
Installing terminal IDE is fine but when you install the system the phone has a 
low space error.

What version of the product are you using? On what operating system?
System 1.95
On Android 4 using galaxy s

Original issue reported on code.google.com by [email protected] on 9 Mar 2012 at 7:32

Scrolling redraw errors in nano

To reproduce: 

Open nano with some file longer than a screen.

Scroll down. 

It now looks as if empty characters don't erase previously filled ones, as the 
lines become a jumble.

Hitting Ctrl-L refreshes the display and then it looks correct.

I am on a Samsung Galaxy S, ICS 4.0.3 (CM9 alpha).

Original issue reported on code.google.com by [email protected] on 30 Jan 2012 at 11:39

DNS in busybox not working

ping, nslookup and other utilities requiring DNS fail to resolve hostnames. 
From the searching on Google I did, it appears to be a problem stemming from 
statically linking busybox but I'm not 100% sure.

OS: Android 2.1, using system-1.95

Original issue reported on code.google.com by [email protected] on 9 Feb 2012 at 12:54

No JAR Files specified.

What steps will reproduce the problem?
1. Create simple HelloWorld.java
2. javac HelloWorld.java - works
3. java HelloWorld (or even java -version)


What is the expected output? 
Hello World

What do you see instead?
InvocationException: No JAR Files specified.

I did a search for jars.  I found one called 
./files/system/src/classes/android.jar

I did CLASSPATH=./files/system/src/classes/android.jar

That didn't seem to do it.

Is there some other install I need to do to get an rt.jar and classpath setup?


What version of the product are you using? On what operating system?
1.7
Honeycomb 3.2.1


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 3 Jan 2012 at 6:13

Add ssh-keygen

With all the ssh we are doing, it would be nice to have ssh-keygen so we don't 
have to keep typing in the password over and over again.

Original issue reported on code.google.com by [email protected] on 2 Feb 2012 at 6:01

home folder is not found using "~" in script

That steps will reproduce the problem?

1. Generate rsa key using dropbearkey:
# dropbearkey -t rsa -f ~/.ssh/id_rsa  

2. Extract an id_rsa.pub equivalent :
# dropbearkey -y -f ~/.ssh/id_rsa | grep “^ssh-rsa ” >> authorized_keys

3.  Send the key generated to your github account, for instance.

4. Create script "wrap_ssh" in ~/bin/:
#!bin/sh
exec ssh -i ~/.ssh/id_rsa "$@"

5. chmod the script:
chmod 755 wrap_ssh.sh

6. Modify "~/.bashrc" to include :
export GIT_SSH=~/bin/wrap_ssh.sh

7. Try to glone to your git repo using "git clone".

What is the expected output? What do you see instead?

The expected output is a clone of the repo.

The output seen instead is:
error: cannot run 
/data/data/com.spartacusrex.spartacuside/files/bin/wrap_ssh.sh: No such file or 
directory

What version of the product are you using? On what operating system?

TerminalIDE v.1.99 with Android 4.0.3 running on Asus Eee Pad Transformer Prime 
(32 GB) with dock.

Please provide any additional information below.

~/bin/wrap.ssh has the following details:

-rwxr-xr-x  1   10080 
 10080

Doing "sh ./wrap_ssh.sh" from "~/bin/" works as it should.

Original issue reported on code.google.com by [email protected] on 17 Mar 2012 at 6:43

No colors on ssh connection

What steps will reproduce the problem?
1. connect through ssh: $ ssh [email protected]
2. start color-enabled terminal program on the remote server: byobu, vim og 
ccze...
3. See no colors. Only regular, bold or underlined text

What is the expected output? What do you see instead?

Colors

What version of the product are you using? On what operating system?

Asus Transformer TF101, with android 3.2.1 (danish locale)
Connecting to ubuntu 11.10 amd64 desktop

Please provide any additional information below.

workaround/fix:
Set $TERM environment variable to something else than "xterm"

$ export TERM=screen

Original issue reported on code.google.com by [email protected] on 17 Feb 2012 at 11:57

segmentation fault

i had an issue with terminal ide with trying to use javac and get segmentation 
fault, vim busybox etc works but when i input javac to see if the compiler work 
i get this. i had reboot, factory reset and reinstall the app and nothing 
please help thank you 


Original issue reported on code.google.com by [email protected] on 4 Feb 2012 at 4:21

git missing features

Trying to pull from some git repos that authenticate fail due to git not having 
commands like git-remote-https in /data/data/<namespace>/system/bin.

Original issue reported on code.google.com by [email protected] on 17 Jan 2012 at 3:33

Using "mc" and the built-in FISH protocol causes a segmentation fault in mc

What steps will reproduce the problem?
1. Left/Shell link to enter <user>@remote.machine

What is the expected output? What do you see instead?

The connection (ssh?) to the remote machine seems to complete, however, when 
the remote directory is to be read, mc reports a seg fault and aborts.

What version of the product are you using? On what operating system?

1.33 on Android 3.2.1 (Asus Transformer)

Please provide any additional information below.

While this does not seem to be a problem with Terminal IDE, it may lie within 
the particular compilation of mc being distributed with mc.

Original issue reported on code.google.com by [email protected] on 2 Dec 2011 at 4:03

Parse Error: There is a problem parsing the package.

Telnet from pc (putty, usb tether)

Following instructions as per "Tutorial 5":

./install

A popup window on the phone with window name "Parse Error" and text "There is a 
problem parsing the package" and a "OK" button.

The telnet terminal: (local ip obscured)

[email protected].###.###:~/system/src/demo_android$ ./install.sh
cp: can't stat './dist/demo_android_signed.apk': No such file or directory
Starting: Intent { act=android.intent.action.VIEW 
dat=file:///sdcard/demo_android_signed.apk 
typ=application/vnd.android.package-archive }

Original issue reported on code.google.com by [email protected] on 7 Dec 2011 at 10:21

SVN support

Nicely done!

Is adding SVN support (inside the app, not for the application code) anywhere 
on the roadmap?

If not, would it be as simple as adding the correct file structure into 
system-1.92.tar.gz(.mp3)?

Also, do you have a donate button? :)

Kind Regards,
Alex

Original issue reported on code.google.com by [email protected] on 16 Jan 2012 at 4:56

"There is a problem parsing the package" message

What steps will reproduce the problem?
1. When I want to install this program.
2.
3.

What is the expected output? What do you see instead?
in the popup "There is a problem parsing the package" message.

What version of the product are you using? On what operating system?
I tried all versions. 

Please provide any additional information below.
My Phone Samsung i7500 galaxy, Android OS version Froyo.

Original issue reported on code.google.com by [email protected] on 22 Nov 2011 at 8:15

add ctags

What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?


Please provide any additional information below.


Original issue reported on code.google.com by Gabriel.Pettier on 5 Apr 2012 at 7:45

busybox microcom support

busybox supports a microcom communications app that allows access to a usb to 
serial converter. i haven't looked at the source to see if its just a flag to 
enable it but it would awesome to include that with the busybox install.  other 
than that the app is awesome so far on an asus transformer prime.


Original issue reported on code.google.com by [email protected] on 30 Dec 2011 at 3:45

Bluetooth keyboard doesn't send Ctrl or Alt

What steps will reproduce the problem?
1. Connect (Logitech) Bluetooth keyboard
2. Issue ctrl or alt sequence
3.

What is the expected output? What do you see instead?

For instance, when logging into a remote machine through ssh, Ctrl and Alt 
don't get sent.  I am also unable to send them to bash.

What version of the product are you using? On what operating system?

I'm running a Galaxy Tab 10.1 with a Logitech bluetooth keyboard.

Please provide any additional information below.

This also seems to be a problem in a couple other applications, although 
supposedly with Android 3.0, this can be implemented directly.  A few examples 
of discussion:

https://github.com/kruton/connectbot/pull/16
https://github.com/kruton/connectbot/pull/3
http://code.google.com/p/connectbot/issues/detail?id=369 (especially comment 55)

I'm not sure that it's a completely tractable problem, but it would be hugely 
helpful to be able to use ctrl/alt and so on from inside terminal-ide.  This 
project is pretty impressive!

Original issue reported on code.google.com by [email protected] on 12 Jan 2012 at 11:40

limited exit options

The only way to close all windows is from the application main menu.

Typing exit locks up a given window, but otherwise has no effect.

The window selection menu does not include an option to close the 
application/all windows.

I am using: (rooted) Evo 4G, Swag=on rom.


Original issue reported on code.google.com by [email protected] on 7 Dec 2011 at 8:35

Dalvik VM requires a class name

What steps will reproduce the problem?
1. I try to use java it term
2. Add bin path to the bashrc
3. execute java and return "Dalvik VM requires a class name"

What is the expected output? What do you see instead?

Dalvik VM requires a class name
What version of the product are you using? On what operating system?

1.98
Please provide any additional information below.
Google G1

Original issue reported on code.google.com by gmszone on 5 Mar 2012 at 11:20

git-pull broken / missing

What steps will reproduce the problem?
1. have existing git project
2. execute git pull

What is the expected output? What do you see instead?
expected is successful pull, but I get: 
<
/data/data/com.spartacusrex.spartacuside/files/system/bin/git-pull: git-merge: 
not found
fatal: 'pull' appears to be a git command, but we were not able to execute it. 
Maybe git-pull is broken?
>
No new files / changes are applied. log is not up-to-date, pull doesn't make 
any operations.

What version of the product are you using? On what operating system?
Transformer Prime, Android OS, Terminal IDE version 1.99

Original issue reported on code.google.com by [email protected] on 9 Mar 2012 at 11:00

Author missing from git commit

Hi, I have tried setting the user information via

git config --global user.name "Name"
git config --global user.email "[email protected]"

and locally as well via

git config user.name "Name"
git config user.email "[email protected]"

But yet when I commit, it is still not reading those configurations. The author 
for the commit is still "default_git_username"

Original issue reported on code.google.com by [email protected] on 25 Feb 2012 at 5:20

No colors on ssh connection

What steps will reproduce the problem?
1. connect through ssh: $ ssh [email protected]
2. start color-enabled terminal program on the remote server: byobu, vim og 
ccze...
3. See no colors. Only regular, bold or underlined text

What is the expected output? What do you see instead?

Colors

What version of the product are you using? On what operating system?

Asus Transformer TF101, with android 3.2.1 (danish locale)
Connecting to ubuntu 11.10 amd64 desktop

Please provide any additional information below.

workaround/fix:
Set $TERM environment variable to something else than "xterm"

$ export TERM=screen

Original issue reported on code.google.com by [email protected] on 17 Feb 2012 at 11:57

Vim syntax color not working

What steps will reproduce the problem?
1. Open any html, js, css, sh file and even with 'syntax on' in .vimrc it will 
remain white on black

Asus transformer prime, Android 4 ICS

Also I would like to note that this device has a Ctrl key and there is no 
option to assign that key to be Ctrl, I'm using the right alt key. That last 
update had the option to swith the back key to escape, that was a cool feature 
but it left me longing for the Ctrl key. If I need to create a new issue for 
this problem please let me know. SVN would also be cool.

Original issue reported on code.google.com by [email protected] on 29 Jan 2012 at 3:03

Hard to get to initial menu screen

What steps will reproduce the problem?
1. After a large amount of switching between applications, pressing the back 
button returns to a different application instead of the initial menu screen.

What is the expected output? What do you see instead?
Pressing the back button returns to previously used apps, preventing access the 
the initial menu screen. This prevents shutting down, looking at help etc. 
without first force closing the app (not a great solution)
I seem to remember from somewhere that android only stores a certain amount of 
history screens for each app...

What version of the product are you using? On what operating system?
Latest release, stock android 4.02, galaxy nexus

Please provide any additional information below.
A button on the long press menu or the "menu button" menu that sends you to the 
initial menu screen would solve this problem.


Original issue reported on code.google.com by [email protected] on 30 Mar 2012 at 11:55

Timezone support (specifically with rsync)

I've discovered that timezone is not set in the Terminal IDE. Typing

#> date
gives time in UTC whereas my local time is CET. Consequently the time is one 
hour off from what the clock in the Android tray shows. 

I've actually discovered this problem while running rsync on the tablet in the 
daemon mode to synchronize files with the PC. When transferring from PC to 
Device they consistently get a time-stamp which is again one hour off. 
Annoyingly enough they get detected as updates upon the next rsync run.

Interestingly I've been running rsync couple of times before in a client mode 
and did not notice this behavior, but I did not try to investigate it further.

Greetings,
Maxim

P.S.: great app by the way, by far the best free app I've seen to date.


Original issue reported on code.google.com by [email protected] on 23 Jan 2012 at 10:45

256color support

There are a lot of terminal applications available today (vim and emacs to name 
two) that offer extra functionality in terminals that support ANSI 256color 
output. Currently I see that applications that are 256color-aware fail to 
render correctly using the current version of terminal-ide; the colors don't 
even fall back to the basic 16 ANSI terminal colors (which they should, 
according to some implementations), instead, they behave similarly to the 
"reset" character in that they set the corresponding color to black.

It would be fairly trivial to add support for 256colors, since it's just an 
extension of the ANSI color table anyways; the application does just have to be 
aware of the additional color codes and map them accordingly.

Original issue reported on code.google.com by [email protected] on 3 Mar 2012 at 2:23

Dx produces OutOfMemory exception

What steps will reproduce the problem?
When i'm trying to build an android project which uses external libraries, dx 
gives an OutOfMemory excetption. I don't think libraries would be too large 
(it's only 250kb).

What is the expected output? What do you see instead?
Excpected output is nothing, i see the error message instead.

What version of the product are you using? On what operating system?
The most recent version, on Android 3.1.

Please provide any additional information below.
I've tried also to allow more memory to the foreground application, with 
RomToolbox, but it didn't helped.

Or is it possible that i've done something wrongly?

Original issue reported on code.google.com by [email protected] on 14 Mar 2012 at 1:19

rsync to different port fails

What steps will reproduce the problem?
1. With a remote sshd running on port 80:
2. rsync -av user@[someip]:80/some/remote/dir ./some/local/dir
3.

What is the expected output? What do you see instead?

Expecting success, I see instead:
ssh: exited: Error connecting: Connection refused
rsync: connection unexpectedly closed (0 bytes received so far) [Receiver]
rsync error: error in rsync protocol data stream (code 12) at io.c(601) 
[Receiver=3.0.8]

What version of the product are you using? On what operating system?
1.95

Please provide any additional information below.
Apps like botsync can successfully connect to the same server.

Original issue reported on code.google.com by [email protected] on 14 Apr 2012 at 6:58

select text

How can I select and copy/paste text on the terminal?

Original issue reported on code.google.com by [email protected] on 21 Dec 2011 at 2:53

Installing packages(Doubt, not an issue)

Hi, 

I am having a couple of doubts regarding this app:

1) I was wondering if its possible to install packages using Terminal IDE, ex: 
g++ or gcc. Does the usual 
"sudo apt-get install package", ubuntu style install work for it? if not, is 
there any other way? Is there any documentation for this app? Also, is it valid 
to try and install stuff into it?

2) I installed the system, which said that its going to overwrite ~system/ 
folder, exactly does it replace(and what are the changes that occur to the 
phone OS because of this?

Just in case, if it matters, I'm using Android version 2.3.6 with Gingerbread 
and it is a Samsung Phone.

Thanks!

Original issue reported on code.google.com by [email protected] on 27 Dec 2011 at 7:23

Can not call javac from ssh client, but can run javac on the device.

What steps will reproduce the problem?
1. sshd start
2. ssh login use command from help
3. run javac

What is the expected output? What do you see instead?
It should print javac usage.I got error messages
java.lang.SecurityException: /data/app/com.spartacusrex.spartacuside-2.apk 
failed verification of META-INF/SPARTACU.SF
    at java.util.jar.JarVerifier.failedVerification(JarVerifier.java:135)
    at java.util.jar.JarVerifier.verifyCertificate(JarVerifier.java:312)
    at java.util.jar.JarVerifier.readCertificates(JarVerifier.java:265)
    at java.util.jar.JarFile.getInputStream(JarFile.java:389)
    at org.apache.harmony.luni.internal.net.www.protocol.jar.JarURLConnectionImpl.getInputStream(JarURLConnectionImpl.java:239)
    at java.net.URL.openStream(URL.java:645)
    at java.lang.ClassLoader.getResourceAsStream(ClassLoader.java:486)
    at java.util.ResourceBundle$2.run(ResourceBundle.java:553)
    at java.util.ResourceBundle$2.run(ResourceBundle.java:551)
    at java.security.AccessController.doPrivileged(AccessController.java:116)
    at java.security.AccessController.doPrivileged(AccessController.java:85)
    at java.util.ResourceBundle.handleGetBundle(ResourceBundle.java:550)
    at java.util.ResourceBundle.handleGetBundle(ResourceBundle.java:588)
    at java.util.ResourceBundle.handleGetBundle(ResourceBundle.java:588)
    at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:422)
    at java.util.ResourceBundle.getBundle(ResourceBundle.java:133)
    at com.sun.tools.javac.main.JavaCompiler.version(JavaCompiler.java:112)
    at com.sun.tools.javac.main.JavaCompiler.version(JavaCompiler.java:97)
    at com.sun.tools.javac.main.Main.bugMessage(Main.java:434)
    at com.sun.tools.javac.main.Main.compile(Main.java:421)
    at com.sun.tools.javac.main.Main.compile(Main.java:308)
    at com.sun.tools.javac.main.Main.compile(Main.java:299)
    at com.sun.tools.javac.Main.compile(Main.java:82)
    at com.spartacusrex.spartacuside.external.javac.main(javac.java:13)
    at dalvik.system.NativeStart.main(Native Method)



What version of the product are you using? On what operating system?
1.92 
My Phone is Sony Ericsson MT15i


Original issue reported on code.google.com by [email protected] on 7 Jan 2012 at 5:58

tutorial 5 error on install.sh : android 4.0.1

What steps will reproduce the problem?
1. fresh ide install
2. follow tutorial 5 up to step ./install.sh

What is the expected output? What do you see instead?
* builder.sh throws an exception, 
* .apk are created nontheless in dist/
* install.sh produces error popup "There is a problem parsing the package"

What version of the product are you using? On what operating system?
terminalide v1.9, samsung galaxy nexus (android 4.0.1)



Please provide any additional information below.

output of ./builder.sh

...
Message : Parsing the input's central directory @ 0%
java.lang.IllegalStateException: Can't handle general purpose bits == 0x0808
        at kellinwood.zipio.ZioEntry.doRead(ZioEntry.java:360)
        at kellinwood.zipio.ZioEntry.read(ZioEntry.java:338)
        at kellinwood.zipio.ZipInput.doRead(ZipInput.java:166)
        at kellinwood.zipio.ZipInput.read(ZipInput.java:76)
        at kellinwood.security.zipsigner.ZipSigner.signZip(ZipSigner.java:615)
        at com.spartacusrex.spartacuside.external.jarsigner.main(jarsigner.java:54)
        at dalvik.system.NativeStart.main(Native Method)
Message : Generating signature block file @ 100%
...

----

compiling MainACtivity.java in terminalide with f7 results in error

 package org.library does not exist



Original issue reported on code.google.com by [email protected] on 23 Dec 2011 at 11:13

wget has no -o option

The busybox-wget has no -o option (save log to), only -O (save output to)... 
please include a full wget.

Original issue reported on code.google.com by [email protected] on 15 Mar 2012 at 2:39

Unable to type capital letters nor shift with IS11T handphone (hardware keyboard)

Terminal: IS11T handphone (with integrated hardware keyboard)

The shift key is undetected, and there is no mean at all to enter capital 
letters.
The shift key code is 59, but the "hardware mapping" options remain uneffective 
on this keycode.

With some other terminal emulators, the capital letters where well handled.
For example here: https://github.com/jackpal/Android-Terminal-Emulator
the keyboard was correctly handled.

Original issue reported on code.google.com by [email protected] on 30 Mar 2012 at 6:41

How to setup mappings? Cannot find documentation

 I have an Asus TF201 running ICS. I am trying to remap the Search key on the physical keyboard to work as Left Alt. I open Options > External Keyboard Mappings > Left Alt Key. I have no idea what I am supposed to type in. I tried KEYCODE_SEARCH, SEARCH and 217 (a code I found in /system/usr/keylayout/Generic.kl), to no avail.

In general the problem is that I have not been able to find any documentation 
at all for the program. Does it exist?

Original issue reported on code.google.com by [email protected] on 15 Feb 2012 at 1:05

no scp support in busybox installaton

What steps will reproduce the problem?
1. Try to use scp to copy a file to remote computer.  No scp binary or link to 
comparable binary exists. 
2.
3.

What is the expected output? What do you see instead?

scp not found.
Scp should execute and copy a file via ssh to a remote machine.

What version of the product are you using? On what operating system?

v1.95 Android.

Please provide any additional information below.

Not sure if it's possible but if so can you add the ability to scp files out of 
the terminal as this is often  faster and more preferable way than loading up a 
file manager for simple transfers.

Original issue reported on code.google.com by [email protected] on 5 Feb 2012 at 8:15

audible Bell

Please add an option to enable an audible bell. Especially when the IDE isn't 
the active app, this would be great.

Thanks

Original issue reported on code.google.com by [email protected] on 21 Mar 2012 at 5:02

OpenSSL?

I'd love to have access to the openssl binary, any chance of that happening?

I've been experimenting with installing some files from here: 
http://forum.xda-developers.com/showthread.php?t=1296186 
A bit more painful than I'd like, hopefully you can include some more stuff by 
default, though long term, I think some sort of package management system may 
be in order...  Not on the order of Debian's apt, but something more simplified 
like cygwin provides.

Original issue reported on code.google.com by [email protected] on 29 Jan 2012 at 3:25

UTF-8 support

Terminal-IDE works beautifully (Galaxy Nexus), except for one issue : french 
accents (I suppose it is the same with umlauts and tildes) : they simply 
disappear on the screen (but when I recuperate my vim text file , e.g., via 
Dropbox, the accents are all there...)

It seems the origin is the version of Jack Palevich's ATE imbedded in 
Terminal-IDE. 
The latest version has UTF-8 support.

Is it possible to have an update in a future version ?


Original issue reported on code.google.com by [email protected] on 30 Dec 2011 at 10:22

mercurial/git support

I still need to get more into the project, but I find it absolutely amazing! 
What I miss right now is really only th support for mercurial/git on the shell. 
That would make it easy to get projects on the device quickly to work on them 
on the road. Is that something that could be added through busybox?

Anyways amazing work!


Original issue reported on code.google.com by [email protected] on 16 Nov 2011 at 9:46

vim compiled with python

What steps will reproduce the problem?
1. use your yearly constructed, beloved .vim with plugins and all
2. start it
3. doh! vim is compiled without python support

What is the expected output? What do you see instead?
no errors starting vim / errors and disabled plugins

What version of the product are you using? On what operating system?
Terminal IDE 1.95 / android ICS

Please provide any additional information below.


Original issue reported on code.google.com by Gabriel.Pettier on 5 Apr 2012 at 7:44

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.