- 浏览: 25772 次
- 性别:
- 来自: 重庆
最新评论
文章列表
yum -y remove xxx
例如,卸载subservion
yum -y remove svn
在Centos中yum安装和卸载软件的使用方法
安装方法
安装一个软件时
yum -y install httpd
安装多个相类似的软件时
yum -y install httpd*
安装多个非类似软件时
yum -y install httpd php php-gd mysql
卸载一个软件时
yum -y remove httpd
卸载多个相类似的软件时
yum -y remove httpd*
卸载多个非类似软件时
yum -y ...
CentOS下安装subversion手记
$ yum install subversion
$ yum install mod_dav_svn
使用yum命令 安装 subversion 非常简单:
$ yum install subversion.i686
安装之前可以用命令 yum search subersion 在centos 软件仓库中寻找合适的软件。
[lisboa@server ~]$ yum search subversion ...
一般在configuration.yml里面的:
default:
# Outgoing emails configuration (see examples above)
email_delivery:
delivery_method: :async_sendmail----如果linux下面smtp客户端没有安装,就直接使用sendmail来发送,不然smtp老是报验证不成功的错误。
smtp_settings:
address: email.xxxx.com
port: 25
domain: wuxi --- ...
一个通用的页签式视图框架
简介: 本文设计并实现了一个通用页签式视图框架,它提供了一种纵向页签视图的快速开发能力。开发者可以利用它快捷地开发出页签样式的视图。这个框架是在 Tabbed Properties View 的基础上设计的。同时本文给出了该框架的一个使用示例。
属性视图是 Eclipse 最重要的一个扩展,用来查看或编辑项目的属性。自从 Eclipse 3.2 版本,开发者通过扩展点为属性视图定制用户界面,可以创建页签属性视图 (Tabbed Properties View)。它是纵向页签 ( 以下简称页签 ) 式的 Properties 视图,有着更加美 ...
package com.test;
import java.io.File;
import org.eclipse.jface.viewers.CheckStateChangedEvent;
import org.eclipse.jface.viewers.CheckboxTreeViewer;
import org.eclipse.jface.viewers.ICheckStateListener;
import org.eclipse.jface.viewers.ILabelProviderListener;
import org.eclipse.jface.viewers.ITable ...
ViewForm viewForm = new ViewForm(container, SWT.NONE);
MyActionGroup actionGroup = new MyActionGroup();
CoolBar coolBar=new CoolBar(viewForm,SWT.FLAT);
CoolBarManager coolBarManager = new CoolBarManager(coolBar); // 创建一个toolBar的管理器
ToolBar toolBar = new ToolBar(coolBar, SWT.FLAT); // 创建一个Too ...
Eclipse RCP:添加工具栏
修改浏览权限 | 删除
在工具栏上添加按钮
(1)启用工具栏
org.eclipsercp.hyperbola/ApplicationWorkbenchWindowAdvisor
public void preWindowOpen() {
……
configurer.setShowCoolBar(true);
……
}
(2)添加工具栏按钮
org.eclipsercp.hyperbola/ApplicationActionBarAdvisor
protected void fillCoolBar(ICoolBarManager ...
Composite composite = new Composite(viewForm, SWT.NONE);
composite.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
viewForm.setTopLeft(composite);
CoolBar coolBar = new CoolBar(composite, SWT.FLAT);
CoolItem coolItem = new CoolItem(coolBar, SWT.NONE);
ToolBar toolBar = new ToolBar( ...
<extension
point="org.eclipse.ui.startup">
<startup
class="PerspectiveListener">
</startup>
</extension>
import java.io.File;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.eclipse.swt.widge ...
android PC端连接android手机:
引用包:
import com.android.chimpchat.ChimpChat;
import com.android.chimpchat.core.IChimpDevice;
import com.android.chimpchat.core.IChimpImage;
import com.android.chimpchat.core.TouchPressType;
import com.android.ddmlib.AndroidDebugBridge;
import com.android.ddmlib.IDevice;
impor ...
动态更新或者删除菜单
- 博客分类:
- Eclipse 插件
@Override
public void postWindowOpen() {
super.postWindowOpen();
IMenuManager menuManager = getWindowConfigurer().getActionBarConfigurer().getMenuManager();
IContributionItem[] items = menuManager.getItems();
if (items.length != 0) {
for (int i = 0; i < items.length; i++) {
if (ite ...
网址收集
- 博客分类:
- Eclipse 插件
http://wiki.eclipse.org/Platform_Command_Framework
转载于:http://blog.eclipse-tips.com/2009/03/commands-part-6-toggle-radio-menu.html
Commands Part 6: Toggle & Radio menu contributions
In the previous parts of the series, we saw how Commands contribute to push style menu items. But commands allow you to contribute menu items with 'toggle' and 'radi ...
ActionHandler.java
- 博客分类:
- Eclipse 插件
1: /*******************************************************************************
2: * Copyright (c) 2004, 2006 IBM Corporation and others.
3: * All rights reserved. This program and the accompanying materials
4: * are made available under the terms of the Eclipse Public License v1.0
...
转载:http://eclipsesource.com/blogs/2009/01/15/toggling-a-command-contribution/
package de.ralfebert.rcputil;
import java.util.Map;
import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.Command;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.comm ...