update copyright
[fedora-idea.git] / java / idea-ui / src / com / intellij / openapi / wm / impl / welcomeScreen / DevelopPluginsAction.java
blobe83b7290c0a22091084bbd3241c8569e929effdb
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package com.intellij.openapi.wm.impl.welcomeScreen;
18 import com.intellij.ide.BrowserUtil;
19 import com.intellij.openapi.actionSystem.AnAction;
20 import com.intellij.openapi.actionSystem.AnActionEvent;
21 import com.intellij.openapi.application.ApplicationNamesInfo;
22 import com.intellij.openapi.application.PathManager;
23 import com.intellij.openapi.project.DumbAware;
24 import com.intellij.ui.UIBundle;
25 import org.jetbrains.annotations.NonNls;
27 import java.io.File;
29 /**
30 * @author yole
32 public class DevelopPluginsAction extends AnAction implements DumbAware {
33 @NonNls private static final String PLUGIN_URL = PathManager.getHomePath() + "/Plugin Development Readme.html";
34 @NonNls private static final String PLUGIN_WEBSITE = "http://www.jetbrains.com/idea/plugins/plugin_developers.html";
36 public DevelopPluginsAction() {
37 getTemplatePresentation().setDescription(UIBundle.message("welcome.screen.plugin.development.action.description",
38 ApplicationNamesInfo.getInstance().getFullProductName()));
41 public void actionPerformed(final AnActionEvent e) {
42 try {
43 if (new File(PLUGIN_URL).isFile()) {
44 BrowserUtil.launchBrowser(PLUGIN_URL);
46 else {
47 BrowserUtil.launchBrowser(PLUGIN_WEBSITE);
50 catch(IllegalStateException ex) {
51 // ignore