Anyone can upload a patch. Patches are evaluated by project team members and either Applied or Declined.

Status ID Uploaded By Description Work Items Action
Being evaluated
1164 May 2 at 5:38 AM Shandem -This patch allows the administrator to assign "Browse" permissions to content tree nodes. This way they can give browse access to many trees but not allow users to edit the content of those trees, therefore, the administrator can assign update permissions to child nodes of full trees without allowing the editing of parent nodes.
-Allows full customisation of the content tree Context Menu
-Allows developers to create their own Actions and assign their own Action handlers
-Allows the assignment of the Send Publish permission to any user, not just the "reader" user
-Cleaned up some of the codebase

[THERE IS FULL DOCUMENTATION IN THE FILE, PLEASE DOWNLOAD TO READ ALL OF THE CHANGE LOGS/NEW FEATURES/INSTALL INSTRUCTIONS]
16324
Download

Being evaluated
948 Mar 11 at 10:37 AM ismailm This quick hack fixes issue with new DAL and GetPreValues function. In umbraco.library.GetPrevalues the old code

dr.GetString("id) was throwing a cast exception

I have changed to code to dr.GetInt("id").ToString()


15562
Download

Being evaluated
938 Mar 10 at 12:35 PM albertvbsql I've found that the search command in Umbraco interface do not work propertry.
This fixes the problem. (tested with VS2005).
Cnage change contextID with ContextID in GetDocumentsBySearch and in BeginGetDocumentsBySearch in file webService.cs located in \umbraco\presentation\umbraco\dashboard
Download

Being evaluated
917 Mar 4 at 3:08 PM ismailm When you unpublish the publish action handler is triggered. This is due to code in method UnPublishNode

Action.RunActionHandlers(d, new ActionPublish());

is should be

Action.RunActionHandlers(d, new ActionUnPublish());




11940
Download

Being evaluated
884 Feb 24 at 11:29 PM Dekker500 Fixes type conversion error (string to int) found when navigating umbraco's content menu.

To re-create, load source from 30270, load "creativewebpackage_v098b.zip", login to umbraco, navigate to content, click on "news and events" or "gallery" root node. Result is an error converting int32 to string. The problem is because "keyvalueprevalueeditor.cs" is reading from cmsDataTypeprevalues table, and is trying to read the ID column as a string, when it is an int according to the create.sql. Note that this is NOT fixed by version 30642

This patch is just a one-liner,

retval.Add(dr.GetInt("id").ToString() /*GetString("id")*/,dr.GetString("value"));

Download

Being evaluated
510 Nov 29 2007 at 12:37 AM ruatara Fix this by changing the way tabs are hidden and displayed. instead of display: none; I use visibility: hidden; height: 0; width:0; overflow:hidden;

Replace javascript.js & style.css in umbraco_client\tabview\

Tested on Firefox 2.0.0.9, IE7, IE6
10995
Download

Being evaluated
440 Nov 2 2007 at 9:49 AM audrius - Removed hardcoded interface strings and moved to xml language files.
- Some bubbles and hints text still left hardcoded, but also will be moved to xml latter.
- Added Lithuanian language.
- Language files fixed, added missing keys, synchronized with en.xml. Translation of added strings must be done.
Download

Being evaluated
432 Oct 30 2007 at 10:18 PM ismailm For http://www.codeplex.com/umbraco/SourceControl/FileView.aspx?itemId=165135&changeSetId=27808 I have taken code from checkbox list Text property and applied it. Done test and it works.
13593
Download

Being evaluated
297 Sep 18 2007 at 8:09 AM keltoi Added error trapping to GetItem(int nodeID, String alias)

I have just taken the error trapping from GetItem(String alias) code and wrapped it round the functionality of the overload.

K.
Download

Being evaluated
79 Jun 22 2007 at 7:36 AM ArnoldAbf This file is changed so the Text property is also loaded on Postback. Now the files are deleted properly.
I also changed the _text strings used in the code to the this.Text property
Download

Updating...