-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Started working on the back end and front end clean up
- Loading branch information
DoggersHusky
committed
Feb 3, 2016
1 parent
ee7ffeb
commit 16e35ff
Showing
31 changed files
with
1,435 additions
and
104 deletions.
There are no files selected for viewing
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,7 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<dwsync> | ||
<file name="test 1 - retrieving.html" server="doggershusky.com//" local="130979898554321457" remote="130979862000000000" Dst="1" /> | ||
<file name="test 1 - script.php" server="doggershusky.com//" local="130981362475451500" remote="130981326000000000" Dst="1" /> | ||
<file name="test 1 - script.php" server="doggershusky.com//" local="130989354318274213" remote="130989318000000000" Dst="1" /> | ||
<file name="test 2 - JQuery retrieving.html" server="doggershusky.com//" local="130981367384539309" remote="130981330800000000" Dst="1" /> | ||
<file name="test 2 - menu.php" server="doggershusky.com//" local="130981372444859783" remote="130981336200000000" Dst="1" /> | ||
<file name="test 3 - bootstrap.html" server="doggershusky.com//" local="130989299410000000" remote="130989262800000000" Dst="1" /> | ||
<file name="test 3 - editContent.php" server="doggershusky.com//" local="130989447116220889" remote="130989411000000000" Dst="1" /> | ||
<file name="untitled.html" server="doggershusky.com//" local="130989373200000000" remote="130989373200000000" Dst="1" /> | ||
<file name="test 3 - sendPhp.php" server="doggershusky.com//" local="130989437988641652" remote="130989401400000000" Dst="1" /> | ||
</dwsync> |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<dwsync> | ||
<file name="config.js" server="doggershusky.com//" local="130989270000000000" remote="130989270000000000" Dst="1" /> | ||
</dwsync> |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/** | ||
* @license Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. | ||
* For licensing, see LICENSE.md or http://ckeditor.com/license | ||
*/ | ||
|
||
CKEDITOR.editorConfig = function( config ) { | ||
// Define changes to default configuration here. For example: | ||
// config.language = 'fr'; | ||
// config.uiColor = '#AADC6E'; | ||
config.extraPlugins='htmlbuttons'; | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<dwsync> | ||
<file name="conf.json" server="doggershusky.com//" local="130989284400000000" remote="130989284400000000" Dst="1" /> | ||
</dwsync> |
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"FILES_ROOT": "/uploads", | ||
"SESSION_PATH_KEY": "", | ||
"THUMBS_VIEW_WIDTH": "140", | ||
"THUMBS_VIEW_HEIGHT": "120", | ||
"PREVIEW_THUMB_WIDTH":"300", | ||
"PREVIEW_THUMB_HEIGHT":"200", | ||
"MAX_IMAGE_WIDTH": "0", | ||
"MAX_IMAGE_HEIGHT": "0", | ||
"INTEGRATION": "ckeditor", | ||
"DIRLIST": "php/dirtree.php", | ||
"CREATEDIR": "php/createdir.php", | ||
"DELETEDIR": "php/deletedir.php", | ||
"MOVEDIR": "php/movedir.php", | ||
"COPYDIR": "php/copydir.php", | ||
"RENAMEDIR": "php/renamedir.php", | ||
"FILESLIST": "php/fileslist.php", | ||
"UPLOAD": "php/upload.php", | ||
"DOWNLOAD": "php/download.php", | ||
"DOWNLOADDIR": "php/downloaddir.php", | ||
"DELETEFILE": "php/deletefile.php", | ||
"MOVEFILE": "php/movefile.php", | ||
"COPYFILE": "php/copyfile.php", | ||
"RENAMEFILE": "php/renamefile.php", | ||
"GENERATETHUMB": "php/thumb.php", | ||
"DEFAULTVIEW": "thumb", | ||
"FORBIDDEN_UPLOADS": "js jsp jsb mhtml mht xhtml xht php phtml php3 php4 php5 phps shtml jhtml pl sh py cgi exe scr dll msi vbs bat com pif cmd vxd cpl htpasswd htaccess", | ||
"ALLOWED_UPLOADS": "", | ||
"FILEPERMISSIONS": "0644", | ||
"DIRPERMISSIONS": "0755", | ||
"LANG": "auto", | ||
"DATEFORMAT": "dd/MM/yyyy HH:mm" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<dwsync> | ||
<file name="custom.js" server="doggershusky.com//" local="130989377080278234" remote="130989340800000000" Dst="1" /> | ||
</dwsync> |
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
RoxyFileman - web based file manager. Ready to use with CKEditor, TinyMCE. | ||
Can be easily integrated with any other WYSIWYG editor or CMS. | ||
Copyright (C) 2013, RoxyFileman.com - Lyubomir Arsov. All rights reserved. | ||
For licensing, see LICENSE.txt or http://RoxyFileman.com/license | ||
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 3 of the License. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
Contact: Lyubomir Arsov, liubo (at) web-lobby.com | ||
*/ | ||
function FileSelected(file){ | ||
/** | ||
* file is an object containing following properties: | ||
* | ||
* fullPath - path to the file - absolute from your site root | ||
* path - directory in which the file is located - absolute from your site root | ||
* size - size of the file in bytes | ||
* time - timestamo of last modification | ||
* name - file name | ||
* ext - file extension | ||
* width - if the file is image, this will be the width of the original image, 0 otherwise | ||
* height - if the file is image, this will be the height of the original image, 0 otherwise | ||
* | ||
*/ | ||
// Get the ID of the input to fill | ||
var fieldId = RoxyUtils.GetUrlParam('txtFieldId'); | ||
$(window.parent.document).find('#' + fieldId).attr('value', file.fullPath); | ||
window.parent.closeCustomRoxy2(); | ||
} | ||
|
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,5 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<dwsync> | ||
<file name="jquery-1.11.1.min.js" server="doggershusky.com//" local="130979886000000000" remote="130979886000000000" Dst="1" /> | ||
<file name="style.css" server="doggershusky.com//" local="130980775198136923" remote="130980739200000000" Dst="1" /> | ||
<file name="style.css" server="doggershusky.com//" local="130989293781318772" remote="130989257400000000" Dst="1" /> | ||
</dwsync> |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<dwsync> | ||
<file name="bootstrap-theme.min.css" server="doggershusky.com//" local="130928816600000000" remote="130988083800000000" Dst="1" /> | ||
<file name="bootstrap-theme.min.css.map" server="doggershusky.com//" local="130928816600000000" remote="130988083800000000" Dst="1" /> | ||
<file name="bootstrap.min.css.map" server="doggershusky.com//" local="130928816600000000" remote="130988083800000000" Dst="1" /> | ||
<file name="bootstrap.min.css" server="doggershusky.com//" local="130928816600000000" remote="130988083800000000" Dst="1" /> | ||
<file name="ie10-viewport-bug-workaround.css" server="doggershusky.com//" local="130988121894718005" remote="130988086200000000" Dst="1" /> | ||
<file name="carousel.css" server="doggershusky.com//" local="130988186240229823" remote="130988149800000000" Dst="1" /> | ||
<file name="holder.min.js" server="doggershusky.com//" local="130988160066277259" remote="130988124000000000" Dst="1" /> | ||
</dwsync> |
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
/* GLOBAL STYLES | ||
-------------------------------------------------- */ | ||
/* Padding below the footer and lighter body text */ | ||
|
||
body { | ||
padding-bottom: 40px; | ||
color: #5a5a5a; | ||
} | ||
|
||
|
||
/* CUSTOMIZE THE NAVBAR | ||
-------------------------------------------------- */ | ||
|
||
/* Special class on .container surrounding .navbar, used for positioning it into place. */ | ||
.navbar-wrapper { | ||
position: absolute; | ||
top: 0; | ||
right: 0; | ||
left: 0; | ||
z-index: 20; | ||
} | ||
|
||
/* Flip around the padding for proper display in narrow viewports */ | ||
.navbar-wrapper > .container { | ||
padding-right: 0; | ||
padding-left: 0; | ||
} | ||
.navbar-wrapper .navbar { | ||
padding-right: 15px; | ||
padding-left: 15px; | ||
} | ||
.navbar-wrapper .navbar .container { | ||
width: auto; | ||
} | ||
|
||
|
||
/* CUSTOMIZE THE CAROUSEL | ||
-------------------------------------------------- */ | ||
|
||
/* Carousel base class */ | ||
.carousel { | ||
height: 500px; | ||
margin-bottom: 0px; | ||
} | ||
/* Since positioning the image, we need to help out the caption */ | ||
.carousel-caption { | ||
z-index: 10; | ||
} | ||
|
||
/* Declare heights because of positioning of img element */ | ||
.carousel .item { | ||
height: 500px; | ||
background-color: #777; | ||
} | ||
.carousel-inner > .item > img { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
min-width: 100%; | ||
height: 500px; | ||
} | ||
|
||
|
||
/* MARKETING CONTENT | ||
-------------------------------------------------- */ | ||
|
||
/* Center align the text within the three columns below the carousel */ | ||
.marketing .col-lg-4 { | ||
margin-bottom: 20px; | ||
text-align: center; | ||
} | ||
.marketing h2 { | ||
font-weight: normal; | ||
} | ||
.marketing .col-lg-4 p { | ||
margin-right: 10px; | ||
margin-left: 10px; | ||
} | ||
|
||
|
||
/* Featurettes | ||
------------------------- */ | ||
|
||
.featurette-divider { | ||
margin: 80px 0; /* Space out the Bootstrap <hr> more */ | ||
} | ||
|
||
/* Thin out the marketing headings */ | ||
.featurette-heading { | ||
font-weight: 300; | ||
line-height: 1; | ||
letter-spacing: -1px; | ||
} | ||
|
||
|
||
/* RESPONSIVE CSS | ||
-------------------------------------------------- */ | ||
|
||
@media (min-width: 768px) { | ||
/* Navbar positioning foo */ | ||
.navbar-wrapper { | ||
margin-top: 20px; | ||
} | ||
.navbar-wrapper .container { | ||
padding-right: 15px; | ||
padding-left: 15px; | ||
} | ||
.navbar-wrapper .navbar { | ||
padding-right: 0; | ||
padding-left: 0; | ||
} | ||
|
||
/* The navbar becomes detached from the top, so we round the corners */ | ||
.navbar-wrapper .navbar { | ||
border-radius: 4px; | ||
} | ||
|
||
/* Bump up size of carousel content */ | ||
.carousel-caption p { | ||
margin-bottom: 20px; | ||
font-size: 21px; | ||
line-height: 1.4; | ||
} | ||
|
||
.featurette-heading { | ||
font-size: 50px; | ||
} | ||
} | ||
|
||
@media (min-width: 992px) { | ||
.featurette-heading { | ||
margin-top: 30px; | ||
} | ||
} |
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/*! | ||
* IE10 viewport hack for Surface/desktop Windows 8 bug | ||
* Copyright 2014-2015 Twitter, Inc. | ||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | ||
*/ | ||
|
||
/* | ||
* See the Getting Started docs for more information: | ||
* http://getbootstrap.com/getting-started/#support-ie10-width | ||
*/ | ||
@-webkit-viewport { width: device-width; } | ||
@-moz-viewport { width: device-width; } | ||
@-ms-viewport { width: device-width; } | ||
@-o-viewport { width: device-width; } | ||
@viewport { width: device-width; } |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<dwsync> | ||
<file name="glyphicons-halflings-regular.eot" server="doggershusky.com//" local="130928795460000000" remote="130988083800000000" Dst="1" /> | ||
<file name="glyphicons-halflings-regular.ttf" server="doggershusky.com//" local="130928795460000000" remote="130988083800000000" Dst="1" /> | ||
<file name="glyphicons-halflings-regular.woff" server="doggershusky.com//" local="130928795460000000" remote="130988083800000000" Dst="1" /> | ||
<file name="glyphicons-halflings-regular.svg" server="doggershusky.com//" local="130928795460000000" remote="130988083800000000" Dst="1" /> | ||
<file name="glyphicons-halflings-regular.woff2" server="doggershusky.com//" local="130928795460000000" remote="130988083800000000" Dst="1" /> | ||
</dwsync> |
Binary file not shown.
Oops, something went wrong.