-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:craigk5n/webcalendar
- Loading branch information
Showing
46 changed files
with
402 additions
and
344 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
FROM php:8.0-apache | ||
MAINTAINER craigk5n <[email protected]> | ||
|
||
LABEL org.opencontainers.image.authors="[email protected]" | ||
RUN docker-php-ext-install mysqli | ||
|
||
#COPY docker/cron-hourly /tmp/cron.hourly | ||
|
@@ -11,4 +10,3 @@ RUN docker-php-ext-install mysqli | |
#TODO: setup cron | ||
|
||
#RUN chown -R www-data:www-data /var/www | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,13 +15,13 @@ | |
# 02-Feb-2005 Craig Knudsen <[email protected]> | ||
# Updated to group into categories. | ||
# | ||
####################################################################### | ||
################################################################################ | ||
|
||
my @files = ( ); | ||
my @questions = ( ); | ||
my @answers = ( ); | ||
my @file = ( ); | ||
my @cat = ( ); | ||
my @file = ( ); | ||
my @files = ( ); | ||
my @questions = ( ); | ||
|
||
for ( $i = 0; $i < @ARGV; $i++ ) { | ||
if ( -f $ARGV[$i] ) { | ||
|
@@ -152,4 +152,3 @@ sub process_file { | |
} | ||
} | ||
} | ||
|
Oops, something went wrong.