├── LICENSE.txt ├── README.md ├── admin ├── README.txt ├── access.xml ├── assets │ ├── css │ │ ├── admin.css │ │ ├── dashboard.css │ │ ├── help_document.css │ │ ├── help_documents.css │ │ ├── index.html │ │ ├── question_and_answer.css │ │ └── questions_and_answers.css │ ├── images │ │ ├── icons │ │ │ ├── help_documents.png │ │ │ ├── index.html │ │ │ ├── question_and_answer_add.png │ │ │ ├── questions_and_answers.png │ │ │ └── questions_and_answers_catid.png │ │ ├── import.gif │ │ ├── index.html │ │ └── vdm-component.jpg │ ├── index.html │ └── js │ │ ├── admin.js │ │ └── index.html ├── config.xml ├── controller.php ├── controllers │ ├── ajax.json.php │ ├── download.php │ ├── help.php │ ├── help_document.php │ ├── help_documents.php │ ├── import.php │ ├── index.html │ ├── question_and_answer.php │ ├── questions_and_answers.php │ └── questionsanswers.php ├── helpers │ ├── headercheck.php │ ├── html │ │ ├── batch_.php │ │ └── index.html │ ├── index.html │ ├── questionsanswers.php │ └── wideimage │ │ ├── Canvas.php │ │ ├── Coordinate.php │ │ ├── Exception.php │ │ ├── Font │ │ ├── GDF.php │ │ ├── PS.php │ │ ├── TTF.php │ │ └── index.html │ │ ├── Image.php │ │ ├── Mapper │ │ ├── BMP.php │ │ ├── GD.php │ │ ├── GD2.php │ │ ├── GIF.php │ │ ├── JPEG.php │ │ ├── PNG.php │ │ ├── TGA.php │ │ └── index.html │ │ ├── MapperFactory.php │ │ ├── Operation │ │ ├── AddNoise.php │ │ ├── ApplyConvolution.php │ │ ├── ApplyFilter.php │ │ ├── ApplyMask.php │ │ ├── AsGrayscale.php │ │ ├── AsNegative.php │ │ ├── AutoCrop.php │ │ ├── CopyChannelsPalette.php │ │ ├── CopyChannelsTrueColor.php │ │ ├── CorrectGamma.php │ │ ├── Crop.php │ │ ├── Flip.php │ │ ├── GetMask.php │ │ ├── Merge.php │ │ ├── Mirror.php │ │ ├── Resize.php │ │ ├── ResizeCanvas.php │ │ ├── Rotate.php │ │ ├── RoundCorners.php │ │ ├── Unsharp.php │ │ └── index.html │ │ ├── OperationFactory.php │ │ ├── PaletteImage.php │ │ ├── TrueColorImage.php │ │ ├── WideImage.php │ │ ├── index.html │ │ └── vendor │ │ ├── de77 │ │ └── index.html │ │ └── index.html ├── index.html ├── language │ ├── en-GB │ │ ├── en-GB.com_questionsanswers.ini │ │ ├── en-GB.com_questionsanswers.sys.ini │ │ └── index.html │ └── index.html ├── layouts │ ├── batchselection.php │ ├── help_document │ │ ├── details_above.php │ │ ├── details_fullwidth.php │ │ ├── details_left.php │ │ ├── details_right.php │ │ ├── details_under.php │ │ ├── index.html │ │ ├── publishing.php │ │ └── publlshing.php │ ├── index.html │ ├── question_and_answer │ │ ├── details_fullwidth.php │ │ ├── details_rightside.php │ │ ├── details_under.php │ │ ├── index.html │ │ ├── metadata.php │ │ └── publishing.php │ └── trashhelper.php ├── models │ ├── ajax.php │ ├── fields │ │ ├── adminviewfolderlist.php │ │ ├── alloweddocumentformats.php │ │ ├── allowedimageformats.php │ │ ├── articles.php │ │ ├── helpdocumentsfilterlocation.php │ │ ├── helpdocumentsfiltertype.php │ │ ├── index.html │ │ └── siteviewfolderlist.php │ ├── forms │ │ ├── filter_help_documents.xml │ │ ├── filter_questions_and_answers.xml │ │ ├── help_document.xml │ │ ├── index.html │ │ └── question_and_answer.xml │ ├── help_document.php │ ├── help_documents.php │ ├── import.php │ ├── index.html │ ├── question_and_answer.php │ ├── questions_and_answers.php │ ├── questionsanswers.php │ └── rules │ │ └── index.html ├── questionsanswers.php ├── sql │ ├── index.html │ ├── install.mysql.utf8.sql │ ├── uninstall.mysql.utf8.sql │ └── updates │ │ ├── index.html │ │ └── mysql │ │ ├── 1.0.2.sql │ │ ├── 1.0.4.sql │ │ └── index.html ├── tables │ ├── help_document.php │ ├── index.html │ └── question_and_answer.php └── views │ ├── help_document │ ├── submitbutton.js │ ├── tmpl │ │ ├── edit.php │ │ └── index.html │ └── view.html.php │ ├── help_documents │ ├── index.html │ ├── tmpl │ │ ├── default.php │ │ ├── default_batch_body.php │ │ ├── default_batch_footer.php │ │ ├── default_body.php │ │ ├── default_foot.php │ │ ├── default_head.php │ │ ├── default_toolbar.php │ │ └── index.html │ └── view.html.php │ ├── import │ ├── index.html │ ├── tmpl │ │ ├── default.php │ │ └── index.html │ └── view.html.php │ ├── index.html │ ├── question_and_answer │ ├── submitbutton.js │ ├── tmpl │ │ ├── edit.php │ │ └── index.html │ └── view.html.php │ ├── questions_and_answers │ ├── index.html │ ├── tmpl │ │ ├── default.php │ │ ├── default_batch_body.php │ │ ├── default_batch_footer.php │ │ ├── default_body.php │ │ ├── default_foot.php │ │ ├── default_head.php │ │ ├── default_toolbar.php │ │ └── index.html │ └── view.html.php │ └── questionsanswers │ ├── index.html │ ├── tmpl │ ├── default.php │ ├── default_main.php │ ├── default_readme_information.php │ ├── default_vast_development_method_notice_board.php │ ├── default_vdm.php │ └── index.html │ └── view.html.php ├── index.html ├── libraries └── phpspreadsheet │ └── vendor │ ├── .htaccess │ ├── autoload.php │ ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ └── installed.json │ ├── htaccess.txt │ ├── index.html │ ├── markbaker │ ├── complex │ │ └── classes │ │ │ ├── Autoloader.php │ │ │ ├── Bootstrap.php │ │ │ └── src │ │ │ ├── Complex.php │ │ │ ├── Exception.php │ │ │ ├── functions │ │ │ ├── abs.php │ │ │ ├── acos.php │ │ │ ├── acosh.php │ │ │ ├── acot.php │ │ │ ├── acoth.php │ │ │ ├── acsc.php │ │ │ ├── acsch.php │ │ │ ├── argument.php │ │ │ ├── asec.php │ │ │ ├── asech.php │ │ │ ├── asin.php │ │ │ ├── asinh.php │ │ │ ├── atan.php │ │ │ ├── atanh.php │ │ │ ├── conjugate.php │ │ │ ├── cos.php │ │ │ ├── cosh.php │ │ │ ├── cot.php │ │ │ ├── coth.php │ │ │ ├── csc.php │ │ │ ├── csch.php │ │ │ ├── exp.php │ │ │ ├── inverse.php │ │ │ ├── ln.php │ │ │ ├── log10.php │ │ │ ├── log2.php │ │ │ ├── negative.php │ │ │ ├── pow.php │ │ │ ├── rho.php │ │ │ ├── sec.php │ │ │ ├── sech.php │ │ │ ├── sin.php │ │ │ ├── sinh.php │ │ │ ├── sqrt.php │ │ │ ├── tan.php │ │ │ ├── tanh.php │ │ │ └── theta.php │ │ │ └── operations │ │ │ ├── add.php │ │ │ ├── divideby.php │ │ │ ├── divideinto.php │ │ │ ├── multiply.php │ │ │ └── subtract.php │ └── matrix │ │ ├── buildPhar.php │ │ └── classes │ │ ├── Autoloader.php │ │ ├── Bootstrap.php │ │ └── src │ │ ├── Builder.php │ │ ├── Exception.php │ │ ├── Functions.php │ │ ├── Matrix.php │ │ ├── Operators │ │ ├── Addition.php │ │ ├── DirectSum.php │ │ ├── Division.php │ │ ├── Multiplication.php │ │ ├── Operator.php │ │ └── Subtraction.php │ │ ├── functions │ │ ├── adjoint.php │ │ ├── antidiagonal.php │ │ ├── cofactors.php │ │ ├── determinant.php │ │ ├── diagonal.php │ │ ├── identity.php │ │ ├── inverse.php │ │ ├── minors.php │ │ ├── trace.php │ │ └── transpose.php │ │ └── operations │ │ ├── add.php │ │ ├── directsum.php │ │ ├── divideby.php │ │ ├── divideinto.php │ │ ├── multiply.php │ │ └── subtract.php │ ├── phpoffice │ └── phpspreadsheet │ │ ├── bin │ │ ├── migrate-from-phpexcel │ │ └── pre-commit │ │ └── src │ │ ├── Bootstrap.php │ │ └── PhpSpreadsheet │ │ ├── Calculation │ │ ├── Calculation.php │ │ ├── Category.php │ │ ├── Database.php │ │ ├── DateTime.php │ │ ├── Engine │ │ │ ├── CyclicReferenceStack.php │ │ │ └── Logger.php │ │ ├── Engineering.php │ │ ├── Exception.php │ │ ├── ExceptionHandler.php │ │ ├── Financial.php │ │ ├── FormulaParser.php │ │ ├── FormulaToken.php │ │ ├── Functions.php │ │ ├── Logical.php │ │ ├── LookupRef.php │ │ ├── MathTrig.php │ │ ├── Statistical.php │ │ ├── TextData.php │ │ ├── Token │ │ │ └── Stack.php │ │ ├── functionlist.txt │ │ └── locale │ │ │ ├── bg │ │ │ ├── config │ │ │ └── functions │ │ │ ├── cs │ │ │ ├── config │ │ │ └── functions │ │ │ ├── da │ │ │ ├── config │ │ │ └── functions │ │ │ ├── de │ │ │ ├── config │ │ │ └── functions │ │ │ ├── en │ │ │ └── uk │ │ │ │ └── config │ │ │ ├── es │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fi │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fr │ │ │ ├── config │ │ │ └── functions │ │ │ ├── hu │ │ │ ├── config │ │ │ └── functions │ │ │ ├── it │ │ │ ├── config │ │ │ └── functions │ │ │ ├── nl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── no │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pt │ │ │ ├── br │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ ├── config │ │ │ └── functions │ │ │ ├── ru │ │ │ ├── config │ │ │ └── functions │ │ │ ├── sv │ │ │ ├── config │ │ │ └── functions │ │ │ └── tr │ │ │ ├── config │ │ │ └── functions │ │ ├── Cell │ │ ├── AdvancedValueBinder.php │ │ ├── Cell.php │ │ ├── Coordinate.php │ │ ├── DataType.php │ │ ├── DataValidation.php │ │ ├── DataValidator.php │ │ ├── DefaultValueBinder.php │ │ ├── Hyperlink.php │ │ ├── IValueBinder.php │ │ └── StringValueBinder.php │ │ ├── Chart │ │ ├── Axis.php │ │ ├── Chart.php │ │ ├── DataSeries.php │ │ ├── DataSeriesValues.php │ │ ├── Exception.php │ │ ├── GridLines.php │ │ ├── Layout.php │ │ ├── Legend.php │ │ ├── PlotArea.php │ │ ├── Properties.php │ │ ├── Renderer │ │ │ ├── IRenderer.php │ │ │ ├── JpGraph.php │ │ │ ├── PHP Charting Libraries.txt │ │ │ └── Polyfill.php │ │ └── Title.php │ │ ├── Collection │ │ ├── Cells.php │ │ ├── CellsFactory.php │ │ └── Memory.php │ │ ├── Comment.php │ │ ├── Document │ │ ├── Properties.php │ │ └── Security.php │ │ ├── Exception.php │ │ ├── HashTable.php │ │ ├── Helper │ │ ├── Html.php │ │ ├── Migrator.php │ │ └── Sample.php │ │ ├── IComparable.php │ │ ├── IOFactory.php │ │ ├── NamedRange.php │ │ ├── Reader │ │ ├── BaseReader.php │ │ ├── Csv.php │ │ ├── DefaultReadFilter.php │ │ ├── Exception.php │ │ ├── Gnumeric.php │ │ ├── Html.php │ │ ├── IReadFilter.php │ │ ├── IReader.php │ │ ├── Ods.php │ │ ├── Ods │ │ │ └── Properties.php │ │ ├── Security │ │ │ └── XmlScanner.php │ │ ├── Slk.php │ │ ├── Xls.php │ │ ├── Xls │ │ │ ├── Color.php │ │ │ ├── Color │ │ │ │ ├── BIFF5.php │ │ │ │ ├── BIFF8.php │ │ │ │ └── BuiltIn.php │ │ │ ├── ErrorCode.php │ │ │ ├── Escher.php │ │ │ ├── MD5.php │ │ │ ├── RC4.php │ │ │ └── Style │ │ │ │ ├── Border.php │ │ │ │ └── FillPattern.php │ │ ├── Xlsx.php │ │ ├── Xlsx │ │ │ ├── AutoFilter.php │ │ │ ├── BaseParserClass.php │ │ │ ├── Chart.php │ │ │ ├── ColumnAndRowAttributes.php │ │ │ ├── ConditionalStyles.php │ │ │ ├── DataValidations.php │ │ │ ├── Hyperlinks.php │ │ │ ├── PageSetup.php │ │ │ ├── Properties.php │ │ │ ├── SheetViewOptions.php │ │ │ ├── SheetViews.php │ │ │ ├── Styles.php │ │ │ └── Theme.php │ │ ├── Xml.php │ │ └── chunkReadFilter.php │ │ ├── ReferenceHelper.php │ │ ├── RichText │ │ ├── ITextElement.php │ │ ├── RichText.php │ │ ├── Run.php │ │ └── TextElement.php │ │ ├── Settings.php │ │ ├── Shared │ │ ├── CodePage.php │ │ ├── Date.php │ │ ├── Drawing.php │ │ ├── Escher.php │ │ ├── Escher │ │ │ ├── DgContainer.php │ │ │ ├── DgContainer │ │ │ │ ├── SpgrContainer.php │ │ │ │ └── SpgrContainer │ │ │ │ │ └── SpContainer.php │ │ │ ├── DggContainer.php │ │ │ └── DggContainer │ │ │ │ ├── BstoreContainer.php │ │ │ │ └── BstoreContainer │ │ │ │ ├── BSE.php │ │ │ │ └── BSE │ │ │ │ └── Blip.php │ │ ├── File.php │ │ ├── Font.php │ │ ├── JAMA │ │ │ ├── CHANGELOG.TXT │ │ │ ├── CholeskyDecomposition.php │ │ │ ├── EigenvalueDecomposition.php │ │ │ ├── LUDecomposition.php │ │ │ ├── Matrix.php │ │ │ ├── QRDecomposition.php │ │ │ ├── SingularValueDecomposition.php │ │ │ └── utils │ │ │ │ └── Maths.php │ │ ├── OLE.php │ │ ├── OLE │ │ │ ├── ChainedBlockStream.php │ │ │ ├── PPS.php │ │ │ └── PPS │ │ │ │ ├── File.php │ │ │ │ └── Root.php │ │ ├── OLERead.php │ │ ├── PasswordHasher.php │ │ ├── StringHelper.php │ │ ├── TimeZone.php │ │ ├── Trend │ │ │ ├── BestFit.php │ │ │ ├── ExponentialBestFit.php │ │ │ ├── LinearBestFit.php │ │ │ ├── LogarithmicBestFit.php │ │ │ ├── PolynomialBestFit.php │ │ │ ├── PowerBestFit.php │ │ │ └── Trend.php │ │ ├── XMLWriter.php │ │ └── Xls.php │ │ ├── Spreadsheet.php │ │ ├── Style │ │ ├── Alignment.php │ │ ├── Border.php │ │ ├── Borders.php │ │ ├── Color.php │ │ ├── Conditional.php │ │ ├── Fill.php │ │ ├── Font.php │ │ ├── NumberFormat.php │ │ ├── Protection.php │ │ ├── Style.php │ │ └── Supervisor.php │ │ ├── Worksheet │ │ ├── AutoFilter.php │ │ ├── AutoFilter │ │ │ ├── Column.php │ │ │ └── Column │ │ │ │ └── Rule.php │ │ ├── BaseDrawing.php │ │ ├── CellIterator.php │ │ ├── Column.php │ │ ├── ColumnCellIterator.php │ │ ├── ColumnDimension.php │ │ ├── ColumnIterator.php │ │ ├── Dimension.php │ │ ├── Drawing.php │ │ ├── Drawing │ │ │ └── Shadow.php │ │ ├── HeaderFooter.php │ │ ├── HeaderFooterDrawing.php │ │ ├── Iterator.php │ │ ├── MemoryDrawing.php │ │ ├── PageMargins.php │ │ ├── PageSetup.php │ │ ├── Protection.php │ │ ├── Row.php │ │ ├── RowCellIterator.php │ │ ├── RowDimension.php │ │ ├── RowIterator.php │ │ ├── SheetView.php │ │ └── Worksheet.php │ │ └── Writer │ │ ├── BaseWriter.php │ │ ├── Csv.php │ │ ├── Exception.php │ │ ├── Html.php │ │ ├── IWriter.php │ │ ├── Ods.php │ │ ├── Ods │ │ ├── Cell │ │ │ └── Comment.php │ │ ├── Content.php │ │ ├── Meta.php │ │ ├── MetaInf.php │ │ ├── Mimetype.php │ │ ├── Settings.php │ │ ├── Styles.php │ │ ├── Thumbnails.php │ │ └── WriterPart.php │ │ ├── Pdf.php │ │ ├── Pdf │ │ ├── Dompdf.php │ │ ├── Mpdf.php │ │ └── Tcpdf.php │ │ ├── Xls.php │ │ ├── Xls │ │ ├── BIFFwriter.php │ │ ├── Escher.php │ │ ├── Font.php │ │ ├── Parser.php │ │ ├── Workbook.php │ │ ├── Worksheet.php │ │ └── Xf.php │ │ ├── Xlsx.php │ │ └── Xlsx │ │ ├── Chart.php │ │ ├── Comments.php │ │ ├── ContentTypes.php │ │ ├── DocProps.php │ │ ├── Drawing.php │ │ ├── Rels.php │ │ ├── RelsRibbon.php │ │ ├── RelsVBA.php │ │ ├── StringTable.php │ │ ├── Style.php │ │ ├── Theme.php │ │ ├── Workbook.php │ │ ├── Worksheet.php │ │ └── WriterPart.php │ ├── psr │ └── simple-cache │ │ ├── .editorconfig │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── CacheException.php │ │ ├── CacheInterface.php │ │ └── InvalidArgumentException.php │ └── web.config ├── media ├── css │ ├── A4.print.css │ └── index.html ├── footable-v3 │ ├── LICENSE-GPLv3 │ ├── css │ │ ├── footable.bootstrap.css │ │ ├── footable.bootstrap.min.css │ │ ├── footable.core.bootstrap.css │ │ ├── footable.core.bootstrap.min.css │ │ ├── footable.core.standalone.css │ │ ├── footable.core.standalone.min.css │ │ ├── footable.editing.css │ │ ├── footable.editing.min.css │ │ ├── footable.filtering.css │ │ ├── footable.filtering.min.css │ │ ├── footable.paging.css │ │ ├── footable.paging.min.css │ │ ├── footable.sorting.css │ │ ├── footable.sorting.min.css │ │ ├── footable.standalone.css │ │ ├── footable.standalone.min.css │ │ └── index.html │ ├── index.html │ └── js │ │ ├── footable.core.js │ │ ├── footable.core.min.js │ │ ├── footable.editing.js │ │ ├── footable.editing.min.js │ │ ├── footable.filtering.js │ │ ├── footable.filtering.min.js │ │ ├── footable.min.js │ │ ├── footable.paging.js │ │ ├── footable.paging.min.js │ │ ├── footable.sorting.js │ │ ├── footable.sorting.min.js │ │ ├── footable.state.js │ │ ├── footable.state.min.js │ │ └── index.html ├── images │ └── index.html ├── index.html ├── js │ ├── help_document.js │ ├── index.html │ ├── marked.js │ └── question_and_answer.js ├── uikit-v2 │ ├── css │ │ ├── components │ │ │ ├── accordion.almost-flat.css │ │ │ ├── accordion.almost-flat.min.css │ │ │ ├── accordion.css │ │ │ ├── accordion.gradient.css │ │ │ ├── accordion.gradient.min.css │ │ │ ├── accordion.min.css │ │ │ ├── autocomplete.almost-flat.css │ │ │ ├── autocomplete.almost-flat.min.css │ │ │ ├── autocomplete.css │ │ │ ├── autocomplete.gradient.css │ │ │ ├── autocomplete.gradient.min.css │ │ │ ├── autocomplete.min.css │ │ │ ├── datepicker.almost-flat.css │ │ │ ├── datepicker.almost-flat.min.css │ │ │ ├── datepicker.css │ │ │ ├── datepicker.gradient.css │ │ │ ├── datepicker.gradient.min.css │ │ │ ├── datepicker.min.css │ │ │ ├── dotnav.almost-flat.css │ │ │ ├── dotnav.almost-flat.min.css │ │ │ ├── dotnav.css │ │ │ ├── dotnav.gradient.css │ │ │ ├── dotnav.gradient.min.css │ │ │ ├── dotnav.min.css │ │ │ ├── form-advanced.almost-flat.css │ │ │ ├── form-advanced.almost-flat.min.css │ │ │ ├── form-advanced.css │ │ │ ├── form-advanced.gradient.css │ │ │ ├── form-advanced.gradient.min.css │ │ │ ├── form-advanced.min.css │ │ │ ├── form-file.almost-flat.css │ │ │ ├── form-file.almost-flat.min.css │ │ │ ├── form-file.css │ │ │ ├── form-file.gradient.css │ │ │ ├── form-file.gradient.min.css │ │ │ ├── form-file.min.css │ │ │ ├── form-password.almost-flat.css │ │ │ ├── form-password.almost-flat.min.css │ │ │ ├── form-password.css │ │ │ ├── form-password.gradient.css │ │ │ ├── form-password.gradient.min.css │ │ │ ├── form-password.min.css │ │ │ ├── form-select.almost-flat.css │ │ │ ├── form-select.almost-flat.min.css │ │ │ ├── form-select.css │ │ │ ├── form-select.gradient.css │ │ │ ├── form-select.gradient.min.css │ │ │ ├── form-select.min.css │ │ │ ├── htmleditor.almost-flat.css │ │ │ ├── htmleditor.almost-flat.min.css │ │ │ ├── htmleditor.css │ │ │ ├── htmleditor.gradient.css │ │ │ ├── htmleditor.gradient.min.css │ │ │ ├── htmleditor.min.css │ │ │ ├── index.html │ │ │ ├── nestable.almost-flat.css │ │ │ ├── nestable.almost-flat.min.css │ │ │ ├── nestable.css │ │ │ ├── nestable.gradient.css │ │ │ ├── nestable.gradient.min.css │ │ │ ├── nestable.min.css │ │ │ ├── notify.almost-flat.css │ │ │ ├── notify.almost-flat.min.css │ │ │ ├── notify.css │ │ │ ├── notify.gradient.css │ │ │ ├── notify.gradient.min.css │ │ │ ├── notify.min.css │ │ │ ├── placeholder.almost-flat.css │ │ │ ├── placeholder.almost-flat.min.css │ │ │ ├── placeholder.css │ │ │ ├── placeholder.gradient.css │ │ │ ├── placeholder.gradient.min.css │ │ │ ├── placeholder.min.css │ │ │ ├── progress.almost-flat.css │ │ │ ├── progress.almost-flat.min.css │ │ │ ├── progress.css │ │ │ ├── progress.gradient.css │ │ │ ├── progress.gradient.min.css │ │ │ ├── progress.min.css │ │ │ ├── search.almost-flat.css │ │ │ ├── search.almost-flat.min.css │ │ │ ├── search.css │ │ │ ├── search.gradient.css │ │ │ ├── search.gradient.min.css │ │ │ ├── search.min.css │ │ │ ├── slidenav.almost-flat.css │ │ │ ├── slidenav.almost-flat.min.css │ │ │ ├── slidenav.css │ │ │ ├── slidenav.gradient.css │ │ │ ├── slidenav.gradient.min.css │ │ │ ├── slidenav.min.css │ │ │ ├── slider.almost-flat.css │ │ │ ├── slider.almost-flat.min.css │ │ │ ├── slider.css │ │ │ ├── slider.gradient.css │ │ │ ├── slider.gradient.min.css │ │ │ ├── slider.min.css │ │ │ ├── slideshow.almost-flat.css │ │ │ ├── slideshow.almost-flat.min.css │ │ │ ├── slideshow.css │ │ │ ├── slideshow.gradient.css │ │ │ ├── slideshow.gradient.min.css │ │ │ ├── slideshow.min.css │ │ │ ├── sortable.almost-flat.css │ │ │ ├── sortable.almost-flat.min.css │ │ │ ├── sortable.css │ │ │ ├── sortable.gradient.css │ │ │ ├── sortable.gradient.min.css │ │ │ ├── sortable.min.css │ │ │ ├── sticky.almost-flat.css │ │ │ ├── sticky.almost-flat.min.css │ │ │ ├── sticky.css │ │ │ ├── sticky.gradient.css │ │ │ ├── sticky.gradient.min.css │ │ │ ├── sticky.min.css │ │ │ ├── tooltip.almost-flat.css │ │ │ ├── tooltip.almost-flat.min.css │ │ │ ├── tooltip.css │ │ │ ├── tooltip.gradient.css │ │ │ ├── tooltip.gradient.min.css │ │ │ ├── tooltip.min.css │ │ │ ├── upload.almost-flat.css │ │ │ ├── upload.almost-flat.min.css │ │ │ ├── upload.css │ │ │ ├── upload.gradient.css │ │ │ ├── upload.gradient.min.css │ │ │ └── upload.min.css │ │ ├── index.html │ │ ├── uikit.almost-flat.css │ │ ├── uikit.almost-flat.min.css │ │ ├── uikit.css │ │ ├── uikit.gradient.css │ │ ├── uikit.gradient.min.css │ │ └── uikit.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ └── index.html │ ├── index.html │ └── js │ │ ├── components │ │ ├── accordion.js │ │ ├── accordion.min.js │ │ ├── autocomplete.js │ │ ├── autocomplete.min.js │ │ ├── datepicker.js │ │ ├── datepicker.min.js │ │ ├── form-password.js │ │ ├── form-password.min.js │ │ ├── form-select.js │ │ ├── form-select.min.js │ │ ├── grid-parallax.js │ │ ├── grid-parallax.min.js │ │ ├── grid.js │ │ ├── grid.min.js │ │ ├── htmleditor.js │ │ ├── htmleditor.min.js │ │ ├── index.html │ │ ├── lightbox.js │ │ ├── lightbox.min.js │ │ ├── nestable.js │ │ ├── nestable.min.js │ │ ├── notify.js │ │ ├── notify.min.js │ │ ├── pagination.js │ │ ├── pagination.min.js │ │ ├── parallax.js │ │ ├── parallax.min.js │ │ ├── search.js │ │ ├── search.min.js │ │ ├── slider.js │ │ ├── slider.min.js │ │ ├── slideset.js │ │ ├── slideset.min.js │ │ ├── slideshow-fx.js │ │ ├── slideshow-fx.min.js │ │ ├── slideshow.js │ │ ├── slideshow.min.js │ │ ├── sortable.js │ │ ├── sortable.min.js │ │ ├── sticky.js │ │ ├── sticky.min.js │ │ ├── timepicker.js │ │ ├── timepicker.min.js │ │ ├── tooltip.js │ │ ├── tooltip.min.js │ │ ├── upload.js │ │ └── upload.min.js │ │ ├── core │ │ ├── alert.js │ │ ├── alert.min.js │ │ ├── button.js │ │ ├── button.min.js │ │ ├── core.js │ │ ├── core.min.js │ │ ├── cover.js │ │ ├── cover.min.js │ │ ├── dropdown.js │ │ ├── dropdown.min.js │ │ ├── grid.js │ │ ├── grid.min.js │ │ ├── index.html │ │ ├── modal.js │ │ ├── modal.min.js │ │ ├── nav.js │ │ ├── nav.min.js │ │ ├── offcanvas.js │ │ ├── offcanvas.min.js │ │ ├── scrollspy.js │ │ ├── scrollspy.min.js │ │ ├── smooth-scroll.js │ │ ├── smooth-scroll.min.js │ │ ├── switcher.js │ │ ├── switcher.min.js │ │ ├── tab.js │ │ ├── tab.min.js │ │ ├── toggle.js │ │ ├── toggle.min.js │ │ ├── touch.js │ │ ├── touch.min.js │ │ ├── utility.js │ │ └── utility.min.js │ │ ├── index.html │ │ ├── uikit.js │ │ └── uikit.min.js └── uikit-v3 │ ├── css │ ├── index.html │ ├── uikit-rtl.css │ ├── uikit-rtl.min.css │ ├── uikit.css │ └── uikit.min.css │ ├── index.html │ └── js │ ├── index.html │ ├── uikit-icons.js │ ├── uikit-icons.min.js │ ├── uikit.js │ └── uikit.min.js ├── questionsanswers.xml ├── questionsanswers_server.xml ├── script.php └── site ├── assets ├── css │ ├── category.css │ ├── downloads.css │ ├── index.html │ ├── question_and_answer.css │ ├── questions_and_answers.css │ └── site.css ├── images │ └── index.html ├── index.html └── js │ ├── index.html │ └── site.js ├── controller.php ├── controllers ├── ajax.json.php ├── download.php ├── help.php ├── index.html └── question_and_answer.php ├── helpers ├── category.php ├── categoryquestion_and_answer.php ├── headercheck.php ├── index.html ├── questionsanswers.php └── route.php ├── index.html ├── language ├── en-GB │ ├── en-GB.com_questionsanswers.ini │ ├── en-GB.com_questionsanswers.sys.ini │ └── index.html └── index.html ├── layouts ├── index.html └── question_and_answer │ ├── details_fullwidth.php │ ├── details_rightside.php │ ├── details_under.php │ ├── index.html │ ├── metadata.php │ └── publishing.php ├── models ├── ajax.php ├── category.php ├── downloads.php ├── forms │ ├── index.html │ ├── question_and_answer.js │ └── question_and_answer.xml ├── index.html ├── question_and_answer.php └── questions_and_answers.php ├── questionsanswers.php ├── router.php └── views ├── category ├── index.html ├── tmpl │ ├── default.php │ ├── default.xml │ ├── default_qna-table.php │ └── index.html └── view.html.php ├── downloads ├── index.html ├── tmpl │ ├── default.php │ ├── default.xml │ ├── default_qna-downloads-table.php │ └── index.html └── view.html.php ├── index.html ├── question_and_answer ├── submitbutton.js ├── tmpl │ ├── edit.php │ └── index.html └── view.html.php └── questions_and_answers ├── index.html ├── tmpl ├── default.php ├── default.xml ├── default_qna-table.php └── index.html └── view.html.php /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/README.md -------------------------------------------------------------------------------- /admin/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/README.txt -------------------------------------------------------------------------------- /admin/access.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/access.xml -------------------------------------------------------------------------------- /admin/assets/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/assets/css/admin.css -------------------------------------------------------------------------------- /admin/assets/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/assets/css/dashboard.css -------------------------------------------------------------------------------- /admin/assets/css/help_document.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/assets/css/help_document.css -------------------------------------------------------------------------------- /admin/assets/css/help_documents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/assets/css/help_documents.css -------------------------------------------------------------------------------- /admin/assets/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/assets/css/index.html -------------------------------------------------------------------------------- /admin/assets/css/question_and_answer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/assets/css/question_and_answer.css -------------------------------------------------------------------------------- /admin/assets/css/questions_and_answers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/assets/css/questions_and_answers.css -------------------------------------------------------------------------------- /admin/assets/images/icons/help_documents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/assets/images/icons/help_documents.png -------------------------------------------------------------------------------- /admin/assets/images/icons/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/assets/images/icons/index.html -------------------------------------------------------------------------------- /admin/assets/images/icons/question_and_answer_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/assets/images/icons/question_and_answer_add.png -------------------------------------------------------------------------------- /admin/assets/images/icons/questions_and_answers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/assets/images/icons/questions_and_answers.png -------------------------------------------------------------------------------- /admin/assets/images/icons/questions_and_answers_catid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/assets/images/icons/questions_and_answers_catid.png -------------------------------------------------------------------------------- /admin/assets/images/import.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/assets/images/import.gif -------------------------------------------------------------------------------- /admin/assets/images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/assets/images/index.html -------------------------------------------------------------------------------- /admin/assets/images/vdm-component.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/assets/images/vdm-component.jpg -------------------------------------------------------------------------------- /admin/assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/assets/index.html -------------------------------------------------------------------------------- /admin/assets/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/assets/js/admin.js -------------------------------------------------------------------------------- /admin/assets/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/assets/js/index.html -------------------------------------------------------------------------------- /admin/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/config.xml -------------------------------------------------------------------------------- /admin/controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/controller.php -------------------------------------------------------------------------------- /admin/controllers/ajax.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/controllers/ajax.json.php -------------------------------------------------------------------------------- /admin/controllers/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/controllers/download.php -------------------------------------------------------------------------------- /admin/controllers/help.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/controllers/help.php -------------------------------------------------------------------------------- /admin/controllers/help_document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/controllers/help_document.php -------------------------------------------------------------------------------- /admin/controllers/help_documents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/controllers/help_documents.php -------------------------------------------------------------------------------- /admin/controllers/import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/controllers/import.php -------------------------------------------------------------------------------- /admin/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/controllers/index.html -------------------------------------------------------------------------------- /admin/controllers/question_and_answer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/controllers/question_and_answer.php -------------------------------------------------------------------------------- /admin/controllers/questions_and_answers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/controllers/questions_and_answers.php -------------------------------------------------------------------------------- /admin/controllers/questionsanswers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/controllers/questionsanswers.php -------------------------------------------------------------------------------- /admin/helpers/headercheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/headercheck.php -------------------------------------------------------------------------------- /admin/helpers/html/batch_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/html/batch_.php -------------------------------------------------------------------------------- /admin/helpers/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/html/index.html -------------------------------------------------------------------------------- /admin/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/index.html -------------------------------------------------------------------------------- /admin/helpers/questionsanswers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/questionsanswers.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Canvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Canvas.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Coordinate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Coordinate.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Exception.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Font/GDF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Font/GDF.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Font/PS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Font/PS.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Font/TTF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Font/TTF.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Font/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Font/index.html -------------------------------------------------------------------------------- /admin/helpers/wideimage/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Image.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Mapper/BMP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Mapper/BMP.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Mapper/GD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Mapper/GD.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Mapper/GD2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Mapper/GD2.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Mapper/GIF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Mapper/GIF.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Mapper/JPEG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Mapper/JPEG.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Mapper/PNG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Mapper/PNG.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Mapper/TGA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Mapper/TGA.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Mapper/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Mapper/index.html -------------------------------------------------------------------------------- /admin/helpers/wideimage/MapperFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/MapperFactory.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Operation/AddNoise.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Operation/AddNoise.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Operation/ApplyConvolution.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Operation/ApplyConvolution.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Operation/ApplyFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Operation/ApplyFilter.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Operation/ApplyMask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Operation/ApplyMask.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Operation/AsGrayscale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Operation/AsGrayscale.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Operation/AsNegative.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Operation/AsNegative.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Operation/AutoCrop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Operation/AutoCrop.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Operation/CopyChannelsPalette.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Operation/CopyChannelsPalette.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Operation/CopyChannelsTrueColor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Operation/CopyChannelsTrueColor.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Operation/CorrectGamma.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Operation/CorrectGamma.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Operation/Crop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Operation/Crop.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Operation/Flip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Operation/Flip.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Operation/GetMask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Operation/GetMask.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Operation/Merge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Operation/Merge.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Operation/Mirror.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Operation/Mirror.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Operation/Resize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Operation/Resize.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Operation/ResizeCanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Operation/ResizeCanvas.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Operation/Rotate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Operation/Rotate.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Operation/RoundCorners.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Operation/RoundCorners.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Operation/Unsharp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Operation/Unsharp.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/Operation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/Operation/index.html -------------------------------------------------------------------------------- /admin/helpers/wideimage/OperationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/OperationFactory.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/PaletteImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/PaletteImage.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/TrueColorImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/TrueColorImage.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/WideImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/WideImage.php -------------------------------------------------------------------------------- /admin/helpers/wideimage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/index.html -------------------------------------------------------------------------------- /admin/helpers/wideimage/vendor/de77/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/vendor/de77/index.html -------------------------------------------------------------------------------- /admin/helpers/wideimage/vendor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/helpers/wideimage/vendor/index.html -------------------------------------------------------------------------------- /admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/index.html -------------------------------------------------------------------------------- /admin/language/en-GB/en-GB.com_questionsanswers.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/language/en-GB/en-GB.com_questionsanswers.ini -------------------------------------------------------------------------------- /admin/language/en-GB/en-GB.com_questionsanswers.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/language/en-GB/en-GB.com_questionsanswers.sys.ini -------------------------------------------------------------------------------- /admin/language/en-GB/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/language/en-GB/index.html -------------------------------------------------------------------------------- /admin/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/language/index.html -------------------------------------------------------------------------------- /admin/layouts/batchselection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/layouts/batchselection.php -------------------------------------------------------------------------------- /admin/layouts/help_document/details_above.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/layouts/help_document/details_above.php -------------------------------------------------------------------------------- /admin/layouts/help_document/details_fullwidth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/layouts/help_document/details_fullwidth.php -------------------------------------------------------------------------------- /admin/layouts/help_document/details_left.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/layouts/help_document/details_left.php -------------------------------------------------------------------------------- /admin/layouts/help_document/details_right.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/layouts/help_document/details_right.php -------------------------------------------------------------------------------- /admin/layouts/help_document/details_under.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/layouts/help_document/details_under.php -------------------------------------------------------------------------------- /admin/layouts/help_document/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/layouts/help_document/index.html -------------------------------------------------------------------------------- /admin/layouts/help_document/publishing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/layouts/help_document/publishing.php -------------------------------------------------------------------------------- /admin/layouts/help_document/publlshing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/layouts/help_document/publlshing.php -------------------------------------------------------------------------------- /admin/layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/layouts/index.html -------------------------------------------------------------------------------- /admin/layouts/question_and_answer/details_fullwidth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/layouts/question_and_answer/details_fullwidth.php -------------------------------------------------------------------------------- /admin/layouts/question_and_answer/details_rightside.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/layouts/question_and_answer/details_rightside.php -------------------------------------------------------------------------------- /admin/layouts/question_and_answer/details_under.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/layouts/question_and_answer/details_under.php -------------------------------------------------------------------------------- /admin/layouts/question_and_answer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/layouts/question_and_answer/index.html -------------------------------------------------------------------------------- /admin/layouts/question_and_answer/metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/layouts/question_and_answer/metadata.php -------------------------------------------------------------------------------- /admin/layouts/question_and_answer/publishing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/layouts/question_and_answer/publishing.php -------------------------------------------------------------------------------- /admin/layouts/trashhelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/layouts/trashhelper.php -------------------------------------------------------------------------------- /admin/models/ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/models/ajax.php -------------------------------------------------------------------------------- /admin/models/fields/adminviewfolderlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/models/fields/adminviewfolderlist.php -------------------------------------------------------------------------------- /admin/models/fields/alloweddocumentformats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/models/fields/alloweddocumentformats.php -------------------------------------------------------------------------------- /admin/models/fields/allowedimageformats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/models/fields/allowedimageformats.php -------------------------------------------------------------------------------- /admin/models/fields/articles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/models/fields/articles.php -------------------------------------------------------------------------------- /admin/models/fields/helpdocumentsfilterlocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/models/fields/helpdocumentsfilterlocation.php -------------------------------------------------------------------------------- /admin/models/fields/helpdocumentsfiltertype.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/models/fields/helpdocumentsfiltertype.php -------------------------------------------------------------------------------- /admin/models/fields/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/models/fields/index.html -------------------------------------------------------------------------------- /admin/models/fields/siteviewfolderlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/models/fields/siteviewfolderlist.php -------------------------------------------------------------------------------- /admin/models/forms/filter_help_documents.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/models/forms/filter_help_documents.xml -------------------------------------------------------------------------------- /admin/models/forms/filter_questions_and_answers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/models/forms/filter_questions_and_answers.xml -------------------------------------------------------------------------------- /admin/models/forms/help_document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/models/forms/help_document.xml -------------------------------------------------------------------------------- /admin/models/forms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/models/forms/index.html -------------------------------------------------------------------------------- /admin/models/forms/question_and_answer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/models/forms/question_and_answer.xml -------------------------------------------------------------------------------- /admin/models/help_document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/models/help_document.php -------------------------------------------------------------------------------- /admin/models/help_documents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/models/help_documents.php -------------------------------------------------------------------------------- /admin/models/import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/models/import.php -------------------------------------------------------------------------------- /admin/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/models/index.html -------------------------------------------------------------------------------- /admin/models/question_and_answer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/models/question_and_answer.php -------------------------------------------------------------------------------- /admin/models/questions_and_answers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/models/questions_and_answers.php -------------------------------------------------------------------------------- /admin/models/questionsanswers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/models/questionsanswers.php -------------------------------------------------------------------------------- /admin/models/rules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/models/rules/index.html -------------------------------------------------------------------------------- /admin/questionsanswers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/questionsanswers.php -------------------------------------------------------------------------------- /admin/sql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/sql/index.html -------------------------------------------------------------------------------- /admin/sql/install.mysql.utf8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/sql/install.mysql.utf8.sql -------------------------------------------------------------------------------- /admin/sql/uninstall.mysql.utf8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/sql/uninstall.mysql.utf8.sql -------------------------------------------------------------------------------- /admin/sql/updates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/sql/updates/index.html -------------------------------------------------------------------------------- /admin/sql/updates/mysql/1.0.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/sql/updates/mysql/1.0.2.sql -------------------------------------------------------------------------------- /admin/sql/updates/mysql/1.0.4.sql: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /admin/sql/updates/mysql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/sql/updates/mysql/index.html -------------------------------------------------------------------------------- /admin/tables/help_document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/tables/help_document.php -------------------------------------------------------------------------------- /admin/tables/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/tables/index.html -------------------------------------------------------------------------------- /admin/tables/question_and_answer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/tables/question_and_answer.php -------------------------------------------------------------------------------- /admin/views/help_document/submitbutton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/help_document/submitbutton.js -------------------------------------------------------------------------------- /admin/views/help_document/tmpl/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/help_document/tmpl/edit.php -------------------------------------------------------------------------------- /admin/views/help_document/tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/help_document/tmpl/index.html -------------------------------------------------------------------------------- /admin/views/help_document/view.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/help_document/view.html.php -------------------------------------------------------------------------------- /admin/views/help_documents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/help_documents/index.html -------------------------------------------------------------------------------- /admin/views/help_documents/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/help_documents/tmpl/default.php -------------------------------------------------------------------------------- /admin/views/help_documents/tmpl/default_batch_body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/help_documents/tmpl/default_batch_body.php -------------------------------------------------------------------------------- /admin/views/help_documents/tmpl/default_batch_footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/help_documents/tmpl/default_batch_footer.php -------------------------------------------------------------------------------- /admin/views/help_documents/tmpl/default_body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/help_documents/tmpl/default_body.php -------------------------------------------------------------------------------- /admin/views/help_documents/tmpl/default_foot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/help_documents/tmpl/default_foot.php -------------------------------------------------------------------------------- /admin/views/help_documents/tmpl/default_head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/help_documents/tmpl/default_head.php -------------------------------------------------------------------------------- /admin/views/help_documents/tmpl/default_toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/help_documents/tmpl/default_toolbar.php -------------------------------------------------------------------------------- /admin/views/help_documents/tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/help_documents/tmpl/index.html -------------------------------------------------------------------------------- /admin/views/help_documents/view.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/help_documents/view.html.php -------------------------------------------------------------------------------- /admin/views/import/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/import/index.html -------------------------------------------------------------------------------- /admin/views/import/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/import/tmpl/default.php -------------------------------------------------------------------------------- /admin/views/import/tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/import/tmpl/index.html -------------------------------------------------------------------------------- /admin/views/import/view.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/import/view.html.php -------------------------------------------------------------------------------- /admin/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/index.html -------------------------------------------------------------------------------- /admin/views/question_and_answer/submitbutton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/question_and_answer/submitbutton.js -------------------------------------------------------------------------------- /admin/views/question_and_answer/tmpl/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/question_and_answer/tmpl/edit.php -------------------------------------------------------------------------------- /admin/views/question_and_answer/tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/question_and_answer/tmpl/index.html -------------------------------------------------------------------------------- /admin/views/question_and_answer/view.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/question_and_answer/view.html.php -------------------------------------------------------------------------------- /admin/views/questions_and_answers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/questions_and_answers/index.html -------------------------------------------------------------------------------- /admin/views/questions_and_answers/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/questions_and_answers/tmpl/default.php -------------------------------------------------------------------------------- /admin/views/questions_and_answers/tmpl/default_batch_body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/questions_and_answers/tmpl/default_batch_body.php -------------------------------------------------------------------------------- /admin/views/questions_and_answers/tmpl/default_batch_footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/questions_and_answers/tmpl/default_batch_footer.php -------------------------------------------------------------------------------- /admin/views/questions_and_answers/tmpl/default_body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/questions_and_answers/tmpl/default_body.php -------------------------------------------------------------------------------- /admin/views/questions_and_answers/tmpl/default_foot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/questions_and_answers/tmpl/default_foot.php -------------------------------------------------------------------------------- /admin/views/questions_and_answers/tmpl/default_head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/questions_and_answers/tmpl/default_head.php -------------------------------------------------------------------------------- /admin/views/questions_and_answers/tmpl/default_toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/questions_and_answers/tmpl/default_toolbar.php -------------------------------------------------------------------------------- /admin/views/questions_and_answers/tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/questions_and_answers/tmpl/index.html -------------------------------------------------------------------------------- /admin/views/questions_and_answers/view.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/questions_and_answers/view.html.php -------------------------------------------------------------------------------- /admin/views/questionsanswers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/questionsanswers/index.html -------------------------------------------------------------------------------- /admin/views/questionsanswers/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/questionsanswers/tmpl/default.php -------------------------------------------------------------------------------- /admin/views/questionsanswers/tmpl/default_main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/questionsanswers/tmpl/default_main.php -------------------------------------------------------------------------------- /admin/views/questionsanswers/tmpl/default_readme_information.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/questionsanswers/tmpl/default_readme_information.php -------------------------------------------------------------------------------- /admin/views/questionsanswers/tmpl/default_vast_development_method_notice_board.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/questionsanswers/tmpl/default_vast_development_method_notice_board.php -------------------------------------------------------------------------------- /admin/views/questionsanswers/tmpl/default_vdm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/questionsanswers/tmpl/default_vdm.php -------------------------------------------------------------------------------- /admin/views/questionsanswers/tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/questionsanswers/tmpl/index.html -------------------------------------------------------------------------------- /admin/views/questionsanswers/view.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/admin/views/questionsanswers/view.html.php -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/index.html -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/.htaccess -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/autoload.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/composer/LICENSE -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/composer/installed.json -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/htaccess.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/htaccess.txt -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/index.html -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/Autoloader.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/Bootstrap.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/Complex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/Complex.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/Exception.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/abs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/abs.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/acos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/acos.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/acosh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/acosh.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/acot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/acot.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/acoth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/acoth.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/acsc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/acsc.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/acsch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/acsch.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/argument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/argument.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/asec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/asec.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/asech.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/asech.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/asin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/asin.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/asinh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/asinh.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/atan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/atan.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/atanh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/atanh.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/conjugate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/conjugate.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/cos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/cos.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/cosh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/cosh.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/cot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/cot.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/coth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/coth.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/csc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/csc.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/csch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/csch.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/exp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/exp.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/inverse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/inverse.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/ln.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/ln.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/log10.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/log10.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/log2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/log2.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/negative.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/negative.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/pow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/pow.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/rho.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/rho.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/sec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/sec.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/sech.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/sech.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/sin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/sin.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/sinh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/sinh.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/sqrt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/sqrt.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/tan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/tan.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/tanh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/tanh.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/theta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/functions/theta.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/operations/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/operations/add.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/operations/divideby.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/operations/divideby.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/operations/divideinto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/operations/divideinto.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/operations/multiply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/operations/multiply.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/operations/subtract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/complex/classes/src/operations/subtract.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/buildPhar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/buildPhar.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/Autoloader.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/Bootstrap.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/Builder.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/Exception.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/Functions.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/Matrix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/Matrix.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/Operators/Addition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/Operators/Addition.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/Operators/DirectSum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/Operators/DirectSum.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/Operators/Division.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/Operators/Division.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/Operators/Multiplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/Operators/Multiplication.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/Operators/Operator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/Operators/Operator.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/Operators/Subtraction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/Operators/Subtraction.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/functions/adjoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/functions/adjoint.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/functions/antidiagonal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/functions/antidiagonal.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/functions/cofactors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/functions/cofactors.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/functions/determinant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/functions/determinant.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/functions/diagonal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/functions/diagonal.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/functions/identity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/functions/identity.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/functions/inverse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/functions/inverse.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/functions/minors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/functions/minors.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/functions/trace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/functions/trace.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/functions/transpose.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/functions/transpose.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/operations/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/operations/add.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/operations/directsum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/operations/directsum.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/operations/divideby.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/operations/divideby.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/operations/divideinto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/operations/divideinto.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/operations/multiply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/operations/multiply.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/operations/subtract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/markbaker/matrix/classes/src/operations/subtract.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/bin/migrate-from-phpexcel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/bin/migrate-from-phpexcel -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/bin/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/bin/pre-commit -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/Bootstrap.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/Cell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/Cell.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/Coordinate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/Coordinate.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DataType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DataType.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DataValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DataValidator.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/Hyperlink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/Hyperlink.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/IValueBinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/IValueBinder.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Axis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Axis.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Chart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Chart.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/DataSeries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/DataSeries.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Exception.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/GridLines.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/GridLines.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Layout.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Legend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Legend.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/PlotArea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/PlotArea.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Properties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Properties.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Title.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/Cells.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/Cells.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/Memory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/Memory.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Comment.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Document/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Document/Security.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Exception.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/HashTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/HashTable.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Html.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Migrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Migrator.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Sample.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/IComparable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/IComparable.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/IOFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/IOFactory.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/NamedRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/NamedRange.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/BaseReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/BaseReader.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Csv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Csv.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Exception.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Html.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/IReadFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/IReadFilter.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/IReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/IReader.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Slk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Slk.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Escher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Escher.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/MD5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/MD5.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/RC4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/RC4.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Chart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Chart.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/ReferenceHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/ReferenceHelper.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/Run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/Run.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Settings.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/CodePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/CodePage.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Date.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Drawing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Drawing.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/File.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Font.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Font.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLERead.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLERead.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/TimeZone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/TimeZone.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Xls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Xls.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Spreadsheet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Spreadsheet.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Alignment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Alignment.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Border.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Border.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Borders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Borders.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Color.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Fill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Fill.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Font.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Font.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Style.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Style.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Row.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Row.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Csv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Csv.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Html.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/IWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/IWriter.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Meta.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Mpdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Mpdf.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Font.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Font.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Xf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Xf.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/psr/simple-cache/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/psr/simple-cache/.editorconfig -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/psr/simple-cache/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/psr/simple-cache/LICENSE.md -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/psr/simple-cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/psr/simple-cache/README.md -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/psr/simple-cache/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/psr/simple-cache/composer.json -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/psr/simple-cache/src/CacheException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/psr/simple-cache/src/CacheException.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/psr/simple-cache/src/CacheInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/psr/simple-cache/src/CacheInterface.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/psr/simple-cache/src/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/psr/simple-cache/src/InvalidArgumentException.php -------------------------------------------------------------------------------- /libraries/phpspreadsheet/vendor/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/libraries/phpspreadsheet/vendor/web.config -------------------------------------------------------------------------------- /media/css/A4.print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/css/A4.print.css -------------------------------------------------------------------------------- /media/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/css/index.html -------------------------------------------------------------------------------- /media/footable-v3/LICENSE-GPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/LICENSE-GPLv3 -------------------------------------------------------------------------------- /media/footable-v3/css/footable.bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/css/footable.bootstrap.css -------------------------------------------------------------------------------- /media/footable-v3/css/footable.bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/css/footable.bootstrap.min.css -------------------------------------------------------------------------------- /media/footable-v3/css/footable.core.bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/css/footable.core.bootstrap.css -------------------------------------------------------------------------------- /media/footable-v3/css/footable.core.bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/css/footable.core.bootstrap.min.css -------------------------------------------------------------------------------- /media/footable-v3/css/footable.core.standalone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/css/footable.core.standalone.css -------------------------------------------------------------------------------- /media/footable-v3/css/footable.core.standalone.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/css/footable.core.standalone.min.css -------------------------------------------------------------------------------- /media/footable-v3/css/footable.editing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/css/footable.editing.css -------------------------------------------------------------------------------- /media/footable-v3/css/footable.editing.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/css/footable.editing.min.css -------------------------------------------------------------------------------- /media/footable-v3/css/footable.filtering.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/css/footable.filtering.css -------------------------------------------------------------------------------- /media/footable-v3/css/footable.filtering.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/css/footable.filtering.min.css -------------------------------------------------------------------------------- /media/footable-v3/css/footable.paging.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/css/footable.paging.css -------------------------------------------------------------------------------- /media/footable-v3/css/footable.paging.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/css/footable.paging.min.css -------------------------------------------------------------------------------- /media/footable-v3/css/footable.sorting.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/css/footable.sorting.css -------------------------------------------------------------------------------- /media/footable-v3/css/footable.sorting.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/css/footable.sorting.min.css -------------------------------------------------------------------------------- /media/footable-v3/css/footable.standalone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/css/footable.standalone.css -------------------------------------------------------------------------------- /media/footable-v3/css/footable.standalone.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/css/footable.standalone.min.css -------------------------------------------------------------------------------- /media/footable-v3/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/css/index.html -------------------------------------------------------------------------------- /media/footable-v3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/index.html -------------------------------------------------------------------------------- /media/footable-v3/js/footable.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/js/footable.core.js -------------------------------------------------------------------------------- /media/footable-v3/js/footable.core.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/js/footable.core.min.js -------------------------------------------------------------------------------- /media/footable-v3/js/footable.editing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/js/footable.editing.js -------------------------------------------------------------------------------- /media/footable-v3/js/footable.editing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/js/footable.editing.min.js -------------------------------------------------------------------------------- /media/footable-v3/js/footable.filtering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/js/footable.filtering.js -------------------------------------------------------------------------------- /media/footable-v3/js/footable.filtering.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/js/footable.filtering.min.js -------------------------------------------------------------------------------- /media/footable-v3/js/footable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/js/footable.min.js -------------------------------------------------------------------------------- /media/footable-v3/js/footable.paging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/js/footable.paging.js -------------------------------------------------------------------------------- /media/footable-v3/js/footable.paging.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/js/footable.paging.min.js -------------------------------------------------------------------------------- /media/footable-v3/js/footable.sorting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/js/footable.sorting.js -------------------------------------------------------------------------------- /media/footable-v3/js/footable.sorting.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/js/footable.sorting.min.js -------------------------------------------------------------------------------- /media/footable-v3/js/footable.state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/js/footable.state.js -------------------------------------------------------------------------------- /media/footable-v3/js/footable.state.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/js/footable.state.min.js -------------------------------------------------------------------------------- /media/footable-v3/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/footable-v3/js/index.html -------------------------------------------------------------------------------- /media/images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/images/index.html -------------------------------------------------------------------------------- /media/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/index.html -------------------------------------------------------------------------------- /media/js/help_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/js/help_document.js -------------------------------------------------------------------------------- /media/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/js/index.html -------------------------------------------------------------------------------- /media/js/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/js/marked.js -------------------------------------------------------------------------------- /media/js/question_and_answer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/js/question_and_answer.js -------------------------------------------------------------------------------- /media/uikit-v2/css/components/accordion.almost-flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/accordion.almost-flat.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/accordion.almost-flat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/accordion.almost-flat.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/accordion.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/accordion.gradient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/accordion.gradient.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/accordion.gradient.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/accordion.gradient.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/accordion.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/accordion.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/autocomplete.almost-flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/autocomplete.almost-flat.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/autocomplete.almost-flat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/autocomplete.almost-flat.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/autocomplete.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/autocomplete.gradient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/autocomplete.gradient.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/autocomplete.gradient.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/autocomplete.gradient.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/autocomplete.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/autocomplete.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/datepicker.almost-flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/datepicker.almost-flat.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/datepicker.almost-flat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/datepicker.almost-flat.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/datepicker.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/datepicker.gradient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/datepicker.gradient.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/datepicker.gradient.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/datepicker.gradient.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/datepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/datepicker.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/dotnav.almost-flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/dotnav.almost-flat.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/dotnav.almost-flat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/dotnav.almost-flat.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/dotnav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/dotnav.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/dotnav.gradient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/dotnav.gradient.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/dotnav.gradient.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/dotnav.gradient.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/dotnav.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/dotnav.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/form-advanced.almost-flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/form-advanced.almost-flat.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/form-advanced.almost-flat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/form-advanced.almost-flat.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/form-advanced.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/form-advanced.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/form-advanced.gradient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/form-advanced.gradient.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/form-advanced.gradient.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/form-advanced.gradient.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/form-advanced.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/form-advanced.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/form-file.almost-flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/form-file.almost-flat.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/form-file.almost-flat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/form-file.almost-flat.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/form-file.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/form-file.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/form-file.gradient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/form-file.gradient.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/form-file.gradient.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/form-file.gradient.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/form-file.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/form-file.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/form-password.almost-flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/form-password.almost-flat.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/form-password.almost-flat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/form-password.almost-flat.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/form-password.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/form-password.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/form-password.gradient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/form-password.gradient.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/form-password.gradient.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/form-password.gradient.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/form-password.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/form-password.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/form-select.almost-flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/form-select.almost-flat.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/form-select.almost-flat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/form-select.almost-flat.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/form-select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/form-select.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/form-select.gradient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/form-select.gradient.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/form-select.gradient.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/form-select.gradient.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/form-select.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/form-select.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/htmleditor.almost-flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/htmleditor.almost-flat.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/htmleditor.almost-flat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/htmleditor.almost-flat.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/htmleditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/htmleditor.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/htmleditor.gradient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/htmleditor.gradient.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/htmleditor.gradient.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/htmleditor.gradient.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/htmleditor.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/htmleditor.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/index.html -------------------------------------------------------------------------------- /media/uikit-v2/css/components/nestable.almost-flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/nestable.almost-flat.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/nestable.almost-flat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/nestable.almost-flat.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/nestable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/nestable.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/nestable.gradient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/nestable.gradient.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/nestable.gradient.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/nestable.gradient.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/nestable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/nestable.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/notify.almost-flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/notify.almost-flat.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/notify.almost-flat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/notify.almost-flat.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/notify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/notify.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/notify.gradient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/notify.gradient.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/notify.gradient.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/notify.gradient.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/notify.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/notify.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/placeholder.almost-flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/placeholder.almost-flat.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/placeholder.almost-flat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/placeholder.almost-flat.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/placeholder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/placeholder.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/placeholder.gradient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/placeholder.gradient.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/placeholder.gradient.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/placeholder.gradient.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/placeholder.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/placeholder.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/progress.almost-flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/progress.almost-flat.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/progress.almost-flat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/progress.almost-flat.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/progress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/progress.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/progress.gradient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/progress.gradient.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/progress.gradient.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/progress.gradient.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/progress.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/progress.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/search.almost-flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/search.almost-flat.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/search.almost-flat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/search.almost-flat.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/search.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/search.gradient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/search.gradient.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/search.gradient.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/search.gradient.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/search.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/search.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/slidenav.almost-flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/slidenav.almost-flat.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/slidenav.almost-flat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/slidenav.almost-flat.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/slidenav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/slidenav.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/slidenav.gradient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/slidenav.gradient.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/slidenav.gradient.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/slidenav.gradient.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/slidenav.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/slidenav.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/slider.almost-flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/slider.almost-flat.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/slider.almost-flat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/slider.almost-flat.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/slider.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/slider.gradient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/slider.gradient.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/slider.gradient.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/slider.gradient.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/slider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/slider.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/slideshow.almost-flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/slideshow.almost-flat.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/slideshow.almost-flat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/slideshow.almost-flat.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/slideshow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/slideshow.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/slideshow.gradient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/slideshow.gradient.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/slideshow.gradient.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/slideshow.gradient.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/slideshow.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/slideshow.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/sortable.almost-flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/sortable.almost-flat.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/sortable.almost-flat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/sortable.almost-flat.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/sortable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/sortable.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/sortable.gradient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/sortable.gradient.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/sortable.gradient.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/sortable.gradient.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/sortable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/sortable.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/sticky.almost-flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/sticky.almost-flat.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/sticky.almost-flat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/sticky.almost-flat.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/sticky.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/sticky.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/sticky.gradient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/sticky.gradient.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/sticky.gradient.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/sticky.gradient.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/sticky.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/sticky.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/tooltip.almost-flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/tooltip.almost-flat.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/tooltip.almost-flat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/tooltip.almost-flat.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/tooltip.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/tooltip.gradient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/tooltip.gradient.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/tooltip.gradient.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/tooltip.gradient.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/tooltip.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/tooltip.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/upload.almost-flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/upload.almost-flat.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/upload.almost-flat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/upload.almost-flat.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/upload.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/upload.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/upload.gradient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/upload.gradient.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/upload.gradient.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/upload.gradient.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/components/upload.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/components/upload.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/index.html -------------------------------------------------------------------------------- /media/uikit-v2/css/uikit.almost-flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/uikit.almost-flat.css -------------------------------------------------------------------------------- /media/uikit-v2/css/uikit.almost-flat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/uikit.almost-flat.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/uikit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/uikit.css -------------------------------------------------------------------------------- /media/uikit-v2/css/uikit.gradient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/uikit.gradient.css -------------------------------------------------------------------------------- /media/uikit-v2/css/uikit.gradient.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/uikit.gradient.min.css -------------------------------------------------------------------------------- /media/uikit-v2/css/uikit.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/css/uikit.min.css -------------------------------------------------------------------------------- /media/uikit-v2/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /media/uikit-v2/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /media/uikit-v2/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /media/uikit-v2/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /media/uikit-v2/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/fonts/index.html -------------------------------------------------------------------------------- /media/uikit-v2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/index.html -------------------------------------------------------------------------------- /media/uikit-v2/js/components/accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/accordion.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/accordion.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/accordion.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/autocomplete.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/autocomplete.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/autocomplete.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/datepicker.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/datepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/datepicker.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/form-password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/form-password.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/form-password.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/form-password.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/form-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/form-select.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/form-select.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/form-select.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/grid-parallax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/grid-parallax.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/grid-parallax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/grid-parallax.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/grid.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/grid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/grid.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/htmleditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/htmleditor.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/htmleditor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/htmleditor.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/index.html -------------------------------------------------------------------------------- /media/uikit-v2/js/components/lightbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/lightbox.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/lightbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/lightbox.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/nestable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/nestable.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/nestable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/nestable.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/notify.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/notify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/notify.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/pagination.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/pagination.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/pagination.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/parallax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/parallax.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/parallax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/parallax.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/search.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/search.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/search.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/slider.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/slider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/slider.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/slideset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/slideset.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/slideset.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/slideset.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/slideshow-fx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/slideshow-fx.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/slideshow-fx.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/slideshow-fx.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/slideshow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/slideshow.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/slideshow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/slideshow.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/sortable.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/sortable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/sortable.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/sticky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/sticky.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/sticky.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/sticky.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/timepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/timepicker.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/timepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/timepicker.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/tooltip.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/tooltip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/tooltip.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/upload.js -------------------------------------------------------------------------------- /media/uikit-v2/js/components/upload.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/components/upload.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/alert.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/alert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/alert.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/button.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/button.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/button.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/core.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/core.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/core.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/cover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/cover.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/cover.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/cover.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/dropdown.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/dropdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/dropdown.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/grid.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/grid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/grid.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/index.html -------------------------------------------------------------------------------- /media/uikit-v2/js/core/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/modal.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/modal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/modal.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/nav.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/nav.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/nav.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/offcanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/offcanvas.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/offcanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/offcanvas.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/scrollspy.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/scrollspy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/scrollspy.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/smooth-scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/smooth-scroll.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/smooth-scroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/smooth-scroll.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/switcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/switcher.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/switcher.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/switcher.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/tab.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/tab.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/tab.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/toggle.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/toggle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/toggle.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/touch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/touch.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/touch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/touch.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/utility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/utility.js -------------------------------------------------------------------------------- /media/uikit-v2/js/core/utility.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/core/utility.min.js -------------------------------------------------------------------------------- /media/uikit-v2/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/index.html -------------------------------------------------------------------------------- /media/uikit-v2/js/uikit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/uikit.js -------------------------------------------------------------------------------- /media/uikit-v2/js/uikit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v2/js/uikit.min.js -------------------------------------------------------------------------------- /media/uikit-v3/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v3/css/index.html -------------------------------------------------------------------------------- /media/uikit-v3/css/uikit-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v3/css/uikit-rtl.css -------------------------------------------------------------------------------- /media/uikit-v3/css/uikit-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v3/css/uikit-rtl.min.css -------------------------------------------------------------------------------- /media/uikit-v3/css/uikit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v3/css/uikit.css -------------------------------------------------------------------------------- /media/uikit-v3/css/uikit.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v3/css/uikit.min.css -------------------------------------------------------------------------------- /media/uikit-v3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v3/index.html -------------------------------------------------------------------------------- /media/uikit-v3/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v3/js/index.html -------------------------------------------------------------------------------- /media/uikit-v3/js/uikit-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v3/js/uikit-icons.js -------------------------------------------------------------------------------- /media/uikit-v3/js/uikit-icons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v3/js/uikit-icons.min.js -------------------------------------------------------------------------------- /media/uikit-v3/js/uikit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v3/js/uikit.js -------------------------------------------------------------------------------- /media/uikit-v3/js/uikit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/media/uikit-v3/js/uikit.min.js -------------------------------------------------------------------------------- /questionsanswers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/questionsanswers.xml -------------------------------------------------------------------------------- /questionsanswers_server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/questionsanswers_server.xml -------------------------------------------------------------------------------- /script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/script.php -------------------------------------------------------------------------------- /site/assets/css/category.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/assets/css/category.css -------------------------------------------------------------------------------- /site/assets/css/downloads.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/assets/css/downloads.css -------------------------------------------------------------------------------- /site/assets/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/assets/css/index.html -------------------------------------------------------------------------------- /site/assets/css/question_and_answer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/assets/css/question_and_answer.css -------------------------------------------------------------------------------- /site/assets/css/questions_and_answers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/assets/css/questions_and_answers.css -------------------------------------------------------------------------------- /site/assets/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/assets/css/site.css -------------------------------------------------------------------------------- /site/assets/images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/assets/images/index.html -------------------------------------------------------------------------------- /site/assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/assets/index.html -------------------------------------------------------------------------------- /site/assets/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/assets/js/index.html -------------------------------------------------------------------------------- /site/assets/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/assets/js/site.js -------------------------------------------------------------------------------- /site/controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/controller.php -------------------------------------------------------------------------------- /site/controllers/ajax.json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/controllers/ajax.json.php -------------------------------------------------------------------------------- /site/controllers/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/controllers/download.php -------------------------------------------------------------------------------- /site/controllers/help.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/controllers/help.php -------------------------------------------------------------------------------- /site/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/controllers/index.html -------------------------------------------------------------------------------- /site/controllers/question_and_answer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/controllers/question_and_answer.php -------------------------------------------------------------------------------- /site/helpers/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/helpers/category.php -------------------------------------------------------------------------------- /site/helpers/categoryquestion_and_answer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/helpers/categoryquestion_and_answer.php -------------------------------------------------------------------------------- /site/helpers/headercheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/helpers/headercheck.php -------------------------------------------------------------------------------- /site/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/helpers/index.html -------------------------------------------------------------------------------- /site/helpers/questionsanswers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/helpers/questionsanswers.php -------------------------------------------------------------------------------- /site/helpers/route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/helpers/route.php -------------------------------------------------------------------------------- /site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/index.html -------------------------------------------------------------------------------- /site/language/en-GB/en-GB.com_questionsanswers.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/language/en-GB/en-GB.com_questionsanswers.ini -------------------------------------------------------------------------------- /site/language/en-GB/en-GB.com_questionsanswers.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/language/en-GB/en-GB.com_questionsanswers.sys.ini -------------------------------------------------------------------------------- /site/language/en-GB/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/language/en-GB/index.html -------------------------------------------------------------------------------- /site/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/language/index.html -------------------------------------------------------------------------------- /site/layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/layouts/index.html -------------------------------------------------------------------------------- /site/layouts/question_and_answer/details_fullwidth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/layouts/question_and_answer/details_fullwidth.php -------------------------------------------------------------------------------- /site/layouts/question_and_answer/details_rightside.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/layouts/question_and_answer/details_rightside.php -------------------------------------------------------------------------------- /site/layouts/question_and_answer/details_under.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/layouts/question_and_answer/details_under.php -------------------------------------------------------------------------------- /site/layouts/question_and_answer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/layouts/question_and_answer/index.html -------------------------------------------------------------------------------- /site/layouts/question_and_answer/metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/layouts/question_and_answer/metadata.php -------------------------------------------------------------------------------- /site/layouts/question_and_answer/publishing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/layouts/question_and_answer/publishing.php -------------------------------------------------------------------------------- /site/models/ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/models/ajax.php -------------------------------------------------------------------------------- /site/models/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/models/category.php -------------------------------------------------------------------------------- /site/models/downloads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/models/downloads.php -------------------------------------------------------------------------------- /site/models/forms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/models/forms/index.html -------------------------------------------------------------------------------- /site/models/forms/question_and_answer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/models/forms/question_and_answer.js -------------------------------------------------------------------------------- /site/models/forms/question_and_answer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/models/forms/question_and_answer.xml -------------------------------------------------------------------------------- /site/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/models/index.html -------------------------------------------------------------------------------- /site/models/question_and_answer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/models/question_and_answer.php -------------------------------------------------------------------------------- /site/models/questions_and_answers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/models/questions_and_answers.php -------------------------------------------------------------------------------- /site/questionsanswers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/questionsanswers.php -------------------------------------------------------------------------------- /site/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/router.php -------------------------------------------------------------------------------- /site/views/category/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/views/category/index.html -------------------------------------------------------------------------------- /site/views/category/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/views/category/tmpl/default.php -------------------------------------------------------------------------------- /site/views/category/tmpl/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/views/category/tmpl/default.xml -------------------------------------------------------------------------------- /site/views/category/tmpl/default_qna-table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/views/category/tmpl/default_qna-table.php -------------------------------------------------------------------------------- /site/views/category/tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/views/category/tmpl/index.html -------------------------------------------------------------------------------- /site/views/category/view.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/views/category/view.html.php -------------------------------------------------------------------------------- /site/views/downloads/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/views/downloads/index.html -------------------------------------------------------------------------------- /site/views/downloads/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/views/downloads/tmpl/default.php -------------------------------------------------------------------------------- /site/views/downloads/tmpl/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/views/downloads/tmpl/default.xml -------------------------------------------------------------------------------- /site/views/downloads/tmpl/default_qna-downloads-table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/views/downloads/tmpl/default_qna-downloads-table.php -------------------------------------------------------------------------------- /site/views/downloads/tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/views/downloads/tmpl/index.html -------------------------------------------------------------------------------- /site/views/downloads/view.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/views/downloads/view.html.php -------------------------------------------------------------------------------- /site/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/views/index.html -------------------------------------------------------------------------------- /site/views/question_and_answer/submitbutton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/views/question_and_answer/submitbutton.js -------------------------------------------------------------------------------- /site/views/question_and_answer/tmpl/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/views/question_and_answer/tmpl/edit.php -------------------------------------------------------------------------------- /site/views/question_and_answer/tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/views/question_and_answer/tmpl/index.html -------------------------------------------------------------------------------- /site/views/question_and_answer/view.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/views/question_and_answer/view.html.php -------------------------------------------------------------------------------- /site/views/questions_and_answers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/views/questions_and_answers/index.html -------------------------------------------------------------------------------- /site/views/questions_and_answers/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/views/questions_and_answers/tmpl/default.php -------------------------------------------------------------------------------- /site/views/questions_and_answers/tmpl/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/views/questions_and_answers/tmpl/default.xml -------------------------------------------------------------------------------- /site/views/questions_and_answers/tmpl/default_qna-table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/views/questions_and_answers/tmpl/default_qna-table.php -------------------------------------------------------------------------------- /site/views/questions_and_answers/tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/views/questions_and_answers/tmpl/index.html -------------------------------------------------------------------------------- /site/views/questions_and_answers/view.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Llewellynvdm/Joomla-Questions-and-Answers/HEAD/site/views/questions_and_answers/view.html.php --------------------------------------------------------------------------------