diff options
17 files changed, 306 insertions, 5 deletions
diff --git a/.gitattributes b/.gitattributes index ed889a14..2f34acc6 100644 --- a/.gitattributes +++ b/.gitattributes @@ -2039,13 +2039,25 @@ docs/sqlmap/sqlmap_tut.pdf -text  editors/Dreamweaver/PRADO.mxp -text  editors/Dreamweaver/readme.txt -text  editors/Textmate/Prado.tmbundle/Snippets/TActiveButton.tmSnippet -text +editors/Textmate/Prado.tmbundle/Snippets/TBoundColumn.tmSnippet -text  editors/Textmate/Prado.tmbundle/Snippets/TBulletedList.tmSnippet -text  editors/Textmate/Prado.tmbundle/Snippets/TButton.tmSnippet -text +editors/Textmate/Prado.tmbundle/Snippets/TButtonColumn.tmSnippet -text +editors/Textmate/Prado.tmbundle/Snippets/TCaptcha.tmSnippet -text +editors/Textmate/Prado.tmbundle/Snippets/TCaptchaValidator.tmSnippet -text  editors/Textmate/Prado.tmbundle/Snippets/TCheckBox.tmSnippet -text +editors/Textmate/Prado.tmbundle/Snippets/TCheckBoxColumn.tmSnippet -text  editors/Textmate/Prado.tmbundle/Snippets/TCheckBoxList.tmSnippet -text  editors/Textmate/Prado.tmbundle/Snippets/TCircleHotSpot.tmSnippet -text +editors/Textmate/Prado.tmbundle/Snippets/TClientScript.tmSnippet -text +editors/Textmate/Prado.tmbundle/Snippets/TClientScriptLoader.tmSnippet -text +editors/Textmate/Prado.tmbundle/Snippets/TColorPicker.tmSnippet -text  editors/Textmate/Prado.tmbundle/Snippets/TCompareValidator.tmSnippet -text +editors/Textmate/Prado.tmbundle/Snippets/TConditional.tmSnippet -text +editors/Textmate/Prado.tmbundle/Snippets/TContent.tmSnippet -text +editors/Textmate/Prado.tmbundle/Snippets/TContentPlaceHolder.tmSnippet -text  editors/Textmate/Prado.tmbundle/Snippets/TCustomValidator.tmSnippet -text +editors/Textmate/Prado.tmbundle/Snippets/TDataGrid.tmSnippet -text  editors/Textmate/Prado.tmbundle/Snippets/TDatePicker.tmSnippet -text  editors/Textmate/Prado.tmbundle/Snippets/TDropDownList.tmSnippet -text  editors/Textmate/Prado.tmbundle/Snippets/TEmailAddressValidator.tmSnippet -text @@ -2055,11 +2067,12 @@ editors/Textmate/Prado.tmbundle/Snippets/TForm.tmSnippet -text  editors/Textmate/Prado.tmbundle/Snippets/THtmlArea.tmSnippet -text  editors/Textmate/Prado.tmbundle/Snippets/THyperLink.tmSnippet -text  editors/Textmate/Prado.tmbundle/Snippets/TImage.tmSnippet -text -editors/Textmate/Prado.tmbundle/Snippets/TImageButton[!!-~]copy.tmSnippet -text +editors/Textmate/Prado.tmbundle/Snippets/TImageButton.tmSnippet -text  editors/Textmate/Prado.tmbundle/Snippets/TImageMap.tmSnippet -text  editors/Textmate/Prado.tmbundle/Snippets/TInlineFrame.tmSnippet -text  editors/Textmate/Prado.tmbundle/Snippets/TJavascriptLogger.tmSnippet -text  editors/Textmate/Prado.tmbundle/Snippets/TLabel.tmSnippet -text +editors/Textmate/Prado.tmbundle/Snippets/TLinkButton.tmSnippet -text  editors/Textmate/Prado.tmbundle/Snippets/TListBox.tmSnippet -text  editors/Textmate/Prado.tmbundle/Snippets/TListControlValidator.tmSnippet -text  editors/Textmate/Prado.tmbundle/Snippets/TListItem.tmSnippet -text @@ -2084,10 +2097,8 @@ editors/Textmate/Prado.tmbundle/Snippets/TValidationSummary.tmSnippet -text  editors/Textmate/Prado.tmbundle/Snippets/TView.tmSnippet -text  editors/Textmate/Prado.tmbundle/Snippets/TWizard.tmSnippet -text  editors/Textmate/Prado.tmbundle/Snippets/TWizardStep.tmSnippet -text -editors/Textmate/Prado.tmbundle/Snippets/untitled[!!-~]2.tmSnippet -text -editors/Textmate/Prado.tmbundle/Snippets/untitled.tmSnippet -text  editors/Textmate/Prado.tmbundle/Syntaxes/Prado[!!-~]PHP.tmLanguage -text -editors/Textmate/Prado.tmbundle/Syntaxes/Prado[!!-~]Template[!!-~]copy.tmLanguage -text +editors/Textmate/Prado.tmbundle/Syntaxes/Prado[!!-~]Template.tmLanguage -text  editors/Textmate/Prado.tmbundle/info.plist -text  framework/.htaccess -text  framework/3rdParty/FirePHPCore/FirePHP.class.php eol=lf diff --git a/editors/Textmate/Prado.tmbundle/Snippets/TBoundColumn.tmSnippet b/editors/Textmate/Prado.tmbundle/Snippets/TBoundColumn.tmSnippet new file mode 100644 index 00000000..33ed44d2 --- /dev/null +++ b/editors/Textmate/Prado.tmbundle/Snippets/TBoundColumn.tmSnippet @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> +	<key>content</key> +	<string><com:TBoundColumn DataField="${2:Field Name from Data Source}" HeaderText="${3:${2}}" />$0</string> +	<key>name</key> +	<string>TBoundColumn</string> +	<key>scope</key> +	<string>text.html</string> +	<key>tabTrigger</key> +	<string>TBoundColumn</string> +	<key>uuid</key> +	<string>8D8D94FD-7FD7-442F-A50E-A6A29A4267AE</string> +</dict> +</plist> diff --git a/editors/Textmate/Prado.tmbundle/Snippets/TButtonColumn.tmSnippet b/editors/Textmate/Prado.tmbundle/Snippets/TButtonColumn.tmSnippet new file mode 100644 index 00000000..f60fb36d --- /dev/null +++ b/editors/Textmate/Prado.tmbundle/Snippets/TButtonColumn.tmSnippet @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> +	<key>content</key> +	<string><com:TButtonColumn CommandName="${2:Button Command}" Text="${3:Text on Button}" HeaderText="${4}" />$0</string> +	<key>name</key> +	<string>TButtonColumn</string> +	<key>scope</key> +	<string>text.html</string> +	<key>tabTrigger</key> +	<string>TButtonColumn</string> +	<key>uuid</key> +	<string>77C53961-0D71-47BB-AE09-87E26F560003</string> +</dict> +</plist> diff --git a/editors/Textmate/Prado.tmbundle/Snippets/TCaptcha.tmSnippet b/editors/Textmate/Prado.tmbundle/Snippets/TCaptcha.tmSnippet new file mode 100644 index 00000000..8d0248cc --- /dev/null +++ b/editors/Textmate/Prado.tmbundle/Snippets/TCaptcha.tmSnippet @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> +	<key>content</key> +	<string><com:TCaptcha ID="${1:captcha1}" /><com:TTextBox ID="${1}input" /><com:TCaptchaValidator CaptchaControl="${1}" ControlToValidate="${1}input" ErrorMessage="${2:You are challenged!}" />$0</string> +	<key>name</key> +	<string>TCaptcha</string> +	<key>scope</key> +	<string>text.html</string> +	<key>tabTrigger</key> +	<string>TCaptcha</string> +	<key>uuid</key> +	<string>5415E441-A4F5-489B-B4E5-359CBB0BC04D</string> +</dict> +</plist> diff --git a/editors/Textmate/Prado.tmbundle/Snippets/TCaptchaValidator.tmSnippet b/editors/Textmate/Prado.tmbundle/Snippets/TCaptchaValidator.tmSnippet new file mode 100644 index 00000000..82bcf16f --- /dev/null +++ b/editors/Textmate/Prado.tmbundle/Snippets/TCaptchaValidator.tmSnippet @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> +	<key>content</key> +	<string><com:TCaptchaValidator +	CaptchaControl="${1:captchaControl}" +	ControlToValidate="${2:controlIDToValidate}" +	ErrorMessage="${3:You are challenged!}" />$0</string> +	<key>name</key> +	<string>TCaptchaValidator (TValidator)</string> +	<key>scope</key> +	<string>text.html</string> +	<key>tabTrigger</key> +	<string>TValidator</string> +	<key>uuid</key> +	<string>078B43BF-6A9E-4558-B262-EABEBEF30F9B</string> +</dict> +</plist> diff --git a/editors/Textmate/Prado.tmbundle/Snippets/TCheckBoxColumn.tmSnippet b/editors/Textmate/Prado.tmbundle/Snippets/TCheckBoxColumn.tmSnippet new file mode 100644 index 00000000..8c6bb8c2 --- /dev/null +++ b/editors/Textmate/Prado.tmbundle/Snippets/TCheckBoxColumn.tmSnippet @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> +	<key>content</key> +	<string><com:TCheckBoxColumn DataField="${2:Field Name from Data Source}" HeaderText="${3:${2}}" />$0</string> +	<key>name</key> +	<string>TCheckBoxColumn</string> +	<key>scope</key> +	<string>text.html</string> +	<key>tabTrigger</key> +	<string>TCheckBoxColumn</string> +	<key>uuid</key> +	<string>028C538B-4B9C-4820-A284-2C8D5236FED7</string> +</dict> +</plist> diff --git a/editors/Textmate/Prado.tmbundle/Snippets/TClientScript.tmSnippet b/editors/Textmate/Prado.tmbundle/Snippets/TClientScript.tmSnippet new file mode 100644 index 00000000..41a22a03 --- /dev/null +++ b/editors/Textmate/Prado.tmbundle/Snippets/TClientScript.tmSnippet @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> +	<key>content</key> +	<string><com:TClientScript ScriptUrl="${1:<%~ ${2:script.js} %>}" />$0</string> +	<key>name</key> +	<string>TClientScript</string> +	<key>scope</key> +	<string>text.html</string> +	<key>tabTrigger</key> +	<string>TClientScript</string> +	<key>uuid</key> +	<string>CBC6DC68-6819-4905-A6F8-5CDE2FB9614B</string> +</dict> +</plist> diff --git a/editors/Textmate/Prado.tmbundle/Snippets/TClientScriptLoader.tmSnippet b/editors/Textmate/Prado.tmbundle/Snippets/TClientScriptLoader.tmSnippet new file mode 100644 index 00000000..35f16745 --- /dev/null +++ b/editors/Textmate/Prado.tmbundle/Snippets/TClientScriptLoader.tmSnippet @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> +	<key>content</key> +	<string><com:TClientScriptLoader PackagePath="${1:<%~ ${2:mylib/js} %>}" />$0</string> +	<key>name</key> +	<string>TClientScriptLoader</string> +	<key>scope</key> +	<string>text.html</string> +	<key>tabTrigger</key> +	<string>TClientScriptLoader</string> +	<key>uuid</key> +	<string>37D57B7A-8B55-4C9D-B19B-13000A65739B</string> +</dict> +</plist> diff --git a/editors/Textmate/Prado.tmbundle/Snippets/TColorPicker.tmSnippet b/editors/Textmate/Prado.tmbundle/Snippets/TColorPicker.tmSnippet new file mode 100644 index 00000000..cde2fcf9 --- /dev/null +++ b/editors/Textmate/Prado.tmbundle/Snippets/TColorPicker.tmSnippet @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> +	<key>content</key> +	<string><com:TColorPicker ID="${1:colorpicker1}" Mode="${2:Basic}" />$0</string> +	<key>name</key> +	<string>TColorPicker</string> +	<key>scope</key> +	<string>text.html</string> +	<key>tabTrigger</key> +	<string>TColorPicker</string> +	<key>uuid</key> +	<string>7322CD9C-1D5F-4369-9607-A0C564AD077A</string> +</dict> +</plist> diff --git a/editors/Textmate/Prado.tmbundle/Snippets/TConditional.tmSnippet b/editors/Textmate/Prado.tmbundle/Snippets/TConditional.tmSnippet new file mode 100644 index 00000000..5e74690e --- /dev/null +++ b/editors/Textmate/Prado.tmbundle/Snippets/TConditional.tmSnippet @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> +	<key>content</key> +	<string><com:TConditional Condition="${1:\$this->User->IsGuest}" > +	<prop:TrueTemplate> +		$0 +	</prop:TrueTemplate> +	<prop:FalseTemplate> +	</prop:FalseTemplate> +</com:TConditional></string> +	<key>name</key> +	<string>TConditional</string> +	<key>scope</key> +	<string>text.html</string> +	<key>tabTrigger</key> +	<string>TConditional</string> +	<key>uuid</key> +	<string>EB4E1513-2FB7-4111-9430-2606178EA859</string> +</dict> +</plist> diff --git a/editors/Textmate/Prado.tmbundle/Snippets/untitled.tmSnippet b/editors/Textmate/Prado.tmbundle/Snippets/TContent.tmSnippet index 82aa3a25..82aa3a25 100644 --- a/editors/Textmate/Prado.tmbundle/Snippets/untitled.tmSnippet +++ b/editors/Textmate/Prado.tmbundle/Snippets/TContent.tmSnippet diff --git a/editors/Textmate/Prado.tmbundle/Snippets/TContentPlaceHolder.tmSnippet b/editors/Textmate/Prado.tmbundle/Snippets/TContentPlaceHolder.tmSnippet new file mode 100644 index 00000000..0807386a --- /dev/null +++ b/editors/Textmate/Prado.tmbundle/Snippets/TContentPlaceHolder.tmSnippet @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> +	<key>content</key> +	<string><com:TContentPlaceHolder ID="${1:Content}" />$0</string> +	<key>name</key> +	<string>TContentPlaceHolder</string> +	<key>scope</key> +	<string>text.html</string> +	<key>tabTrigger</key> +	<string>TContentPlaceHolder</string> +	<key>uuid</key> +	<string>1020E025-E424-40C2-AC76-F90766397290</string> +</dict> +</plist> diff --git a/editors/Textmate/Prado.tmbundle/Snippets/TDataGrid.tmSnippet b/editors/Textmate/Prado.tmbundle/Snippets/TDataGrid.tmSnippet new file mode 100644 index 00000000..db6510e3 --- /dev/null +++ b/editors/Textmate/Prado.tmbundle/Snippets/TDataGrid.tmSnippet @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> +	<key>content</key> +	<string><com:TDataGrid ID="${1:grid1}" AutoGenerateColumns="${2:true}"> +	$0 +</com:TDataGrid></string> +	<key>name</key> +	<string>TDataGrid</string> +	<key>scope</key> +	<string>text.html</string> +	<key>tabTrigger</key> +	<string>TDataGrid</string> +	<key>uuid</key> +	<string>D2EAFC46-26B5-40BB-A4B7-8B10C856AF3B</string> +</dict> +</plist> diff --git a/editors/Textmate/Prado.tmbundle/Snippets/untitled 2.tmSnippet b/editors/Textmate/Prado.tmbundle/Snippets/TImageButton.tmSnippet index 74f24624..74f24624 100644 --- a/editors/Textmate/Prado.tmbundle/Snippets/untitled 2.tmSnippet +++ b/editors/Textmate/Prado.tmbundle/Snippets/TImageButton.tmSnippet diff --git a/editors/Textmate/Prado.tmbundle/Snippets/TImageButton copy.tmSnippet b/editors/Textmate/Prado.tmbundle/Snippets/TLinkButton.tmSnippet index ca1a3297..ca1a3297 100644 --- a/editors/Textmate/Prado.tmbundle/Snippets/TImageButton copy.tmSnippet +++ b/editors/Textmate/Prado.tmbundle/Snippets/TLinkButton.tmSnippet diff --git a/editors/Textmate/Prado.tmbundle/Syntaxes/Prado Template copy.tmLanguage b/editors/Textmate/Prado.tmbundle/Syntaxes/Prado Template.tmLanguage index ca67d3af..ca67d3af 100644 --- a/editors/Textmate/Prado.tmbundle/Syntaxes/Prado Template copy.tmLanguage +++ b/editors/Textmate/Prado.tmbundle/Syntaxes/Prado Template.tmLanguage diff --git a/editors/Textmate/Prado.tmbundle/info.plist b/editors/Textmate/Prado.tmbundle/info.plist index 2a65206f..026e3a0c 100644 --- a/editors/Textmate/Prado.tmbundle/info.plist +++ b/editors/Textmate/Prado.tmbundle/info.plist @@ -1,7 +1,11 @@  <?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">  <plist version="1.0">  <dict> +	<key>contactEmailRot13</key> +	<string>ebwneb@tznvy.pbz</string> +	<key>contactName</key> +	<string>Robin J. Rogge</string>  	<key>deleted</key>  	<array>  		<string>3B4714DB-144B-4102-ACCD-A9D66B676D3C</string> @@ -9,13 +13,112 @@  		<string>9ED62E79-F25A-4BE1-80E9-D0474DD64BB5</string>  		<string>9ED62E79-F25A-4BE1-80E9-D0474DD64BB5</string>  	</array> +	<key>description</key> +	<string>Snippets and Syntaxes for the PRADO PHP Framework</string> +	<key>mainMenu</key> +	<dict> +		<key>items</key> +		<array> +			<string>24F6F96C-B3BD-41EA-852D-A1CD51F0723E</string> +			<string>DBB5D8B9-5DD8-4573-B196-0D37A72AF60B</string> +		</array> +		<key>submenus</key> +		<dict> +			<key>24F6F96C-B3BD-41EA-852D-A1CD51F0723E</key> +			<dict> +				<key>items</key> +				<array> +					<string>319D66FC-712A-4B09-A1C0-CB741ED9DD4C</string> +				</array> +				<key>name</key> +				<string>ActiveControls</string> +			</dict> +			<key>DBB5D8B9-5DD8-4573-B196-0D37A72AF60B</key> +			<dict> +				<key>items</key> +				<array> +					<string>110FCD3F-841C-4178-99D8-765C7D382F7D</string> +					<string>8D8D94FD-7FD7-442F-A50E-A6A29A4267AE</string> +					<string>94E9F86C-36D1-4D5C-808C-E379024299CD</string> +					<string>77C53961-0D71-47BB-AE09-87E26F560003</string> +					<string>5415E441-A4F5-489B-B4E5-359CBB0BC04D</string> +					<string>078B43BF-6A9E-4558-B262-EABEBEF30F9B</string> +					<string>2721E2C3-66B7-4486-BF0F-6FA7B274858D</string> +					<string>028C538B-4B9C-4820-A284-2C8D5236FED7</string> +					<string>76F11AC6-D441-4059-A70A-E3BB739EE515</string> +					<string>0DE44657-21AB-4878-93E7-0FD458D8723A</string> +					<string>CBC6DC68-6819-4905-A6F8-5CDE2FB9614B</string> +					<string>37D57B7A-8B55-4C9D-B19B-13000A65739B</string> +					<string>7322CD9C-1D5F-4369-9607-A0C564AD077A</string> +					<string>3586B543-C92E-4AEB-92A7-20D948EA60DF</string> +					<string>EB4E1513-2FB7-4111-9430-2606178EA859</string> +					<string>CA1AE93D-D724-43B0-A3CB-9E584126FB3C</string> +					<string>1020E025-E424-40C2-AC76-F90766397290</string> +					<string>BF6A7ED6-28A0-4165-AA7A-F1F003161AE5</string> +					<string>D2EAFC46-26B5-40BB-A4B7-8B10C856AF3B</string> +					<string>37221294-B588-4D07-9010-2DB7CDBEB6B4</string> +					<string>803BFB83-50E8-4121-9866-A25C93979E4B</string> +					<string>BDF614B5-430B-46AB-B558-B5E0EF97BA17</string> +					<string>B7E6E873-309E-41E6-AD8A-29EB54781579</string> +					<string>17BECED9-79B1-4CD6-9354-E528DA3327AC</string> +					<string>5714E730-271D-436E-86DC-04AB0E71ECE0</string> +					<string>61E9DF58-07F3-4B99-8B58-53D3049575F3</string> +					<string>618046BE-DF8E-489C-A8BC-24A15CF2AD7A</string> +					<string>17389BC4-0AF1-4993-B829-5CDC330A6D39</string> +					<string>8A274C79-422D-4553-B086-0B553BDABEC7</string> +					<string>823B366A-3A40-4875-8A2E-AB901F54D443</string> +					<string>13CDBA43-EAA4-4BCD-B9AA-A990B4974496</string> +					<string>202F9A01-9B67-4CBD-9289-EE6A98D091D7</string> +					<string>84F0B41A-06B1-4A61-98B7-F13D1321C3D0</string> +					<string>4E663D10-670D-4526-8848-0AC2666592C0</string> +					<string>665F3D21-16F5-40FF-8339-A9A101400D10</string> +					<string>0353A694-1EE5-46E0-AC72-2F1631B441CB</string> +					<string>AB128FBD-1C3E-4FB4-91F5-48B57DC6860F</string> +					<string>023BD925-D6F2-4BE1-8973-8B90B3C8858E</string> +					<string>7E35FA7C-E390-41BA-A8C5-C1F3B4FAE6A1</string> +					<string>53AAABF9-D393-4E5B-83BD-0C4CB15DDCC1</string> +					<string>3CFAD67E-EE9F-49F9-B606-D414E73ED8F7</string> +					<string>AC226362-749C-45C1-86A3-B58379A38A7E</string> +					<string>012C556B-6ACB-48F0-8757-CA2E60B06109</string> +					<string>0DF11CB4-2813-4CCB-94EA-4A62E25E9EDC</string> +					<string>BAC66FCD-8C23-48B9-829B-56FE20CCC8E6</string> +					<string>92266396-CC97-4F53-B1D3-4DDFD924D8C8</string> +					<string>754B2EF6-85D2-4A93-996F-D6D9E8A27F1E</string> +					<string>BFD8CE92-59C7-47B2-9AE4-1B29ADE3CA0B</string> +					<string>8E764E2C-244E-4A93-9C0D-5E25689D1C85</string> +					<string>C553AAE6-C788-4B2C-A388-18312FC9828B</string> +					<string>23B521B1-6EA4-4E5D-9104-940CEDFDFD13</string> +					<string>1E598B7B-B754-4C52-B819-39897FE3E07D</string> +					<string>AD1AB937-AFCD-4656-9882-788B9C6E0D74</string> +					<string>23289E12-7A1F-41A3-872C-3E867E696A49</string> +					<string>2E67996C-AB51-489A-A30D-D829DF17A7EF</string> +					<string>7AF6D08A-9FE4-46B9-8F16-2E26D45715CE</string> +					<string>CA0CD4CC-D186-4448-8CB3-215E25951FDF</string> +					<string>2433B69B-6986-4260-97A3-DE23072D8BC6</string> +				</array> +				<key>name</key> +				<string>WebControls</string> +			</dict> +		</dict> +	</dict>  	<key>name</key>  	<string>Prado</string>  	<key>ordering</key>  	<array> +		<string>D2EAFC46-26B5-40BB-A4B7-8B10C856AF3B</string>  		<string>3E75ACFD-E0F4-4564-9A24-DCB08AD6324D</string>  		<string>DDC83EED-168F-4DEB-971D-84A2CF3CB38F</string> +		<string>1020E025-E424-40C2-AC76-F90766397290</string> +		<string>028C538B-4B9C-4820-A284-2C8D5236FED7</string> +		<string>8D8D94FD-7FD7-442F-A50E-A6A29A4267AE</string> +		<string>CBC6DC68-6819-4905-A6F8-5CDE2FB9614B</string> +		<string>EB4E1513-2FB7-4111-9430-2606178EA859</string> +		<string>37D57B7A-8B55-4C9D-B19B-13000A65739B</string> +		<string>7322CD9C-1D5F-4369-9607-A0C564AD077A</string> +		<string>77C53961-0D71-47BB-AE09-87E26F560003</string>  		<string>94E9F86C-36D1-4D5C-808C-E379024299CD</string> +		<string>078B43BF-6A9E-4558-B262-EABEBEF30F9B</string> +		<string>5415E441-A4F5-489B-B4E5-359CBB0BC04D</string>  		<string>2721E2C3-66B7-4486-BF0F-6FA7B274858D</string>  		<string>AC226362-749C-45C1-86A3-B58379A38A7E</string>  		<string>BFD8CE92-59C7-47B2-9AE4-1B29ADE3CA0B</string>  | 
