Skip to: Site menu | Main content

Welcome there !

Emmanuel Desigaud's blog. Personnal, professional. Fun pictures, kewl web links, usefull software ....
2007-09-19

Book Review : Pro CSS and HTML Design Patterns

Categories: Books Language : English (EU)

cover There are so many books about CSS and so few that are very useful that I want to highlight this one.
It covers common CSS aspects in a question/answer style.
As usual with all APress books, you can buy it as electronic book or as traditional book.

Good reading :)

Book address : http://www.apress.com/book/view/1590598040

PermalinkPermalink
2007-08-22

Announcing the Document Library Treeview for MOSS 2007

Categories: CMS / Sharepoint Language : English (EU)

Dear Sharepoint users, I'm pleased to announce you my first public webpart for MOSS 2007.
This webpart simply add a treeview navigation to the document library webpart. Nothing very tricky or exciting .. just a useful component.

Have a look at the project page here

Webpart

PermalinkPermalink
2007-06-23

MOSS 2007 Search Web Service Tips

Categories: CMS / Sharepoint Language : English (EU)

The "Did you mean" (spelling suggestion) feature of MOSS 2007 is very useful. This information is also available through the Search Web Service.

On the dataset returned by the QueryEx function, have a look at the extended property called SpellingSuggestion. It will give you the precious information !!


DataSet ds queryServiceProxy.QueryEx(req);

            
if 
(ds.ExtendedProperties.ContainsKey("SpellingSuggestion"
    &&
    ds.ExtendedProperties[
"SpellingSuggestion"].ToString().Length > 0)
{
    
this.Response.Write("-->" + ds.ExtendedProperties["SpellingSuggestion"]);
}
PermalinkPermalink
2007-02-06

ASP.NET hosting for 2.95 €

Categories: Tech Language : English (EU)

Ikola offers for MSDN readers an asp.net hosting for less than 3 euros per month.

You can subscribe through this link : http://www.microsoft.com/france/msdn/aspnet/hebergement/ikoula.mspx

PermalinkPermalink
2007-01-31

Vis-ta vie (Vista Life)

Categories: Tech Language : English (EU)

One month after running Vista, situation is not very glorious ! :)

I don't know if it's because I used beta softwares (BitDefender, nero ...) but my Vista was not as robust as I expected (or compared to my previous XP setup).

Today my stability rate is around 2,3 :

I can do better :)

PermalinkPermalink
2007-01-26

AnkhSVN reached 1.0

Categories: Tech Language : English (EU)

AnkhSVN has been released as version 1.0. That's a great news for all of us who whant to move from Sourcesafe to another source control.

You can download your copy here : http://ankhsvn.tigris.org/servlets/ProjectDocumentList?folderID=7315

Just a reminder : AnkhSVN is an addin for Visual Studio for Subversion sub control.

PermalinkPermalink
2007-01-22

53 CSS-Techniques You Couldn’t Live Without

Categories: Tech Language : English (EU)

An incredible repository of CSS techniques ! You may need one of them very soon so bookmark this page from the Smashing Magazine

PermalinkPermalink
2007-01-08

Cheat Sheet Links

Categories: Tech Language : English (EU)

.Net:

HTML / CSS :

SQL :

PermalinkPermalink
2006-12-28

MOSS 2007 Related Article

Categories: CMS / Sharepoint Language : English (EU)

General:

  • Details of MCMS 2002 Software Assurance Migration(Microsoft)
  • Best Practices: Using Disposable Windows SharePoint Services Objects (MSDN)
  • Moving layout files (master pages, page layouts, CSS, etc.) in a MOSS Publishing site between multiple environments (Andrew Connell)

Development:

  • Sharepoint SDK (Microsoft)
  • SharePoint Development Just Got Simpler Thanks to Visual Studio Extensions (DevX.com)
  • How to enable debugging in a SharePoint Site (Renaud Comte)
  • SharePoint Solution Package - VS Project Template (Vince Rothwell)
  • Team-Based Development in Microsoft Office SharePoint Server 2007(MSDN)
  • SharePoint Resources, Types, Use and Deployment (Mikhail ikov)

Customization

  • How to: Display Custom Fields in a Content Query Web Part (MSDN)
  • Customizing the Content Query Web Part XSL (MSDN)
  • Customizing the WSS 3.0/MOSS 2007 Menu Control (MS Sharepoint Team)
  • How can I make my web site faster with caching (MS Sharepoint Team)
  • CSS Reference Chart for SharePoint 2007 (Heather Solomon)
  • MOSS Navigation Deep-Dive - Part 1 (ECM Team Blog)
  • Some design articles (Heather Solomon)
  • Using field value controls and edit mode panels to tweak your page rendering (ECM Team blog)
  • SharePoint/MOSS 2007 Forms Based Authentication Login/Registration Web Part (Paul Ballard)

Workflow:

  • Add custom workflow activities to SharePoint Designer (Part 1) & (Part 2)
  • SharePoint 2007 Workflow with Visual Studio 2005 + InfoPath 2007 (Nick Swan)

Search:

Business Data Catalog:

  • You can use the BDC feature of MOSS 2007 to interact with information stored in external data sources ... (Luis Du Solier)

Authentication:

  • Write your own Custom Authentication Provider (Liam Cleary)
  • Configuring Multiple Authentication Providers for SharePoint 2007 (Sharepoint Team)
  • SharePoint 2007 Forms Authentication (Nick Swan)
  • The Hybrid Provider: Authenticating both AD and SQL Users in SharePoint 2007 (Christopher V. Domino)

InfoPath:

Tools:

  • Query Tool (GotDotNet)
  • Sharepoint Inspector (Gat)
  • The SharePoint Utility Suite (CodePlex)
  • U2U Community Tools (U2U)
  • SharePoint Builder (CodePlex)
  • r.a.d.editor for SharePoint 2007 (Telerik)
  • SharePoint Custom Forms Authentication Feature (Codeplex)
  • Microsoft Best Practices Analyzer for Windows SharePoint Services 3.0 and the 2007 Microsoft Office System (Microsoft)

Directories

PermalinkPermalink
2006-09-08

XML Notepad 2006

Categories: Tech Language : English (EU)

Most of you already know notepad, discover this alter ego dedicated to XML files.

Download here

Handy features include:

  • Tree View synchronized with Node Text View for quick editing of node names and values.

  • Incremental search (Ctrl+I) in both tree and text views, so as you type it navigates to matching nodes.

  • Cut/copy/paste with full namespace support.

  • Drag/drop support for easy manipulation of the tree, even across different instances of XML Notepad and from the file system.

  • Infinite undo/redo for all edit operations.

  • In place popup multi-line editing of large text node values.

  • Configurable fonts and colors via the options dialog.

  • Full find/replace dialog with support for regex and XPath.

  • Good performance on large XML documents, loading a 3mb document in about one second.

  • Instant XML schema validation while you edit with errors and warnings shown in the task list window.

  • Intellisense based on expected elements and attributes and enumerated simple type values.

  • Support for custom editors for date, dateTime and time datatypes and other types like color.

  • Handy nudge tool bar buttons for quick movement of nodes up and down the tree.

  • Inplace HTML viewer for processing xml-stylesheet processing instructions.

  • Built-in XML Diff tool.
  • PermalinkPermalink

    :: Next >>