EPrints Technical Mailing List Archive

Message: #08763


< Previous (by date) | Next (by date) > | < Previous (in thread) | Next (in thread) > | Messages - Most Recent First | Threads - Most Recent First

[EP-tech] Browse View


CAUTION: This e-mail originated outside the University of Southampton.
How to separate the month from the date for menu and grouping in browse view page:
I have Four questions/query
1. how to make one more field in the menus
2.  I have two menus, first is the type of the item then the other is the year then I want to make one more that is the month when I use date;res=month in the menu it is showing month with the year but I want to group by month only.
{
                id => "type",
                menus => [
                        {
                                fields => [ "type" ],
                                reverse_order => 1,
                                allow_null => 1,
                                new_column_at => [10,10],
                        },
                        {
                                fields => [ "date;res=year" ],
                                reverse_order => 1,
                                allow_null => 1,
                                new_column_at => [10,10],
                        }
                       
                ],
                order => "creators_name/title/editors_name",
                variations => [
#                         "creators_name;first_letter",
#                         "date;res=year",
                           "date;res=month",
#                         "publication;first_letter",
#                         "volume",
#                         "number",
                           "DEFAULT" ],
        },

3. Is there any way to categorize a particular division menu by year, then by month? when I create the menu functionality in the views.pl it applies to all the division categories.
4. Is there any way to generate the views of the particular division, not the whole division like I want to create a browse view of the Department of Mass Communication only.

Thanks,