Commit Graph

2785 Commits

Author SHA1 Message Date
root
fead5df810 Add latest translations 2015-08-02 23:42:11 +00:00
FusionPBX
851f6bb9f6 Merge pull request #1063 from moteus/call_center_dialplan_uuid
Fix. Override dialplan_uuid.
2015-07-30 20:56:20 -06:00
markjcrane
e255e7eb0c Change from if_group to if_permission which is preferred in most cases. 2015-07-27 14:57:37 -06:00
markjcrane
63e35e2278 Organize the device profiles according to the key vendor. 2015-07-25 07:57:07 -06:00
Alexey Melnichuk
19d05b3aed Fix. Override dialplan_uuid. 2015-07-24 14:46:31 +04:00
markjcrane
3692c1deb8 Move the 'show application' completely out of the content. Then save the result in a session variable $_SESSION['switch']['applications']. 2015-07-21 09:47:23 -06:00
Alexey Melnichuk
26fe054581 Fix. Edit dialplan without running FS may load too long. 2015-07-21 11:44:13 +04:00
markjcrane
4a55588898 Remove xml and json from the select list as its horribly inefficient. Move accountcode outside of billing as that may be used by others using the account code. 2015-07-20 15:34:23 -06:00
FusionPBX
b689e726a4 Merge pull request #1013 from moteus/issues_1008
Disable of sip profile does not work
2015-07-18 13:08:10 -07:00
FusionPBX
11cb15fc88 Merge pull request #1021 from moteus/show_reg_force_domain
Fix. Show registrations to sip profile with force-XXX-domain.
2015-07-18 12:57:10 -07:00
FusionPBX
1423dd953b Merge pull request #1036 from moteus/remove_debug_output
Fix. Remove debug output.
2015-07-18 12:52:17 -07:00
FusionPBX
6bf0404e5d Merge pull request #1015 from moteus/remove_feature_context
Remove using `feature` context.
2015-07-18 12:48:41 -07:00
FusionPBX
5c14e56dbe Merge pull request #1032 from moteus/win-send-fax
Fix. Send fax via web on Windows.
2015-07-18 12:41:31 -07:00
markjcrane
f2bca9ce5f Remove minute from time conditions as its better to use one of the other options. 2015-07-18 12:20:09 -07:00
markjcrane
aed3b4f9d8 Prevent duplicate call center dialplans. 2015-07-18 11:17:15 -07:00
markjcrane
72037fc19e Fix the sip profile loading during the install or when using app -> defaults. 2015-07-16 12:34:01 -07:00
Alexey Melnichuk
3c394e8fc3 Fix. Remove debug output. 2015-07-13 10:42:14 +04:00
FusionPBX
4f0a57ac7d Merge pull request #1016 from moteus/xml_cdr_escape
Fix. Escape `<>` in all fields in CDR xml.
2015-07-10 08:58:13 -03:00
markjcrane
f0d90fd1e0 Fix the call center dialplan so that it does not create duplicates using the new call center class. 2015-07-09 10:48:01 -03:00
Alexey Melnichuk
a6440ac0aa Fix. Send fax via web on Windows.
* tiffXXX utils did not work with paths like `C:/xxx/ddd.tif`
 * using `gswin32c` instead of `gs`
 * using `copy` function instead of `cp` command
2015-07-09 16:12:27 +04:00
markjcrane
55b04e9d4d Fix the dialplan_uuid for call center dialplan. 2015-07-09 01:01:12 -03:00
markjcrane
b92448366d Fix the call center timeout action for the dialplan. 2015-07-09 00:54:27 -03:00
markjcrane
d140e264ef This Hot desking has been moved to optional Apps directory. It is now considered to be deprecated and replaced by a better feature. 2015-07-08 12:10:17 -03:00
markjcrane
db84e4d8ec Remove trailing spaces and adjust the vertical spacing. 2015-07-08 09:30:00 -03:00
markjcrane
62a11caa62 Don't override the device vendor type. 2015-07-08 01:43:52 -03:00
markjcrane
358ff5844b Add device key type column add the vendor name. 2015-07-08 01:41:24 -03:00
markjcrane
ad3145ba19 Add several provision default settings. 2015-07-07 18:07:25 -03:00
markjcrane
2838d29a89 Change the table name from device lines to keys. 2015-07-07 14:44:14 -03:00
markjcrane
f52f7999a0 Add device key vendor to assign a key to a vendor. 2015-07-07 14:25:00 -03:00
Alexey Melnichuk
3e8284c36e Use existed variable. 2015-07-07 13:46:25 +04:00
Alexey Melnichuk
86a961e46b Fix. Show registrations to sip profile with force-XXX-domain.
When on profile set `force-register-db-domain` realm on xmlstatus is just IP but user is like 101@domain.name.
2015-07-07 13:39:57 +04:00
markjcrane
a46295a4f2 The extension_password permission is not needed on the field name as the password is auto-generated. Because of this its only needed on the update. 2015-07-06 12:15:03 -06:00
markjcrane
44245e760f Add AR eg translation. 2015-07-05 23:13:46 -06:00
reliberate
73f2c21674 Upgrade: Converted Advanced > Upgrade to use Git instead of SVN (untested).
Misc: Added provisions elsewhere to account for .git/* files, as currently done with .svn/* files.
2015-07-02 17:25:41 -06:00
Alexey Melnichuk
130394ff01 Use non greedy match. 2015-07-02 19:12:12 +04:00
Alexey Melnichuk
90d91c8b5a Fix. Escape <> in all fields in CDR xml.
When using redirect cdr also can contain e.g. `sip_redirect_contact_0` / `sip_redirected_to`.
I use `preg_replace_callback` to proceed all fields.
May be it more correct use urlencode because if we get xml with non UTF8 char we lost CDR.
```php
$xml_string = preg_replace_callback("/<([^><]+)>(.*?)<\/\g1>/",
	function ($matches) {
		// var_dump($matches);
		return '<' . $matches[1] . '>' .
			urlencode($matches[2]).
		'</' . $matches[1] . '>';
	},
	$xml_string
);
```
2015-07-02 19:08:48 +04:00
Alexey Melnichuk
526b6e6b7f Remove using feature context.
Default dilplan context contains all needed extension to does not use `feature` context.
2015-07-02 12:35:34 +04:00
Alexey Melnichuk
e97ab47c98 Disable of sip profile does not work
Close #1008
2015-07-02 12:09:09 +04:00
Mark Crane
2788d69ded Move the Login and Logout items in the menu to a location that is accessible to the translation server. 2015-06-30 17:11:39 +00:00
Mark Crane
b6c93351eb Add latest translations 2015-06-30 16:30:02 +00:00
Mark Crane
8356f9ffe3 Prevent a fax problem when current user is in both the admin and also in the user group. 2015-06-30 15:35:23 +00:00
Mark Crane
2448a092b0 Add latest translations 2015-06-30 13:30:02 +00:00
Mark Crane
fb9a2bc9b6 Add latest translations 2015-06-30 12:30:02 +00:00
Mark Crane
0480048950 Add latest translations 2015-06-30 11:30:02 +00:00
Mark Crane
4681c145b4 Add latest translations 2015-06-30 10:30:02 +00:00
Mark Crane
f438ccef0f Add latest translations 2015-06-29 22:30:02 +00:00
Mark Crane
fd027f91e7 Add latest translations 2015-06-29 21:30:03 +00:00
luis daniel lucio quiroz
b22d8a78f7 little typo 2015-06-29 19:03:06 +00:00
luis daniel lucio quiroz
96189ed7a4 add a condition, not everybody may need the fix 2015-06-29 18:57:03 +00:00
Mark Crane
d4333c2a75 Add transaction support to dialplan import. 2015-06-25 21:10:50 +00:00