Matt Pass
74355c0d00
Drop .gitkeep, use index.php for redirects
...
Avoids potentially exposing dir contents
2015-04-27 16:10:43 +01:00
Matt Pass
208897b040
Temp tweaks to get working, investigate more!
...
Need to clear the serverQueue, seemingly because the load process
doesn't clear the queue in time? This would be quite a big thing as we
need to be able to have a batch of commands and run them without sync
issues. To investigate,
The if condition check needs to now deduct 1 from the changeGeneration?
Why is this?
Also display test complete when finished.
2015-04-25 17:34:38 +01:00
Matt Pass
8d6c58af36
Demo/big arrow removed
2015-04-25 17:09:48 +01:00
Matt Pass
12e6bedf6d
CodeMirror dir renamed to just that
...
Dropped version number so we can see cleaner commit changes in future
2015-04-25 15:12:47 +01:00
Matt Pass
0cb99eb48f
2 x CodeMirror files (JS and CSS)
2015-04-25 15:08:34 +01:00
Matt Pass
45ec256d4f
CodeMirror theme changes
2015-04-25 15:06:46 +01:00
Matt Pass
04fa37a358
Retain existing perms on upload or set newFilePerms
2015-04-25 13:31:07 +01:00
Matt Pass
c21d57e36e
Don't include $iceRoot in comparison
2015-04-25 12:24:57 +01:00
Matt Pass
de5e759ac9
Be more specific about dir being excluded
...
Only exclude actual dir ICEcoder is running from
2015-04-25 12:20:24 +01:00
Matt Pass
bb1c047ece
Update to match main JS file
2015-04-25 12:00:48 +01:00
Matt Pass
67d44e56bb
Don't set cookie_path or use strict mode
...
Using cookie_path on IE has an issue and causes session, then CSRF
issues
Stop using strict_mode as causes a problem on some setups
Add notes to these and httponly re IE and PHP version
2015-04-25 11:53:53 +01:00
Matt Pass
c7c984f66a
Use top.ICEcoder.filesFrame in instances
...
IE has trouble selecting DOM node otherwise
2015-04-25 11:52:26 +01:00
Matt Pass
d320bb7172
Format tweak only
2015-04-25 10:50:00 +01:00
Matt Pass
fb82ab881c
Use ICEcoder.ask as confirm function
2015-04-25 10:49:50 +01:00
Matt Pass
366ad3257e
font-size now set by user settings
2015-04-25 10:49:18 +01:00
Matt Pass
75de0f3a08
Simplified to nested ternarys, comment & ; tweak
2015-04-25 10:21:05 +01:00
Matt Pass
47f64bf874
Shuffle items around and style tweaks
2015-04-25 10:15:13 +01:00
Matt Pass
400ef8cfce
Swap write order, better file check with alert
2015-04-25 10:14:34 +01:00
Matt Pass
797df35ffe
Create config settings file on the fly
...
So we can update using PHP later
2015-04-25 10:13:45 +01:00
Matt Pass
551f3f248b
Remove settings file, now created by settings.php
...
So PHP has rights to update it later (multiUser, enableRegistration for
now, more to come in the future likely).
2015-04-25 10:10:14 +01:00
Matt Pass
a2cf9483d6
Only add dir events if a dir, not file
...
(Matches commit made just after v5.0 beta release by andrey012, when
adding new dir/file using updateFileManager)
2015-04-25 06:44:09 +01:00
Matt Pass
77329e9119
Deselect value if cancelling focus
...
Amazingly, there is no deselect() as an opposite to select(). The nearest alternative seems to be setSelectionRange(0,0), but support is patchy. Most reliable solution is to set the value to itself.
2015-03-13 16:33:11 +00:00
Matt Pass
7faf1099b0
Focus again after 0ms tickover incase DOM wasn't ready
2015-03-13 16:23:15 +00:00
Matt Pass
8893a29bd3
Merge pull request #537 from andrey012/master
...
2 minor fixes - much awesomeness here! :-D Thanks @andrey012
2015-03-13 15:22:42 +00:00
Andrey Grinenko
669827653e
handling another file+line case: "filename on 123"
2015-03-13 17:59:46 +03:00
Andrey Grinenko
c6058959e3
Merge branch 'master' of github.com:andrey012/ICEcoder
2015-03-13 16:07:03 +03:00
Andrey Grinenko
b3acb61201
ice-coder.min.js updated to get changes of previous commit 7d66f32e5b
2015-03-01 18:34:39 +03:00
Andrey Grinenko
7d66f32e5b
allow opening files with name (... on line \d+) - open + goto line
2015-03-01 18:30:48 +03:00
Andrey Grinenko
0583f1ea1c
make goToLine if filename contains line number and file is already opened
2015-02-25 02:59:50 +03:00
Andrey Grinenko
f278394346
When Esc is used within Find window - return to text editor
2015-02-24 18:12:51 +03:00
Andrey Grinenko
ba634bbeed
fix to isPathFolder function
2015-02-23 01:51:56 +03:00
Andrey Grinenko
a488c19d61
Prompt when F5 (Ctrl-R) is pressed. It is common thing to refresh page after you have made some tweaks, and it is common thing to refresh wrong page and even although everything is saved and tabs will reopen - you will loose opened folders in fileManager and cursor positions in open files. So it's better to prompt anyway.
2015-02-23 01:31:12 +03:00
Andrey Grinenko
c1982279f4
use font from settings in both fileManager and Tabs - otherwise on high-density screens it is getting hard to work
2015-02-23 01:30:55 +03:00
Andrey Grinenko
ed6a9bb03c
ask for confirmation before moving files by drag-drop - it is too easy to move files by an accident
2015-02-22 19:23:16 +03:00
Andrey Grinenko
4d7ac54e6b
detect whether an item in folder list is file or folder depending on its <a> item class, rather then the fact, that it has a dot in its name (I have lots of folders named like example.com which were treated as files)
2015-02-22 19:19:37 +03:00
Andrey Grinenko
fac5bf8662
session fixation fix - previous version did not let me in, because it regenerated session before even trying to start old one and check whether it is valid or not.
...
I've also added session regeneration on login, which is good practice to prevent session fixation.
2015-02-22 19:19:19 +03:00
Andrey Grinenko
8f1cca087b
session fixation fix - previous version did not let me in, because it regenerated session before even trying to start old one and check whether it is valid or not.
...
I've also added session regeneration on login, which is good practice to prevent session fixation.
2015-02-21 02:58:44 +03:00
Andrey Grinenko
d826469c49
Merge branch 'master' of git://github.com/mattpass/ICEcoder
2015-02-20 23:52:19 +03:00
Andrey Grinenko
878ceef2ec
cosmetics - make comments little more readable
2015-02-20 23:50:19 +03:00
Andrey Grinenko
e1a1b1b1cf
minor tweaks:
...
treat XML as editable file
use htmlentities to escape textarea content
2015-02-20 23:49:54 +03:00
Andrey Grinenko
9f408abb34
allow Ctrl-O + enter filename with line number (captured from log or exception trace) - to go straight to the line
2015-02-20 23:49:02 +03:00
Andrey Grinenko
52d7d0819c
indentAuto - make configurable
2015-02-20 23:40:47 +03:00
Matt Pass
46a0e62a84
Merge pull request #539 from unix4you2/master
...
Spanish language in settings-screen.php
2015-02-20 18:41:51 +00:00
John Arroyave
bd692990cb
Spanish language in settings-screen.php
2015-02-19 07:05:26 -05:00
Matt Pass
9b7f0bd15a
Merge pull request #538 from unix4you2/master
...
Spanish (ES) language by @unix4you2
2015-02-19 08:06:30 +00:00
John Arroyave
fcd1b4fb64
Spanish (ES) language by @unix4you2
2015-02-17 14:55:31 -05:00
Andrey Grinenko
c96c5cd12b
2 things about "Ctrl-F" find:
...
1. if there is some selection - in the code window - put it into the search box straight away
2. tweak for Chrome - somewhy it had problem with using Ctrl-F more then once
2015-02-17 09:15:15 +03:00
Andrey Grinenko
db3130f911
when Ctrl-F - select text in find text input in order to make user able to enter new text right away, without need to remove old text first
2015-02-16 14:01:11 +03:00
Andrey Grinenko
ae37460e92
Preserve line endings when editing existing file.
2015-02-16 13:18:32 +03:00
Andrey Grinenko
2e601a4ccc
do not add openCloseDir onclick handler (which loads folder contents) for files. Files are not folders and this handler only causes problems overlapping with doubleClick handler sometimes.
2015-02-16 13:15:16 +03:00