| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
|
|
|
|
| |
host can contain the port (host of http://example.com:1234 is
example.com:1234) while hostname never contains a port. They can however
be similar. If you navigate to http://example.com then both host and
hostname will be example.com.
* Fixed docs
* added getHostName function
|
|
|
|
|
| |
Adds a new method `OC.getCurrentUser` to get both the user id and
display name Could be used for a future Js
|
| |
|
|
|
|
| |
Which is nicer than an obscure global variable
|
| |
|
|
|
|
| |
what for generateUrl cannot be used for - closes #15604
|
|
|
|
|
|
|
|
|
|
|
|
| |
This changeset allows ownCloud to run with pretty URLs, they will be used if mod_rewrite and mod_env are available. This means basically that the `index.php` in the URL is not shown to the user anymore.
Also the not deprecated functions to generate URLs have been modified to support this behaviour, old functions such as `filePath` will still behave as before for compatibility reasons.
Examples:
http://localhost/owncloud/index.php/s/AIDyKbxiRZWAAjP => http://localhost/owncloud/s/AIDyKbxiRZWAAjP
http://localhost/owncloud/index.php/apps/files/ => http://localhost/owncloud/apps/files/
Due to the way our CSS and JS is structured the .htaccess uses some hacks for the final result but could be worse... And I was just annoyed by all that users crying for the removal of `index.php` ;-)
|
| |
|
| |
|
|
|
|
| |
Fixed border in file action menu
|
| |
|
| |
|
|\
| |
| |
| |
| | |
owncloud/issue-19916-settings-menu-hide-on-file-action
Use the normal OC.menu JS for handling the Settings menu
|
| | |
|
|/
|
|
|
|
|
|
|
|
| |
All IE versions are not able to properly upscale SVG icons unless the
said SVG files contain a "viewBox" attribute, which is not always the
case. Also we cannot guarantee that all third party apps will have this
attribute in their icons.
So for now, app icons will not be displayed in IE instead of broken
ones.
|
| |
|
|\
| |
| | |
Fix filelist size issues, breadcrumb, multiselect
|
| |
| |
| |
| |
| |
| |
| | |
- calculate multiselect header width to exclude scrollbar
- call FileList._onResize() when sidebar is toggled ("appresized"), this
also updates the breadcrumb width
- moved global getScrollBarWidth() to OC.Util namespace
|
|/
|
|
| |
* fixes #18627
|
|
|
|
|
|
| |
Added hack that uses a "filter" CSS with explicit URL to fix the "New"
menu by scaling down icons and also fix the folder/filetype icon in the sidebar
by scaling it up.
|
| |
|
| |
|
|
|
|
|
|
|
| |
If a response to a $.ajax() request returns a content type of "application/javascript"
JQuery would previously execute the response body. This is a pretty unexpected
behaviour and can result in a bypass of our Content-Security-Policy as well as
multiple unexpected XSS vectors.
|
|
|
|
|
|
|
|
| |
Controls bar calculation needs to take the sidebar visibility into
account.
Recalculation is now triggered when sidebar is toggled, using a new
app-content event "appresized".
|
|\
| |
| | |
Sidebar file actions
|
| | |
|
|\ \
| | |
| | | |
Replace tipsy with tooltip
|
| |/ |
|
|\ \
| |/
|/| |
fix mobile scrolling, lower sidebar sensitivity, fix #11193
|
| | |
|
| |
| |
| |
| |
| |
| | |
FileActionsMenu is now a backbone view.
The trigger and highlight handling is now done in the
FileActions.showMenu() method using events.
|
| |
| |
| |
| |
| |
| | |
File actions now have two types "inline" and "dropdown". The default is
"dropdown".
The file actions will now be shown in a dropdown menu.
|
|/ |
|
|\
| |
| | |
Add loading spinner to download icon
|
| | |
|
|\ \
| | |
| | | |
Fix tooltip for modification time
|
| | | |
|
|/ / |
|
| |
| |
| |
| |
| |
| | |
Tipsy also supported the `fallback` element which will now not work anymore. To enhance compatibility we shall also implement it in the shim.
Fixes https://github.com/owncloud/core/issues/17870
|
|\ \
| | |
| | | |
Replace jQuery tipsy with bootstrap tooltip
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Fix OC.joinPaths with empty arguments
|
| | | |
| | | |
| | | |
| | | |
| | | | |
When empty arguments are given, the leading or trailing slash was not
detected properly.
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
These should be used in the future instead of location.*.
It will make it possible to stub these methods for writing unit tests
and simulating different URL schemes.
|
| |/
|/| |
|
|/ |
|
| |
|
|
|
|
| |
* fixes #12326 - the settings menu is closed now, because the event is executed
|