-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Bartlomiej Laczkowski
committed
Dec 8, 2016
1 parent
a6a5db0
commit a7fd784
Showing
14 changed files
with
234 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
content zend-debugger-toolbar content/ | ||
overlay chrome://browser/content/browser.xul chrome://zend-debugger-toolbar/content/toolbar.xul | ||
overlay chrome://navigator/content/navigator.xul chrome://zend-debugger-toolbar/content/toolbar.xul | ||
locale zend-debugger-toolbar none locale/none/ | ||
locale zend-debugger-toolbar en-US locale/en-US/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,65 @@ | ||
<?xml version="1.0"?> | ||
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?> | ||
|
||
<dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:html="http://www.w3.org/1999/xhtml" title="Zend Debugger Toolbar Settings" onload="zendLoadSettings();" id="zendSettings" orient="vertical" ondialogaccept="zendSaveSettings(); return true;" buttons="accept,cancel"> | ||
<!DOCTYPE window SYSTEM "chrome://zend-debugger-toolbar/locale/settings.dtd"> | ||
|
||
<dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:html="http://www.w3.org/1999/xhtml" title="&title.dialog;" onload="zendLoadSettings();" id="zendSettings" orient="vertical" ondialogaccept="zendSaveSettings(); return true;" buttons="accept,cancel"> | ||
|
||
<stringbundleset id="stringbundleset"> | ||
<stringbundle id="zdt-settings-messages" src="chrome://zend-debugger-toolbar/locale/settings.properties"/> | ||
</stringbundleset> | ||
|
||
<script type="application/x-javascript" src="chrome://zend-debugger-toolbar/content/settings.js"/> | ||
<script type="application/x-javascript" src="chrome://zend-debugger-toolbar/content/toolbar.js"/> | ||
|
||
<command id="cmd_zendToggleAutoDetect" oncommand="zendToggleAutoDetect()" /> | ||
|
||
<vbox flex="0"> | ||
<groupbox id="zendSettingsGeneral"><caption label="General"/> | ||
<checkbox id="zendSettingsSearch" label="Enable Search Toolbar" /> | ||
<groupbox id="zendSettingsGeneral"><caption label="&label.general;"/> | ||
<checkbox id="zendSettingsSearch" label="&label.enable_search;" /> | ||
</groupbox> | ||
|
||
<groupbox orient="vertical"><caption label="Debug Session Settings"/> | ||
<checkbox id="zendSettingsLocal" label="Debug Local Copy (if available)" /> | ||
<checkbox id="zendSettingsFirstLine" label="Break at First Line" /> | ||
<checkbox id="zendSettingsEnableFrameSelect" label="Enable Frame Selection" /> | ||
<groupbox orient="vertical"><caption label="&label.debug_settings;"/> | ||
<checkbox id="zendSettingsLocal" label="&label.debug_local_copy;" /> | ||
<checkbox id="zendSettingsFirstLine" label="&label.break_at_first_line;" /> | ||
<checkbox id="zendSettingsEnableFrameSelect" label="&label.enable_frame_selection;" /> | ||
</groupbox> | ||
</vbox> | ||
|
||
<groupbox orient="vertical"><caption label="Client Settings"/> | ||
<groupbox orient="vertical"><caption label="&label.client_ide_settings;"/> | ||
<radiogroup id="zendSettingsRadio"> | ||
<hbox> | ||
<radio label="Auto Detect Settings" id="zendSettingsAutodetect" command="cmd_zendToggleAutoDetect" selected="true"/> | ||
<spacer flex="1"/> | ||
<button label="Test" | ||
<button label="&label.test;" | ||
onclick="zendTestAutoDetect();" | ||
tooltiptext="Test the auto detection server" | ||
tooltiptext="&tooltip.test;" | ||
id="zendSettingsAutodetectTest"/> | ||
</hbox> | ||
<hbox> | ||
<separator orient="vertical"/> | ||
<label value="Broadcasting Port" id="zendSettingsAutodetectPortLbl"/> | ||
<label value="&label.broadcasting_port;" id="zendSettingsAutodetectPortLbl"/> | ||
<spacer flex="1"/> | ||
<textbox id="zendSettingsAutodetectPort"/> | ||
</hbox> | ||
<radio label="Manual Settings" id="zendSettingsManual" command="cmd_zendToggleAutoDetect"/> | ||
<radio label="&label.manual_settings;" id="zendSettingsManual" command="cmd_zendToggleAutoDetect"/> | ||
<hbox> | ||
<separator orient="vertical"/> | ||
<label value="Debug Port" id="zendSettingsPortLbl"/> | ||
<label value="&label.debug_port;" id="zendSettingsPortLbl"/> | ||
<spacer flex="1"/> | ||
<textbox id="zendSettingsPort"/> | ||
</hbox> | ||
<hbox> | ||
<separator orient="vertical"/> | ||
<label value="IP Address" id="zendSettingsIPLbl"/> | ||
<label value="&label.ip_address;" id="zendSettingsIPLbl"/> | ||
<spacer flex="1"/> | ||
<textbox id="zendSettingsIP"/> | ||
</hbox> | ||
<hbox> | ||
<separator orient="vertical"/> | ||
<checkbox label="Encrypt Communications Using SSL" id="zendSettingsUseSSL"/> | ||
<checkbox label="&label.encrypt_with_ssl;" id="zendSettingsUseSSL"/> | ||
</hbox> | ||
</radiogroup> | ||
</groupbox> | ||
|
||
<script type="application/x-javascript" src="chrome://zend-debugger-toolbar/content/settings.js"/> | ||
<script type="application/x-javascript" src="chrome://zend-debugger-toolbar/content/toolbar.js"/> | ||
|
||
</dialog> |
Oops, something went wrong.