[dw-nonfree] Staff page out of date
[commit: http://hg.dwscoalition.org/dw-nonfree/rev/696e4ed204e1]
http://bugs.dwscoalition.org/show_bug.cgi?id=2046
Rename DreamwidthMisc.pm to Dreamwidth/Misc.pm.
Patch by
exor674.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=2046
Rename DreamwidthMisc.pm to Dreamwidth/Misc.pm.
Patch by
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Files modified:
- cgi-bin/DW/Controller/Dreamwidth/Misc.pm
- cgi-bin/DW/Controller/DreamwidthMisc.pm
-------------------------------------------------------------------------------- diff -r 615456f4ed2d -r 696e4ed204e1 cgi-bin/DW/Controller/Dreamwidth/Misc.pm --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cgi-bin/DW/Controller/Dreamwidth/Misc.pm Fri Jul 16 16:50:55 2010 -0500 @@ -0,0 +1,26 @@ +#!/usr/bin/perl +# +# DW::Controller::Dreamwidth::Misc +# +# Controller for Dreamwidth specific miscellaneous pages. +# +# Authors: +# Mark Smith <mark@dreamwidth.org> +# +# Copyright (c) 2009 by Dreamwidth Studios, LLC. +# +# This program is NOT free software or open-source; you can use it as an +# example of how to implement your own site-specific extensions to the +# Dreamwidth Studios open-source code, but you cannot use it on your site +# or redistribute it, with or without modifications. +# + +package DW::Controller::Dreamwidth::Misc; + +use strict; +use warnings; +use DW::Routing; + +DW::Routing->register_static( '/about', 'misc/about.tt', app => 1 ); + +1; diff -r 615456f4ed2d -r 696e4ed204e1 cgi-bin/DW/Controller/DreamwidthMisc.pm --- a/cgi-bin/DW/Controller/DreamwidthMisc.pm Wed Jul 14 23:10:24 2010 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,28 +0,0 @@ -#!/usr/bin/perl -# -# DW::Controller::DreamwidthMisc -# -# Controller for Dreamwidth specific miscellaneous pages. -# -# Authors: -# Mark Smith <mark@dreamwidth.org> -# -# Copyright (c) 2009 by Dreamwidth Studios, LLC. -# -# This program is NOT free software or open-source; you can use it as an -# example of how to implement your own site-specific extensions to the -# Dreamwidth Studios open-source code, but you cannot use it on your site -# or redistribute it, with or without modifications. -# - -package DW::Controller::DreamwidthMisc; - -use strict; -use warnings; -use DW::Controller; -use DW::Routing; -use DW::Template; - -DW::Routing->register_static( '/about', 'misc/about.tt', app => 1 ); - -1; --------------------------------------------------------------------------------