Return-Path: X-Original-To: apmail-directory-commits-archive@www.apache.org Delivered-To: apmail-directory-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id AA08A95BD for ; Thu, 3 May 2012 13:13:13 +0000 (UTC) Received: (qmail 3640 invoked by uid 500); 3 May 2012 13:13:13 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 3583 invoked by uid 500); 3 May 2012 13:13:13 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 3575 invoked by uid 99); 3 May 2012 13:13:13 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 May 2012 13:13:13 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 May 2012 13:13:11 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id B4CC7238896F for ; Thu, 3 May 2012 13:12:51 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1333448 - in /directory/studio/trunk/plugins/rcp.fullscreen: ./ src/main/java/org/apache/directory/studio/rcp/fullscreen/ Date: Thu, 03 May 2012 13:12:51 -0000 To: commits@directory.apache.org From: pamarcelot@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120503131251.B4CC7238896F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: pamarcelot Date: Thu May 3 13:12:50 2012 New Revision: 1333448 URL: http://svn.apache.org/viewvc?rev=1333448&view=rev Log: Removed Apache License header from the 'RCP Fullscreen' plugin classes and files. It should never have been there in the first place. Modified: directory/studio/trunk/plugins/rcp.fullscreen/plugin.xml directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/Activator.java directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/BnLWindow.java directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/SO.java directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/Startup.java directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/ToggleFullScreenEscapeHandler.java directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/ToggleFullScreenHandler.java Modified: directory/studio/trunk/plugins/rcp.fullscreen/plugin.xml URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/rcp.fullscreen/plugin.xml?rev=1333448&r1=1333447&r2=1333448&view=diff ============================================================================== --- directory/studio/trunk/plugins/rcp.fullscreen/plugin.xml (original) +++ directory/studio/trunk/plugins/rcp.fullscreen/plugin.xml Thu May 3 13:12:50 2012 @@ -1,21 +1,13 @@ Modified: directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/Activator.java URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/Activator.java?rev=1333448&r1=1333447&r2=1333448&view=diff ============================================================================== --- directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/Activator.java (original) +++ directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/Activator.java Thu May 3 13:12:50 2012 @@ -1,22 +1,3 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - * - */ /******************************************************************************* * Copyright (c) 2011, Alex Blewitt. * All rights reserved. This program and the accompanying materials @@ -49,7 +30,7 @@ import org.osgi.framework.BundleContext; public class Activator extends AbstractUIPlugin implements IWindowListener { - public static final String PLUGIN_ID = "com.bandlem.eclipse.fullscreen.ui"; //$NON-NLS-1$ + public static final String PLUGIN_ID = "org.apache.directory.studio.fullscreen.ui"; //$NON-NLS-1$ public void start( BundleContext context ) throws Exception Modified: directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/BnLWindow.java URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/BnLWindow.java?rev=1333448&r1=1333447&r2=1333448&view=diff ============================================================================== --- directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/BnLWindow.java (original) +++ directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/BnLWindow.java Thu May 3 13:12:50 2012 @@ -1,22 +1,3 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - * - */ /******************************************************************************* * Copyright (c) 2011, Alex Blewitt. * All rights reserved. This program and the accompanying materials Modified: directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/SO.java URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/SO.java?rev=1333448&r1=1333447&r2=1333448&view=diff ============================================================================== --- directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/SO.java (original) +++ directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/SO.java Thu May 3 13:12:50 2012 @@ -1,22 +1,3 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - * - */ /******************************************************************************* * Copyright (c) 2011, Alex Blewitt. * All rights reserved. This program and the accompanying materials Modified: directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/Startup.java URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/Startup.java?rev=1333448&r1=1333447&r2=1333448&view=diff ============================================================================== --- directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/Startup.java (original) +++ directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/Startup.java Thu May 3 13:12:50 2012 @@ -1,22 +1,3 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - * - */ /******************************************************************************* * Copyright (c) 2011, Alex Blewitt. * All rights reserved. This program and the accompanying materials Modified: directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/ToggleFullScreenEscapeHandler.java URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/ToggleFullScreenEscapeHandler.java?rev=1333448&r1=1333447&r2=1333448&view=diff ============================================================================== --- directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/ToggleFullScreenEscapeHandler.java (original) +++ directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/ToggleFullScreenEscapeHandler.java Thu May 3 13:12:50 2012 @@ -1,22 +1,3 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - * - */ /******************************************************************************* * Copyright (c) 2011, Alex Blewitt. * All rights reserved. This program and the accompanying materials Modified: directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/ToggleFullScreenHandler.java URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/ToggleFullScreenHandler.java?rev=1333448&r1=1333447&r2=1333448&view=diff ============================================================================== --- directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/ToggleFullScreenHandler.java (original) +++ directory/studio/trunk/plugins/rcp.fullscreen/src/main/java/org/apache/directory/studio/rcp/fullscreen/ToggleFullScreenHandler.java Thu May 3 13:12:50 2012 @@ -1,22 +1,3 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - * - */ /******************************************************************************* * Copyright (c) 2011, Alex Blewitt. * All rights reserved. This program and the accompanying materials