Changeset 634
- Timestamp:
- 04/16/08 13:25:10 (8 months ago)
- Location:
- org.cfeclipse.cfml/trunk
- Files:
-
- 1 added
- 2 modified
-
plugin.properties (modified) (3 diffs)
-
plugin.xml (modified) (49 diffs)
-
src/org/cfeclipse/cfml/editors/actions/ClipboardLinkAction.java (added)
Legend:
- Unmodified
- Added
- Removed
-
org.cfeclipse.cfml/trunk/plugin.properties
r596 r634 29 29 action.label.CFScript=CF S&cript 30 30 action.label.ClearFoldingMarkers=Clear folding markers. 31 action.label.ClipboardLink=Link from Clipboard 31 32 action.label.CollapseAll=Collapse all 32 33 action.label.CollapseMatching=Collapse matching … … 76 77 action.tooltip.CFScript=Surround with cfscript 77 78 action.tooltip.ClearFoldingMarkers=Clear folding markers from the selected text 79 action.tooltip.ClipboardLink=Surround with link from clipboard 78 80 action.tooltip.CollapseAll=Collapse all 79 81 action.tooltip.CollapseMatching=Collapse any folding markers of a particular type … … 148 150 command.description.8=Lower case selected text 149 151 command.description.9=Upper case selected text 152 command.description.ClipboardLink=Surround with link from clipboard 150 153 command.description.EditTag=Edits the currently selected tag 151 154 command.name.0 =Insert Comment -
org.cfeclipse.cfml/trunk/plugin.xml
r596 r634 4 4 id="org.cfeclipse.cfml" 5 5 name="CFML Plug-in" 6 version="1.3. 1.5"6 version="1.3.2" 7 7 provider-name="The CFEclipse Crew" 8 8 class="org.cfeclipse.cfml.CFMLPlugin"> … … 59 59 <import plugin="org.eclipse.ui.editors"/> 60 60 <import plugin="org.eclipse.ui.workbench.texteditor"/> 61 61 62 62 <import plugin="org.eclipse.core.resources"/> 63 63 <import plugin="org.eclipse.ui.ide"/> 64 64 <import plugin="org.eclipse.ui.views"/> 65 65 <!-- <import plugin="org.apache.ant"/> --> 66 <import plugin="org.eclipse.core.filesystem" optional="true"/> 66 <import plugin="org.eclipse.core.filesystem" optional="true"/> 67 67 <import plugin="org.eclipse.ui.browser"/> 68 68 <!--<import plugin="org.junit"/>--> … … 70 70 <extension-point id="cacorNatures" name="CACorContributingNatures" schema="schema/cacorNature.exsd"/> 71 71 72 <extension 72 <extension 73 73 point="org.eclipse.ui.decorators"> 74 74 <decorator … … 80 80 id="org.cfeclipse.cfml.ui.decorators.cfcdecorator" 81 81 location="TOP_LEFT"> 82 <description>Shows distinct icon for CFC files</description> 82 <description>Shows distinct icon for CFC files</description> 83 83 <enablement> 84 84 <and> … … 96 96 id="org.cfeclipse.cfml.ui.decorators.cfereadonlydecorator" 97 97 location="BOTTOM_LEFT"> 98 <description>Shows readonly indicator</description> 98 <description>Shows readonly indicator</description> 99 99 <enablement> 100 100 <and> … … 124 124 --> 125 125 </extension> 126 126 127 127 <extension 128 128 point="org.eclipse.ui.perspectives"> … … 134 134 </perspective> 135 135 </extension> 136 136 137 137 <!-- ////////////////////////////////////////////////////////////// --> 138 138 <!-- Editor --> … … 159 159 --> 160 160 </extension> 161 161 162 162 <!-- ////////////////////////////////////////////////////////////// --> 163 164 163 164 165 165 <!-- Actions --> 166 166 <extension … … 169 169 targetID="org.cfeclipse.cfml.editors.CFMLEditor" 170 170 id="org.cfeclipse.cfml.editors.CFMLEditorActions"> 171 172 171 172 173 173 <menu 174 174 id="org.cfeclipse.cfml.menus.source" … … 190 190 name="format"> 191 191 </groupMarker> 192 </menu> 193 192 </menu> 193 194 194 <menu 195 195 id="org.cfeclipse.cfml.menus.browse" … … 200 200 </groupMarker> 201 201 </menu> 202 203 202 203 204 204 <!-- Word Wrap --> 205 205 <action … … 517 517 tooltip="%action.tooltip.Refresh"> 518 518 </action> 519 520 519 520 521 521 <!-- insert snippet action --> 522 522 <action … … 567 567 tooltip="%action.tooltip.LocateInExplorer"> 568 568 </action> 569 570 569 570 571 571 <!-- external browser --> 572 572 <action … … 636 636 menubarPath="navigate/additions"> 637 637 </action> 638 639 <!-- Surround with clipboard link --> 640 <action 641 definitionId="org.cfeclipse.cfml.editors.actions.ClipboardLink" 642 label="%action.label.ClipboardLink" 643 icon="icons/obj16/world_link.png" 644 tooltip="%action.tooltip.ClipboardLink" 645 class="org.cfeclipse.cfml.editors.actions.ClipboardLinkAction" 646 menubarPath="org.cfeclipse.cfml.menus.source/output" 647 id="org.cfeclipse.cfml.editors.actions.ClipboardLinkAction"> 648 </action> 649 650 638 651 <!-- 639 652 <menu … … 661 674 menubarPath="org.cfeclipse.cfml.cfcmenu/maingroup" 662 675 toolbarPath="CFEditorResourceCommand"/> 663 664 --> 665 666 <!-- Highlight bracket pair 676 677 --> 678 679 <!-- Highlight bracket pair 667 680 <action 668 681 toolbarPath="BasicCFEditorCommand" … … 677 690 </editorContribution> 678 691 </extension> 679 692 680 693 <!-- ////////////////////////////////////////////////////////////// --> 681 694 <!-- popup menu --> … … 741 754 menubarPath="org.cfeclipse.cfml.editors.contribution.subMenu/text1" 742 755 id="org.cfeclipse.cfml.editors.actions.CFDoubleQuote"> 756 </action> 757 <action 758 label="%action.label.ClipboardLink" 759 class="org.cfeclipse.cfml.editors.actions.ClipboardLinkAction" 760 menubarPath="org.cfeclipse.cfml.editors.contribution.subMenu/text1" 761 id="org.cfeclipse.cfml.editors.actions.ClipboardLinkAction"> 743 762 </action> 744 763 <action … … 810 829 /> 811 830 </objectContribution> 812 831 813 832 <objectContribution 814 833 objectClass="org.eclipse.core.resources.IProject" … … 855 874 label="Edit URL"/> 856 875 </objectContribution> 857 858 859 876 877 878 860 879 </extension> 861 880 862 881 <!-- Commands --> 863 882 <extension … … 1016 1035 keySequence="M1+M2+Z"> 1017 1036 </keyBinding> 1018 1037 1019 1038 <!-- insert date --> 1020 1039 <command … … 1258 1277 commandId="org.cfeclipse.cfml.editors.actions.ExternalBrowserActionID" 1259 1278 keyConfigurationId="org.eclipse.ui.defaultAcceleratorConfiguration"> 1260 </keyBinding> 1261 1279 </keyBinding> 1280 1262 1281 <!-- Open in secondary external browser --> 1263 1282 <command … … 1267 1286 id="org.cfeclipse.cfml.editors.actions.ExternalBrowserActionID2"> 1268 1287 </command> 1269 1288 1270 1289 <keyBinding 1271 1290 keySequence="M2+F12" … … 1275 1294 </keyBinding> 1276 1295 1277 1296 1278 1297 <command 1279 1298 name="%command.name.30" … … 1289 1308 </keyBinding> 1290 1309 <!-- edit tag command --> 1291 <command 1310 <command 1292 1311 name="%command.name.EditTag" 1293 1312 description="%command.description.EditTag" 1294 1313 categoryId="org.cfeclipse.cfml.commandCategory" 1295 1314 id="org.cfeclipse.cfml.editors.actions.EditTagAction"> 1296 1315 1297 1316 </command> 1298 1317 <keyBinding … … 1302 1321 keySequence="M1+T"> 1303 1322 </keyBinding> 1304 1305 <command 1323 1324 <command 1306 1325 name="%command.name.GotoFile" 1307 1326 description="%command.description.GotoFile" 1308 1327 categoryId="org.cfeclipse.cfml.commandCategory" 1309 1328 id="org.cfeclipse.cfml.editors.actions.GotoFileAction"> 1310 1329 1311 1330 </command> 1312 1331 <keyBinding … … 1326 1345 keyConfigurationId="org.eclipse.ui.defaultAcceleratorConfiguration" 1327 1346 keySequence="M1+M2+A"/> 1347 1348 <!-- enclose in link from clipboard --> 1349 <command 1350 name="%action.label.ClipboardLink" 1351 description="%command.description.ClipboardLink" 1352 categoryId="org.cfeclipse.cfml.commandCategory" 1353 id="org.cfeclipse.cfml.editors.actions.ClipboardLink" /> 1328 1354 1329 1355 <!-- Find a matching bracket pair … … 1342 1368 --> 1343 1369 </extension> 1344 1345 1370 1371 <extension point="org.eclipse.ui.bindings"> 1372 <key sequence="Ctrl+Alt+V" 1373 commandId="org.cfeclipse.cfml.editors.actions.ClipboardLink" 1374 schemeId="org.eclipse.ui.defaultAcceleratorConfiguration" 1375 contextId="rg.cfeclipse.cfml.cfmleditorcontext"/> 1376 </extension> 1377 1346 1378 <!-- ////////////////////////////////////////////////////////////// --> 1347 1379 <!-- Views --> … … 1391 1423 name="%view.name.5" 1392 1424 id="org.cfeclipse.cfml.views.explorer.FileExplorerView"/> 1393 1394 <!-- 1425 1426 <!-- 1395 1427 <view 1396 1428 icon="icons/obj16/document.gif" … … 1399 1431 name="%view.name.6" 1400 1432 id="org.cfeclipse.cfml.views.explorer.ftp.FtpLogView"/> 1401 1433 1402 1434 <view 1403 1435 category="org.cfeclipse.cfml" … … 1406 1438 id="org.cfeclipse.cfml.views.Toolbar" 1407 1439 name="Toolbar"/> 1408 1409 1440 1441 1410 1442 <view 1411 1443 category="org.cfeclipse.cfml" … … 1414 1446 id="org.cfeclipse.cfml.views.snipex.SnipEx" 1415 1447 name="SnipEx"/> 1416 1417 1448 1449 1418 1450 <view 1419 1451 category="org.cfeclipse.cfml" … … 1427 1459 <!-- ////////////////////////////////////////////////////////////// --> 1428 1460 <!-- help --> 1429 1461 1430 1462 <extension 1431 1463 point="org.eclipse.ui.preferencePages"> … … 1488 1520 id="org.cfeclipse.cfml.preferences.BrowserPreferencePage" 1489 1521 name="Browser"/> 1490 1522 1491 1523 <page 1492 1524 category="org.cfeclipse.cfml.preferences.CFMLPreferencePage" … … 1499 1531 id="org.cfeclipse.cfml.preferences.SnipExPreferencePage" 1500 1532 name="%page.name.11"/> 1501 1533 1502 1534 </extension> 1503 1535 1504 1536 <extension 1505 1537 point="org.eclipse.ui.propertyPages"> … … 1529 1561 --> 1530 1562 </extension> 1531 1563 1532 1564 <!-- Chris Queeners area --> 1533 1565 <extension … … 1541 1573 1542 1574 class="org.eclipse.ui.wizards.newresource.BasicNewProjectResourceWizard" 1543 1575 1544 1576 category="org.cfeclipse.cfml.category1" 1545 1577 preferredPerspectives="org.cfeclipse.cfml.perspective.CFML" 1546 project="true" 1578 project="true" 1547 1579 finalPerspective="org.cfeclipse.cfml.perspective.CFML" 1548 1580 id="org.cfeclipse.cfml.wizards.NewProject"> … … 1582 1614 <description>%wizard.description.3</description> 1583 1615 </wizard> 1584 1585 1586 1616 1617 1618 1587 1619 <!-- 1588 1620 <wizard … … 1632 1664 <one-of-nature id="CFEclipse-2.one-of-nature1"/> 1633 1665 </extension> 1634 1666 1635 1667 <extension 1636 1668 point="org.eclipse.ui.ide.resourceFilters"> … … 1731 1763 </extension> 1732 1764 1733 <extension point="org.eclipse.core.resources.markers" 1734 id="todomarker" 1765 <extension point="org.eclipse.core.resources.markers" 1766 id="todomarker" 1735 1767 name="CFEclipse TODO Task"> 1736 1768 <super type="org.eclipse.core.resources.taskmarker"/> … … 1741 1773 1742 1774 </extension> 1743 1744 1745 1775 1776 1777 1746 1778 <extension point="org.eclipse.core.resources.markers" 1747 1779 id="parserProblemMarker" … … 1750 1782 <persistent value="true"/> 1751 1783 </extension> 1752 1753 1754 1784 1785 1786 1755 1787 <extension point="org.eclipse.core.resources.markers" 1756 1788 id="parserWarningMarker" … … 1805 1837 symbolicIcon="warning"/> 1806 1838 </extension> 1807 1808 1809 1810 1811 1839 1840 1841 1842 1843 1812 1844 <extension point="org.eclipse.ui.perspectiveExtensions"> 1813 1845 <perspectiveExtension … … 1836 1868 parentId="org.eclipse.ui.textEditorScope"/> 1837 1869 </extension> 1838 1870 1839 1871 <extension 1840 1872 id="product" … … 1913 1945 </viewPage> 1914 1946 </extension> 1915 1916 1947 1948 1917 1949 <!-- detachable toolbar --> 1918 1950 1919 1951 <extension 1920 1952 point="org.eclipse.ui.actionSets"> … … 1923 1955 label="CFEclipse" 1924 1956 visible="true"> 1925 1926 1957 1958 1927 1959 <!-- Word Wrap --> 1928 1960 <action … … 2063 2095 tooltip="%action.tooltip.InsertColor"> 2064 2096 </action> 2065 2097 2066 2098 <!-- repeat last tag (for Brian Sadler) --> 2067 2099 <action … … 2086 2118 tooltip="%action.tooltip.Refresh"> 2087 2119 </action> 2088 2089 2120 2121 2090 2122 <!-- insert snippet action --> 2091 2123 <action … … 2118 2150 tooltip="%action.tooltip.LoadScribble"> 2119 2151 </action> 2120 2152 2121 2153 <!-- external browser --> 2122 2154 <action … … 2178 2210 tooltip="%action.tooltip.EditTagAction"> 2179 2211 </action> 2180 2181 2182 2212 2183 2213 </actionSet> 2184 </extension> 2214 </extension> 2185 2215 </plugin>
