📄 standard.pm
字号:
# $Id: Standard.pm,v 1.18 2005/08/03 18:10:56 martin Exp $## Copyright 2005 Nature Publishing Group# This program is free software; you can redistribute it and/or# modify it under the terms of the GNU General Public License# as published by the Free Software Foundation; either version 2# of the License, or (at your option) any later version.## This file determines what the main component for each page is.use strict;package Bibliotech::Page::Inc;use base 'Bibliotech::Page';sub main_component { 'Inc';}package Bibliotech::Page::Error;use base 'Bibliotech::Page';sub main_component { 'Error';}package Bibliotech::Page::Recent;use base 'Bibliotech::Page';sub main_component { 'ListOfRecent';}package Bibliotech::Page::Home;use base 'Bibliotech::Page';sub main_component { 'ListOfRecent';}package Bibliotech::Page::Popular;use base 'Bibliotech::Page';sub main_component { 'ListOfPopular';}package Bibliotech::Page::Bookmarks;use base 'Bibliotech::Page';sub main_component { 'ListOfBookmarks';}package Bibliotech::Page::Users;use base 'Bibliotech::Page';sub main_component { 'ListOfUsers';}package Bibliotech::Page::Groups;use base 'Bibliotech::Page';sub main_component { 'ListOfGangs';}package Bibliotech::Page::Tags;use base 'Bibliotech::Page';sub main_component { 'ListOfTags';}package Bibliotech::Page::Comments;use base 'Bibliotech::Page';sub main_component { 'Comments';}package Bibliotech::Page::Commentspopup;use base 'Bibliotech::Page';sub main_component { 'Comments';}package Bibliotech::Page::Register;use base 'Bibliotech::Page';sub main_component { 'RegisterForm';}package Bibliotech::Page::Login;use base 'Bibliotech::Page';sub main_component { 'LoginForm';}package Bibliotech::Page::Loginpopup;use base 'Bibliotech::Page';sub main_component { 'LoginForm';}package Bibliotech::Page::Logout;use base 'Bibliotech::Page';sub main_component { 'LogoutForm';}package Bibliotech::Page::Verify;use base 'Bibliotech::Page';sub main_component { 'VerifyForm';}package Bibliotech::Page::Search;use base 'Bibliotech::Page';sub main_component { 'SearchForm';}package Bibliotech::Page::Add;use base 'Bibliotech::Page';sub main_component { 'AddForm';}package Bibliotech::Page::Upload;use base 'Bibliotech::Page';sub main_component { 'UploadForm';}package Bibliotech::Page::Addcomment;use base 'Bibliotech::Page';sub main_component { 'AddCommentForm';}package Bibliotech::Page::Addcommentpopup;use base 'Bibliotech::Page';sub main_component { 'AddCommentForm';}package Bibliotech::Page::Edit;use base 'Bibliotech::Page';sub main_component { 'EditForm';}package Bibliotech::Page::Editpopup;use base 'Bibliotech::Page';sub main_component { 'EditForm';}package Bibliotech::Page::Remove;use base 'Bibliotech::Page';sub main_component { 'RemoveForm';}package Bibliotech::Page::Addpopup;use base 'Bibliotech::Page';sub main_component { 'AddForm';}package Bibliotech::Page::Retag;use base 'Bibliotech::Page';sub main_component { 'RetagForm';}package Bibliotech::Page::Addgroup;use base 'Bibliotech::Page';sub main_component { 'AddGroupForm';}package Bibliotech::Page::Editgroup;use base 'Bibliotech::Page';sub main_component { 'EditGroupForm';}package Bibliotech::Page::Addtagnote;use base 'Bibliotech::Page';sub main_component { 'AddUserTagAnnotationForm';}package Bibliotech::Page::Edittagnote;use base 'Bibliotech::Page';sub main_component { 'EditUserTagAnnotationForm';}1;__END__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -