Remove unused file

[?]
Nov 6, 2013, 11:41 AM
M2CFFNJYY5BNXNIIYA72FKME3NUAETW4OWWWBSO4KMU7VP2YAXNAC

Dependencies

  • [2] 3YSK5YXG * Update to Catalyst 5.9.
  • [3] L4AI5YL6 Rename hydra_*.pl to hydra-*
  • [4] ARD6Z67T Do incremental SVN checkouts
  • [5] QMW24O5S Add support for Guile & Guix.
  • [6] Y6H7Y3OT Capture the path to `guile', when available.
  • [7] SHBLLAVH * More global substitution.
  • [8] T4LLYESZ * Nix expression for building Hydra.
  • [9] AZ4LR2GT * Scripts for starting / stopping Hydra.
  • [10] AMFMXR52 Provide a command ‘hydra-init’ to initialise/upgrade the database
  • [11] UGA45FNC Add a plugin for backing up builds in s3
  • [12] Q6SOGMDQ Hydra/28: Rename "scheduler" to "evaluator"
  • [13] T7WD3RLR
  • [14] D5QIOJGP * Move everything up one directory.
  • [15] J5UVLXOK * Start of a basic Catalyst web interface.
  • [16] KX5L74EY add nix-prefetch- scripts for now, were externals in svn
  • [17] PKPWUHUX * Idem.
  • [18] ERNOO5ZZ * Reorganising.
  • [19] WZ3AEJ67 * hydra_update_gc_roots.pl registers build outputs that should be kept
  • [20] US27ZTX5 * HydraFrontend -> Hydra.
  • [21] GZAXDYBQ * Script for initialising the database.
  • [22] 6MGFQDR2 deleted some old scripts
  • [23] FV2M6MOT hydra: use autoconf/-make

Change contents

  • file deletion: hydra-create (---r------)hydra_create.pl (---r------)hydrafrontend_create.pl (---r------)hydra_create.pl (---r------)hydrafrontend_create.pl (---r------)hydra_create.pl.in (---r------)
    [4.2543][3.367:403](),[3.403][4.12623:12623](),[4.1560][4.765:804](),[4.804][4.12623:12623](),[4.1560][4.1623:1670](),[4.1670][4.12623:12623](),[4.2543][4.2676:2715](),[4.2715][4.12623:12623](),[4.12007][4.14591:14638](),[4.14638][4.12623:12623](),[4.2543][4.2198963:2199005](),[4.2199005][4.12623:12623]()
    #! @perl@
    use strict;
    use warnings;
    use Catalyst::ScriptRunner;
    Catalyst::ScriptRunner->run('Hydra', 'Create');
    1;
    =head1 NAME
    hydra_create.pl - Create a new Catalyst Component
    =head1 SYNOPSIS
    hydra_create.pl [options] model|view|controller name [helper] [options]
    Options:
    --force don't create a .new file where a file to be created exists
    --mechanize use Test::WWW::Mechanize::Catalyst for tests if available
    --help display this help and exits
    Examples:
    hydra_create.pl controller My::Controller
    hydra_create.pl -mechanize controller My::Controller
    hydra_create.pl view My::View
    hydra_create.pl view HTML TT
    hydra_create.pl model My::Model
    hydra_create.pl model SomeDB DBIC::Schema MyApp::Schema create=dynamic\
    dbi:SQLite:/tmp/my.db
    hydra_create.pl model AnotherDB DBIC::Schema MyApp::Schema create=static\
    [Loader opts like db_schema, naming] dbi:Pg:dbname=foo root 4321
    [connect_info opts like quote_char, name_sep]
    See also:
    perldoc Catalyst::Manual
    perldoc Catalyst::Manual::Intro
    =head1 DESCRIPTION
    Create a new Catalyst Component.
    Existing component files are not overwritten. If any of the component files
    to be created already exist the file will be written with a '.new' suffix.
    This behavior can be suppressed with the C<-force> option.
    =head1 AUTHORS
    Catalyst Contributors, see Catalyst.pm
    =head1 COPYRIGHT
    This library is free software. You can redistribute it and/or modify
    it under the same terms as Perl itself.
    =cut
    perldoc Catalyst::Helper::Model::DBIC::Schema
    perldoc Catalyst::Model::DBIC::Schema
    perldoc Catalyst::View::TT