For umbraco versions:
umbraco3.0MIsc
Experience in setting up Umbraco and my first website.
“And still he was full of 'satiable curtiosity!” (Rudyard Kipling, “The Elephant’s Child”)
Reference material
This is somewhere to park a list of references that I have found particularly useful.
“The easy way is to download <a href="http://www.aisto.com/roeder/dotnet/"> Reflector for .NET</a> and just drop the umbraco.dll into it and browse to the umbraco.library then you can see all methods (and how the work internal)”
Also:
“You can see all the umbraco.library extensions inside the umbraco UI.
1: Go to developer section
2: open an xslt file
3: Click the "Insert xslt:value-of" button (second from the left)
4: Click "Get extensions"
5: in the left dropdown, choose "umbraco.library"
6: the right dropdown will list all availiable methods”
Useful packages and add-ons
Writing User Datatypes
There are two mechanisms for adding your own Datatypes if you need them. Both are outlined at http://forum.umbraco.org/extending-umbraco/creating-new-data-type-using-wrapper. In brief:
- Write a standard ASPX User Control, and wrap it in the UserControlWrapper which is included in the standard build. One has to implement a very simple interface which just passes one property in and out, and that’s about it.
- Replicate the interface used by the standard datatypes. This is a bit more complex, but most of the complication can be defaulted if you only have a simple requirement. The result looks like a built-in datatype so you save a bit on configuration.
To be investigated
These are things I have seen references to, and look useful, but have not got round to investigating.