0
Under review

Upload shortcut key not working, download working fine

tjandae 4 years ago in iPad updated by Alexander Blach (Developer) 4 years ago 1

Option + Command + Up arrow is not working but option + command + down arrow is working fine

0
Under review

Refresh file view from Workingcopy?

Mark Levison 4 years ago in iPad updated by Alexander Blach (Developer) 4 years ago 1

I'm using workingcopy as my git tool and it's connected to text stick. There are a number of new files in my repo and text stick doesn't see them automatically, nor can I find a refresh function. How to magically cause them to be seen?

0
Answered

Is there way to render this simple vue example?

Nicholas Hernandez 4 years ago in iPad updated by Alexander Blach (Developer) 4 years ago 3

Hello -

I have an example script that i am working on through a new course i am taking. I have attached the two files and when I select to preview in safari when in the index.html file it shows the actual text {{ sayHello() }} instead of the function listed in JavaScript.


app.js
index.html

Please let me know what I may be doing wrong or if it is not possible!

Thanks.

Nick

Answer

It looks like you need to include vue.js after the #app div. I changed the index.html file to this and it worked for me:


index.html


0

Improve SSH Terminal Font Size by having hotkey or pinch zoom

matthew 4 years ago in iPad 0

SSH Terminal needs either a hotkey or being able to pinch to zoom to change the font size.

0
Under review

INK from Inkle TmLanguage

Lars Mathiasen 4 years ago in iPad updated by Alexander Blach (Developer) 4 years ago 1

Hello. Can I add this TmLanguage bundle to Textastic for IOS? 
Ink TmLanguage
I tried to add the ink.tmlanguage file to my #textastic local folder on my iPad but I did not work. 

0
Under review

Feature Request - SSH Name Tabs Option

Vixen 4 years ago in iPad updated 4 years ago 2

Please allow the option for us to label the tabs and the label be persistent until either A) the tab is closed or B) the user changes the label again manually.  This would help when managing multiple servers via SSH at once.

0

Open with encoding doesn't work

bora734 4 years ago in iPad 0

it usually works but some of the files, I choosed Korean (Mac OS) option,

but pop-up message forces me to save the file as UTF8 or some Latin encoding. Or whatever i didn't choice. 


0
Under review

link HTML and CSS files

けた 4 years ago in iPad updated 4 years ago 2

I can easy english only, sorry.


I wrote it like this.


Image 397


but, Could not link HTML and CSS files.


If there are any mistakes, Please let me know.

0

having trouble with ssh to lightsail

sideshowtom 4 years ago in iPad 0

Trying to ssh to my amazon lightsail instance without success.  The error I'm getting is


"ERROR: Public key authentication failed: Unable to extract public key from private key file: Wrong passphrase or invalid/unrecognized private key file formatERROR: Failed to authenticate - methods: (publickey)"


But there is no passphrase.  It seems to find the private key file I downloaded from the lightsail instance because it doesn't get as far without it being in ssh/id_rsa.  I've also tried naming it ssh/private.pem.

Any help is appreciated :)

0
Under review

Redirect URLs starting with "/" to the project folder

John 4 years ago in iPad updated 4 years ago 3

Modify the server (perhaps via a checkbox) so that when previewing HTML code with root references they reflect in the project folder.

For example:

<head>
    <script src="/script.js"></script>

</head>

would have "/script.js" redirected to "localhost/XYZ/Root project folder/script.js" via a 302 request, and maybe an option to toggle this?


You can use the "Referer" request header to assosiate the request to a project, and then alter the URL accordingly.


In your past comments on the issue you added to 'just use <script src="script.js"></script> instead' which doesn't work when you have a nested file structure such as:

Project Root

 -> script.js

 -> index.html

 -> Nested Folder

 ----> page_1.html

-> Images

 ----> image_1.png 


And you want page_1.html to access images or scripts from the root. (i.e. an image with the path "/Images/image_1.png" is the correct way of doing this).

The current behaviour (of not redirecting) makes serious "nested folder" (as in the majority of websites) web development near-impossible on the editor, as you can't locally test.



To confirm the steps for a fix:

  1. Request is made for a URL
  2. Check to see if the file exists at the request location, if it does serve the file and continue
  3. If the request is not valid (would 404), check to see if the request path starts with "/"
  4. If it does start with "/", use the "Referer" header to find the root directory of the project
  5. Serve a 302 redirect to the root directory of the project + request path