Commit Graph

3781 Commits

Author SHA1 Message Date
Alexey Melnichuk
a4b0b2d271 Merge branch 'master' into number_alias_as_vm_id
Conflicts:
	app/hot_desking/extension_edit.php
2015-07-21 11:19:13 +04:00
markjcrane
bd54cb44e2 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
6b48f88955 Merge pull request #1013 from moteus/issues_1008
Disable of sip profile does not work
2015-07-18 13:08:10 -07:00
FusionPBX
d7836a30c0 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
0cf21b698a Merge pull request #1036 from moteus/remove_debug_output
Fix. Remove debug output.
2015-07-18 12:52:17 -07:00
FusionPBX
446e94ff1a Merge pull request #1015 from moteus/remove_feature_context
Remove using `feature` context.
2015-07-18 12:48:41 -07:00
FusionPBX
40311cebeb 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
969c6c6d77 Remove minute from time conditions as its better to use one of the other options. 2015-07-18 12:20:09 -07:00
markjcrane
1bc779aed2 Prevent duplicate call center dialplans. 2015-07-18 11:17:15 -07:00
markjcrane
639b28381d Fix the sip profile loading during the install or when using app -> defaults. 2015-07-16 12:34:01 -07:00
Alexey Melnichuk
d1dfe3258c Fix. Remove debug output. 2015-07-13 10:42:14 +04:00
FusionPBX
aef6836d75 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
8130e970ab 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
e97ca204fd 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
fb5c1a6ef9 Fix the dialplan_uuid for call center dialplan. 2015-07-09 01:01:12 -03:00
markjcrane
2b0c9d6016 Fix the call center timeout action for the dialplan. 2015-07-09 00:54:27 -03:00
markjcrane
e33943f5a4 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
fda7add887 Remove trailing spaces and adjust the vertical spacing. 2015-07-08 09:30:00 -03:00
markjcrane
39960bac8d Don't override the device vendor type. 2015-07-08 01:43:52 -03:00
markjcrane
fbcd47394b Add device key type column add the vendor name. 2015-07-08 01:41:24 -03:00
markjcrane
8123974de4 Add several provision default settings. 2015-07-07 18:07:25 -03:00
markjcrane
b2cdce4940 Change the table name from device lines to keys. 2015-07-07 14:44:14 -03:00
markjcrane
2b150eca0d Add device key vendor to assign a key to a vendor. 2015-07-07 14:25:00 -03:00
Alexey Melnichuk
7f8a57739e Use existed variable. 2015-07-07 13:46:25 +04:00
Alexey Melnichuk
270d232d33 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
ae99066dcd 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
c5b04b94d9 Add AR eg translation. 2015-07-05 23:13:46 -06:00
reliberate
e24526fb92 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
d7a1829d32 Use non greedy match. 2015-07-02 19:12:12 +04:00
Alexey Melnichuk
1764700fd7 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
e89a499b2c Change. Use number_alias as voicemail_id. 2015-07-02 18:49:58 +04:00
Alexey Melnichuk
9097861e30 Change. Does not use default dialplan/directory.
I think it more consistent that it allows edit domain in single place.
Also on my Windows machine while installing all users/context creates not in `default` directory.
And I have problem because remove users did not work, `default.xml` file contain `$${v_domain}` variables.
2015-07-02 13:14:35 +04:00
Alexey Melnichuk
5ea2c0e964 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
d1edcbd2c5 Disable of sip profile does not work
Close #1008
2015-07-02 12:09:09 +04:00
Mark Crane
3f1dcaea70 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
2f64ab5804 Add latest translations 2015-06-30 16:30:02 +00:00
Mark Crane
152bbad1b8 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
f57cf46674 Add latest translations 2015-06-30 13:30:02 +00:00
Mark Crane
d4a8c33f0d Add latest translations 2015-06-30 12:30:02 +00:00
Mark Crane
f1171227b9 Add latest translations 2015-06-30 11:30:02 +00:00
Mark Crane
3031f125f2 Add latest translations 2015-06-30 10:30:02 +00:00
Mark Crane
4c71476922 Add latest translations 2015-06-29 22:30:02 +00:00
Mark Crane
5d401ee8f4 Add latest translations 2015-06-29 21:30:03 +00:00
luis daniel lucio quiroz
e92fd6e3b7 little typo 2015-06-29 19:03:06 +00:00
luis daniel lucio quiroz
95a7609242 add a condition, not everybody may need the fix 2015-06-29 18:57:03 +00:00
Mark Crane
59b81e5b3d Add transaction support to dialplan import. 2015-06-25 21:10:50 +00:00
Mark Crane
c99e249f71 Add beginTransaction and commit to speed up the install and upgrade. 2015-06-25 21:00:15 +00:00
Mark Crane
8fcbf0eef1 Correct the dialplan detail tag for the call center dialplan. 2015-06-25 09:46:27 +00:00
Mark Crane
5d4a2375a0 Write the call center dialplan with the new call center class. 2015-06-25 08:25:00 +00:00
luis daniel lucio quiroz
53a7ef3756 caller id fixed 2015-06-24 16:49:07 +00:00