This is the (hopefully) final release candidate for 3.01.14 and unless any showstopper issues are found within the next day or two will be the version submitted to the DotNetNuke Release Tracker. Feel free to download the release candidate and please let me know if you find any issues.
DotNetNuke.Modules.Repository
=======================================================================
Development Build Release Notes
=======================================================================
=======================================================================
Version History
=======================================================================
=======================================================================
03.01.14 Build 28652
Released 07.07.2007
=======================================================================
-- Fixed a bug in which the Moderate Button was injecting the ModuleID
into the URL twice causing a problem if the web site was using a 3rd
party utility that would process the querystring.
-- Enhancemment: New template tags added
[CURRENTUSER] This tag will be replaced at runtime with a property
from the current user's User record. The property that is rendered
is controlled by the template.xml file as a setting for the object.
There are two settings for the [CURRENTUSER] token.
+Property -- identifies the user property to render
possible values:
UserID | UserName | DisplayName | EMail | FirstName | LastName
+Default -- if the current user is not logged in, then this is
the string value that will be returned for all properties
-- sample template.xml entry
<Object>
<Token>[CURRENTUSER]</Token>
<Settings>
<Setting>
<Name>Property</Name>
<Value>DisplayName</Value>
</Setting>
<Setting>
<Name>Default</Name>
<Value>UnknownUser</Value>
</Setting>
</Settings>
</Object>
[USERPROFILE] -- same as CURRENTUSER above, except data comes from
the user's profile record instead of their user record
There are two settings for the [USERPROFILE] token.
+Property -- identifies the user property to render
possible values:
Cell | City | Country | Fax | FirstName | FullName | IM
LastName | PostalCode | PreferredLocale | Region | Street
Telephone | TimeZone | Unit | WebSite
+Default -- if the current user is not logged in, then this is
the string value that will be returned for all properties
=======================================================================
03.01.14 Build 35870
Released 08.01.2007
=======================================================================
-- Fixed an issue where the wrong item would be downloaded or opened if
you clicked on a file link in a Dashboard on a different page then
the Repository Module. The issue was a mispelled ViewState variable
that kept track of the item's ID. The code would check for mItemID
but the code that set the variable was setting mitemID (lower case i)
Since mItemID was always blank, it would default to the first item
in the Repository instead of the item being displayed.
=======================================================================
03.01.14 Build 13784
Released 08.04.2007
=======================================================================
-- Added support for a DOWNLOAD setting on the FILENAME option for
Dashboard file-type modules. Setting DOWNLOAD equal to true will
change the behavior of hyperlinks for files in Dashboard modules,
triggering the download dialog box instead of navigating to the
Repository module and displaying the item.
=======================================================================
03.01.14 Build 26574
Released 08.09.2007
=======================================================================
-- Fixed a bug in the Moderator screen that was causing the Edit pencil
icon to not display. Moderators can now edit an unapproved item
=======================================================================
03.01.14 Build 13179
Released 09.02.2007
=======================================================================
-- Fixed bug where selecting an item via the PermaLink URL or via a
Dashboard file entry, the Comment Count would be 0. The fix was a
change to the grmGetSingleRepository stored procedure. If you are
already running a previous dev build, then after installing this
build, you'll have to run the 3.01.14.SqlProvider manually by
copying the text (do not copy the final GO line ), and pasting it
into the Host->SQL page, make sure to check the 'execute as script'
checkbox.
-- Fixed bug where after selecting an item via the PermalLink URL, you
could not change categories.
-- Fixed bug in Search collection routine. When you searched using the
core search function and found an item in a Repository module, the
URL link would not work. It contained grm2id instead of id. NOTE:
After installing this build and Re-Indexing content using the
Host->Search Admin page function, I was still getting grmid in the
results URL. I had to manually deleted the rows from the SearchItems
table for my Repository moduleid, then Re-Index content in order
for the new search items to appear. Then on the Search results I
would see id instead of grm2id.
=======================================================================
03.01.14 Build 15245
Released 10.12.2007
=======================================================================
-- Added CreatedDate as sort option
-- REP-4544 Repository - UpdateSettings Bug. Fixed bug where trying
to MOVE a Repository module to another page was not working
-- REP-5104 Error message when HELP + REPOSITORY modules are on the
same page
-- REP-3509 FB-150: Repository - cancel link does not take control back to child screen
=======================================================================
03.01.14 Build 22825
Released 10.25.2007
=======================================================================
-- Added support for 2 new token tags in FORM.HTML
[URLCONTROLFILE] and [URLCONTROLIMAGE]
Using [URLCONTROLFILE] in your FORM.HTML file instead of [FILE] will
use a DotNetNuke URLControl to enable you to upload a file or Select
an existing file from the file system.
Using [URLCONTROLIMAGE] in your FORM.HTML file instead of [IMAGE]
will allow you to upload a new image or select an existing image
from the file system
=======================================================================
03.01.14 RC1 Build 16515
Released 10.31.2007
=======================================================================
-- fixed a problem with the new [URLCONTROLFILE] and [URLCONTROLIMAGE]
tokens. If you uploaded a file using the new controls, the filesize
would be displayed as 0 bytes. It now displays the actual filesize
-- Implemented new logic for the "All Files" category. There is a new
setting in the module settings. A checkbox named "Show All Files". If
checked, then in the Categories dropdown an entry for 'All items'
will be inserted at the top of the list. Selecting 'All items' from
the categories dropdown will display ALL items regardless of their
category membership.
-- The logic for the new 'All items' filter was extended to the
Dashboard module. If the repository module setting for 'Show All
Items' is checked, AND you are using one of the category modes, then
an 'All items' hyperlink will be displayed along with the categories
-- With the above changes, your existing "ALL Files" category is now
just a simple category, you can delete or rename it to something
else. The logic to enforce the first category has been removed from
the upload/edit process. You can now upload an item and not associate
it with any categories at all if you do not check any. You would then
only see the item if you selected the new 'All items' filter.
-- The text for 'All items' in both the repository module and the
dashboard module is localized, you can change the text by editing
the key in the Localresources file for the module.
=======================================================================
03.01.14 RC2 Build 26898
Released 10.31.2007
=======================================================================
-- fixed a minor issue with the Dashboard module where the 'All items'
hyperlink would sometimes not be listed first. It is now always listed
as the first item in the category list.
=======================================================================
03.01.14 RC3 Build 15506
Released 10.31.2007
=======================================================================
-- Now that you can delete the existing "ALL" category, I fixed some
minor issues to make sure your repository module will work properly
IF you have a module with NO categories defined at all. I also
fixed some minor issues with the Upload/Edit form and the Dashboard
when there are no categories defined for a module.