Feature開發一(製作乙個簡單的自定義選單)

2021-04-20 00:50:53 字數 2884 閱讀 7803

features 是moss 2007以開箱即用的一套新功能,features 儲存在sharepoint伺服器的如下路徑下:c:/program files/common files/microsoft shared/web server extensions/12/template/features。每個featrue在此路徑下有自己的子目錄,在每乙個feature子目錄下會發現名字為feature.xml的檔案,它儲存一些關於featrue的metadata資訊。

1,  在該目錄下: c:/program files/common files/microsoft shared/web server extensions/12/template/features新建documenteditauthor(自定義的)的目錄,首先新建feature.xml(必須)。

以下檔名為feature.xml , 存放在documenteditauthor目錄下。

scope指的該feature的應用範圍,有web,farm等。

id 指的是乙個guid型別

指的是呼叫另乙個xml檔案

一下是elements.xml檔案, 也存放在documenteditauthor目錄下。

id:為這個customaction指定乙個文字識別符號

sequence:指定action的優先順序的順序

location:action出現的位置,在msdn中有對location有詳盡的列表,以後會提到。你不僅可以對action指定title還可以加上你想要的圖示。

rgistrationtype:specifies the registration attachment for a per-item action. (不好意思,我不知道該如何翻譯才更合適)。這是個可選的文字屬性。從我的理解來說,這是對那些類似list中的item指定action。有contenttype list filetype progid。這裡指定的是list,因為announcements是list的一種型別。

registrationid:101代表著文件庫。

具體msdn有說明 http://msdn.microsoft.com/zh-cn/library/ms473643(en-us).aspx

然後在 c:/program files/common files/microsoft shared/web server extensions/12/template/layouts 新建一sampleurl.aspx檔案

<

html

>

<

head

runat="server"

>

<

title

>sample page

title

>

head

>

<

body

>

<

p>hello, world!

p>

body

>

html

>

ok ,結束。 下邊開始部署

cmd,cd c:/program files/common files/microsoft shared/web server extensions/12/bin

後,stsadm -o installfeature -filename documenteditauthor/feature.xml 。這樣就註冊成功了。

然後去**設定中啟用剛建的feature 。 

再去文件庫看一下,在uction下邊是否有剛剛自定義的選單呢,點下就跳轉到了sampleurl.aspx頁面。

當然這是乙個非常簡單的例子,沒什麼意義。

至於更深入的例子,我還在研究中。 呵呵

iOS開發乙個製作Live Photo的工具

位址如下 1.livephoto簡介 2.livephoto的本質 3.涉及到的技術 4.實現livephoto製作工具 param currenttime 某一時刻單位 s return return 返回image uiimage getvideoimagewithtime float64 cu...

製作乙個vue外掛程式

myplugin.install function vue,options 2.新增全域性資源 vue.directive my directive 3.注入元件 vue.mixin 4.新增例項方法 vue.prototype.mymethod function methodoptions 用 b...

Python pygame 製作乙個遊戲

效果圖 注 貼圖是哪個遊戲扒的大家心領神會即可 僅做交流使用,權侵刪 基礎 飛機大戰 by小甲魚 傳送門 python pygame 經典的飛機大戰 傳送門 原始碼的封裝與繼承性很爛,重用現象也很普遍 很醜很爛,但思路和結構簡單而清晰,注釋也很多 基本效果 角色的二維上下左右按鍵控制 子彈近戰 刀劍...