X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/430bf4d90848273799f595168b89932270122d46..6c5e3a87419ab5f9a896403bbca2d41c7222e732:/www/index.php diff --git a/www/index.php b/www/index.php index 5bda390..d926a1d 100644 --- a/www/index.php +++ b/www/index.php @@ -1,5 +1,5 @@ initRepository(); - file_put_contents($dir . '.git/description', $_POST['description']); - - foreach ($_POST['file'] as $num => $arFile) { - if ($arFile['name'] != '') { - $fname = $arFile['name']; - } else { - $fname = 'phork' . $num . '.' . $arFile['type']; - } - $fpath = $dir . $fname; - file_put_contents($fpath, $arFile['content']); - //fixme: let the class do that when it is able to - $command = $vc->getCommand('add') - ->addArgument($fname) - ->execute(); - } - $command = $vc->getCommand('commit') - ->setOption('message', 'initial paste') - ->setOption('author', 'Anonymous ') - ->execute(); - //redirect to phork - redirect($n); +$repopo = new Repository_Post(); +if ($repopo->process($_POST)) { + redirect($repopo->repo->getLink('display')); } $phork = array( - '1' => array( - 'filename' => '', - 'content' => '', - 'type' => '' + '1' => new File(null, null) +); +render( + 'index', + array( + 'files' => $phork, + 'description' => '', + 'htmlhelper' => new HtmlHelper(), ) ); -render('index', array('file' => $phork, 'description' => '')); -?> \ No newline at end of file +?>