Samuel Georges
e7b0c3ae2c
Typo
2015-01-18 15:30:09 +11:00
Samuel Georges
47cd204686
Add event for backend, before running a controller
2015-01-18 15:23:19 +11:00
Samuel Georges
a936255407
Use Mystery man default gravatar image
2015-01-18 15:00:05 +11:00
Samuel Georges
78530afa44
Break up longer words
2015-01-18 14:52:48 +11:00
Samuel Georges
5bbb248ffa
Minor
2015-01-18 14:49:09 +11:00
Samuel Georges
6091b00f89
* Build 179
2015-01-18 14:14:08 +11:00
Samuel Georges
eb8f4ec1a8
Removed generic permission "Manage settings", these should be more granular to the tool
...
Fixes #831 - Fixes dashboard redirect, add "Manage mail settings" permission
Fixes bug in Settings permissions, they now work!
2015-01-18 13:16:18 +11:00
Samuel Georges
b970ffba96
Rem deprecated code
2015-01-18 12:14:05 +11:00
Samuel Georges
010dbb33d7
Fixes #895 - Persist query filter on paginate/list refresh
2015-01-18 11:45:25 +11:00
Samuel Georges
fe05f96266
Revert change, we don't need pagination here
2015-01-18 11:13:51 +11:00
Samuel Georges
aef8ee038a
Merge pull request #894 from gergo85/master
...
Show table setup icon and pagination
2015-01-18 11:12:35 +11:00
gergo85
5e55588ba9
Show table setup icon and pagination
2015-01-17 12:09:29 +01:00
Samuel Georges
1e0ff5d239
Merge pull request #893 from jtherczeg/develop
...
Updates for Build 178
2015-01-17 09:35:19 +11:00
jtherczeg
a629c46c69
Updates for Build 178
...
Hungarian language files updated for Build 178
2015-01-16 15:00:40 +01:00
Samuel Georges
f9ad988e81
* Build 178
2015-01-16 19:46:34 +11:00
Samuel Georges
e0f1f53b2b
Readd language keys removed by a sloppy merge
2015-01-16 18:30:55 +11:00
alekseybobkov
291a5b46aa
Merge branch 'develop' of github.com:octobercms/october into develop
2015-01-15 21:35:53 -08:00
alekseybobkov
39c4ec6371
Remove Redactor-specific markup and attributes from the edited text.
2015-01-15 21:35:39 -08:00
Samuel Georges
6f5e3c7682
Minor bug fix where first column is not sortable
2015-01-15 17:26:21 +11:00
alekseybobkov
b25606ddd1
Merge branch 'develop' of github.com:octobercms/october into develop
2015-01-14 19:41:51 -08:00
alekseybobkov
5d82dc5d10
minor
2015-01-14 19:41:42 -08:00
alekseybobkov
f5aee22110
Improved default checkbox value handling in the Inspector. Imrpovements in the Redactor figure toolbar support.
2015-01-14 19:39:53 -08:00
Samuel Georges
dfee19a543
Introduce a delay on the CMS sidepanel tab
2015-01-14 17:34:47 +11:00
alekseybobkov
3499bbf063
Compiled Table JavaScript files, removed old table-min.js
2015-01-13 21:05:45 -08:00
alekseybobkov
c2d03194b4
Merge branch 'develop' of github.com:octobercms/october into develop
...
Conflicts:
modules/backend/widgets/table/assets/js/build-min.js
2015-01-13 18:46:01 -08:00
alekseybobkov
70d3778611
Minor changes in the Table widget validation
2015-01-13 18:44:20 -08:00
Samuel Georges
7119ae5695
Merge pull request #886 from mahony0/patch-3
...
Update lang.php
2015-01-13 21:21:57 +11:00
Samuel Georges
363ef7fde3
Merge pull request #868 from Rias500/master
...
Allow SVG in image upload
2015-01-13 17:51:48 +11:00
Samuel Georges
69a3aedffb
Fixes an issue where duplicate assets are sent across the AJAX wire
2015-01-13 17:46:46 +11:00
Samuel Georges
66cc3a852f
Minor fix
2015-01-13 17:26:53 +11:00
Samuel Georges
83cfb52d76
Recompile assets
2015-01-13 17:26:53 +11:00
alekseybobkov
433e99d6e7
Fixed a bug with closing tabs in the CMS
2015-01-12 22:23:13 -08:00
Samuel Georges
512b05edc1
* Build 175
2015-01-13 08:36:02 +11:00
Mahmut
7cac0e421e
Update lang.php
...
Why these lines removed? On backend/backend/usergroups, strings not showing up..
2015-01-12 15:10:50 +02:00
Samuel Georges
c4cef299dd
Fixes #828 - php artisan october:util compile assets
2015-01-12 20:08:53 +11:00
Samuel Georges
7e7d77c5e6
Fixes #869 - Constructor doesn't have static. ping @alekseybobkov
2015-01-12 20:08:52 +11:00
alekseybobkov
090264e3b9
Minor fixes in the Inspector and Scrollbar classes. Minor updates in the Table widget.
2015-01-11 20:56:17 -08:00
alekseybobkov
ac758b91c8
Merge branch 'develop' of github.com:octobercms/october into develop
2015-01-11 13:44:13 -08:00
alekseybobkov
cbc808520d
Added JS source map extension to the white map in the .htaccess file. Minor fix in the forms styling. Implemented client-side validation for the Table widget. Updated the Table widget readme file.
2015-01-11 13:42:42 -08:00
Samuel Georges
f264d73b18
Merge pull request #879 from scottbedard/patch-3
...
Patch 3
2015-01-10 11:48:19 +11:00
Scott Bedard
4d66734cc3
Update october.inspector.js
...
Reused validationMessage, and now allowing for string zero
2015-01-09 19:25:01 -05:00
Scott Bedard
f628eaf666
Adds "required" component properties
...
Adds a "required" and "requiredMessage" key to component properties. If a required field does not have a requiredMessage, a default message of "Required fields were left blank." will be used.
Example usage...
```php
public function defineProperties()
{
return [
'maxItems' => [
'title' => 'Max items',
'description' => 'The most amount of todo items allowed',
'type' => 'string',
'required' => true,
'requiredMessage' => 'You must set the maximum todo items allowed!'
]
];
}
```
2015-01-09 19:12:21 -05:00
Samuel Georges
ddaceb5ad7
Merge pull request #875 from scottbedard/patch-2
...
Adds isHidden check to backend components widget
2015-01-10 10:52:41 +11:00
Samuel Georges
aa11693117
Merge pull request #867 from mahony0/patch-2
...
Update lang.php
2015-01-10 10:41:51 +11:00
Samuel Georges
6ffccd9e4e
Merge pull request #866 from mahony0/patch-1
...
Update lang.php
2015-01-10 10:41:32 +11:00
Samuel Georges
dd6233e81d
Clean up code
2015-01-10 10:41:02 +11:00
Samuel Georges
c2b6b4be5f
Merge pull request #865 from gergo85/master
...
Add plugin counter
2015-01-10 10:30:54 +11:00
alekseybobkov
bc287a9559
Minor fix in the drop-down cell procesor. Added some Validation documentation.
2015-01-08 20:39:44 -08:00
Scott Bedard
3ca540ac61
Adds isHidden check to backend components widget
...
Allows components to be hidden from the backend components widget by checking their isHidden value
https://github.com/octobercms/october/blob/master/modules/cms/classes/ComponentBase.php#L41
2015-01-08 09:42:41 -05:00
alekseybobkov
e1ebfac575
Merge branch 'develop' of github.com:octobercms/october into develop
2015-01-07 22:22:38 -08:00