Removed some palette items release701
authorRifki Razick <riralk@netbeans.org>
Fri, 10 Feb 2012 11:19:43 +0530
branchrelease701
changeset 1604944fab48b77
parent 159 4939baf51da4
child 161 983b05117fdf
Removed some palette items
PLSQL/Palette/nbproject/project.xml
PLSQL/Palette/src/org/netbeans/modules/plsql/palette/item/errorhandling/IFSItemGeneral.java
PLSQL/Palette/src/org/netbeans/modules/plsql/palette/item/errorhandling/IFSRecordGeneral.java
PLSQL/Palette/src/org/netbeans/modules/plsql/palette/item/errorhandling/resource/Bundle.properties
PLSQL/Palette/src/org/netbeans/modules/plsql/palette/item/errorhandling/resource/IFSItemGeneral.xml
PLSQL/Palette/src/org/netbeans/modules/plsql/palette/item/errorhandling/resource/IFSRecordGeneral.xml
PLSQL/Palette/src/org/netbeans/modules/plsql/palette/item/reports/GrantPlSqlAp.java
PLSQL/Palette/src/org/netbeans/modules/plsql/palette/item/reports/resource/Bundle.properties
PLSQL/Palette/src/org/netbeans/modules/plsql/palette/item/reports/resource/GrantIfssys.xml
PLSQL/Palette/src/org/netbeans/modules/plsql/palette/item/reports/resource/GrantPlSqlAp.xml
PLSQL/Palette/src/org/netbeans/modules/plsql/palette/item/reports/resource/RefreshDictionary.xml
PLSQL/Palette/src/org/netbeans/modules/plsql/palette/item/reports/resource/RefreshReferenceCache.xml
PLSQL/Palette/src/org/netbeans/modules/plsql/palette/layer.xml
     1.1 --- a/PLSQL/Palette/nbproject/project.xml	Tue Feb 07 14:49:16 2012 +0100
     1.2 +++ b/PLSQL/Palette/nbproject/project.xml	Fri Feb 10 11:19:43 2012 +0530
     1.3 @@ -91,7 +91,9 @@
     1.4                      </test-dependency>
     1.5                  </test-type>
     1.6              </test-dependencies>
     1.7 -            <public-packages/>
     1.8 +            <public-packages>
     1.9 +                <package>org.netbeans.modules.plsql.palette</package>
    1.10 +            </public-packages>
    1.11          </data>
    1.12      </configuration>
    1.13  </project>
     2.1 --- a/PLSQL/Palette/src/org/netbeans/modules/plsql/palette/item/errorhandling/IFSItemGeneral.java	Tue Feb 07 14:49:16 2012 +0100
     2.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.3 @@ -1,61 +0,0 @@
     2.4 -/*
     2.5 - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     2.6 - *
     2.7 - * Copyright 2011 Oracle and/or its affiliates. All rights reserved.
     2.8 - *
     2.9 - * Oracle and Java are registered trademarks of Oracle and/or its affiliates.
    2.10 - * Other names may be trademarks of their respective owners.
    2.11 - *
    2.12 - * The contents of this file are subject to the terms of either the GNU
    2.13 - * General Public License Version 2 only ("GPL") or the Common
    2.14 - * Development and Distribution License("CDDL") (collectively, the
    2.15 - * "License"). You may not use this file except in compliance with the
    2.16 - * License. You can obtain a copy of the License at
    2.17 - * http://www.netbeans.org/cddl-gplv2.html
    2.18 - * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
    2.19 - * specific language governing permissions and limitations under the
    2.20 - * License.  When distributing the software, include this License Header
    2.21 - * Notice in each file and include the License file at
    2.22 - * nbbuild/licenses/CDDL-GPL-2-CP.  Oracle designates this
    2.23 - * particular file as subject to the "Classpath" exception as provided
    2.24 - * by Oracle in the GPL Version 2 section of the License file that
    2.25 - * accompanied this code. If applicable, add the following below the
    2.26 - * License Header, with the fields enclosed by brackets [] replaced by
    2.27 - * your own identifying information:
    2.28 - * "Portions Copyrighted [year] [name of copyright owner]"
    2.29 - *
    2.30 - * If you wish your version of this file to be governed by only the CDDL
    2.31 - * or only the GPL Version 2, indicate your decision by adding
    2.32 - * "[Contributor] elects to include this software in this distribution
    2.33 - * under the [CDDL or GPL Version 2] license." If you do not indicate a
    2.34 - * single choice of license, a recipient has the option to distribute
    2.35 - * your version of this file under either the CDDL, the GPL Version 2 or
    2.36 - * to extend the choice of license to its licensees as provided above.
    2.37 - * However, if you add GPL Version 2 code and therefore, elected the GPL
    2.38 - * Version 2 license, then the option applies only if the new code is
    2.39 - * made subject to such option by the copyright holder.
    2.40 - *
    2.41 - * Contributor(s):
    2.42 - *
    2.43 - * Portions Copyrighted 2011 Sun Microsystems, Inc.
    2.44 - */
    2.45 -package org.netbeans.modules.plsql.palette.item.errorhandling;
    2.46 -
    2.47 -import org.netbeans.modules.plsql.palette.PaletteItem;
    2.48 -
    2.49 -/**
    2.50 - * Class for adding IFS item general code template
    2.51 - * @author IFS
    2.52 - */
    2.53 -public class IFSItemGeneral extends PaletteItem{
    2.54 -    
    2.55 -    /** Creates a new instance of IFSItemGeneral */
    2.56 -    public IFSItemGeneral() {        
    2.57 -    }
    2.58 -        
    2.59 -    public String createBody(){
    2.60 -        String exe;
    2.61 -        exe = "Error_SYS.Item_General(lu_name_,'${<attribute>}', '${<errorID>}: ${<text>}');\n${cursor}";        
    2.62 -        return exe;
    2.63 -    }
    2.64 -}
     3.1 --- a/PLSQL/Palette/src/org/netbeans/modules/plsql/palette/item/errorhandling/IFSRecordGeneral.java	Tue Feb 07 14:49:16 2012 +0100
     3.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.3 @@ -1,60 +0,0 @@
     3.4 -/*
     3.5 - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3.6 - *
     3.7 - * Copyright 2011 Oracle and/or its affiliates. All rights reserved.
     3.8 - *
     3.9 - * Oracle and Java are registered trademarks of Oracle and/or its affiliates.
    3.10 - * Other names may be trademarks of their respective owners.
    3.11 - *
    3.12 - * The contents of this file are subject to the terms of either the GNU
    3.13 - * General Public License Version 2 only ("GPL") or the Common
    3.14 - * Development and Distribution License("CDDL") (collectively, the
    3.15 - * "License"). You may not use this file except in compliance with the
    3.16 - * License. You can obtain a copy of the License at
    3.17 - * http://www.netbeans.org/cddl-gplv2.html
    3.18 - * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
    3.19 - * specific language governing permissions and limitations under the
    3.20 - * License.  When distributing the software, include this License Header
    3.21 - * Notice in each file and include the License file at
    3.22 - * nbbuild/licenses/CDDL-GPL-2-CP.  Oracle designates this
    3.23 - * particular file as subject to the "Classpath" exception as provided
    3.24 - * by Oracle in the GPL Version 2 section of the License file that
    3.25 - * accompanied this code. If applicable, add the following below the
    3.26 - * License Header, with the fields enclosed by brackets [] replaced by
    3.27 - * your own identifying information:
    3.28 - * "Portions Copyrighted [year] [name of copyright owner]"
    3.29 - *
    3.30 - * If you wish your version of this file to be governed by only the CDDL
    3.31 - * or only the GPL Version 2, indicate your decision by adding
    3.32 - * "[Contributor] elects to include this software in this distribution
    3.33 - * under the [CDDL or GPL Version 2] license." If you do not indicate a
    3.34 - * single choice of license, a recipient has the option to distribute
    3.35 - * your version of this file under either the CDDL, the GPL Version 2 or
    3.36 - * to extend the choice of license to its licensees as provided above.
    3.37 - * However, if you add GPL Version 2 code and therefore, elected the GPL
    3.38 - * Version 2 license, then the option applies only if the new code is
    3.39 - * made subject to such option by the copyright holder.
    3.40 - *
    3.41 - * Contributor(s):
    3.42 - *
    3.43 - * Portions Copyrighted 2011 Sun Microsystems, Inc.
    3.44 - */
    3.45 -package org.netbeans.modules.plsql.palette.item.errorhandling;
    3.46 -
    3.47 -import org.netbeans.modules.plsql.palette.PaletteItem;
    3.48 -/**
    3.49 - * Class for adding IFS record general code template
    3.50 - * @author IFS
    3.51 - */
    3.52 -public class IFSRecordGeneral extends PaletteItem{
    3.53 -    
    3.54 -    /** Creates a new instance of IFSRecordGeneral */
    3.55 -    public IFSRecordGeneral() {        
    3.56 -    }
    3.57 -    
    3.58 -    public String createBody(){
    3.59 -        String exe;         
    3.60 -        exe = "Error_SYS.Record_General(lu_name_, '${<errorID>}: ${<text>}');\n${cursor}";        
    3.61 -        return exe;
    3.62 -    }
    3.63 -}
     4.1 --- a/PLSQL/Palette/src/org/netbeans/modules/plsql/palette/item/errorhandling/resource/Bundle.properties	Tue Feb 07 14:49:16 2012 +0100
     4.2 +++ b/PLSQL/Palette/src/org/netbeans/modules/plsql/palette/item/errorhandling/resource/Bundle.properties	Fri Feb 10 11:19:43 2012 +0530
     4.3 @@ -12,11 +12,3 @@
     4.4  HINT_PLSQL-ExceptionInit=\
     4.5   <Exception_name> EXCEPTION;\
     4.6   PRAGMA EXCEPTION_INIT(<exception_name>, -<number>);
     4.7 -
     4.8 -NAME_PLSQL-IFSItemGeneral = IFS Item General
     4.9 -HINT_PLSQL-IFSItemGeneral=\
    4.10 -Error_SYS.Item_General(lu_name_,'<attribute>', '<errorID>: <text>');
    4.11 -
    4.12 -NAME_PLSQL-IFSRecordGeneral = IFS Record General
    4.13 -HINT_PLSQL-IFSRecordGeneral=\
    4.14 -Error_SYS.Record_General(lu_name_, '<errorID>: <text>');
    4.15 \ No newline at end of file
     5.1 --- a/PLSQL/Palette/src/org/netbeans/modules/plsql/palette/item/errorhandling/resource/IFSItemGeneral.xml	Tue Feb 07 14:49:16 2012 +0100
     5.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.3 @@ -1,10 +0,0 @@
     5.4 -<?xml version="1.0" encoding="UTF-8"?>
     5.5 -<!DOCTYPE editor_palette_item PUBLIC "-//NetBeans//Editor Palette Item 1.0//EN" "http://www.netbeans.org/dtds/editor-palette-item-1_0.dtd">
     5.6 -<editor_palette_item version="1.0">
     5.7 -   <class name="org.netbeans.modules.plsql.palette.item.errorhandling.IFSItemGeneral"/>
     5.8 -   <icon16 urlvalue = "org/netbeans/modules/plsql/palette/item/errorhandling/resource/error.png"/>
     5.9 -   <icon32 urlvalue = "org/netbeans/modules/plsql/palette/item/loop/errorhandling/error.png"/>
    5.10 -   <description localizing-bundle="org.netbeans.modules.plsql.palette.item.errorhandling.resource.Bundle"
    5.11 -                display-name-key="NAME_PLSQL-IFSItemGeneral"
    5.12 -                tooltip-key="HINT_PLSQL-IFSItemGeneral" />
    5.13 -</editor_palette_item>
    5.14 \ No newline at end of file
     6.1 --- a/PLSQL/Palette/src/org/netbeans/modules/plsql/palette/item/errorhandling/resource/IFSRecordGeneral.xml	Tue Feb 07 14:49:16 2012 +0100
     6.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     6.3 @@ -1,10 +0,0 @@
     6.4 -<?xml version="1.0" encoding="UTF-8"?>
     6.5 -<!DOCTYPE editor_palette_item PUBLIC "-//NetBeans//Editor Palette Item 1.0//EN" "http://www.netbeans.org/dtds/editor-palette-item-1_0.dtd">
     6.6 -<editor_palette_item version="1.0">
     6.7 -   <class name="org.netbeans.modules.plsql.palette.item.errorhandling.IFSRecordGeneral"/>
     6.8 -   <icon16 urlvalue = "org/netbeans/modules/plsql/palette/item/errorhandling/resource/error.png"/>
     6.9 -   <icon32 urlvalue = "org/netbeans/modules/plsql/palette/item/loop/errorhandling/error.png"/>
    6.10 -   <description localizing-bundle="org.netbeans.modules.plsql.palette.item.errorhandling.resource.Bundle"
    6.11 -                display-name-key="NAME_PLSQL-IFSRecordGeneral"
    6.12 -                tooltip-key="HINT_PLSQL-IFSRecordGeneral" />
    6.13 -</editor_palette_item>
    6.14 \ No newline at end of file
     7.1 --- a/PLSQL/Palette/src/org/netbeans/modules/plsql/palette/item/reports/GrantPlSqlAp.java	Tue Feb 07 14:49:16 2012 +0100
     7.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     7.3 @@ -1,86 +0,0 @@
     7.4 -/*
     7.5 - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     7.6 - *
     7.7 - * Copyright 2011 Oracle and/or its affiliates. All rights reserved.
     7.8 - *
     7.9 - * Oracle and Java are registered trademarks of Oracle and/or its affiliates.
    7.10 - * Other names may be trademarks of their respective owners.
    7.11 - *
    7.12 - * The contents of this file are subject to the terms of either the GNU
    7.13 - * General Public License Version 2 only ("GPL") or the Common
    7.14 - * Development and Distribution License("CDDL") (collectively, the
    7.15 - * "License"). You may not use this file except in compliance with the
    7.16 - * License. You can obtain a copy of the License at
    7.17 - * http://www.netbeans.org/cddl-gplv2.html
    7.18 - * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
    7.19 - * specific language governing permissions and limitations under the
    7.20 - * License.  When distributing the software, include this License Header
    7.21 - * Notice in each file and include the License file at
    7.22 - * nbbuild/licenses/CDDL-GPL-2-CP.  Oracle designates this
    7.23 - * particular file as subject to the "Classpath" exception as provided
    7.24 - * by Oracle in the GPL Version 2 section of the License file that
    7.25 - * accompanied this code. If applicable, add the following below the
    7.26 - * License Header, with the fields enclosed by brackets [] replaced by
    7.27 - * your own identifying information:
    7.28 - * "Portions Copyrighted [year] [name of copyright owner]"
    7.29 - *
    7.30 - * If you wish your version of this file to be governed by only the CDDL
    7.31 - * or only the GPL Version 2, indicate your decision by adding
    7.32 - * "[Contributor] elects to include this software in this distribution
    7.33 - * under the [CDDL or GPL Version 2] license." If you do not indicate a
    7.34 - * single choice of license, a recipient has the option to distribute
    7.35 - * your version of this file under either the CDDL, the GPL Version 2 or
    7.36 - * to extend the choice of license to its licensees as provided above.
    7.37 - * However, if you add GPL Version 2 code and therefore, elected the GPL
    7.38 - * Version 2 license, then the option applies only if the new code is
    7.39 - * made subject to such option by the copyright holder.
    7.40 - *
    7.41 - * Contributor(s):
    7.42 - *
    7.43 - * Portions Copyrighted 2011 Sun Microsystems, Inc.
    7.44 - */
    7.45 -package org.netbeans.modules.plsql.palette.item.reports;
    7.46 -
    7.47 -import org.netbeans.modules.plsql.palette.PaletteItem;
    7.48 -
    7.49 -/*
    7.50 - * Class description
    7.51 - *
    7.52 - * Created on January 23, 2012, 6:11 PM
    7.53 - *
    7.54 - * @author IFS
    7.55 - *
    7.56 - * To change this template, choose Tools | Template Manager
    7.57 - * and open the template in the editor.
    7.58 - */
    7.59 -public class GrantPlSqlAp extends PaletteItem{
    7.60 -
    7.61 -    private final String grantPlSqlApBlock =  "DECLARE \n"
    7.62 -                                             +"   acl_ VARCHAR2(100) := 'IFSAPP-PLSQLAP-Permission-${machine.name}.xml'; \n"
    7.63 -                                             +"   privilege_ VARCHAR2(20) := 'connect'; \n"
    7.64 -                                             +"   desc_ VARCHAR2(100) := 'Permission for Foundation1 users to run HTTP from the database.'; \n"
    7.65 -                                             +"BEGIN \n"
    7.66 -                                             +"   Dbms_Network_Acl_Admin.Create_Acl( \n"
    7.67 -                                             +"      acl_, \n"
    7.68 -                                             +"      desc_, \n"
    7.69 -                                             +"      'IFSAPP', \n"
    7.70 -                                             +"      TRUE, \n"
    7.71 -                                             +"      privilege_); \n"
    7.72 -                                             +"   Dbms_Network_Acl_Admin.Add_Privilege( \n"
    7.73 -                                             +"      acl_, \n"
    7.74 -                                             +"      'IFSSYS', \n"
    7.75 -                                             +"      TRUE, \n"
    7.76 -                                             +"      privilege_); \n"
    7.77 -                                             +"   Dbms_Network_Acl_Admin.Assign_Acl( \n"
    7.78 -                                             +"      acl_, \n"
    7.79 -                                             +"      '${machine.name}.corpnet.ifsworld.com', \n"
    7.80 -                                             +"      8080, \n"
    7.81 -                                             +"      8080); \n"
    7.82 -                                             +"END;";
    7.83 -    
    7.84 -    @Override
    7.85 -    public String createBody() {
    7.86 -        return grantPlSqlApBlock;
    7.87 -    }
    7.88 -    
    7.89 -}
     8.1 --- a/PLSQL/Palette/src/org/netbeans/modules/plsql/palette/item/reports/resource/Bundle.properties	Tue Feb 07 14:49:16 2012 +0100
     8.2 +++ b/PLSQL/Palette/src/org/netbeans/modules/plsql/palette/item/reports/resource/Bundle.properties	Fri Feb 10 11:19:43 2012 +0530
     8.3 @@ -11,12 +11,4 @@
     8.4  NAME_List_Tablespaces = List Tablespaces
     8.5  HINT_List_Tablespaces = List Tablespaces
     8.6  NAME_Remove_Debug_Info = Remove Debug Information From All Debug Compiled Packages
     8.7 -HINT_Remove_Debug_Info = Remove Debug Information From All Debug Compiled Packages
     8.8 -NAME_Refresh_Dictionary = Refresh Dictionary Cache
     8.9 -HINT_Refresh_Dictionary = Refresh Dictionary Cache
    8.10 -NAME_Grant_Ifssys = Grant IFSSYS
    8.11 -HINT_Grant_Ifssys = Grant database objects needed by Extended Server
    8.12 -NAME_Refresh_Reference_Cache = Refresh Reference Cache
    8.13 -HINT_Refresh_Reference_Cache = Refresh Reference Cache
    8.14 -NAME_Grant_PlSqlAp=Grant PLSQLAP Permission
    8.15 -HINT_Grant_PlSqlAp=Setup privileges (ACL) for IFSAPP to connect to your local application server
    8.16 \ No newline at end of file
    8.17 +HINT_Remove_Debug_Info = Remove Debug Information From All Debug Compiled Packages
    8.18 \ No newline at end of file
     9.1 --- a/PLSQL/Palette/src/org/netbeans/modules/plsql/palette/item/reports/resource/GrantIfssys.xml	Tue Feb 07 14:49:16 2012 +0100
     9.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     9.3 @@ -1,17 +0,0 @@
     9.4 -<?xml version="1.0" encoding="UTF-8"?>
     9.5 -<!DOCTYPE editor_palette_item PUBLIC "-//NetBeans//Editor Palette Item 1.0//EN" "http://www.netbeans.org/dtds/editor-palette-item-1_0.dtd">
     9.6 -<editor_palette_item version="1.0">
     9.7 -    <body>
     9.8 -        <![CDATA[
     9.9 -BEGIN
    9.10 -   Installation_SYS.Grant_Privileged_Grantee('IFSSYS', TRUE);
    9.11 -END;
    9.12 -/
    9.13 -        ]]>
    9.14 -    </body>
    9.15 -    <icon16 urlvalue="org/netbeans/modules/palette/resources/unknown16.gif" />
    9.16 -    <icon32 urlvalue="org/netbeans/modules/palette/resources/unknown32.gif" />
    9.17 -    <description localizing-bundle="org.netbeans.modules.plsql.palette.item.reports.resource.Bundle"
    9.18 -                 display-name-key="NAME_Grant_Ifssys"
    9.19 -                 tooltip-key="HINT_Grant_Ifssys" />
    9.20 -</editor_palette_item>
    9.21 \ No newline at end of file
    10.1 --- a/PLSQL/Palette/src/org/netbeans/modules/plsql/palette/item/reports/resource/GrantPlSqlAp.xml	Tue Feb 07 14:49:16 2012 +0100
    10.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
    10.3 @@ -1,10 +0,0 @@
    10.4 -<?xml version="1.0" encoding="UTF-8"?>
    10.5 -<!DOCTYPE editor_palette_item PUBLIC "-//NetBeans//Editor Palette Item 1.0//EN" "http://www.netbeans.org/dtds/editor-palette-item-1_0.dtd">
    10.6 -<editor_palette_item version="1.0">
    10.7 -    <class name="org.netbeans.modules.plsql.palette.item.reports.GrantPlSqlAp"/>
    10.8 -    <icon16 urlvalue="org/netbeans/modules/palette/resources/unknown16.gif" />
    10.9 -    <icon32 urlvalue="org/netbeans/modules/palette/resources/unknown32.gif" />
   10.10 -    <description localizing-bundle="org.netbeans.modules.plsql.palette.item.reports.resource.Bundle"
   10.11 -                 display-name-key="NAME_Grant_PlSqlAp"
   10.12 -                 tooltip-key="HINT_Grant_PlSqlAp" />
   10.13 -</editor_palette_item>
   10.14 \ No newline at end of file
    11.1 --- a/PLSQL/Palette/src/org/netbeans/modules/plsql/palette/item/reports/resource/RefreshDictionary.xml	Tue Feb 07 14:49:16 2012 +0100
    11.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
    11.3 @@ -1,17 +0,0 @@
    11.4 -<?xml version="1.0" encoding="UTF-8"?>
    11.5 -<!DOCTYPE editor_palette_item PUBLIC "-//NetBeans//Editor Palette Item 1.0//EN" "http://www.netbeans.org/dtds/editor-palette-item-1_0.dtd">
    11.6 -<editor_palette_item version="1.0">
    11.7 -     <body>
    11.8 -        <![CDATA[
    11.9 -BEGIN
   11.10 -    Dictionary_SYS.Rebuild_Dictionary_Storage_(0);
   11.11 -END;
   11.12 -/
   11.13 -]]>
   11.14 -    </body>
   11.15 -    <icon16 urlvalue="org/netbeans/modules/palette/resources/unknown16.gif" />
   11.16 -    <icon32 urlvalue="org/netbeans/modules/palette/resources/unknown32.gif" />
   11.17 -    <description localizing-bundle="org.netbeans.modules.plsql.palette.item.reports.resource.Bundle"
   11.18 -                 display-name-key="NAME_Refresh_Dictionary"
   11.19 -                 tooltip-key="HINT_Refresh_Dictionary" />
   11.20 -</editor_palette_item>
   11.21 \ No newline at end of file
    12.1 --- a/PLSQL/Palette/src/org/netbeans/modules/plsql/palette/item/reports/resource/RefreshReferenceCache.xml	Tue Feb 07 14:49:16 2012 +0100
    12.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
    12.3 @@ -1,18 +0,0 @@
    12.4 -<?xml version="1.0" encoding="UTF-8"?>
    12.5 -<!DOCTYPE editor_palette_item PUBLIC "-//NetBeans//Editor Palette Item 1.0//EN" "http://www.netbeans.org/dtds/editor-palette-item-1_0.dtd">
    12.6 -<editor_palette_item version="1.0">
    12.7 -     <body>
    12.8 -        <![CDATA[
    12.9 --- Provide a view or module as parameter, empty string ('') will result in a full refresh
   12.10 -BEGIN
   12.11 -    Reference_SYS.Refresh_Active_List__('&VIEW_OR_MODULE');
   12.12 -END;
   12.13 -/
   12.14 -]]>
   12.15 -    </body>
   12.16 -    <icon16 urlvalue="org/netbeans/modules/palette/resources/unknown16.gif" />
   12.17 -    <icon32 urlvalue="org/netbeans/modules/palette/resources/unknown32.gif" />
   12.18 -    <description localizing-bundle="org.netbeans.modules.plsql.palette.item.reports.resource.Bundle"
   12.19 -                 display-name-key="NAME_Refresh_Reference_Cache"
   12.20 -                 tooltip-key="HINT_Refresh_Reference_Cache" />
   12.21 -</editor_palette_item>
   12.22 \ No newline at end of file
    13.1 --- a/PLSQL/Palette/src/org/netbeans/modules/plsql/palette/layer.xml	Tue Feb 07 14:49:16 2012 +0100
    13.2 +++ b/PLSQL/Palette/src/org/netbeans/modules/plsql/palette/layer.xml	Fri Feb 10 11:19:43 2012 +0530
    13.3 @@ -54,9 +54,7 @@
    13.4        </folder>
    13.5        <folder name="Error Handling">
    13.6           <file name="ExceptionBlock.xml" url="item/errorhandling/resource/ExceptionBlock.xml"/>
    13.7 -         <file name="ExceptionInit.xml" url="item/errorhandling/resource/ExceptionInit.xml"/>
    13.8 -         <file name="IFSItemGeneral.xml" url="item/errorhandling/resource/IFSItemGeneral.xml"/>
    13.9 -         <file name="IFSRecordGeneral.xml" url="item/errorhandling/resource/IFSRecordGeneral.xml"/>
   13.10 +         <file name="ExceptionInit.xml" url="item/errorhandling/resource/ExceptionInit.xml"/>         
   13.11        </folder>
   13.12        <folder name="Package elements">
   13.13           <file name="FunctionDeclaration.xml" url="item/packageelements/resource/FunctionDeclaration.xml"/>
   13.14 @@ -182,11 +180,7 @@
   13.15           <file name="CompileInvalidObjects.xml" url="item/reports/resource/CompileInvalidObjects.xml"/>
   13.16           <file name="DebugCompilePackages.xml" url="item/reports/resource/DebugCompilePackages.xml"/>
   13.17           <file name="ListDebugCompiledPkgs.xml" url="item/reports/resource/ListDebugCompiledPkgs.xml"/>      
   13.18 -         <file name="RemoveDebugInfo.xml" url="item/reports/resource/RemoveDebugInfo.xml"/>
   13.19 -         <file name="RefreshDictionary.xml" url="item/reports/resource/RefreshDictionary.xml"/>
   13.20 -         <file name="RefreshReferenceCache.xml" url="item/reports/resource/RefreshReferenceCache.xml"/>
   13.21 -         <file name="GrantIfssys.xml" url="item/reports/resource/GrantIfssys.xml"/>
   13.22 -         <file name="GrantPlSqlAp.xml" url="item/reports/resource/GrantPlSqlAp.xml"/>
   13.23 +         <file name="RemoveDebugInfo.xml" url="item/reports/resource/RemoveDebugInfo.xml"/>         
   13.24        </folder>
   13.25     </folder>
   13.26  </filesystem>