My goal is to get on the latest code base with minimal mods for my skin and web service needs.
Created a snapshot of vaultpub as of 2004-03-30 11:31. I’m leaving the bulk of the source files out of Perforce and not using the Perforce SCC with Visual Studio. It corrupted my first shot at it to the point that I couldn’t do anything with the DottextWeb project in the Solution anymore, but it was fine by itself. Grrr…. Visual Studio crashed several times during debugging and the Dottext.Framework assembly kept getting lost and needed to be rebuilt when opening the solution and attempting to debug. This is behavior I haven’t seen in any other project (or earlier version of dottext). I wonder if it has anything to do with the worker threads started by the index generation events?
Copied OtherStuff\Configs\096_Web.config to DottextWeb and made changes.
Compiled solution files. Build works. Rebuild chokes. RichEditor.ascx.resx may not be checked in.
Created SearchIndex folder and gave ASP.NET account write access to it.
Added a FordeIndexUpdate.aspx page to force initial index population.
URL’s in search results are not right. Hostname and application name aren’t being combined correctly. Part of it is hard coding in 096db.sql, blog_aggregate_Search stored procedure, modified to remove hard coded ‘weblogs.asp.net’ in search permalink generation. That fixes the host part but the application part is missing. Realized that by editing the urlFormat attribute of the SearchConfiguration element in the Web.config file I could re-insert the DottextWeb without modifying any code. The “domains” attribute seems to restrict which blogs are aggregated in the index and can be a comma separated list of Hosts, as defined in the blog_Config table.
At this point the application appears to run well on localhost, including the search functionality and standard skins.
Adding the mods required by TonesNotes:
· SimpleBlogService, added AddImageToGallery method, modified how categoryID is obtained.
· Made Images folder writeable by ASP.NET.
Adding btone skin:
· Added print.css copied from AnotherEon001
· Added span.highlight style to style.css
· Skins\btone\PageTemplate.ascx, change DT namespace back to UI.WebControls and ‘ContentRegion’ back to ‘contentRegion’.
· Skins\btone\controls\BlogSearch.ascx, added.
· Added btone to Admin\Skins.config
· Modified btone\controls files: SingleColumn.cs, MonthList.cs, PostComment.cs
· Added Skins\btone\UIData.cs with PostCategoryHyperLinks method.
· Modified btone\controls files: Days.cs, EntryList.cs, ViewPost.cs
Initial merge complete.