1. http://geekgen.it/api.php?mode=api&w=googl&url=http://google.com
2. http://jsbin.com/idalu3 源码: goo.gl
Archive for the ‘技术’ Category
2010年02月05日 星期五
2010年02月05日 星期五
之一:Short URL Auto-Discovery [http://wiki.snaplog.com/short_url]
之二:rel=”shortlink” [http://microformats.org/wiki/rel-shortlink]
2010年01月21日 星期四
Enterprise Portal
Web Form Web Part Use for Web Content of Type Display ( Web Form)
Web Report Web Part Use for Web Content of Type Output ( Report and Web Report)
Generic Web Part Use for Web Let
Web Menu Web Part Use for Web Menu on top and left
Box Menu Web Part Use for Web Menu on Activity Center Task List
Page Title Web Part Use for Page Title leveraging AX Label
Windows SharePoint Services
|
Content Editor Web Part |
Use for formatted text, tables, and images. |
|
Form Web Part |
Use to connect simple form controls to other Web Parts. |
|
Image Web Part |
Use to display pictures and photos. |
|
Members |
Use the Members Web Part to see a list of the site members and their online status. |
|
Page Viewer Web Part |
Use to display linked content, such as files, folders, or Web pages. The linked content is isolated from other content on the Web Part Page. |
|
Relevant Documents |
Use this webpart to display documents that are relevant to the current user. |
|
User Tasks |
Use this webpart to display tasks that are assigned to the current user. |
|
XML Web Part |
Use for XML, and XSL Transformation of the XML. |
|
List View Web Part |
|
Microsoft SharePoint Server 2007
|
Business Data |
|
|
Business Data Actions |
Display a list of actions from the Business Data Catalog. |
|
Business Data Item |
Display one item from a data source in the Business Data Catalog. |
|
Business Data Item Builder |
Creates a Business Data item from parameters in the query string and provides it to other web parts. This web part is only used on Business Data profile pages. |
|
Business Data List |
Display a list of items from a data source in the Business Data Catalog. |
|
Business Data Related List |
Display a list of items related to one or more parent items from a data source in the Business Data Catalog. |
|
|
|
|
Content Rollup |
|
|
Colleague Tracker |
Displays your list of colleagues and any recent changes they made have had. |
|
Memberships |
Displays your site and distribution list memberships. |
|
My Links |
Use to display your links |
|
My SharePoint Sites |
Use to display documents authored by you on sites where you are a member and sites of your choice. |
|
My Workspaces |
Displays sites created under your My Site. |
|
Site Aggregator |
Use to display sites of your choice. |
|
|
|
|
Dashboard |
|
|
Key Performance Indicators |
Shows a list of status indicators. Status indicators display important measures for your organization, and show how your organization is performing with respect to your goals. |
|
KPI Details |
Displays the details of a single status indicator. Status indicators display an important measure for an organization and may be obtained from other data sources including SharePoint lists, Excel workbooks, and SQL Server 2005 Analysis Services KPIs. |
|
|
|
|
Other |
|
|
Excel Web Access |
Use the Excel Web Access to interact with an Excel 2007 workbook as a Web page. |
|
I need to… |
|
2010年01月20日 星期三
Point8020 Learning Solutions from SharePoint: http://www.point8020.com/Training.aspx
2010年01月20日 星期三
jQuery 1.4 API Cheat Sheet
printable PDF version
PNG version
SelectorsBasic FiltersAttribute FiltersLegendConventional signs[obj] — array of objects
1.4+ — new in 1.4
1.4∗ — changed in 1.4
Data types* — anything
$ — jQuery object
arr — array
bool — boolean
el — DOM element
fn — function
int — integer
obj — object
str — string
XHR — XMLHttpRequest
http://futurecolors.ru/jquery/ ver. 15-01-2010 |
CorejQuery functionInteroperabilityAttributesAttributesClassHTML, textCSSPositioningHeight and Width |
TraversingFilteringTree traversalManipulationInserting InsideInserting OutsideInserting AroundCopying |
EventsPage LoadEvent HandlingInteraction HelpersEvent Helpers$ .blur( [fn] ),
.mousedown( [fn] ),
.change( [fn] ),
.mouseenter( [fn] ),
.click( [fn] ),
.mouseleave( [fn] ),
.dblclick( [fn] ),
.mousemove( [fn] ),
.error( [fn] ),
.mouseout( [fn] ),
.focus( [fn] ),
.mouseout( [fn] ),
.mouseup( [fn] ),
.resize( [fn] ),
.keydown( [fn] ),
.scroll( [fn] ),
.keypress( [fn] ),
.select( [fn] ),
.keyup( [fn] ),
.submit( [fn] ),
.load( fn ),
.unload( fn )
|
AJAXLow-Level InterfaceXHRjQuery.ajax( options )
Shorthand MethodsGlobal Ajax Event HandlersUtilitiesBrowser and Feature DetectionBasic operationsData functionsTest operations |
Source: http://futurecolors.ru/jquery/
2010年01月14日 星期四
/// <summary>
/// A custom editor part for picking data fields for a table web part
/// </summary>
class CustomEditorPart:EditorPart
{
#region Declarations
// In addition to other controls, etc, declare an error variable
string _errorText = string.Empty;
#endregion Declarations
#region Apply Changes
/// <summary>
/// Applies the changes to the web part properties
/// </summary>
/// <returns></returns>
public override bool ApplyChanges()
{
try
{
// You code goes here
return true;
}
catch (Exception ex)
{
_errorText = ex.Message;
return false;
}
}
#endregion Apply Changes
#region Rendering (Error Text)
/// <summary>
/// Update the error text if needed
/// </summary>
/// <param name="e"></param>
protected override void OnPreRender(EventArgs e)
{
if (_errorText != string.Empty)
{
this.Zone.ErrorText += Environment.NewLine + _errorText;
}
base.OnPreRender(e);
}
#endregion Rendering (Error Text)
}
来源: http://goo.gl/IbOo