├── .github └── FUNDING.yml ├── .htaccess ├── README.md ├── application ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── memcached.php │ ├── migration.php │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── Home.php │ ├── Loader.php │ ├── Registration.php │ └── index.html ├── core │ ├── ADMIN_Controller.php │ ├── HEAD_Controller.php │ ├── MY_Controller.php │ ├── MY_Loader.php │ ├── MY_Router.php │ ├── USER_Controller.php │ └── index.html ├── helpers │ ├── except_letters_helper.php │ ├── full_document_number_helper.php │ ├── get_client_ip_address_helper.php │ ├── geterror_helper.php │ ├── index.html │ ├── lang_url_helper.php │ ├── pagination_helper.php │ ├── thisyeardates_helper.php │ └── uploader_helper.php ├── hooks │ └── index.html ├── index.html ├── language │ ├── bulgarian │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── index.html │ │ ├── js │ │ │ └── all.js │ │ ├── pagination_lang.php │ │ ├── profiler_lang.php │ │ ├── public_lang.php │ │ ├── titles_lang.php │ │ ├── upload_lang.php │ │ └── users_lang.php │ ├── english │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── index.html │ │ ├── js │ │ │ └── all.js │ │ ├── pagination_lang.php │ │ ├── profiler_lang.php │ │ ├── public_lang.php │ │ ├── titles_lang.php │ │ ├── upload_lang.php │ │ └── users_lang.php │ ├── france │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── index.html │ │ ├── js │ │ │ └── all.js │ │ ├── pagination_lang.php │ │ ├── profiler_lang.php │ │ ├── public_lang.php │ │ ├── titles_lang.php │ │ ├── upload_lang.php │ │ └── users_lang.php │ └── index.html ├── libraries │ ├── HtmlToPdf.php │ ├── Language.php │ ├── MailSend.php │ ├── PHPExcel │ │ ├── PHPExcel.php │ │ └── PHPExcel │ │ │ ├── Autoloader.php │ │ │ ├── CachedObjectStorage │ │ │ ├── APC.php │ │ │ ├── CacheBase.php │ │ │ ├── DiscISAM.php │ │ │ ├── ICache.php │ │ │ ├── Igbinary.php │ │ │ ├── Memcache.php │ │ │ ├── Memory.php │ │ │ ├── MemoryGZip.php │ │ │ ├── MemorySerialized.php │ │ │ ├── PHPTemp.php │ │ │ ├── SQLite.php │ │ │ ├── SQLite3.php │ │ │ └── Wincache.php │ │ │ ├── CachedObjectStorageFactory.php │ │ │ ├── CalcEngine │ │ │ ├── CyclicReferenceStack.php │ │ │ └── Logger.php │ │ │ ├── Calculation.php │ │ │ ├── Calculation │ │ │ ├── Database.php │ │ │ ├── DateTime.php │ │ │ ├── Engineering.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionHandler.php │ │ │ ├── Financial.php │ │ │ ├── FormulaParser.php │ │ │ ├── FormulaToken.php │ │ │ ├── Function.php │ │ │ ├── Functions.php │ │ │ ├── Logical.php │ │ │ ├── LookupRef.php │ │ │ ├── MathTrig.php │ │ │ ├── Statistical.php │ │ │ ├── TextData.php │ │ │ ├── Token │ │ │ │ └── Stack.php │ │ │ └── functionlist.txt │ │ │ ├── Cell.php │ │ │ ├── Cell │ │ │ ├── AdvancedValueBinder.php │ │ │ ├── DataType.php │ │ │ ├── DataValidation.php │ │ │ ├── DefaultValueBinder.php │ │ │ ├── Hyperlink.php │ │ │ └── IValueBinder.php │ │ │ ├── Chart.php │ │ │ ├── Chart │ │ │ ├── Axis.php │ │ │ ├── DataSeries.php │ │ │ ├── DataSeriesValues.php │ │ │ ├── Exception.php │ │ │ ├── GridLines.php │ │ │ ├── Layout.php │ │ │ ├── Legend.php │ │ │ ├── PlotArea.php │ │ │ ├── Properties.php │ │ │ ├── Renderer │ │ │ │ ├── PHP Charting Libraries.txt │ │ │ │ └── jpgraph.php │ │ │ └── Title.php │ │ │ ├── Comment.php │ │ │ ├── DocumentProperties.php │ │ │ ├── DocumentSecurity.php │ │ │ ├── Exception.php │ │ │ ├── HashTable.php │ │ │ ├── Helper │ │ │ └── HTML.php │ │ │ ├── IComparable.php │ │ │ ├── IOFactory.php │ │ │ ├── NamedRange.php │ │ │ ├── Reader │ │ │ ├── Abstract.php │ │ │ ├── CSV.php │ │ │ ├── DefaultReadFilter.php │ │ │ ├── Excel2003XML.php │ │ │ ├── Excel2007.php │ │ │ ├── Excel2007 │ │ │ │ ├── Chart.php │ │ │ │ └── Theme.php │ │ │ ├── Excel5.php │ │ │ ├── Excel5 │ │ │ │ ├── Color.php │ │ │ │ ├── Color │ │ │ │ │ ├── BIFF5.php │ │ │ │ │ ├── BIFF8.php │ │ │ │ │ └── BuiltIn.php │ │ │ │ ├── ErrorCode.php │ │ │ │ ├── Escher.php │ │ │ │ ├── MD5.php │ │ │ │ ├── RC4.php │ │ │ │ └── Style │ │ │ │ │ ├── Border.php │ │ │ │ │ └── FillPattern.php │ │ │ ├── Exception.php │ │ │ ├── Gnumeric.php │ │ │ ├── HTML.php │ │ │ ├── IReadFilter.php │ │ │ ├── IReader.php │ │ │ ├── OOCalc.php │ │ │ └── SYLK.php │ │ │ ├── ReferenceHelper.php │ │ │ ├── RichText.php │ │ │ ├── RichText │ │ │ ├── ITextElement.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 │ │ │ ├── Excel5.php │ │ │ ├── File.php │ │ │ ├── Font.php │ │ │ ├── JAMA │ │ │ │ ├── CHANGELOG.TXT │ │ │ │ ├── CholeskyDecomposition.php │ │ │ │ ├── EigenvalueDecomposition.php │ │ │ │ ├── LUDecomposition.php │ │ │ │ ├── Matrix.php │ │ │ │ ├── QRDecomposition.php │ │ │ │ ├── SingularValueDecomposition.php │ │ │ │ └── utils │ │ │ │ │ ├── Error.php │ │ │ │ │ └── Maths.php │ │ │ ├── OLE.php │ │ │ ├── OLE │ │ │ │ ├── ChainedBlockStream.php │ │ │ │ ├── PPS.php │ │ │ │ └── PPS │ │ │ │ │ ├── File.php │ │ │ │ │ └── Root.php │ │ │ ├── OLERead.php │ │ │ ├── PCLZip │ │ │ │ ├── gnu-lgpl.txt │ │ │ │ ├── pclzip.lib.php │ │ │ │ └── readme.txt │ │ │ ├── PasswordHasher.php │ │ │ ├── String.php │ │ │ ├── TimeZone.php │ │ │ ├── XMLWriter.php │ │ │ ├── ZipArchive.php │ │ │ ├── ZipStreamWrapper.php │ │ │ └── trend │ │ │ │ ├── bestFitClass.php │ │ │ │ ├── exponentialBestFitClass.php │ │ │ │ ├── linearBestFitClass.php │ │ │ │ ├── logarithmicBestFitClass.php │ │ │ │ ├── polynomialBestFitClass.php │ │ │ │ ├── powerBestFitClass.php │ │ │ │ └── trendClass.php │ │ │ ├── Style.php │ │ │ ├── Style │ │ │ ├── Alignment.php │ │ │ ├── Border.php │ │ │ ├── Borders.php │ │ │ ├── Color.php │ │ │ ├── Conditional.php │ │ │ ├── Fill.php │ │ │ ├── Font.php │ │ │ ├── NumberFormat.php │ │ │ ├── Protection.php │ │ │ └── Supervisor.php │ │ │ ├── Worksheet.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 │ │ │ ├── MemoryDrawing.php │ │ │ ├── PageMargins.php │ │ │ ├── PageSetup.php │ │ │ ├── Protection.php │ │ │ ├── Row.php │ │ │ ├── RowCellIterator.php │ │ │ ├── RowDimension.php │ │ │ ├── RowIterator.php │ │ │ └── SheetView.php │ │ │ ├── WorksheetIterator.php │ │ │ ├── Writer │ │ │ ├── Abstract.php │ │ │ ├── CSV.php │ │ │ ├── Excel2007.php │ │ │ ├── Excel2007 │ │ │ │ ├── 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 │ │ │ ├── Excel5.php │ │ │ ├── Excel5 │ │ │ │ ├── BIFFwriter.php │ │ │ │ ├── Escher.php │ │ │ │ ├── Font.php │ │ │ │ ├── Parser.php │ │ │ │ ├── Workbook.php │ │ │ │ ├── Worksheet.php │ │ │ │ └── Xf.php │ │ │ ├── Exception.php │ │ │ ├── HTML.php │ │ │ ├── IWriter.php │ │ │ ├── OpenDocument.php │ │ │ ├── OpenDocument │ │ │ │ ├── Cell │ │ │ │ │ └── Comment.php │ │ │ │ ├── Content.php │ │ │ │ ├── Meta.php │ │ │ │ ├── MetaInf.php │ │ │ │ ├── Mimetype.php │ │ │ │ ├── Settings.php │ │ │ │ ├── Styles.php │ │ │ │ ├── Thumbnails.php │ │ │ │ └── WriterPart.php │ │ │ ├── PDF.php │ │ │ └── PDF │ │ │ │ ├── Core.php │ │ │ │ ├── DomPDF.php │ │ │ │ ├── mPDF.php │ │ │ │ └── tcPDF.php │ │ │ └── locale │ │ │ ├── bg │ │ │ └── config │ │ │ ├── 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 │ ├── PHPMailer │ │ ├── LICENSE │ │ ├── PHPMailerAutoload.php │ │ ├── VERSION │ │ ├── class.phpmailer.php │ │ ├── class.phpmaileroauth.php │ │ ├── class.phpmaileroauthgoogle.php │ │ ├── class.pop3.php │ │ ├── class.smtp.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── examples │ │ │ ├── DKIM.phps │ │ │ ├── code_generator.phps │ │ │ ├── contactform.phps │ │ │ ├── contents.html │ │ │ ├── contentsutf8.html │ │ │ ├── exceptions.phps │ │ │ ├── gmail.phps │ │ │ ├── gmail_xoauth.phps │ │ │ ├── images │ │ │ │ ├── phpmailer.png │ │ │ │ └── phpmailer_mini.png │ │ │ ├── index.html │ │ │ ├── mail.phps │ │ │ ├── mailing_list.phps │ │ │ ├── pop_before_smtp.phps │ │ │ ├── scripts │ │ │ │ ├── XRegExp.js │ │ │ │ ├── shAutoloader.js │ │ │ │ ├── shBrushPhp.js │ │ │ │ ├── shCore.js │ │ │ │ └── shLegacy.js │ │ │ ├── send_file_upload.phps │ │ │ ├── send_multiple_file_upload.phps │ │ │ ├── sendmail.phps │ │ │ ├── signed-mail.phps │ │ │ ├── smtp.phps │ │ │ ├── smtp_check.phps │ │ │ ├── smtp_no_auth.phps │ │ │ ├── ssl_options.phps │ │ │ └── styles │ │ │ │ ├── shCore.css │ │ │ │ ├── shCoreDefault.css │ │ │ │ ├── shCoreDjango.css │ │ │ │ ├── shCoreEclipse.css │ │ │ │ ├── shCoreEmacs.css │ │ │ │ ├── shCoreFadeToGrey.css │ │ │ │ ├── shCoreMDUltra.css │ │ │ │ ├── shCoreMidnight.css │ │ │ │ ├── shCoreRDark.css │ │ │ │ ├── shThemeAppleScript.css │ │ │ │ ├── shThemeDefault.css │ │ │ │ ├── shThemeDjango.css │ │ │ │ ├── shThemeEclipse.css │ │ │ │ ├── shThemeEmacs.css │ │ │ │ ├── shThemeFadeToGrey.css │ │ │ │ ├── shThemeMDUltra.css │ │ │ │ ├── shThemeMidnight.css │ │ │ │ ├── shThemeRDark.css │ │ │ │ ├── shThemeVisualStudio.css │ │ │ │ └── wrapping.png │ │ ├── extras │ │ │ ├── EasyPeasyICS.php │ │ │ ├── README.md │ │ │ ├── htmlfilter.php │ │ │ └── ntlm_sasl_client.php │ │ ├── get_oauth_token.php │ │ └── language │ │ │ ├── phpmailer.lang-am.php │ │ │ ├── phpmailer.lang-ar.php │ │ │ ├── phpmailer.lang-az.php │ │ │ ├── phpmailer.lang-be.php │ │ │ ├── phpmailer.lang-bg.php │ │ │ ├── phpmailer.lang-ca.php │ │ │ ├── phpmailer.lang-ch.php │ │ │ ├── phpmailer.lang-cs.php │ │ │ ├── phpmailer.lang-da.php │ │ │ ├── phpmailer.lang-de.php │ │ │ ├── phpmailer.lang-el.php │ │ │ ├── phpmailer.lang-eo.php │ │ │ ├── phpmailer.lang-es.php │ │ │ ├── phpmailer.lang-et.php │ │ │ ├── phpmailer.lang-fa.php │ │ │ ├── phpmailer.lang-fi.php │ │ │ ├── phpmailer.lang-fo.php │ │ │ ├── phpmailer.lang-fr.php │ │ │ ├── phpmailer.lang-gl.php │ │ │ ├── phpmailer.lang-he.php │ │ │ ├── phpmailer.lang-hr.php │ │ │ ├── phpmailer.lang-hu.php │ │ │ ├── phpmailer.lang-id.php │ │ │ ├── phpmailer.lang-it.php │ │ │ ├── phpmailer.lang-ja.php │ │ │ ├── phpmailer.lang-ka.php │ │ │ ├── phpmailer.lang-ko.php │ │ │ ├── phpmailer.lang-lt.php │ │ │ ├── phpmailer.lang-lv.php │ │ │ ├── phpmailer.lang-ms.php │ │ │ ├── phpmailer.lang-nb.php │ │ │ ├── phpmailer.lang-nl.php │ │ │ ├── phpmailer.lang-pl.php │ │ │ ├── phpmailer.lang-pt.php │ │ │ ├── phpmailer.lang-pt_br.php │ │ │ ├── phpmailer.lang-ro.php │ │ │ ├── phpmailer.lang-rs.php │ │ │ ├── phpmailer.lang-ru.php │ │ │ ├── phpmailer.lang-sk.php │ │ │ ├── phpmailer.lang-sl.php │ │ │ ├── phpmailer.lang-sv.php │ │ │ ├── phpmailer.lang-tr.php │ │ │ ├── phpmailer.lang-uk.php │ │ │ ├── phpmailer.lang-vi.php │ │ │ ├── phpmailer.lang-zh.php │ │ │ └── phpmailer.lang-zh_cn.php │ ├── Permissions.php │ ├── Plans.php │ ├── dompdf │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.LGPL │ │ ├── README.md │ │ ├── VERSION │ │ ├── autoload.inc.php │ │ ├── composer.json │ │ ├── lib │ │ │ ├── Cpdf.php │ │ │ ├── fonts │ │ │ │ ├── DejaVuSans-Bold.ttf │ │ │ │ ├── DejaVuSans-Bold.ufm │ │ │ │ ├── DejaVuSans-Bold.ufm.php │ │ │ │ ├── DejaVuSans-BoldOblique.ttf │ │ │ │ ├── DejaVuSans-BoldOblique.ufm │ │ │ │ ├── DejaVuSans-Oblique.ttf │ │ │ │ ├── DejaVuSans-Oblique.ufm │ │ │ │ ├── DejaVuSans.ttf │ │ │ │ ├── DejaVuSans.ufm │ │ │ │ ├── DejaVuSans.ufm.php │ │ │ │ ├── DejaVuSansMono-Bold.ttf │ │ │ │ ├── DejaVuSansMono-Bold.ufm │ │ │ │ ├── DejaVuSansMono-BoldOblique.ttf │ │ │ │ ├── DejaVuSansMono-BoldOblique.ufm │ │ │ │ ├── DejaVuSansMono-Oblique.ttf │ │ │ │ ├── DejaVuSansMono-Oblique.ufm │ │ │ │ ├── DejaVuSansMono.ttf │ │ │ │ ├── DejaVuSansMono.ufm │ │ │ │ ├── DejaVuSerif-Bold.ttf │ │ │ │ ├── DejaVuSerif-Bold.ufm │ │ │ │ ├── DejaVuSerif-BoldItalic.ttf │ │ │ │ ├── DejaVuSerif-BoldItalic.ufm │ │ │ │ ├── DejaVuSerif-Italic.ttf │ │ │ │ ├── DejaVuSerif-Italic.ufm │ │ │ │ ├── DejaVuSerif.ttf │ │ │ │ ├── DejaVuSerif.ufm │ │ │ │ ├── dejavu_sans_normal_b851f57bf3783ae5089a634872aa8ce8.ttf │ │ │ │ ├── dejavu_sans_normal_b851f57bf3783ae5089a634872aa8ce8.ufm │ │ │ │ ├── dejavu_sans_normal_b851f57bf3783ae5089a634872aa8ce8.ufm.php │ │ │ │ ├── dejavu_sans_normal_da52e5b8c125dc4342e1d9c6baf20f36.ttf │ │ │ │ ├── dejavu_sans_normal_da52e5b8c125dc4342e1d9c6baf20f36.ufm │ │ │ │ ├── dejavu_sans_normal_da52e5b8c125dc4342e1d9c6baf20f36.ufm.php │ │ │ │ ├── dejavu_sans_normal_ed376817aaa57868462795ac20ea25fb.ttf │ │ │ │ ├── dejavu_sans_normal_ed376817aaa57868462795ac20ea25fb.ufm │ │ │ │ ├── dejavu_sans_normal_ed376817aaa57868462795ac20ea25fb.ufm.php │ │ │ │ ├── dompdf_font_family_cache.dist.php │ │ │ │ ├── dompdf_font_family_cache.php │ │ │ │ └── mustRead.html │ │ │ ├── html5lib │ │ │ │ ├── Data.php │ │ │ │ ├── InputStream.php │ │ │ │ ├── Parser.php │ │ │ │ ├── Tokenizer.php │ │ │ │ ├── TreeBuilder.php │ │ │ │ └── named-character-references.ser │ │ │ ├── php-css-parser │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ ├── CSSList │ │ │ │ │ ├── AtRuleBlockList.php │ │ │ │ │ ├── CSSBlockList.php │ │ │ │ │ ├── CSSList.php │ │ │ │ │ ├── Document.php │ │ │ │ │ └── KeyFrame.php │ │ │ │ │ ├── Comment │ │ │ │ │ ├── Comment.php │ │ │ │ │ └── Commentable.php │ │ │ │ │ ├── OutputFormat.php │ │ │ │ │ ├── OutputFormatter.php │ │ │ │ │ ├── Parser.php │ │ │ │ │ ├── Parsing │ │ │ │ │ ├── OutputException.php │ │ │ │ │ ├── ParserState.php │ │ │ │ │ ├── SourceException.php │ │ │ │ │ ├── UnexpectedEOFException.php │ │ │ │ │ └── UnexpectedTokenException.php │ │ │ │ │ ├── Property │ │ │ │ │ ├── AtRule.php │ │ │ │ │ ├── CSSNamespace.php │ │ │ │ │ ├── Charset.php │ │ │ │ │ ├── Import.php │ │ │ │ │ ├── KeyframeSelector.php │ │ │ │ │ └── Selector.php │ │ │ │ │ ├── Renderable.php │ │ │ │ │ ├── Rule │ │ │ │ │ └── Rule.php │ │ │ │ │ ├── RuleSet │ │ │ │ │ ├── AtRuleSet.php │ │ │ │ │ ├── DeclarationBlock.php │ │ │ │ │ └── RuleSet.php │ │ │ │ │ ├── Settings.php │ │ │ │ │ └── Value │ │ │ │ │ ├── CSSFunction.php │ │ │ │ │ ├── CSSString.php │ │ │ │ │ ├── CalcFunction.php │ │ │ │ │ ├── CalcRuleValueList.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── LineName.php │ │ │ │ │ ├── PrimitiveValue.php │ │ │ │ │ ├── RuleValueList.php │ │ │ │ │ ├── Size.php │ │ │ │ │ ├── URL.php │ │ │ │ │ ├── Value.php │ │ │ │ │ └── ValueList.php │ │ │ ├── php-font-lib │ │ │ │ ├── .htaccess │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── composer.json │ │ │ │ ├── index.php │ │ │ │ ├── maps │ │ │ │ │ ├── adobe-standard-encoding.map │ │ │ │ │ ├── cp1250.map │ │ │ │ │ ├── cp1251.map │ │ │ │ │ ├── cp1252.map │ │ │ │ │ ├── cp1253.map │ │ │ │ │ ├── cp1254.map │ │ │ │ │ ├── cp1255.map │ │ │ │ │ ├── cp1257.map │ │ │ │ │ ├── cp1258.map │ │ │ │ │ ├── cp874.map │ │ │ │ │ ├── iso-8859-1.map │ │ │ │ │ ├── iso-8859-11.map │ │ │ │ │ ├── iso-8859-15.map │ │ │ │ │ ├── iso-8859-16.map │ │ │ │ │ ├── iso-8859-2.map │ │ │ │ │ ├── iso-8859-4.map │ │ │ │ │ ├── iso-8859-5.map │ │ │ │ │ ├── iso-8859-7.map │ │ │ │ │ ├── iso-8859-9.map │ │ │ │ │ ├── koi8-r.map │ │ │ │ │ └── koi8-u.map │ │ │ │ └── src │ │ │ │ │ └── FontLib │ │ │ │ │ ├── AdobeFontMetrics.php │ │ │ │ │ ├── Autoloader.php │ │ │ │ │ ├── BinaryStream.php │ │ │ │ │ ├── EOT │ │ │ │ │ ├── File.php │ │ │ │ │ └── Header.php │ │ │ │ │ ├── EncodingMap.php │ │ │ │ │ ├── Exception │ │ │ │ │ └── FontNotFoundException.php │ │ │ │ │ ├── Font.php │ │ │ │ │ ├── Glyph │ │ │ │ │ ├── Outline.php │ │ │ │ │ ├── OutlineComponent.php │ │ │ │ │ ├── OutlineComposite.php │ │ │ │ │ └── OutlineSimple.php │ │ │ │ │ ├── Header.php │ │ │ │ │ ├── OpenType │ │ │ │ │ ├── File.php │ │ │ │ │ └── TableDirectoryEntry.php │ │ │ │ │ ├── Table │ │ │ │ │ ├── DirectoryEntry.php │ │ │ │ │ ├── Table.php │ │ │ │ │ └── Type │ │ │ │ │ │ ├── cmap.php │ │ │ │ │ │ ├── glyf.php │ │ │ │ │ │ ├── head.php │ │ │ │ │ │ ├── hhea.php │ │ │ │ │ │ ├── hmtx.php │ │ │ │ │ │ ├── kern.php │ │ │ │ │ │ ├── loca.php │ │ │ │ │ │ ├── maxp.php │ │ │ │ │ │ ├── name.php │ │ │ │ │ │ ├── nameRecord.php │ │ │ │ │ │ ├── os2.php │ │ │ │ │ │ └── post.php │ │ │ │ │ ├── TrueType │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── File.php │ │ │ │ │ ├── Header.php │ │ │ │ │ └── TableDirectoryEntry.php │ │ │ │ │ └── WOFF │ │ │ │ │ ├── File.php │ │ │ │ │ ├── Header.php │ │ │ │ │ └── TableDirectoryEntry.php │ │ │ ├── php-svg-lib │ │ │ │ ├── COPYING │ │ │ │ ├── COPYING.GPL │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ ├── Svg │ │ │ │ │ ├── DefaultStyle.php │ │ │ │ │ ├── Document.php │ │ │ │ │ ├── Gradient │ │ │ │ │ │ └── Stop.php │ │ │ │ │ ├── Style.php │ │ │ │ │ ├── Surface │ │ │ │ │ │ ├── CPdf.php │ │ │ │ │ │ ├── SurfaceCpdf.php │ │ │ │ │ │ ├── SurfaceGmagick.php │ │ │ │ │ │ ├── SurfaceInterface.php │ │ │ │ │ │ └── SurfacePDFLib.php │ │ │ │ │ └── Tag │ │ │ │ │ │ ├── AbstractTag.php │ │ │ │ │ │ ├── Anchor.php │ │ │ │ │ │ ├── Circle.php │ │ │ │ │ │ ├── ClipPath.php │ │ │ │ │ │ ├── Ellipse.php │ │ │ │ │ │ ├── Group.php │ │ │ │ │ │ ├── Image.php │ │ │ │ │ │ ├── Line.php │ │ │ │ │ │ ├── LinearGradient.php │ │ │ │ │ │ ├── Path.php │ │ │ │ │ │ ├── Polygon.php │ │ │ │ │ │ ├── Polyline.php │ │ │ │ │ │ ├── RadialGradient.php │ │ │ │ │ │ ├── Rect.php │ │ │ │ │ │ ├── Shape.php │ │ │ │ │ │ ├── Stop.php │ │ │ │ │ │ ├── StyleTag.php │ │ │ │ │ │ ├── Text.php │ │ │ │ │ │ └── UseTag.php │ │ │ │ │ └── autoload.php │ │ │ └── res │ │ │ │ ├── broken_image.png │ │ │ │ ├── broken_image.svg │ │ │ │ └── html.css │ │ ├── phpcs.xml │ │ ├── phpunit.xml.dist │ │ └── src │ │ │ ├── Adapter │ │ │ ├── CPDF.php │ │ │ ├── GD.php │ │ │ └── PDFLib.php │ │ │ ├── Autoloader.php │ │ │ ├── Canvas.php │ │ │ ├── CanvasFactory.php │ │ │ ├── Cellmap.php │ │ │ ├── Css │ │ │ ├── AttributeTranslator.php │ │ │ ├── Color.php │ │ │ ├── Style.php │ │ │ └── Stylesheet.php │ │ │ ├── Dompdf.php │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ └── ImageException.php │ │ │ ├── FontMetrics.php │ │ │ ├── Frame.php │ │ │ ├── Frame │ │ │ ├── Factory.php │ │ │ ├── FrameList.php │ │ │ ├── FrameListIterator.php │ │ │ ├── FrameTree.php │ │ │ ├── FrameTreeIterator.php │ │ │ └── FrameTreeList.php │ │ │ ├── FrameDecorator │ │ │ ├── AbstractFrameDecorator.php │ │ │ ├── Block.php │ │ │ ├── Image.php │ │ │ ├── Inline.php │ │ │ ├── ListBullet.php │ │ │ ├── ListBulletImage.php │ │ │ ├── NullFrameDecorator.php │ │ │ ├── Page.php │ │ │ ├── Table.php │ │ │ ├── TableCell.php │ │ │ ├── TableRow.php │ │ │ ├── TableRowGroup.php │ │ │ └── Text.php │ │ │ ├── FrameReflower │ │ │ ├── AbstractFrameReflower.php │ │ │ ├── Block.php │ │ │ ├── Image.php │ │ │ ├── Inline.php │ │ │ ├── ListBullet.php │ │ │ ├── NullFrameReflower.php │ │ │ ├── Page.php │ │ │ ├── Table.php │ │ │ ├── TableCell.php │ │ │ ├── TableRow.php │ │ │ ├── TableRowGroup.php │ │ │ └── Text.php │ │ │ ├── Helpers.php │ │ │ ├── Image │ │ │ └── Cache.php │ │ │ ├── JavascriptEmbedder.php │ │ │ ├── LineBox.php │ │ │ ├── Options.php │ │ │ ├── PhpEvaluator.php │ │ │ ├── Positioner │ │ │ ├── Absolute.php │ │ │ ├── AbstractPositioner.php │ │ │ ├── Block.php │ │ │ ├── Fixed.php │ │ │ ├── Inline.php │ │ │ ├── ListBullet.php │ │ │ ├── NullPositioner.php │ │ │ ├── TableCell.php │ │ │ └── TableRow.php │ │ │ ├── Renderer.php │ │ │ └── Renderer │ │ │ ├── AbstractRenderer.php │ │ │ ├── Block.php │ │ │ ├── Image.php │ │ │ ├── Inline.php │ │ │ ├── ListBullet.php │ │ │ ├── TableCell.php │ │ │ ├── TableRowGroup.php │ │ │ └── Text.php │ ├── exporters │ │ ├── ExcelExport.php │ │ └── XmlExport.php │ ├── importers │ │ └── UniversalXmlImport.php │ └── index.html ├── logs │ ├── log-2017-07-13.php │ ├── log-2017-07-14.php │ ├── log-2017-07-24.php │ ├── log-2017-07-25.php │ ├── log-2017-07-26.php │ ├── log-2017-07-27.php │ ├── log-2017-07-28.php │ ├── log-2017-07-31.php │ ├── log-2017-08-01.php │ ├── log-2017-08-02.php │ ├── log-2017-08-03.php │ ├── log-2017-08-04.php │ ├── log-2017-08-21.php │ ├── log-2017-08-22.php │ ├── log-2017-08-23.php │ ├── log-2017-08-24.php │ ├── log-2017-08-25.php │ ├── log-2017-08-28.php │ ├── log-2017-08-29.php │ ├── log-2017-08-30.php │ ├── log-2017-08-31.php │ ├── log-2017-09-01.php │ ├── log-2017-09-04.php │ ├── log-2017-09-05.php │ ├── log-2017-09-07.php │ ├── log-2017-09-08.php │ ├── log-2017-09-11.php │ ├── log-2017-09-12.php │ └── log-2017-09-13.php ├── models │ ├── PublicModel.php │ └── index.html ├── modules │ ├── admin │ │ ├── controllers │ │ │ ├── home │ │ │ │ ├── Home.php │ │ │ │ └── Login.php │ │ │ └── plans │ │ │ │ └── Requests.php │ │ ├── models │ │ │ ├── GeneralAdminModel.php │ │ │ ├── HomeModel.php │ │ │ ├── LanguagesModel.php │ │ │ └── RequestsModel.php │ │ └── views │ │ │ ├── home │ │ │ ├── index.php │ │ │ └── login.php │ │ │ ├── parts │ │ │ ├── general │ │ │ │ ├── footer.php │ │ │ │ └── header.php │ │ │ └── login │ │ │ │ ├── footer.php │ │ │ │ └── header.php │ │ │ └── plans │ │ │ ├── individual_plan_requests.php │ │ │ └── requests.php │ └── users │ │ ├── controllers │ │ ├── clients │ │ │ └── Clients.php │ │ ├── home │ │ │ └── Home.php │ │ ├── import_export │ │ │ └── ImportExport.php │ │ ├── invoices │ │ │ ├── Invoices.php │ │ │ ├── Invoiceview.php │ │ │ └── Newinvoice.php │ │ ├── items │ │ │ └── Items.php │ │ ├── managefirms │ │ │ └── Managefirms.php │ │ ├── plans │ │ │ └── PlansUsers.php │ │ ├── protocols │ │ │ ├── Protocols.php │ │ │ └── Protocolview.php │ │ ├── reports │ │ │ └── Reports.php │ │ ├── settings │ │ │ ├── Admin.php │ │ │ ├── Employees.php │ │ │ ├── GlobalSettings.php │ │ │ ├── Invoices.php │ │ │ ├── Protocols.php │ │ │ ├── Settings.php │ │ │ ├── Stores.php │ │ │ └── Warranty.php │ │ ├── store │ │ │ ├── Movementview.php │ │ │ └── Store.php │ │ └── warranty │ │ │ ├── Events.php │ │ │ ├── Warranty.php │ │ │ └── Warrantyview.php │ │ ├── models │ │ ├── ClientsModel.php │ │ ├── HomeModel.php │ │ ├── ImportExportModel.php │ │ ├── InvoicesModel.php │ │ ├── ItemsModel.php │ │ ├── ManagefirmsModel.php │ │ ├── NewInvoiceModel.php │ │ ├── PlansModel.php │ │ ├── ProtocolsModel.php │ │ ├── ReportsModel.php │ │ ├── SettingsModel.php │ │ ├── StoreModel.php │ │ └── WarrantyCardModel.php │ │ └── views │ │ ├── clients │ │ ├── addclient.php │ │ ├── index.php │ │ └── viewclient.php │ │ ├── home │ │ ├── index.php │ │ ├── noSearchResultsHtml.php │ │ └── searchResultsHtml.php │ │ ├── import_export │ │ └── index.php │ │ ├── invoices │ │ ├── index.php │ │ ├── itemTableTr.php │ │ ├── listSelectorHtml.php │ │ ├── modals │ │ │ ├── add_payment_method.php │ │ │ ├── add_quantity_type.php │ │ │ └── selector.php │ │ ├── newinvoice.php │ │ ├── templates │ │ │ ├── creative.php │ │ │ └── toner-save.php │ │ └── view.php │ │ ├── items │ │ ├── additem.php │ │ ├── index.php │ │ └── viewitem.php │ │ ├── managefirms │ │ ├── edit.php │ │ └── index.php │ │ ├── parts │ │ ├── footer.php │ │ └── header.php │ │ ├── plans │ │ ├── index.php │ │ ├── period.php │ │ └── request.php │ │ ├── protocols │ │ ├── addprotocol.php │ │ ├── index.php │ │ ├── itemTableTr.php │ │ └── templates │ │ │ └── default.php │ │ ├── reports │ │ ├── index.php │ │ └── reportNumInvoices.php │ │ ├── settings │ │ ├── addEmployee.php │ │ ├── admin.php │ │ ├── employeeRights.php │ │ ├── employees.php │ │ ├── global.php │ │ ├── index.php │ │ ├── invoices.php │ │ ├── protocols.php │ │ ├── stores.php │ │ └── warranty.php │ │ ├── store │ │ ├── addmovement.php │ │ ├── index.php │ │ ├── itemTableTr.php │ │ ├── preview.php │ │ ├── stocks.php │ │ └── templates │ │ │ └── default.php │ │ └── warranty │ │ ├── add_event.php │ │ ├── addwarranty.php │ │ ├── events.php │ │ ├── index.php │ │ ├── itemTableTr.php │ │ └── templates │ │ └── default.php ├── third_party │ ├── MX │ │ ├── Base.php │ │ ├── Ci.php │ │ ├── Config.php │ │ ├── Controller.php │ │ ├── Lang.php │ │ ├── Loader.php │ │ ├── Modules.php │ │ └── Router.php │ └── index.html └── views │ ├── errors │ ├── cli │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ ├── html │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ └── index.html │ ├── home │ └── index.php │ ├── index.html │ ├── invoices_parts │ ├── footer.php │ └── invoice_accept.php │ ├── parts │ ├── footer.php │ ├── header.php │ └── invaccept │ │ ├── footer.php │ │ └── header.php │ └── registration │ ├── choosetype.php │ ├── forgotten.php │ ├── index.php │ └── login.php ├── assets ├── admin │ ├── css │ │ ├── general.css │ │ └── login.css │ └── js │ │ └── general.js ├── animate.min.css ├── bootstrap-datepicker-1.6.4-dist │ ├── css │ │ ├── bootstrap-datepicker.css │ │ ├── bootstrap-datepicker.css.map │ │ ├── bootstrap-datepicker.min.css │ │ ├── bootstrap-datepicker.min.css.map │ │ ├── bootstrap-datepicker.standalone.css │ │ ├── bootstrap-datepicker.standalone.css.map │ │ ├── bootstrap-datepicker.standalone.min.css │ │ ├── bootstrap-datepicker.standalone.min.css.map │ │ ├── bootstrap-datepicker3.css │ │ ├── bootstrap-datepicker3.css.map │ │ ├── bootstrap-datepicker3.min.css │ │ ├── bootstrap-datepicker3.min.css.map │ │ ├── bootstrap-datepicker3.standalone.css │ │ ├── bootstrap-datepicker3.standalone.css.map │ │ ├── bootstrap-datepicker3.standalone.min.css │ │ └── bootstrap-datepicker3.standalone.min.css.map │ ├── js │ │ └── bootstrap-datepicker.min.js │ └── locales │ │ ├── bootstrap-datepicker.ar.min.js │ │ ├── bootstrap-datepicker.az.min.js │ │ ├── bootstrap-datepicker.bg.min.js │ │ ├── bootstrap-datepicker.bs.min.js │ │ ├── bootstrap-datepicker.ca.min.js │ │ ├── bootstrap-datepicker.cs.min.js │ │ ├── bootstrap-datepicker.cy.min.js │ │ ├── bootstrap-datepicker.da.min.js │ │ ├── bootstrap-datepicker.de.min.js │ │ ├── bootstrap-datepicker.el.min.js │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ ├── bootstrap-datepicker.eo.min.js │ │ ├── bootstrap-datepicker.es.min.js │ │ ├── bootstrap-datepicker.et.min.js │ │ ├── bootstrap-datepicker.eu.min.js │ │ ├── bootstrap-datepicker.fa.min.js │ │ ├── bootstrap-datepicker.fi.min.js │ │ ├── bootstrap-datepicker.fo.min.js │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ ├── bootstrap-datepicker.fr.min.js │ │ ├── bootstrap-datepicker.gl.min.js │ │ ├── bootstrap-datepicker.he.min.js │ │ ├── bootstrap-datepicker.hr.min.js │ │ ├── bootstrap-datepicker.hu.min.js │ │ ├── bootstrap-datepicker.hy.min.js │ │ ├── bootstrap-datepicker.id.min.js │ │ ├── bootstrap-datepicker.is.min.js │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ ├── bootstrap-datepicker.it.min.js │ │ ├── bootstrap-datepicker.ja.min.js │ │ ├── bootstrap-datepicker.ka.min.js │ │ ├── bootstrap-datepicker.kh.min.js │ │ ├── bootstrap-datepicker.kk.min.js │ │ ├── bootstrap-datepicker.ko.min.js │ │ ├── bootstrap-datepicker.kr.min.js │ │ ├── bootstrap-datepicker.lt.min.js │ │ ├── bootstrap-datepicker.lv.min.js │ │ ├── bootstrap-datepicker.me.min.js │ │ ├── bootstrap-datepicker.mk.min.js │ │ ├── bootstrap-datepicker.mn.min.js │ │ ├── bootstrap-datepicker.ms.min.js │ │ ├── bootstrap-datepicker.nb.min.js │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ ├── bootstrap-datepicker.nl.min.js │ │ ├── bootstrap-datepicker.no.min.js │ │ ├── bootstrap-datepicker.pl.min.js │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ ├── bootstrap-datepicker.pt.min.js │ │ ├── bootstrap-datepicker.ro.min.js │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ ├── bootstrap-datepicker.rs.min.js │ │ ├── bootstrap-datepicker.ru.min.js │ │ ├── bootstrap-datepicker.sk.min.js │ │ ├── bootstrap-datepicker.sl.min.js │ │ ├── bootstrap-datepicker.sq.min.js │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ ├── bootstrap-datepicker.sr.min.js │ │ ├── bootstrap-datepicker.sv.min.js │ │ ├── bootstrap-datepicker.sw.min.js │ │ ├── bootstrap-datepicker.th.min.js │ │ ├── bootstrap-datepicker.tr.min.js │ │ ├── bootstrap-datepicker.uk.min.js │ │ ├── bootstrap-datepicker.vi.min.js │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ └── bootstrap-datepicker.zh-TW.min.js ├── bootstrap-select-1.12.2 │ ├── .github │ │ └── ISSUE_TEMPLATE.md │ ├── .gitignore │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── Gruntfile.js │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── composer.json │ ├── dist │ │ ├── css │ │ │ ├── bootstrap-select.css │ │ │ ├── bootstrap-select.css.map │ │ │ └── bootstrap-select.min.css │ │ └── js │ │ │ ├── bootstrap-select.js │ │ │ ├── bootstrap-select.js.map │ │ │ ├── bootstrap-select.min.js │ │ │ └── i18n │ │ │ ├── defaults-ar_AR.js │ │ │ ├── defaults-ar_AR.min.js │ │ │ ├── defaults-bg_BG.js │ │ │ ├── defaults-bg_BG.min.js │ │ │ ├── defaults-cro_CRO.js │ │ │ ├── defaults-cro_CRO.min.js │ │ │ ├── defaults-cs_CZ.js │ │ │ ├── defaults-cs_CZ.min.js │ │ │ ├── defaults-da_DK.js │ │ │ ├── defaults-da_DK.min.js │ │ │ ├── defaults-de_DE.js │ │ │ ├── defaults-de_DE.min.js │ │ │ ├── defaults-en_US.js │ │ │ ├── defaults-en_US.min.js │ │ │ ├── defaults-es_CL.js │ │ │ ├── defaults-es_CL.min.js │ │ │ ├── defaults-es_ES.js │ │ │ ├── defaults-es_ES.min.js │ │ │ ├── defaults-eu.js │ │ │ ├── defaults-eu.min.js │ │ │ ├── defaults-fa_IR.js │ │ │ ├── defaults-fa_IR.min.js │ │ │ ├── defaults-fi_FI.js │ │ │ ├── defaults-fi_FI.min.js │ │ │ ├── defaults-fr_FR.js │ │ │ ├── defaults-fr_FR.min.js │ │ │ ├── defaults-hu_HU.js │ │ │ ├── defaults-hu_HU.min.js │ │ │ ├── defaults-id_ID.js │ │ │ ├── defaults-id_ID.min.js │ │ │ ├── defaults-it_IT.js │ │ │ ├── defaults-it_IT.min.js │ │ │ ├── defaults-ko_KR.js │ │ │ ├── defaults-ko_KR.min.js │ │ │ ├── defaults-lt_LT.js │ │ │ ├── defaults-lt_LT.min.js │ │ │ ├── defaults-nb_NO.js │ │ │ ├── defaults-nb_NO.min.js │ │ │ ├── defaults-nl_NL.js │ │ │ ├── defaults-nl_NL.min.js │ │ │ ├── defaults-pl_PL.js │ │ │ ├── defaults-pl_PL.min.js │ │ │ ├── defaults-pt_BR.js │ │ │ ├── defaults-pt_BR.min.js │ │ │ ├── defaults-pt_PT.js │ │ │ ├── defaults-pt_PT.min.js │ │ │ ├── defaults-ro_RO.js │ │ │ ├── defaults-ro_RO.min.js │ │ │ ├── defaults-ru_RU.js │ │ │ ├── defaults-ru_RU.min.js │ │ │ ├── defaults-sk_SK.js │ │ │ ├── defaults-sk_SK.min.js │ │ │ ├── defaults-sl_SI.js │ │ │ ├── defaults-sl_SI.min.js │ │ │ ├── defaults-sv_SE.js │ │ │ ├── defaults-sv_SE.min.js │ │ │ ├── defaults-tr_TR.js │ │ │ ├── defaults-tr_TR.min.js │ │ │ ├── defaults-ua_UA.js │ │ │ ├── defaults-ua_UA.min.js │ │ │ ├── defaults-zh_CN.js │ │ │ ├── defaults-zh_CN.min.js │ │ │ ├── defaults-zh_TW.js │ │ │ └── defaults-zh_TW.min.js │ ├── docs │ │ ├── custom_theme │ │ │ ├── base.html │ │ │ ├── css │ │ │ │ └── base.css │ │ │ ├── img │ │ │ │ └── logos │ │ │ │ │ ├── convertizer.png │ │ │ │ │ ├── estimateit.png │ │ │ │ │ ├── membermeister.png │ │ │ │ │ ├── snapappointments.png │ │ │ │ │ ├── solveforall.png │ │ │ │ │ └── thermofisher.png │ │ │ ├── js │ │ │ │ └── base.js │ │ │ ├── nav.html │ │ │ └── toc.html │ │ ├── docs │ │ │ ├── css │ │ │ │ └── custom.css │ │ │ ├── dist │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-select.css │ │ │ │ │ ├── bootstrap-select.css.map │ │ │ │ │ └── bootstrap-select.min.css │ │ │ │ └── js │ │ │ │ │ ├── bootstrap-select.js │ │ │ │ │ ├── bootstrap-select.js.map │ │ │ │ │ ├── bootstrap-select.min.js │ │ │ │ │ └── i18n │ │ │ │ │ ├── defaults-ar_AR.js │ │ │ │ │ ├── defaults-ar_AR.min.js │ │ │ │ │ ├── defaults-bg_BG.js │ │ │ │ │ ├── defaults-bg_BG.min.js │ │ │ │ │ ├── defaults-cro_CRO.js │ │ │ │ │ ├── defaults-cro_CRO.min.js │ │ │ │ │ ├── defaults-cs_CZ.js │ │ │ │ │ ├── defaults-cs_CZ.min.js │ │ │ │ │ ├── defaults-da_DK.js │ │ │ │ │ ├── defaults-da_DK.min.js │ │ │ │ │ ├── defaults-de_DE.js │ │ │ │ │ ├── defaults-de_DE.min.js │ │ │ │ │ ├── defaults-en_US.js │ │ │ │ │ ├── defaults-en_US.min.js │ │ │ │ │ ├── defaults-es_CL.js │ │ │ │ │ ├── defaults-es_CL.min.js │ │ │ │ │ ├── defaults-es_ES.js │ │ │ │ │ ├── defaults-es_ES.min.js │ │ │ │ │ ├── defaults-eu.js │ │ │ │ │ ├── defaults-eu.min.js │ │ │ │ │ ├── defaults-fa_IR.js │ │ │ │ │ ├── defaults-fa_IR.min.js │ │ │ │ │ ├── defaults-fi_FI.js │ │ │ │ │ ├── defaults-fi_FI.min.js │ │ │ │ │ ├── defaults-fr_FR.js │ │ │ │ │ ├── defaults-fr_FR.min.js │ │ │ │ │ ├── defaults-hu_HU.js │ │ │ │ │ ├── defaults-hu_HU.min.js │ │ │ │ │ ├── defaults-id_ID.js │ │ │ │ │ ├── defaults-id_ID.min.js │ │ │ │ │ ├── defaults-it_IT.js │ │ │ │ │ ├── defaults-it_IT.min.js │ │ │ │ │ ├── defaults-ko_KR.js │ │ │ │ │ ├── defaults-ko_KR.min.js │ │ │ │ │ ├── defaults-lt_LT.js │ │ │ │ │ ├── defaults-lt_LT.min.js │ │ │ │ │ ├── defaults-nb_NO.js │ │ │ │ │ ├── defaults-nb_NO.min.js │ │ │ │ │ ├── defaults-nl_NL.js │ │ │ │ │ ├── defaults-nl_NL.min.js │ │ │ │ │ ├── defaults-pl_PL.js │ │ │ │ │ ├── defaults-pl_PL.min.js │ │ │ │ │ ├── defaults-pt_BR.js │ │ │ │ │ ├── defaults-pt_BR.min.js │ │ │ │ │ ├── defaults-pt_PT.js │ │ │ │ │ ├── defaults-pt_PT.min.js │ │ │ │ │ ├── defaults-ro_RO.js │ │ │ │ │ ├── defaults-ro_RO.min.js │ │ │ │ │ ├── defaults-ru_RU.js │ │ │ │ │ ├── defaults-ru_RU.min.js │ │ │ │ │ ├── defaults-sk_SK.js │ │ │ │ │ ├── defaults-sk_SK.min.js │ │ │ │ │ ├── defaults-sl_SI.js │ │ │ │ │ ├── defaults-sl_SI.min.js │ │ │ │ │ ├── defaults-sv_SE.js │ │ │ │ │ ├── defaults-sv_SE.min.js │ │ │ │ │ ├── defaults-tr_TR.js │ │ │ │ │ ├── defaults-tr_TR.min.js │ │ │ │ │ ├── defaults-ua_UA.js │ │ │ │ │ ├── defaults-ua_UA.min.js │ │ │ │ │ ├── defaults-zh_CN.js │ │ │ │ │ ├── defaults-zh_CN.min.js │ │ │ │ │ ├── defaults-zh_TW.js │ │ │ │ │ └── defaults-zh_TW.min.js │ │ │ ├── examples.md │ │ │ ├── index.md │ │ │ ├── methods.md │ │ │ ├── options.md │ │ │ └── playground │ │ │ │ ├── index.html │ │ │ │ ├── plnkrOpener.js │ │ │ │ └── test.html │ │ └── mkdocs.yml │ ├── js │ │ ├── .jshintrc │ │ ├── bootstrap-select.js │ │ └── i18n │ │ │ ├── defaults-ar_AR.js │ │ │ ├── defaults-bg_BG.js │ │ │ ├── defaults-cro_CRO.js │ │ │ ├── defaults-cs_CZ.js │ │ │ ├── defaults-da_DK.js │ │ │ ├── defaults-de_DE.js │ │ │ ├── defaults-en_US.js │ │ │ ├── defaults-es_CL.js │ │ │ ├── defaults-es_ES.js │ │ │ ├── defaults-eu.js │ │ │ ├── defaults-fa_IR.js │ │ │ ├── defaults-fi_FI.js │ │ │ ├── defaults-fr_FR.js │ │ │ ├── defaults-hu_HU.js │ │ │ ├── defaults-id_ID.js │ │ │ ├── defaults-it_IT.js │ │ │ ├── defaults-ko_KR.js │ │ │ ├── defaults-lt_LT.js │ │ │ ├── defaults-nb_NO.js │ │ │ ├── defaults-nl_NL.js │ │ │ ├── defaults-pl_PL.js │ │ │ ├── defaults-pt_BR.js │ │ │ ├── defaults-pt_PT.js │ │ │ ├── defaults-ro_RO.js │ │ │ ├── defaults-ru_RU.js │ │ │ ├── defaults-sk_SK.js │ │ │ ├── defaults-sl_SI.js │ │ │ ├── defaults-sv_SE.js │ │ │ ├── defaults-tr_TR.js │ │ │ ├── defaults-ua_UA.js │ │ │ ├── defaults-zh_CN.js │ │ │ └── defaults-zh_TW.js │ ├── less │ │ ├── bootstrap-select.less │ │ └── variables.less │ ├── nuget │ │ ├── MyGet.ps1 │ │ └── bootstrap-select.nuspec │ ├── package.json │ ├── sass │ │ ├── bootstrap-select.scss │ │ └── variables.scss │ └── test.html ├── bootstrap │ ├── css │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.min.js │ │ └── npm.js ├── ckeditor │ ├── CHANGES.md │ ├── LICENSE.md │ ├── README.md │ ├── adapters │ │ └── jquery.js │ ├── build-config.js │ ├── ckeditor.js │ ├── config.js │ ├── contents.css │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugins │ │ ├── a11yhelp │ │ │ └── dialogs │ │ │ │ ├── a11yhelp.js │ │ │ │ └── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ ├── about │ │ │ └── dialogs │ │ │ │ ├── about.js │ │ │ │ ├── hidpi │ │ │ │ └── logo_ckeditor.png │ │ │ │ └── logo_ckeditor.png │ │ ├── clipboard │ │ │ └── dialogs │ │ │ │ └── paste.js │ │ ├── codemirror │ │ │ ├── css │ │ │ │ └── codemirror.min.css │ │ │ ├── icons │ │ │ │ ├── autocomplete.png │ │ │ │ ├── autoformat.png │ │ │ │ ├── commentselectedrange.png │ │ │ │ ├── searchcode.png │ │ │ │ └── uncommentselectedrange.png │ │ │ ├── js │ │ │ │ ├── beautify.min.js │ │ │ │ ├── codemirror.addons.min.js │ │ │ │ ├── codemirror.addons.search.min.js │ │ │ │ ├── codemirror.min.js │ │ │ │ ├── codemirror.mode.bbcode.min.js │ │ │ │ ├── codemirror.mode.bbcodemixed.min.js │ │ │ │ ├── codemirror.mode.htmlmixed.min.js │ │ │ │ ├── codemirror.mode.javascript.min.js │ │ │ │ └── codemirror.mode.php.min.js │ │ │ ├── lang │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ ├── plugin.js │ │ │ └── theme │ │ │ │ ├── 3024-day.css │ │ │ │ ├── 3024-night.css │ │ │ │ ├── ambiance-mobile.css │ │ │ │ ├── ambiance.css │ │ │ │ ├── base16-dark.css │ │ │ │ ├── base16-light.css │ │ │ │ ├── blackboard.css │ │ │ │ ├── cobalt.css │ │ │ │ ├── colorforth.css │ │ │ │ ├── eclipse.css │ │ │ │ ├── elegant.css │ │ │ │ ├── erlang-dark.css │ │ │ │ ├── lesser-dark.css │ │ │ │ ├── liquibyte.css │ │ │ │ ├── mbo.css │ │ │ │ ├── mdn-like.css │ │ │ │ ├── midnight.css │ │ │ │ ├── monokai.css │ │ │ │ ├── neat.css │ │ │ │ ├── neo.css │ │ │ │ ├── night.css │ │ │ │ ├── paraiso-dark.css │ │ │ │ ├── paraiso-light.css │ │ │ │ ├── pastel-on-dark.css │ │ │ │ ├── rubyblue.css │ │ │ │ ├── solarized.css │ │ │ │ ├── the-matrix.css │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ ├── ttcn.css │ │ │ │ ├── twilight.css │ │ │ │ ├── vibrant-ink.css │ │ │ │ ├── xq-dark.css │ │ │ │ ├── xq-light.css │ │ │ │ └── zenburn.css │ │ ├── colordialog │ │ │ └── dialogs │ │ │ │ └── colordialog.js │ │ ├── dialog │ │ │ └── dialogDefinition.js │ │ ├── div │ │ │ └── dialogs │ │ │ │ └── div.js │ │ ├── find │ │ │ └── dialogs │ │ │ │ └── find.js │ │ ├── flash │ │ │ ├── dialogs │ │ │ │ └── flash.js │ │ │ └── images │ │ │ │ └── placeholder.png │ │ ├── forms │ │ │ ├── dialogs │ │ │ │ ├── button.js │ │ │ │ ├── checkbox.js │ │ │ │ ├── form.js │ │ │ │ ├── hiddenfield.js │ │ │ │ ├── radio.js │ │ │ │ ├── select.js │ │ │ │ ├── textarea.js │ │ │ │ └── textfield.js │ │ │ └── images │ │ │ │ └── hiddenfield.gif │ │ ├── icons.png │ │ ├── icons_hidpi.png │ │ ├── iframe │ │ │ ├── dialogs │ │ │ │ └── iframe.js │ │ │ └── images │ │ │ │ └── placeholder.png │ │ ├── image │ │ │ ├── dialogs │ │ │ │ └── image.js │ │ │ └── images │ │ │ │ └── noimage.png │ │ ├── link │ │ │ ├── dialogs │ │ │ │ ├── anchor.js │ │ │ │ └── link.js │ │ │ └── images │ │ │ │ ├── anchor.png │ │ │ │ └── hidpi │ │ │ │ └── anchor.png │ │ ├── liststyle │ │ │ └── dialogs │ │ │ │ └── liststyle.js │ │ ├── magicline │ │ │ └── images │ │ │ │ ├── hidpi │ │ │ │ ├── icon-rtl.png │ │ │ │ └── icon.png │ │ │ │ ├── icon-rtl.png │ │ │ │ └── icon.png │ │ ├── pagebreak │ │ │ └── images │ │ │ │ └── pagebreak.gif │ │ ├── pastefromword │ │ │ └── filter │ │ │ │ └── default.js │ │ ├── preview │ │ │ └── preview.html │ │ ├── scayt │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── dialogs │ │ │ │ ├── options.js │ │ │ │ └── toolbar.css │ │ ├── showblocks │ │ │ └── images │ │ │ │ ├── block_address.png │ │ │ │ ├── block_blockquote.png │ │ │ │ ├── block_div.png │ │ │ │ ├── block_h1.png │ │ │ │ ├── block_h2.png │ │ │ │ ├── block_h3.png │ │ │ │ ├── block_h4.png │ │ │ │ ├── block_h5.png │ │ │ │ ├── block_h6.png │ │ │ │ ├── block_p.png │ │ │ │ └── block_pre.png │ │ ├── smiley │ │ │ ├── dialogs │ │ │ │ └── smiley.js │ │ │ └── images │ │ │ │ ├── angel_smile.gif │ │ │ │ ├── angel_smile.png │ │ │ │ ├── angry_smile.gif │ │ │ │ ├── angry_smile.png │ │ │ │ ├── broken_heart.gif │ │ │ │ ├── broken_heart.png │ │ │ │ ├── confused_smile.gif │ │ │ │ ├── confused_smile.png │ │ │ │ ├── cry_smile.gif │ │ │ │ ├── cry_smile.png │ │ │ │ ├── devil_smile.gif │ │ │ │ ├── devil_smile.png │ │ │ │ ├── embaressed_smile.gif │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ ├── embarrassed_smile.png │ │ │ │ ├── envelope.gif │ │ │ │ ├── envelope.png │ │ │ │ ├── heart.gif │ │ │ │ ├── heart.png │ │ │ │ ├── kiss.gif │ │ │ │ ├── kiss.png │ │ │ │ ├── lightbulb.gif │ │ │ │ ├── lightbulb.png │ │ │ │ ├── omg_smile.gif │ │ │ │ ├── omg_smile.png │ │ │ │ ├── regular_smile.gif │ │ │ │ ├── regular_smile.png │ │ │ │ ├── sad_smile.gif │ │ │ │ ├── sad_smile.png │ │ │ │ ├── shades_smile.gif │ │ │ │ ├── shades_smile.png │ │ │ │ ├── teeth_smile.gif │ │ │ │ ├── teeth_smile.png │ │ │ │ ├── thumbs_down.gif │ │ │ │ ├── thumbs_down.png │ │ │ │ ├── thumbs_up.gif │ │ │ │ ├── thumbs_up.png │ │ │ │ ├── tongue_smile.gif │ │ │ │ ├── tongue_smile.png │ │ │ │ ├── tounge_smile.gif │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ ├── whatchutalkingabout_smile.png │ │ │ │ ├── wink_smile.gif │ │ │ │ └── wink_smile.png │ │ ├── specialchar │ │ │ └── dialogs │ │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ │ └── specialchar.js │ │ ├── table │ │ │ └── dialogs │ │ │ │ └── table.js │ │ ├── tabletools │ │ │ └── dialogs │ │ │ │ └── tableCell.js │ │ ├── templates │ │ │ ├── dialogs │ │ │ │ ├── templates.css │ │ │ │ └── templates.js │ │ │ └── templates │ │ │ │ ├── default.js │ │ │ │ └── images │ │ │ │ ├── template1.gif │ │ │ │ ├── template2.gif │ │ │ │ └── template3.gif │ │ └── wsc │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── dialogs │ │ │ ├── ciframe.html │ │ │ ├── tmpFrameset.html │ │ │ ├── wsc.css │ │ │ ├── wsc.js │ │ │ └── wsc_ie.js │ ├── samples │ │ ├── css │ │ │ └── samples.css │ │ ├── img │ │ │ ├── github-top.png │ │ │ ├── header-bg.png │ │ │ ├── header-separator.png │ │ │ ├── logo.png │ │ │ └── navigation-tip.png │ │ ├── index.html │ │ ├── js │ │ │ ├── sample.js │ │ │ └── sf.js │ │ ├── old │ │ │ ├── ajax.html │ │ │ ├── api.html │ │ │ ├── appendto.html │ │ │ ├── assets │ │ │ │ ├── inlineall │ │ │ │ │ └── logo.png │ │ │ │ ├── outputxhtml │ │ │ │ │ └── outputxhtml.css │ │ │ │ ├── posteddata.php │ │ │ │ ├── sample.jpg │ │ │ │ └── uilanguages │ │ │ │ │ └── languages.js │ │ │ ├── datafiltering.html │ │ │ ├── dialog │ │ │ │ ├── assets │ │ │ │ │ └── my_dialog.js │ │ │ │ └── dialog.html │ │ │ ├── divreplace.html │ │ │ ├── enterkey │ │ │ │ └── enterkey.html │ │ │ ├── htmlwriter │ │ │ │ ├── assets │ │ │ │ │ └── outputforflash │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ └── swfobject.js │ │ │ │ ├── outputforflash.html │ │ │ │ └── outputhtml.html │ │ │ ├── index.html │ │ │ ├── inlineall.html │ │ │ ├── inlinebycode.html │ │ │ ├── inlinetextarea.html │ │ │ ├── jquery.html │ │ │ ├── magicline │ │ │ │ └── magicline.html │ │ │ ├── readonly.html │ │ │ ├── replacebyclass.html │ │ │ ├── replacebycode.html │ │ │ ├── sample.css │ │ │ ├── sample.js │ │ │ ├── sample_posteddata.php │ │ │ ├── tabindex.html │ │ │ ├── toolbar │ │ │ │ └── toolbar.html │ │ │ ├── uicolor.html │ │ │ ├── uilanguages.html │ │ │ ├── wysiwygarea │ │ │ │ └── fullpage.html │ │ │ └── xhtmlstyle.html │ │ └── toolbarconfigurator │ │ │ ├── css │ │ │ └── fontello.css │ │ │ ├── font │ │ │ ├── LICENSE.txt │ │ │ ├── config.json │ │ │ ├── fontello.eot │ │ │ ├── fontello.svg │ │ │ ├── fontello.ttf │ │ │ └── fontello.woff │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── abstracttoolbarmodifier.js │ │ │ ├── fulltoolbareditor.js │ │ │ ├── toolbarmodifier.js │ │ │ └── toolbartextmodifier.js │ │ │ └── lib │ │ │ └── codemirror │ │ │ ├── LICENSE │ │ │ ├── codemirror.css │ │ │ ├── codemirror.js │ │ │ ├── javascript.js │ │ │ ├── neo.css │ │ │ ├── show-hint.css │ │ │ └── show-hint.js │ ├── skins │ │ ├── moono │ │ │ ├── dialog.css │ │ │ ├── dialog_ie.css │ │ │ ├── dialog_ie7.css │ │ │ ├── dialog_ie8.css │ │ │ ├── dialog_iequirks.css │ │ │ ├── editor.css │ │ │ ├── editor_gecko.css │ │ │ ├── editor_ie.css │ │ │ ├── editor_ie7.css │ │ │ ├── editor_ie8.css │ │ │ ├── editor_iequirks.css │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ └── spinner.gif │ │ │ └── readme.md │ │ └── moonocolor │ │ │ ├── dialog.css │ │ │ ├── dialog_ie.css │ │ │ ├── dialog_ie7.css │ │ │ ├── dialog_ie8.css │ │ │ ├── dialog_iequirks.css │ │ │ ├── editor.css │ │ │ ├── editor_gecko.css │ │ │ ├── editor_ie.css │ │ │ ├── editor_ie7.css │ │ │ ├── editor_ie8.css │ │ │ ├── editor_iequirks.css │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── images │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ ├── hidpi │ │ │ │ ├── close.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ ├── lock-open.png │ │ │ ├── lock.png │ │ │ ├── refresh.png │ │ │ └── spinner.gif │ │ │ └── readme.md │ └── styles.js ├── font-awesome-4.7.0 │ ├── HELP-US-OUT.txt │ ├── css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── less │ │ ├── animated.less │ │ ├── bordered-pulled.less │ │ ├── core.less │ │ ├── fixed-width.less │ │ ├── font-awesome.less │ │ ├── icons.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── mixins.less │ │ ├── path.less │ │ ├── rotated-flipped.less │ │ ├── screen-reader.less │ │ ├── stacked.less │ │ └── variables.less │ └── scss │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _path.scss │ │ ├── _rotated-flipped.scss │ │ ├── _screen-reader.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ └── font-awesome.scss ├── font-awesome │ ├── css │ │ └── font-awesome.min.css │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 ├── highcharts │ ├── css │ │ └── highcharts.css │ ├── highcharts-3d.js │ ├── highcharts-3d.js.map │ ├── highcharts-3d.src.js │ ├── highcharts-more.js │ ├── highcharts-more.js.map │ ├── highcharts-more.src.js │ ├── highcharts.js │ ├── highcharts.js.map │ ├── highcharts.src.js │ ├── highmaps.js.map │ ├── highstock.js.map │ ├── js │ │ ├── highcharts-3d.js │ │ ├── highcharts-3d.js.map │ │ ├── highcharts-3d.src.js │ │ ├── highcharts-more.js │ │ ├── highcharts-more.js.map │ │ ├── highcharts-more.src.js │ │ ├── highcharts.js │ │ ├── highcharts.js.map │ │ ├── highcharts.src.js │ │ ├── highmaps.js.map │ │ ├── highstock.js.map │ │ ├── modules │ │ │ ├── accessibility.js │ │ │ ├── accessibility.js.map │ │ │ ├── accessibility.src.js │ │ │ ├── annotations.js │ │ │ ├── annotations.js.map │ │ │ ├── annotations.src.js │ │ │ ├── boost-canvas.js │ │ │ ├── boost-canvas.js.map │ │ │ ├── boost-canvas.src.js │ │ │ ├── boost.js │ │ │ ├── boost.js.map │ │ │ ├── boost.src.js │ │ │ ├── broken-axis.js │ │ │ ├── broken-axis.js.map │ │ │ ├── broken-axis.src.js │ │ │ ├── canvasrenderer.experimental.js.map │ │ │ ├── data.js │ │ │ ├── data.js.map │ │ │ ├── data.src.js │ │ │ ├── drilldown.js │ │ │ ├── drilldown.js.map │ │ │ ├── drilldown.src.js │ │ │ ├── export-data.js │ │ │ ├── export-data.js.map │ │ │ ├── export-data.src.js │ │ │ ├── exporting.js │ │ │ ├── exporting.js.map │ │ │ ├── exporting.src.js │ │ │ ├── funnel.js │ │ │ ├── funnel.js.map │ │ │ ├── funnel.src.js │ │ │ ├── gantt.js │ │ │ ├── gantt.js.map │ │ │ ├── gantt.src.js │ │ │ ├── grid-axis.js │ │ │ ├── grid-axis.js.map │ │ │ ├── grid-axis.src.js │ │ │ ├── heatmap.js │ │ │ ├── heatmap.js.map │ │ │ ├── heatmap.src.js │ │ │ ├── map-parser.js.map │ │ │ ├── map.js.map │ │ │ ├── no-data-to-display.js │ │ │ ├── no-data-to-display.js.map │ │ │ ├── no-data-to-display.src.js │ │ │ ├── offline-exporting.js │ │ │ ├── offline-exporting.js.map │ │ │ ├── offline-exporting.src.js │ │ │ ├── overlapping-datalabels.js │ │ │ ├── overlapping-datalabels.js.map │ │ │ ├── overlapping-datalabels.src.js │ │ │ ├── series-label.js │ │ │ ├── series-label.js.map │ │ │ ├── series-label.src.js │ │ │ ├── solid-gauge.js │ │ │ ├── solid-gauge.js.map │ │ │ ├── solid-gauge.src.js │ │ │ ├── static-scale.js │ │ │ ├── static-scale.js.map │ │ │ ├── static-scale.src.js │ │ │ ├── stock.js │ │ │ ├── stock.js.map │ │ │ ├── stock.src.js │ │ │ ├── treemap.js │ │ │ ├── treemap.js.map │ │ │ ├── treemap.src.js │ │ │ ├── xrange-series.js │ │ │ ├── xrange-series.js.map │ │ │ └── xrange-series.src.js │ │ └── themes │ │ │ ├── dark-blue.js │ │ │ ├── dark-green.js │ │ │ ├── dark-unica.js │ │ │ ├── gray.js │ │ │ ├── grid-light.js │ │ │ ├── grid.js │ │ │ ├── sand-signika.js │ │ │ └── skies.js │ ├── lib │ │ ├── canvg.js │ │ ├── canvg.src.js │ │ ├── jspdf.js │ │ ├── jspdf.src.js │ │ ├── rgbcolor.js │ │ ├── rgbcolor.src.js │ │ ├── svg2pdf.js │ │ └── svg2pdf.src.js │ ├── modules │ │ ├── accessibility.js │ │ ├── accessibility.js.map │ │ ├── accessibility.src.js │ │ ├── annotations.js │ │ ├── annotations.js.map │ │ ├── annotations.src.js │ │ ├── boost-canvas.js │ │ ├── boost-canvas.js.map │ │ ├── boost-canvas.src.js │ │ ├── boost.js │ │ ├── boost.js.map │ │ ├── boost.src.js │ │ ├── broken-axis.js │ │ ├── broken-axis.js.map │ │ ├── broken-axis.src.js │ │ ├── canvasrenderer.experimental.js.map │ │ ├── data.js │ │ ├── data.js.map │ │ ├── data.src.js │ │ ├── drilldown.js │ │ ├── drilldown.js.map │ │ ├── drilldown.src.js │ │ ├── export-data.js │ │ ├── export-data.js.map │ │ ├── export-data.src.js │ │ ├── exporting.js │ │ ├── exporting.js.map │ │ ├── exporting.src.js │ │ ├── funnel.js │ │ ├── funnel.js.map │ │ ├── funnel.src.js │ │ ├── gantt.js │ │ ├── gantt.js.map │ │ ├── gantt.src.js │ │ ├── grid-axis.js │ │ ├── grid-axis.js.map │ │ ├── grid-axis.src.js │ │ ├── heatmap.js │ │ ├── heatmap.js.map │ │ ├── heatmap.src.js │ │ ├── map-parser.js.map │ │ ├── map.js.map │ │ ├── no-data-to-display.js │ │ ├── no-data-to-display.js.map │ │ ├── no-data-to-display.src.js │ │ ├── offline-exporting.js │ │ ├── offline-exporting.js.map │ │ ├── offline-exporting.src.js │ │ ├── overlapping-datalabels.js │ │ ├── overlapping-datalabels.js.map │ │ ├── overlapping-datalabels.src.js │ │ ├── series-label.js │ │ ├── series-label.js.map │ │ ├── series-label.src.js │ │ ├── solid-gauge.js │ │ ├── solid-gauge.js.map │ │ ├── solid-gauge.src.js │ │ ├── static-scale.js │ │ ├── static-scale.js.map │ │ ├── static-scale.src.js │ │ ├── stock.js │ │ ├── stock.js.map │ │ ├── stock.src.js │ │ ├── treemap.js │ │ ├── treemap.js.map │ │ ├── treemap.src.js │ │ ├── xrange-series.js │ │ ├── xrange-series.js.map │ │ └── xrange-series.src.js │ ├── readme.txt │ └── themes │ │ ├── dark-blue.js │ │ ├── dark-green.js │ │ ├── dark-unica.js │ │ ├── gray.js │ │ ├── grid-light.js │ │ ├── grid.js │ │ ├── sand-signika.js │ │ └── skies.js ├── jquery │ ├── jquery-ui-1.12.1.custom │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── external │ │ │ └── jquery │ │ │ │ └── jquery.js │ │ ├── images │ │ │ ├── ui-icons_444444_256x240.png │ │ │ ├── ui-icons_555555_256x240.png │ │ │ ├── ui-icons_777620_256x240.png │ │ │ ├── ui-icons_777777_256x240.png │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── index.html │ │ ├── jquery-ui.css │ │ ├── jquery-ui.js │ │ ├── jquery-ui.min.css │ │ ├── jquery-ui.min.js │ │ ├── jquery-ui.structure.css │ │ ├── jquery-ui.structure.min.css │ │ ├── jquery-ui.theme.css │ │ ├── jquery-ui.theme.min.css │ │ └── package.json │ └── jquery.min.js ├── plugins │ ├── bootbox.min.js │ ├── jquery.eqheight.js │ ├── math.min.js │ └── placeholders.min.js ├── psd │ ├── customers-label.psd │ ├── fbCover.psd │ ├── fbLogo.psd │ ├── first-mac.psd │ ├── home_steps.psd │ ├── pm-subpages.psd │ ├── pmInvoice-Logo.psd │ ├── responsive.psd │ └── support-image.psd ├── public │ ├── css │ │ ├── general.css │ │ ├── stabilizator_bg.css │ │ ├── stabilizator_en.css │ │ └── stabilizator_fr.css │ └── js │ │ └── general.js ├── tagsinput │ ├── bootstrap-tagsinput.css │ └── bootstrap-tagsinput.js └── users │ ├── css │ ├── bill-of-lading-templates.css │ ├── general.css │ ├── invoices-templates.css │ ├── protocols-templates.css │ └── warranty-cards-templates.css │ ├── imgs │ ├── notok.png │ ├── pages-delivery.png │ ├── paypal-pay-now.png │ └── sprite-icons.png │ └── js │ └── general.js ├── attachments └── featuresimages │ ├── Warranty-Certificate-Template.png │ ├── inventory-management-software.png │ ├── inventory-management-software1.png │ ├── inventory-management-software2.png │ └── priemo-predavatelen-protokol.gif ├── database.sql ├── design ├── public │ ├── card_icons.psd │ └── first-mac.psd └── user │ ├── CMS.jpg │ ├── CMS.psd │ ├── Fonts │ └── OpenSans-Regular_A.ttf │ ├── create_invoice_page.png │ ├── design_of_invoice.png │ ├── design_of_invoices_list.png │ ├── sprite-icons.psd │ └── stats.png ├── index.php ├── pdfs.log └── system ├── .htaccess ├── core ├── Benchmark.php ├── CodeIgniter.php ├── Common.php ├── Config.php ├── Controller.php ├── Exceptions.php ├── Hooks.php ├── Input.php ├── Lang.php ├── Loader.php ├── Log.php ├── Model.php ├── Output.php ├── Router.php ├── Security.php ├── URI.php ├── Utf8.php ├── compat │ ├── hash.php │ ├── index.html │ ├── mbstring.php │ ├── password.php │ └── standard.php └── index.html ├── database ├── DB.php ├── DB_cache.php ├── DB_driver.php ├── DB_forge.php ├── DB_query_builder.php ├── DB_result.php ├── DB_utility.php ├── drivers │ ├── cubrid │ │ ├── cubrid_driver.php │ │ ├── cubrid_forge.php │ │ ├── cubrid_result.php │ │ ├── cubrid_utility.php │ │ └── index.html │ ├── ibase │ │ ├── ibase_driver.php │ │ ├── ibase_forge.php │ │ ├── ibase_result.php │ │ ├── ibase_utility.php │ │ └── index.html │ ├── index.html │ ├── mssql │ │ ├── index.html │ │ ├── mssql_driver.php │ │ ├── mssql_forge.php │ │ ├── mssql_result.php │ │ └── mssql_utility.php │ ├── mysql │ │ ├── index.html │ │ ├── mysql_driver.php │ │ ├── mysql_forge.php │ │ ├── mysql_result.php │ │ └── mysql_utility.php │ ├── mysqli │ │ ├── index.html │ │ ├── mysqli_driver.php │ │ ├── mysqli_forge.php │ │ ├── mysqli_result.php │ │ └── mysqli_utility.php │ ├── oci8 │ │ ├── index.html │ │ ├── oci8_driver.php │ │ ├── oci8_forge.php │ │ ├── oci8_result.php │ │ └── oci8_utility.php │ ├── odbc │ │ ├── index.html │ │ ├── odbc_driver.php │ │ ├── odbc_forge.php │ │ ├── odbc_result.php │ │ └── odbc_utility.php │ ├── pdo │ │ ├── index.html │ │ ├── pdo_driver.php │ │ ├── pdo_forge.php │ │ ├── pdo_result.php │ │ ├── pdo_utility.php │ │ └── subdrivers │ │ │ ├── index.html │ │ │ ├── pdo_4d_driver.php │ │ │ ├── pdo_4d_forge.php │ │ │ ├── pdo_cubrid_driver.php │ │ │ ├── pdo_cubrid_forge.php │ │ │ ├── pdo_dblib_driver.php │ │ │ ├── pdo_dblib_forge.php │ │ │ ├── pdo_firebird_driver.php │ │ │ ├── pdo_firebird_forge.php │ │ │ ├── pdo_ibm_driver.php │ │ │ ├── pdo_ibm_forge.php │ │ │ ├── pdo_informix_driver.php │ │ │ ├── pdo_informix_forge.php │ │ │ ├── pdo_mysql_driver.php │ │ │ ├── pdo_mysql_forge.php │ │ │ ├── pdo_oci_driver.php │ │ │ ├── pdo_oci_forge.php │ │ │ ├── pdo_odbc_driver.php │ │ │ ├── pdo_odbc_forge.php │ │ │ ├── pdo_pgsql_driver.php │ │ │ ├── pdo_pgsql_forge.php │ │ │ ├── pdo_sqlite_driver.php │ │ │ ├── pdo_sqlite_forge.php │ │ │ ├── pdo_sqlsrv_driver.php │ │ │ └── pdo_sqlsrv_forge.php │ ├── postgre │ │ ├── index.html │ │ ├── postgre_driver.php │ │ ├── postgre_forge.php │ │ ├── postgre_result.php │ │ └── postgre_utility.php │ ├── sqlite │ │ ├── index.html │ │ ├── sqlite_driver.php │ │ ├── sqlite_forge.php │ │ ├── sqlite_result.php │ │ └── sqlite_utility.php │ ├── sqlite3 │ │ ├── index.html │ │ ├── sqlite3_driver.php │ │ ├── sqlite3_forge.php │ │ ├── sqlite3_result.php │ │ └── sqlite3_utility.php │ └── sqlsrv │ │ ├── index.html │ │ ├── sqlsrv_driver.php │ │ ├── sqlsrv_forge.php │ │ ├── sqlsrv_result.php │ │ └── sqlsrv_utility.php └── index.html ├── fonts ├── index.html └── texb.ttf ├── helpers ├── array_helper.php ├── captcha_helper.php ├── cookie_helper.php ├── date_helper.php ├── directory_helper.php ├── download_helper.php ├── email_helper.php ├── file_helper.php ├── form_helper.php ├── html_helper.php ├── index.html ├── inflector_helper.php ├── language_helper.php ├── number_helper.php ├── path_helper.php ├── security_helper.php ├── smiley_helper.php ├── string_helper.php ├── text_helper.php ├── typography_helper.php ├── url_helper.php └── xml_helper.php ├── index.html ├── language ├── english │ ├── calendar_lang.php │ ├── date_lang.php │ ├── db_lang.php │ ├── email_lang.php │ ├── form_validation_lang.php │ ├── ftp_lang.php │ ├── imglib_lang.php │ ├── index.html │ ├── migration_lang.php │ ├── number_lang.php │ ├── pagination_lang.php │ ├── profiler_lang.php │ ├── unit_test_lang.php │ └── upload_lang.php └── index.html └── libraries ├── Cache ├── Cache.php ├── drivers │ ├── Cache_apc.php │ ├── Cache_dummy.php │ ├── Cache_file.php │ ├── Cache_memcached.php │ ├── Cache_redis.php │ ├── Cache_wincache.php │ └── index.html └── index.html ├── Calendar.php ├── Cart.php ├── Driver.php ├── Email.php ├── Encrypt.php ├── Encryption.php ├── Form_validation.php ├── Ftp.php ├── Image_lib.php ├── Javascript.php ├── Javascript ├── Jquery.php └── index.html ├── Migration.php ├── Pagination.php ├── Parser.php ├── Profiler.php ├── Session ├── CI_Session_driver_interface.php ├── OldSessionWrapper.php ├── PHP8SessionWrapper.php ├── Session.php ├── SessionHandlerInterface.php ├── SessionUpdateTimestampHandlerInterface.php ├── Session_driver.php ├── drivers │ ├── Session_database_driver.php │ ├── Session_files_driver.php │ ├── Session_memcached_driver.php │ ├── Session_redis_driver.php │ └── index.html └── index.html ├── Table.php ├── Trackback.php ├── Typography.php ├── Unit_test.php ├── Upload.php ├── User_agent.php ├── Xmlrpc.php ├── Xmlrpcs.php ├── Zip.php └── index.html /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: kirilkirkov -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine on 2 | 3 | RewriteCond %{REQUEST_FILENAME} !-f 4 | RewriteCond %{REQUEST_FILENAME} !-d 5 | RewriteRule ^(.*)$ index.php?/$1 [L] 6 | 7 | 8 | Header set Access-Control-Allow-Origin * 9 | -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/memcached.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'hostname' => '127.0.0.1', 16 | 'port' => '11211', 17 | 'weight' => '1', 18 | ), 19 | ); 20 | -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/core/HEAD_Controller.php: -------------------------------------------------------------------------------- 1 | output->enable_profiler(ENVIRONMENT == 'development'); 10 | } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /application/core/MY_Loader.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/helpers/except_letters_helper.php: -------------------------------------------------------------------------------- 1 | ', $input); 13 | } else { 14 | $output = $input; 15 | } 16 | ?> 17 |
18 | 19 | 20 | 21 | 22 |
23 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/helpers/lang_url_helper.php: -------------------------------------------------------------------------------- 1 | modify('first day of January ' . date('Y')); 16 | $array['from'] = $date->format('d.m.Y'); 17 | 18 | $date = new DateTime('now'); 19 | $date->modify('last day of December ' . date('Y')); 20 | $array['to'] = $date->format('d.m.Y'); 21 | return $array; 22 | } 23 | -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/bulgarian/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/language/bulgarian/db_lang.php -------------------------------------------------------------------------------- /application/language/bulgarian/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/language/bulgarian/email_lang.php -------------------------------------------------------------------------------- /application/language/bulgarian/form_validation_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/bulgarian/pagination_lang.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /application/language/english/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/language/english/db_lang.php -------------------------------------------------------------------------------- /application/language/english/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/language/english/email_lang.php -------------------------------------------------------------------------------- /application/language/english/form_validation_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/english/pagination_lang.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /application/language/france/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/language/france/db_lang.php -------------------------------------------------------------------------------- /application/language/france/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/language/france/email_lang.php -------------------------------------------------------------------------------- /application/language/france/form_validation_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/france/pagination_lang.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/libraries/PHPExcel/PHPExcel/Chart/Renderer/PHP Charting Libraries.txt: -------------------------------------------------------------------------------- 1 | ChartDirector 2 | http://www.advsofteng.com/cdphp.html 3 | 4 | GraPHPite 5 | http://graphpite.sourceforge.net/ 6 | 7 | JpGraph 8 | http://www.aditus.nu/jpgraph/ 9 | 10 | LibChart 11 | http://naku.dohcrew.com/libchart/pages/introduction/ 12 | 13 | pChart 14 | http://pchart.sourceforge.net/ 15 | 16 | TeeChart 17 | http://www.steema.com/products/teechart/overview.html 18 | 19 | PHPGraphLib 20 | http://www.ebrueggeman.com/phpgraphlib -------------------------------------------------------------------------------- /application/libraries/PHPExcel/PHPExcel/Shared/JAMA/CHANGELOG.TXT: -------------------------------------------------------------------------------- 1 | Mar 1, 2005 11:15 AST by PM 2 | 3 | + For consistency, renamed Math.php to Maths.java, utils to util, 4 | tests to test, docs to doc - 5 | 6 | + Removed conditional logic from top of Matrix class. 7 | 8 | + Switched to using hypo function in Maths.php for all php-hypot calls. 9 | NOTE TO SELF: Need to make sure that all decompositions have been 10 | switched over to using the bundled hypo. 11 | 12 | Feb 25, 2005 at 10:00 AST by PM 13 | 14 | + Recommend using simpler Error.php instead of JAMA_Error.php but 15 | can be persuaded otherwise. 16 | 17 | -------------------------------------------------------------------------------- /application/libraries/PHPMailer/VERSION: -------------------------------------------------------------------------------- 1 | 5.2.24 2 | -------------------------------------------------------------------------------- /application/libraries/PHPMailer/examples/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/PHPMailer/examples/contents.html -------------------------------------------------------------------------------- /application/libraries/PHPMailer/examples/images/phpmailer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/PHPMailer/examples/images/phpmailer.png -------------------------------------------------------------------------------- /application/libraries/PHPMailer/examples/images/phpmailer_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/PHPMailer/examples/images/phpmailer_mini.png -------------------------------------------------------------------------------- /application/libraries/PHPMailer/examples/styles/wrapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/PHPMailer/examples/styles/wrapping.png -------------------------------------------------------------------------------- /application/libraries/dompdf/VERSION: -------------------------------------------------------------------------------- 1 | $Format:<%h>$ 2 | -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/DejaVuSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/DejaVuSans-Bold.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/DejaVuSans-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/DejaVuSans-BoldOblique.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/DejaVuSans-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/DejaVuSans-Oblique.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/DejaVuSans.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/DejaVuSansMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/DejaVuSansMono-Bold.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/DejaVuSansMono-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/DejaVuSansMono-BoldOblique.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/DejaVuSansMono-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/DejaVuSansMono-Oblique.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/DejaVuSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/DejaVuSansMono.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/DejaVuSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/DejaVuSerif-Bold.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/DejaVuSerif-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/DejaVuSerif-BoldItalic.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/DejaVuSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/DejaVuSerif-Italic.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/DejaVuSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/DejaVuSerif.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/dejavu_sans_normal_b851f57bf3783ae5089a634872aa8ce8.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/dejavu_sans_normal_b851f57bf3783ae5089a634872aa8ce8.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/dejavu_sans_normal_da52e5b8c125dc4342e1d9c6baf20f36.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/dejavu_sans_normal_da52e5b8c125dc4342e1d9c6baf20f36.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/dejavu_sans_normal_ed376817aaa57868462795ac20ea25fb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/dejavu_sans_normal_ed376817aaa57868462795ac20ea25fb.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/php-css-parser/src/Comment/Commentable.php: -------------------------------------------------------------------------------- 1 | $aComments 9 | * 10 | * @return void 11 | */ 12 | public function addComments(array $aComments); 13 | 14 | /** 15 | * @return array 16 | */ 17 | public function getComments(); 18 | 19 | /** 20 | * @param array $aComments 21 | * 22 | * @return void 23 | */ 24 | public function setComments(array $aComments); 25 | } 26 | -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/php-css-parser/src/Parsing/OutputException.php: -------------------------------------------------------------------------------- 1 | implode(' ', $this->aComponents); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/php-css-parser/src/Value/PrimitiveValue.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/php-font-lib/src/FontLib/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/php-font-lib/src/FontLib/Autoloader.php -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/php-font-lib/src/FontLib/Exception/FontNotFoundException.php: -------------------------------------------------------------------------------- 1 | message = 'Font not found in: ' . $fontPath; 10 | } 11 | } -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/php-font-lib/src/FontLib/OpenType/File.php: -------------------------------------------------------------------------------- 1 | 6 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 7 | */ 8 | 9 | namespace FontLib\OpenType; 10 | 11 | /** 12 | * Open Type font, the same as a TrueType one. 13 | * 14 | * @package php-font-lib 15 | */ 16 | class File extends \FontLib\TrueType\File { 17 | // 18 | } 19 | -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/php-font-lib/src/FontLib/OpenType/TableDirectoryEntry.php: -------------------------------------------------------------------------------- 1 | 6 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 7 | */ 8 | 9 | namespace FontLib\OpenType; 10 | 11 | /** 12 | * Open Type Table directory entry, the same as a TrueType one. 13 | * 14 | * @package php-font-lib 15 | */ 16 | class TableDirectoryEntry extends \FontLib\TrueType\TableDirectoryEntry { 17 | 18 | } 19 | -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/php-svg-lib/src/Svg/Gradient/Stop.php: -------------------------------------------------------------------------------- 1 | 6 | * @license GNU LGPLv3+ http://www.gnu.org/copyleft/lesser.html 7 | */ 8 | 9 | namespace Svg\Gradient; 10 | 11 | class Stop 12 | { 13 | public $offset; 14 | public $color; 15 | public $opacity = 1.0; 16 | } 17 | -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/php-svg-lib/src/Svg/Tag/Anchor.php: -------------------------------------------------------------------------------- 1 | 6 | * @license GNU LGPLv3+ http://www.gnu.org/copyleft/lesser.html 7 | */ 8 | 9 | namespace Svg\Tag; 10 | 11 | class Anchor extends Group 12 | { 13 | 14 | } 15 | -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/php-svg-lib/src/Svg/Tag/RadialGradient.php: -------------------------------------------------------------------------------- 1 | 6 | * @license GNU LGPLv3+ http://www.gnu.org/copyleft/lesser.html 7 | */ 8 | 9 | namespace Svg\Tag; 10 | 11 | class RadialGradient extends AbstractTag 12 | { 13 | public function start($attributes) 14 | { 15 | 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/php-svg-lib/src/Svg/Tag/Stop.php: -------------------------------------------------------------------------------- 1 | 6 | * @license GNU LGPLv3+ http://www.gnu.org/copyleft/lesser.html 7 | */ 8 | 9 | namespace Svg\Tag; 10 | 11 | class Stop extends AbstractTag 12 | { 13 | public function start($attributes) 14 | { 15 | 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/php-svg-lib/src/autoload.php: -------------------------------------------------------------------------------- 1 | 6 | * @license GNU LGPLv3+ http://www.gnu.org/copyleft/lesser.html 7 | */ 8 | 9 | spl_autoload_register(function($class) { 10 | if (0 === strpos($class, "Svg")) { 11 | $file = str_replace('\\', DIRECTORY_SEPARATOR, $class); 12 | $file = realpath(__DIR__ . DIRECTORY_SEPARATOR . $file . '.php'); 13 | if (file_exists($file)) { 14 | include_once $file; 15 | } 16 | } 17 | }); -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/res/broken_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/res/broken_image.png -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/res/broken_image.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /application/libraries/dompdf/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | tests 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/logs/log-2017-08-25.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | ERROR - 2017-08-25 10:11:01 --> 404 Page Not Found: /index 4 | ERROR - 2017-08-25 10:11:01 --> 404 Page Not Found: /index 5 | -------------------------------------------------------------------------------- /application/logs/log-2017-08-28.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | ERROR - 2017-08-28 12:24:43 --> 404 Page Not Found: /index 4 | ERROR - 2017-08-28 12:24:43 --> Severity: Core Warning --> PHP Startup: Unable to load dynamic library '/usr/lib/php/20131226/php_intl.dll' - /usr/lib/php/20131226/php_intl.dll: cannot open shared object file: No such file or directory Unknown 0 5 | -------------------------------------------------------------------------------- /application/logs/log-2017-09-12.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | ERROR - 2017-09-12 17:56:38 --> Severity: Core Warning --> PHP Startup: Unable to load dynamic library '/usr/lib/php/20131226/php_intl.dll' - /usr/lib/php/20131226/php_intl.dll: cannot open shared object file: No such file or directory Unknown 0 4 | ERROR - 2017-09-12 17:56:39 --> 404 Page Not Found: /index 5 | ERROR - 2017-09-12 17:56:39 --> 404 Page Not Found: /index 6 | -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/admin/models/HomeModel.php: -------------------------------------------------------------------------------- 1 | db->query('SELECT * FROM languages'); 14 | return $query; 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /application/modules/admin/views/home/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/modules/admin/views/home/index.php -------------------------------------------------------------------------------- /application/modules/admin/views/parts/general/footer.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /application/modules/admin/views/parts/login/footer.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /application/modules/users/views/home/noSearchResultsHtml.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/parts/invaccept/footer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /assets/admin/js/general.js: -------------------------------------------------------------------------------- 1 | //xs hidden categories 2 | $("#show-xs-nav").click(function () { 3 | $(".sidebar-menu").toggle("slow", function () { 4 | if ($(this).is(":visible") == true) { 5 | $("#show-xs-nav .hidde-sp").show(); 6 | $("#show-xs-nav .show-sp").hide(); 7 | } else { 8 | $("#show-xs-nav .hidde-sp").hide(); 9 | $("#show-xs-nav .show-sp").show(); 10 | } 11 | }); 12 | }); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.ar.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ar={days:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت","الأحد"],daysShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت","أحد"],daysMin:["ح","ن","ث","ع","خ","ج","س","ح"],months:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthsShort:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],today:"هذا اليوم",rtl:!0}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.az.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.az={days:["Bazar","Bazar ertəsi","Çərşənbə axşamı","Çərşənbə","Cümə axşamı","Cümə","Şənbə"],daysShort:["B.","B.e","Ç.a","Ç.","C.a","C.","Ş."],daysMin:["B.","B.e","Ç.a","Ç.","C.a","C.","Ş."],months:["Yanvar","Fevral","Mart","Aprel","May","İyun","İyul","Avqust","Sentyabr","Oktyabr","Noyabr","Dekabr"],monthsShort:["Yan","Fev","Mar","Apr","May","İyun","İyul","Avq","Sen","Okt","Noy","Dek"],today:"Bu gün",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.bg.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.bg={days:["Неделя","Понеделник","Вторник","Сряда","Четвъртък","Петък","Събота"],daysShort:["Нед","Пон","Вто","Сря","Чет","Пет","Съб"],daysMin:["Н","П","В","С","Ч","П","С"],months:["Януари","Февруари","Март","Април","Май","Юни","Юли","Август","Септември","Октомври","Ноември","Декември"],monthsShort:["Ян","Фев","Мар","Апр","Май","Юни","Юли","Авг","Сеп","Окт","Ное","Дек"],today:"днес"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.bs.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.bs={days:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],daysMin:["N","Po","U","Sr","Č","Pe","Su"],months:["Januar","Februar","Mart","April","Maj","Juni","Juli","August","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.ca.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ca={days:["Diumenge","Dilluns","Dimarts","Dimecres","Dijous","Divendres","Dissabte"],daysShort:["Diu","Dil","Dmt","Dmc","Dij","Div","Dis"],daysMin:["dg","dl","dt","dc","dj","dv","ds"],months:["Gener","Febrer","Març","Abril","Maig","Juny","Juliol","Agost","Setembre","Octubre","Novembre","Desembre"],monthsShort:["Gen","Feb","Mar","Abr","Mai","Jun","Jul","Ago","Set","Oct","Nov","Des"],today:"Avui",monthsTitle:"Mesos",clear:"Esborrar",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.cs.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.cs={days:["Neděle","Pondělí","Úterý","Středa","Čtvrtek","Pátek","Sobota"],daysShort:["Ned","Pon","Úte","Stř","Čtv","Pát","Sob"],daysMin:["Ne","Po","Út","St","Čt","Pá","So"],months:["Leden","Únor","Březen","Duben","Květen","Červen","Červenec","Srpen","Září","Říjen","Listopad","Prosinec"],monthsShort:["Led","Úno","Bře","Dub","Kvě","Čer","Čnc","Srp","Zář","Říj","Lis","Pro"],today:"Dnes",clear:"Vymazat",weekStart:1,format:"dd.m.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.cy.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.cy={days:["Sul","Llun","Mawrth","Mercher","Iau","Gwener","Sadwrn"],daysShort:["Sul","Llu","Maw","Mer","Iau","Gwe","Sad"],daysMin:["Su","Ll","Ma","Me","Ia","Gwe","Sa"],months:["Ionawr","Chewfror","Mawrth","Ebrill","Mai","Mehefin","Gorfennaf","Awst","Medi","Hydref","Tachwedd","Rhagfyr"],monthsShort:["Ion","Chw","Maw","Ebr","Mai","Meh","Gor","Aws","Med","Hyd","Tach","Rha"],today:"Heddiw"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.da.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.da={days:["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"],daysShort:["søn","man","tir","ons","tor","fre","lør"],daysMin:["sø","ma","ti","on","to","fr","lø"],months:["januar","februar","marts","april","maj","juni","juli","august","september","oktober","november","december"],monthsShort:["jan","feb","mar","apr","maj","jun","jul","aug","sep","okt","nov","dec"],today:"I Dag",clear:"Nulstil"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.de.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.de={days:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],daysShort:["Son","Mon","Die","Mit","Don","Fre","Sam"],daysMin:["So","Mo","Di","Mi","Do","Fr","Sa"],months:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthsShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],today:"Heute",monthsTitle:"Monate",clear:"Löschen",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.el.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.el={days:["Κυριακή","Δευτέρα","Τρίτη","Τετάρτη","Πέμπτη","Παρασκευή","Σάββατο"],daysShort:["Κυρ","Δευ","Τρι","Τετ","Πεμ","Παρ","Σαβ"],daysMin:["Κυ","Δε","Τρ","Τε","Πε","Πα","Σα"],months:["Ιανουάριος","Φεβρουάριος","Μάρτιος","Απρίλιος","Μάιος","Ιούνιος","Ιούλιος","Αύγουστος","Σεπτέμβριος","Οκτώβριος","Νοέμβριος","Δεκέμβριος"],monthsShort:["Ιαν","Φεβ","Μαρ","Απρ","Μάι","Ιουν","Ιουλ","Αυγ","Σεπ","Οκτ","Νοε","Δεκ"],today:"Σήμερα",clear:"Καθαρισμός",weekStart:1,format:"d/m/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.en-AU.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["en-AU"]={days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],today:"Today",monthsTitle:"Months",clear:"Clear",weekStart:1,format:"d/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.en-GB.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["en-GB"]={days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],today:"Today",monthsTitle:"Months",clear:"Clear",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.eo.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.eo={days:["dimanĉo","lundo","mardo","merkredo","ĵaŭdo","vendredo","sabato"],daysShort:["dim.","lun.","mar.","mer.","ĵaŭ.","ven.","sam."],daysMin:["d","l","ma","me","ĵ","v","s"],months:["januaro","februaro","marto","aprilo","majo","junio","julio","aŭgusto","septembro","oktobro","novembro","decembro"],monthsShort:["jan.","feb.","mar.","apr.","majo","jun.","jul.","aŭg.","sep.","okt.","nov.","dec."],today:"Hodiaŭ",clear:"Nuligi",weekStart:1,format:"yyyy-mm-dd"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.es.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.es={days:["Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado"],daysShort:["Dom","Lun","Mar","Mié","Jue","Vie","Sáb"],daysMin:["Do","Lu","Ma","Mi","Ju","Vi","Sa"],months:["Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre"],monthsShort:["Ene","Feb","Mar","Abr","May","Jun","Jul","Ago","Sep","Oct","Nov","Dic"],today:"Hoy",monthsTitle:"Meses",clear:"Borrar",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.et.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.et={days:["Pühapäev","Esmaspäev","Teisipäev","Kolmapäev","Neljapäev","Reede","Laupäev"],daysShort:["Pühap","Esmasp","Teisip","Kolmap","Neljap","Reede","Laup"],daysMin:["P","E","T","K","N","R","L"],months:["Jaanuar","Veebruar","Märts","Aprill","Mai","Juuni","Juuli","August","September","Oktoober","November","Detsember"],monthsShort:["Jaan","Veebr","Märts","Apr","Mai","Juuni","Juuli","Aug","Sept","Okt","Nov","Dets"],today:"Täna",clear:"Tühjenda",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.eu.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.eu={days:["Igandea","Astelehena","Asteartea","Asteazkena","Osteguna","Ostirala","Larunbata"],daysShort:["Ig","Al","Ar","Az","Og","Ol","Lr"],daysMin:["Ig","Al","Ar","Az","Og","Ol","Lr"],months:["Urtarrila","Otsaila","Martxoa","Apirila","Maiatza","Ekaina","Uztaila","Abuztua","Iraila","Urria","Azaroa","Abendua"],monthsShort:["Urt","Ots","Mar","Api","Mai","Eka","Uzt","Abu","Ira","Urr","Aza","Abe"],today:"Gaur"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.fa.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.fa={days:["یک‌شنبه","دوشنبه","سه‌شنبه","چهارشنبه","پنج‌شنبه","جمعه","شنبه","یک‌شنبه"],daysShort:["یک","دو","سه","چهار","پنج","جمعه","شنبه","یک"],daysMin:["ی","د","س","چ","پ","ج","ش","ی"],months:["ژانویه","فوریه","مارس","آوریل","مه","ژوئن","ژوئیه","اوت","سپتامبر","اکتبر","نوامبر","دسامبر"],monthsShort:["ژان","فور","مار","آور","مه","ژون","ژوی","اوت","سپت","اکت","نوا","دسا"],today:"امروز",clear:"پاک کن",weekStart:1,format:"yyyy/mm/dd"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.fi.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.fi={days:["sunnuntai","maanantai","tiistai","keskiviikko","torstai","perjantai","lauantai"],daysShort:["sun","maa","tii","kes","tor","per","lau"],daysMin:["su","ma","ti","ke","to","pe","la"],months:["tammikuu","helmikuu","maaliskuu","huhtikuu","toukokuu","kesäkuu","heinäkuu","elokuu","syyskuu","lokakuu","marraskuu","joulukuu"],monthsShort:["tam","hel","maa","huh","tou","kes","hei","elo","syy","lok","mar","jou"],today:"tänään",clear:"Tyhjennä",weekStart:1,format:"d.m.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.fo.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.fo={days:["Sunnudagur","Mánadagur","Týsdagur","Mikudagur","Hósdagur","Fríggjadagur","Leygardagur"],daysShort:["Sun","Mán","Týs","Mik","Hós","Frí","Ley"],daysMin:["Su","Má","Tý","Mi","Hó","Fr","Le"],months:["Januar","Februar","Marts","Apríl","Mei","Juni","Juli","August","Septembur","Oktobur","Novembur","Desembur"],monthsShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Aug","Sep","Okt","Nov","Des"],today:"Í Dag",clear:"Reinsa"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.fr-CH.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.fr={days:["Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi"],daysShort:["Dim","Lun","Mar","Mer","Jeu","Ven","Sam"],daysMin:["D","L","Ma","Me","J","V","S"],months:["Janvier","Février","Mars","Avril","Mai","Juin","Juillet","Août","Septembre","Octobre","Novembre","Décembre"],monthsShort:["Jan","Fév","Mar","Avr","Mai","Jui","Jul","Aou","Sep","Oct","Nov","Déc"],today:"Aujourd'hui",monthsTitle:"Mois",clear:"Effacer",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.fr.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.fr={days:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],daysShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],daysMin:["d","l","ma","me","j","v","s"],months:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthsShort:["janv.","févr.","mars","avril","mai","juin","juil.","août","sept.","oct.","nov.","déc."],today:"Aujourd'hui",monthsTitle:"Mois",clear:"Effacer",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.gl.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.gl={days:["Domingo","Luns","Martes","Mércores","Xoves","Venres","Sábado"],daysShort:["Dom","Lun","Mar","Mér","Xov","Ven","Sáb"],daysMin:["Do","Lu","Ma","Me","Xo","Ve","Sa"],months:["Xaneiro","Febreiro","Marzo","Abril","Maio","Xuño","Xullo","Agosto","Setembro","Outubro","Novembro","Decembro"],monthsShort:["Xan","Feb","Mar","Abr","Mai","Xun","Xul","Ago","Sep","Out","Nov","Dec"],today:"Hoxe",clear:"Limpar",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.he.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.he={days:["ראשון","שני","שלישי","רביעי","חמישי","שישי","שבת","ראשון"],daysShort:["א","ב","ג","ד","ה","ו","ש","א"],daysMin:["א","ב","ג","ד","ה","ו","ש","א"],months:["ינואר","פברואר","מרץ","אפריל","מאי","יוני","יולי","אוגוסט","ספטמבר","אוקטובר","נובמבר","דצמבר"],monthsShort:["ינו","פבר","מרץ","אפר","מאי","יונ","יול","אוג","ספט","אוק","נוב","דצמ"],today:"היום",rtl:!0}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.hr.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.hr={days:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],daysMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],months:["Siječanj","Veljača","Ožujak","Travanj","Svibanj","Lipanj","Srpanj","Kolovoz","Rujan","Listopad","Studeni","Prosinac"],monthsShort:["Sij","Velj","Ožu","Tra","Svi","Lip","Srp","Kol","Ruj","Lis","Stu","Pro"],today:"Danas"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.hu.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.hu={days:["vasárnap","hétfő","kedd","szerda","csütörtök","péntek","szombat"],daysShort:["vas","hét","ked","sze","csü","pén","szo"],daysMin:["V","H","K","Sze","Cs","P","Szo"],months:["január","február","március","április","május","június","július","augusztus","szeptember","október","november","december"],monthsShort:["jan","feb","már","ápr","máj","jún","júl","aug","sze","okt","nov","dec"],today:"ma",weekStart:1,clear:"töröl",titleFormat:"yyyy. MM",format:"yyyy.mm.dd"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.hy.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.hy={days:["Կիրակի","Երկուշաբթի","Երեքշաբթի","Չորեքշաբթի","Հինգշաբթի","Ուրբաթ","Շաբաթ"],daysShort:["Կրկ","Երկ","Երք","Չրք","Հնգ","Ուր","Շբթ"],daysMin:["Կրկ","Երկ","Երք","Չրք","Հնգ","Ուր","Շբթ"],months:["Հունվար","Փետրվար","Մարտ","Ապրիլ","Մայիս","Հունիս","Հուլիս","Օգոստոս","Սեպտեմբեր","Հոկտեմբեր","Նոյեմբեր","Դեկտեմբեր"],monthsShort:["Հուն","Փետ","Մար","Ապր","Մայ","Հնս","Հլս","Օգս","Սեպ","Հոկ","Նմբ","Դեկ"],today:"Այսօր",clear:"Ջնջել",format:"dd.mm.yyyy",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.id.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.id={days:["Minggu","Senin","Selasa","Rabu","Kamis","Jumat","Sabtu"],daysShort:["Mgu","Sen","Sel","Rab","Kam","Jum","Sab"],daysMin:["Mg","Sn","Sl","Ra","Ka","Ju","Sa"],months:["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","November","Desember"],monthsShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Ags","Sep","Okt","Nov","Des"],today:"Hari Ini",clear:"Kosongkan"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.is.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.is={days:["Sunnudagur","Mánudagur","Þriðjudagur","Miðvikudagur","Fimmtudagur","Föstudagur","Laugardagur"],daysShort:["Sun","Mán","Þri","Mið","Fim","Fös","Lau"],daysMin:["Su","Má","Þr","Mi","Fi","Fö","La"],months:["Janúar","Febrúar","Mars","Apríl","Maí","Júní","Júlí","Ágúst","September","Október","Nóvember","Desember"],monthsShort:["Jan","Feb","Mar","Apr","Maí","Jún","Júl","Ágú","Sep","Okt","Nóv","Des"],today:"Í Dag"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.it-CH.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.it={days:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"],daysShort:["Dom","Lun","Mar","Mer","Gio","Ven","Sab"],daysMin:["Do","Lu","Ma","Me","Gi","Ve","Sa"],months:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],monthsShort:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],today:"Oggi",clear:"Cancella",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.it.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.it={days:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"],daysShort:["Dom","Lun","Mar","Mer","Gio","Ven","Sab"],daysMin:["Do","Lu","Ma","Me","Gi","Ve","Sa"],months:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],monthsShort:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],today:"Oggi",monthsTitle:"Mesi",clear:"Cancella",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.ja.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ja={days:["日曜","月曜","火曜","水曜","木曜","金曜","土曜"],daysShort:["日","月","火","水","木","金","土"],daysMin:["日","月","火","水","木","金","土"],months:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],monthsShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],today:"今日",format:"yyyy/mm/dd",titleFormat:"yyyy年mm月",clear:"クリア"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.ka.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ka={days:["კვირა","ორშაბათი","სამშაბათი","ოთხშაბათი","ხუთშაბათი","პარასკევი","შაბათი"],daysShort:["კვი","ორშ","სამ","ოთხ","ხუთ","პარ","შაბ"],daysMin:["კვ","ორ","სა","ოთ","ხუ","პა","შა"],months:["იანვარი","თებერვალი","მარტი","აპრილი","მაისი","ივნისი","ივლისი","აგვისტო","სექტემბერი","ოქტომები","ნოემბერი","დეკემბერი"],monthsShort:["იან","თებ","მარ","აპრ","მაი","ივნ","ივლ","აგვ","სექ","ოქტ","ნოე","დეკ"],today:"დღეს",clear:"გასუფთავება",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.kh.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.kh={days:["អាទិត្យ","ចន្ទ","អង្គារ","ពុធ","ព្រហស្បតិ៍","សុក្រ","សៅរ៍","អាទិត្យ"],daysShort:["អា.ទិ","ចន្ទ","អង្គារ","ពុធ","ព្រ.ហ","សុក្រ","សៅរ៍","អា.ទិ"],daysMin:["អា.ទិ","ចន្ទ","អង្គារ","ពុធ","ព្រ.ហ","សុក្រ","សៅរ៍","អា.ទិ"],months:["មករា","កុម្ភះ","មិនា","មេសា","ឧសភា","មិថុនា","កក្កដា","សីហា","កញ្ញា","តុលា","វិច្ឆិកា","ធ្នូ"],monthsShort:["មករា","កុម្ភះ","មិនា","មេសា","ឧសភា","មិថុនា","កក្កដា","សីហា","កញ្ញា","តុលា","វិច្ឆិកា","ធ្នូ"],today:"ថ្ងៃនេះ",clear:"សំអាត"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.kk.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.kk={days:["Жексенбі","Дүйсенбі","Сейсенбі","Сәрсенбі","Бейсенбі","Жұма","Сенбі"],daysShort:["Жек","Дүй","Сей","Сәр","Бей","Жұм","Сен"],daysMin:["Жк","Дс","Сс","Ср","Бс","Жм","Сн"],months:["Қаңтар","Ақпан","Наурыз","Сәуір","Мамыр","Маусым","Шілде","Тамыз","Қыркүйек","Қазан","Қараша","Желтоқсан"],monthsShort:["Қаң","Ақп","Нау","Сәу","Мам","Мау","Шіл","Там","Қыр","Қаз","Қар","Жел"],today:"Бүгін",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.ko.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ko={days:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],daysShort:["일","월","화","수","목","금","토"],daysMin:["일","월","화","수","목","금","토"],months:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],monthsShort:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],today:"오늘",clear:"삭제",format:"yyyy-mm-dd",titleFormat:"yyyy년mm월",weekStart:0}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.kr.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.kr={days:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],daysShort:["일","월","화","수","목","금","토"],daysMin:["일","월","화","수","목","금","토"],months:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],monthsShort:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"]}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.lt.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.lt={days:["Sekmadienis","Pirmadienis","Antradienis","Trečiadienis","Ketvirtadienis","Penktadienis","Šeštadienis"],daysShort:["S","Pr","A","T","K","Pn","Š"],daysMin:["Sk","Pr","An","Tr","Ke","Pn","Št"],months:["Sausis","Vasaris","Kovas","Balandis","Gegužė","Birželis","Liepa","Rugpjūtis","Rugsėjis","Spalis","Lapkritis","Gruodis"],monthsShort:["Sau","Vas","Kov","Bal","Geg","Bir","Lie","Rugp","Rugs","Spa","Lap","Gru"],today:"Šiandien",monthsTitle:"Mėnesiai",clear:"Išvalyti",weekStart:1,format:"yyyy-mm-dd"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.lv.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.lv={days:["Svētdiena","Pirmdiena","Otrdiena","Trešdiena","Ceturtdiena","Piektdiena","Sestdiena"],daysShort:["Sv","P","O","T","C","Pk","S"],daysMin:["Sv","Pr","Ot","Tr","Ce","Pk","Se"],months:["Janvāris","Februāris","Marts","Aprīlis","Maijs","Jūnijs","Jūlijs","Augusts","Septembris","Oktobris","Novembris","Decembris"],monthsShort:["Jan","Feb","Mar","Apr","Mai","Jūn","Jūl","Aug","Sep","Okt","Nov","Dec"],today:"Šodien",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.me.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.me={days:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],daysMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],months:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,clear:"Izbriši",format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.mk.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.mk={days:["Недела","Понеделник","Вторник","Среда","Четврток","Петок","Сабота"],daysShort:["Нед","Пон","Вто","Сре","Чет","Пет","Саб"],daysMin:["Не","По","Вт","Ср","Че","Пе","Са"],months:["Јануари","Февруари","Март","Април","Мај","Јуни","Јули","Август","Септември","Октомври","Ноември","Декември"],monthsShort:["Јан","Фев","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Ное","Дек"],today:"Денес",format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.mn.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.mn={days:["Ням","Даваа","Мягмар","Лхагва","Пүрэв","Баасан","Бямба"],daysShort:["Ням","Дав","Мяг","Лха","Пүр","Баа","Бям"],daysMin:["Ня","Да","Мя","Лх","Пү","Ба","Бя"],months:["Хулгана","Үхэр","Бар","Туулай","Луу","Могой","Морь","Хонь","Бич","Тахиа","Нохой","Гахай"],monthsShort:["Хул","Үхэ","Бар","Туу","Луу","Мог","Мор","Хон","Бич","Тах","Нох","Гах"],today:"Өнөөдөр",clear:"Тодорхой",format:"yyyy.mm.dd",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.ms.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ms={days:["Ahad","Isnin","Selasa","Rabu","Khamis","Jumaat","Sabtu"],daysShort:["Aha","Isn","Sel","Rab","Kha","Jum","Sab"],daysMin:["Ah","Is","Se","Ra","Kh","Ju","Sa"],months:["Januari","Februari","Mac","April","Mei","Jun","Julai","Ogos","September","Oktober","November","Disember"],monthsShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Ogo","Sep","Okt","Nov","Dis"],today:"Hari Ini",clear:"Bersihkan"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.nb.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.nb={days:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],daysShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],daysMin:["Sø","Ma","Ti","On","To","Fr","Lø"],months:["Januar","Februar","Mars","April","Mai","Juni","Juli","August","September","Oktober","November","Desember"],monthsShort:["Jan","Feb","Mar","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Des"],today:"I Dag",format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.nl-BE.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["nl-BE"]={days:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],daysShort:["zo","ma","di","wo","do","vr","za"],daysMin:["zo","ma","di","wo","do","vr","za"],months:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthsShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],today:"Vandaag",monthsTitle:"Maanden",clear:"Leegmaken",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.nl.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.nl={days:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],daysShort:["zo","ma","di","wo","do","vr","za"],daysMin:["zo","ma","di","wo","do","vr","za"],months:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthsShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],today:"Vandaag",monthsTitle:"Maanden",clear:"Wissen",weekStart:1,format:"dd-mm-yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.no.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.no={days:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],daysShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],daysMin:["Sø","Ma","Ti","On","To","Fr","Lø"],months:["Januar","Februar","Mars","April","Mai","Juni","Juli","August","September","Oktober","November","Desember"],monthsShort:["Jan","Feb","Mar","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Des"],today:"I dag",clear:"Nullstill",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.pl.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.pl={days:["niedziela","poniedziałek","wtorek","środa","czwartek","piątek","sobota"],daysShort:["niedz.","pon.","wt.","śr.","czw.","piąt.","sob."],daysMin:["ndz.","pn.","wt.","śr.","czw.","pt.","sob."],months:["styczeń","luty","marzec","kwiecień","maj","czerwiec","lipiec","sierpień","wrzesień","październik","listopad","grudzień"],monthsShort:["sty.","lut.","mar.","kwi.","maj","cze.","lip.","sie.","wrz.","paź.","lis.","gru."],today:"dzisiaj",weekStart:1,clear:"wyczyść",format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.pt-BR.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["pt-BR"]={days:["Domingo","Segunda","Terça","Quarta","Quinta","Sexta","Sábado"],daysShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],daysMin:["Do","Se","Te","Qu","Qu","Se","Sa"],months:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthsShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],today:"Hoje",monthsTitle:"Meses",clear:"Limpar",format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.pt.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.pt={days:["Domingo","Segunda","Terça","Quarta","Quinta","Sexta","Sábado"],daysShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],daysMin:["Do","Se","Te","Qu","Qu","Se","Sa"],months:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthsShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],today:"Hoje",monthsTitle:"Meses",clear:"Limpar",format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.ro.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ro={days:["Duminică","Luni","Marţi","Miercuri","Joi","Vineri","Sâmbătă"],daysShort:["Dum","Lun","Mar","Mie","Joi","Vin","Sâm"],daysMin:["Du","Lu","Ma","Mi","Jo","Vi","Sâ"],months:["Ianuarie","Februarie","Martie","Aprilie","Mai","Iunie","Iulie","August","Septembrie","Octombrie","Noiembrie","Decembrie"],monthsShort:["Ian","Feb","Mar","Apr","Mai","Iun","Iul","Aug","Sep","Oct","Nov","Dec"],today:"Astăzi",clear:"Șterge",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.rs-latin.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["rs-latin"]={days:["Nedelja","Ponedeljak","Utorak","Sreda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sre","Čet","Pet","Sub"],daysMin:["N","Po","U","Sr","Č","Pe","Su"],months:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.rs.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.rs={days:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота"],daysShort:["Нед","Пон","Уто","Сре","Чет","Пет","Суб"],daysMin:["Н","По","У","Ср","Ч","Пе","Су"],months:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],monthsShort:["Јан","Феб","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Нов","Дец"],today:"Данас",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.ru.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ru={days:["Воскресенье","Понедельник","Вторник","Среда","Четверг","Пятница","Суббота"],daysShort:["Вск","Пнд","Втр","Срд","Чтв","Птн","Суб"],daysMin:["Вс","Пн","Вт","Ср","Чт","Пт","Сб"],months:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],monthsShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],today:"Сегодня",clear:"Очистить",format:"dd.mm.yyyy",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.sk.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sk={days:["Nedeľa","Pondelok","Utorok","Streda","Štvrtok","Piatok","Sobota"],daysShort:["Ned","Pon","Uto","Str","Štv","Pia","Sob"],daysMin:["Ne","Po","Ut","St","Št","Pia","So"],months:["Január","Február","Marec","Apríl","Máj","Jún","Júl","August","September","Október","November","December"],monthsShort:["Jan","Feb","Mar","Apr","Máj","Jún","Júl","Aug","Sep","Okt","Nov","Dec"],today:"Dnes",clear:"Vymazať",weekStart:1,format:"d.m.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.sl.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sl={days:["Nedelja","Ponedeljek","Torek","Sreda","Četrtek","Petek","Sobota"],daysShort:["Ned","Pon","Tor","Sre","Čet","Pet","Sob"],daysMin:["Ne","Po","To","Sr","Če","Pe","So"],months:["Januar","Februar","Marec","April","Maj","Junij","Julij","Avgust","September","Oktober","November","December"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danes"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.sq.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sq={days:["E Diel","E Hënë","E Martē","E Mërkurë","E Enjte","E Premte","E Shtunë"],daysShort:["Die","Hën","Mar","Mër","Enj","Pre","Shtu"],daysMin:["Di","Hë","Ma","Më","En","Pr","Sht"],months:["Janar","Shkurt","Mars","Prill","Maj","Qershor","Korrik","Gusht","Shtator","Tetor","Nëntor","Dhjetor"],monthsShort:["Jan","Shk","Mar","Pri","Maj","Qer","Korr","Gu","Sht","Tet","Nën","Dhjet"],today:"Sot"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.sr-latin.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["sr-latin"]={days:["Nedelja","Ponedeljak","Utorak","Sreda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sre","Čet","Pet","Sub"],daysMin:["N","Po","U","Sr","Č","Pe","Su"],months:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.sr.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sr={days:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота"],daysShort:["Нед","Пон","Уто","Сре","Чет","Пет","Суб"],daysMin:["Н","По","У","Ср","Ч","Пе","Су"],months:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],monthsShort:["Јан","Феб","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Нов","Дец"],today:"Данас",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.sv.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sv={days:["Söndag","Måndag","Tisdag","Onsdag","Torsdag","Fredag","Lördag"],daysShort:["Sön","Mån","Tis","Ons","Tor","Fre","Lör"],daysMin:["Sö","Må","Ti","On","To","Fr","Lö"],months:["Januari","Februari","Mars","April","Maj","Juni","Juli","Augusti","September","Oktober","November","December"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],today:"Idag",format:"yyyy-mm-dd",weekStart:1,clear:"Rensa"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.sw.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sw={days:["Jumapili","Jumatatu","Jumanne","Jumatano","Alhamisi","Ijumaa","Jumamosi"],daysShort:["J2","J3","J4","J5","Alh","Ij","J1"],daysMin:["2","3","4","5","A","I","1"],months:["Januari","Februari","Machi","Aprili","Mei","Juni","Julai","Agosti","Septemba","Oktoba","Novemba","Desemba"],monthsShort:["Jan","Feb","Mac","Apr","Mei","Jun","Jul","Ago","Sep","Okt","Nov","Des"],today:"Leo"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.th.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.th={days:["อาทิตย์","จันทร์","อังคาร","พุธ","พฤหัส","ศุกร์","เสาร์","อาทิตย์"],daysShort:["อา","จ","อ","พ","พฤ","ศ","ส","อา"],daysMin:["อา","จ","อ","พ","พฤ","ศ","ส","อา"],months:["มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน","กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม","พฤศจิกายน","ธันวาคม"],monthsShort:["ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค."],today:"วันนี้"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.tr.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.tr={days:["Pazar","Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi"],daysShort:["Pz","Pzt","Sal","Çrş","Prş","Cu","Cts"],daysMin:["Pz","Pzt","Sa","Çr","Pr","Cu","Ct"],months:["Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık"],monthsShort:["Oca","Şub","Mar","Nis","May","Haz","Tem","Ağu","Eyl","Eki","Kas","Ara"],today:"Bugün",clear:"Temizle",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.uk.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.uk={days:["Неділя","Понеділок","Вівторок","Середа","Четвер","П'ятниця","Субота"],daysShort:["Нед","Пнд","Втр","Срд","Чтв","Птн","Суб"],daysMin:["Нд","Пн","Вт","Ср","Чт","Пт","Сб"],months:["Cічень","Лютий","Березень","Квітень","Травень","Червень","Липень","Серпень","Вересень","Жовтень","Листопад","Грудень"],monthsShort:["Січ","Лют","Бер","Кві","Тра","Чер","Лип","Сер","Вер","Жов","Лис","Гру"],today:"Сьогодні",clear:"Очистити",format:"dd.mm.yyyy",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.vi.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.vi={days:["Chủ nhật","Thứ hai","Thứ ba","Thứ tư","Thứ năm","Thứ sáu","Thứ bảy"],daysShort:["CN","Thứ 2","Thứ 3","Thứ 4","Thứ 5","Thứ 6","Thứ 7"],daysMin:["CN","T2","T3","T4","T5","T6","T7"],months:["Tháng 1","Tháng 2","Tháng 3","Tháng 4","Tháng 5","Tháng 6","Tháng 7","Tháng 8","Tháng 9","Tháng 10","Tháng 11","Tháng 12"],monthsShort:["Th1","Th2","Th3","Th4","Th5","Th6","Th7","Th8","Th9","Th10","Th11","Th12"],today:"Hôm nay",clear:"Xóa",format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.zh-CN.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["zh-CN"]={days:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],daysShort:["周日","周一","周二","周三","周四","周五","周六"],daysMin:["日","一","二","三","四","五","六"],months:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthsShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],today:"今日",clear:"清除",format:"yyyy年mm月dd日",titleFormat:"yyyy年mm月",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-datepicker-1.6.4-dist/locales/bootstrap-datepicker.zh-TW.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["zh-TW"]={days:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],daysShort:["週日","週一","週二","週三","週四","週五","週六"],daysMin:["日","一","二","三","四","五","六"],months:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthsShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],today:"今天",format:"yyyy年mm月dd日",weekStart:1,clear:"清除"}}(jQuery); -------------------------------------------------------------------------------- /assets/bootstrap-select-1.12.2/.gitignore: -------------------------------------------------------------------------------- 1 | # OS or Editor folders 2 | .DS_Store 3 | .idea 4 | 5 | # Folders to ignore 6 | node_modules 7 | bower_components 8 | .sass-cache 9 | 10 | # Dist zip 11 | bootstrap-select-*.zip 12 | 13 | docs/site 14 | -------------------------------------------------------------------------------- /assets/bootstrap-select-1.12.2/docs/custom_theme/img/logos/convertizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/bootstrap-select-1.12.2/docs/custom_theme/img/logos/convertizer.png -------------------------------------------------------------------------------- /assets/bootstrap-select-1.12.2/docs/custom_theme/img/logos/estimateit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/bootstrap-select-1.12.2/docs/custom_theme/img/logos/estimateit.png -------------------------------------------------------------------------------- /assets/bootstrap-select-1.12.2/docs/custom_theme/img/logos/membermeister.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/bootstrap-select-1.12.2/docs/custom_theme/img/logos/membermeister.png -------------------------------------------------------------------------------- /assets/bootstrap-select-1.12.2/docs/custom_theme/img/logos/snapappointments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/bootstrap-select-1.12.2/docs/custom_theme/img/logos/snapappointments.png -------------------------------------------------------------------------------- /assets/bootstrap-select-1.12.2/docs/custom_theme/img/logos/solveforall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/bootstrap-select-1.12.2/docs/custom_theme/img/logos/solveforall.png -------------------------------------------------------------------------------- /assets/bootstrap-select-1.12.2/docs/custom_theme/img/logos/thermofisher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/bootstrap-select-1.12.2/docs/custom_theme/img/logos/thermofisher.png -------------------------------------------------------------------------------- /assets/bootstrap-select-1.12.2/docs/custom_theme/js/base.js: -------------------------------------------------------------------------------- 1 | /* Highlight */ 2 | $( document ).ready(function() { 3 | hljs.initHighlightingOnLoad(); 4 | $('table').addClass('table table-striped table-hover'); 5 | $('pre').addClass('highlight'); 6 | }); 7 | 8 | $('body').scrollspy({ 9 | target: '.bs-sidebar', 10 | }); 11 | 12 | $('.bs-sidebar').affix({ 13 | offset: { 14 | top: 210 15 | } 16 | }); 17 | 18 | /* Prevent disabled links from causing a page reload */ 19 | $("li.disabled a").click(function() { 20 | event.preventDefault(); 21 | }); -------------------------------------------------------------------------------- /assets/bootstrap-select-1.12.2/docs/custom_theme/toc.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/bootstrap-select-1.12.2/docs/docs/playground/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/bootstrap-select-1.12.2/js/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "curly": true, 3 | "eqeqeq": true, 4 | "immed": true, 5 | "latedef": true, 6 | "newcap": true, 7 | "noarg": true, 8 | "sub": true, 9 | "undef": true, 10 | "unused": true, 11 | "boss": true, 12 | "eqnull": true, 13 | "browser": true, 14 | "jquery": true 15 | } 16 | -------------------------------------------------------------------------------- /assets/bootstrap-select-1.12.2/js/i18n/defaults-cs_CZ.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: CS 4 | * Region: CZ (Czech Republic) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Nic není vybráno', 9 | noneResultsText: 'Žádné výsledky {0}', 10 | countSelectedText: 'Označeno {0} z {1}', 11 | maxOptionsText: ['Limit překročen ({n} {var} max)', 'Limit skupiny překročen ({n} {var} max)', ['položek', 'položka']], 12 | multipleSeparator: ', ' 13 | }; 14 | })(jQuery); 15 | -------------------------------------------------------------------------------- /assets/bootstrap-select-1.12.2/js/i18n/defaults-eu.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: EU (Basque) 4 | * Region: 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Hautapenik ez', 9 | noneResultsText: 'Emaitzarik ez {0}', 10 | countSelectedText: '{1}(e)tik {0} hautatuta', 11 | maxOptionsText: ['Mugara iritsita ({n} {var} gehienez)', 'Taldearen mugara iritsita ({n} {var} gehienez)', ['elementu', 'elementu']], 12 | multipleSeparator: ', ' 13 | }; 14 | })(jQuery); 15 | -------------------------------------------------------------------------------- /assets/bootstrap-select-1.12.2/js/i18n/defaults-nl_NL.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: NL (Dutch; Nederlands) 4 | * Region: NL (Europe) 5 | * Author: Daan Rosbergen (Badmuts) 6 | */ 7 | (function ($) { 8 | $.fn.selectpicker.defaults = { 9 | noneSelectedText: 'Niets geselecteerd', 10 | noneResultsText: 'Geen resultaten gevonden voor {0}', 11 | countSelectedText: '{0} van {1} geselecteerd', 12 | maxOptionsText: ['Limiet bereikt ({n} {var} max)', 'Groep limiet bereikt ({n} {var} max)', ['items', 'item']], 13 | multipleSeparator: ', ' 14 | }; 15 | })(jQuery); 16 | -------------------------------------------------------------------------------- /assets/bootstrap-select-1.12.2/js/i18n/defaults-pt_PT.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: PT (Portuguese; português) 4 | * Region: PT (Portugal; Portugal) 5 | * Author: Burnspirit 6 | */ 7 | (function ($) { 8 | $.fn.selectpicker.defaults = { 9 | noneSelectedText: 'Nenhum seleccionado', 10 | noneResultsText: 'Sem resultados contendo {0}', 11 | countSelectedText: 'Selecionado {0} de {1}', 12 | maxOptionsText: ['Limite ultrapassado (máx. {n} {var})', 'Limite de seleções ultrapassado (máx. {n} {var})', ['itens', 'item']], 13 | multipleSeparator: ', ' 14 | }; 15 | })(jQuery); 16 | -------------------------------------------------------------------------------- /assets/bootstrap-select-1.12.2/js/i18n/defaults-ro_RO.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: RO (Romanian) 4 | * Region: RO (Romania) 5 | * Alex Florea 6 | */ 7 | (function ($) { 8 | $.fn.selectpicker.defaults = { 9 | noneSelectedText: 'Nu a fost selectat nimic', 10 | noneResultsText: 'Nu exista niciun rezultat {0}', 11 | countSelectedText: '{0} din {1} selectat(e)', 12 | maxOptionsText: ['Limita a fost atinsa ({n} {var} max)', 'Limita de grup a fost atinsa ({n} {var} max)', ['iteme', 'item']], 13 | multipleSeparator: ', ' 14 | }; 15 | })(jQuery); 16 | -------------------------------------------------------------------------------- /assets/bootstrap-select-1.12.2/js/i18n/defaults-ua_UA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: UA (Ukrainian; Українська) 4 | * Region: UA (Ukraine) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Нічого не вибрано', 9 | noneResultsText: 'Збігів не знайдено {0}', 10 | countSelectedText: 'Вибрано {0} із {1}', 11 | maxOptionsText: ['Досягнута межа ({n} {var} максимум)', 'Досягнута межа в групі ({n} {var} максимум)', ['items', 'item']], 12 | multipleSeparator: ', ' 13 | }; 14 | })(jQuery); 15 | -------------------------------------------------------------------------------- /assets/bootstrap-select-1.12.2/js/i18n/defaults-zh_CN.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: ZH (Chinese) 4 | * Region: CN (China) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: '没有选中任何项', 9 | noneResultsText: '没有找到匹配项', 10 | countSelectedText: '选中{1}中的{0}项', 11 | maxOptionsText: ['超出限制 (最多选择{n}项)', '组选择超出限制(最多选择{n}组)'], 12 | multipleSeparator: ', ' 13 | }; 14 | })(jQuery); 15 | -------------------------------------------------------------------------------- /assets/bootstrap-select-1.12.2/js/i18n/defaults-zh_TW.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: ZH (Chinese) 4 | * Region: TW (Taiwan) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: '沒有選取任何項目', 9 | noneResultsText: '沒有找到符合的結果', 10 | countSelectedText: '已經選取{0}個項目', 11 | maxOptionsText: ['超過限制 (最多選擇{n}項)', '超過限制(最多選擇{n}組)'], 12 | selectAllText: '選取全部', 13 | deselectAllText: '全部取消', 14 | multipleSeparator: ', ' 15 | }; 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /assets/bootstrap-select-1.12.2/less/variables.less: -------------------------------------------------------------------------------- 1 | @color-red-error: rgb(185, 74, 72); 2 | @color-grey-arrow: rgba(204, 204, 204, 0.2); 3 | 4 | @width-default: 220px; // 3 960px-grid columns 5 | 6 | @zindex-select-dropdown: 1060; // must be higher than a modal background (1050) 7 | 8 | //** Placeholder text color 9 | @input-color-placeholder: #999; -------------------------------------------------------------------------------- /assets/bootstrap-select-1.12.2/sass/variables.scss: -------------------------------------------------------------------------------- 1 | $color-red-error: rgb(185, 74, 72) !default; 2 | $color-grey-arrow: rgba(204, 204, 204, 0.2) !default; 3 | 4 | $width-default: 220px !default; // 3 960px-grid columns 5 | 6 | $zindex-select-dropdown: 1060 !default; // must be higher than a modal background (1050) 7 | 8 | //** Placeholder text color 9 | $input-color-placeholder: #999 !default; -------------------------------------------------------------------------------- /assets/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/bootstrap/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /assets/ckeditor/config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.editorConfig = function( config ) { 7 | // Define changes to default configuration here. For example: 8 | // config.language = 'fr'; 9 | // config.uiColor = '#AADC6E'; 10 | config.allowedContent = true; 11 | config.extraPlugins = 'codemirror'; 12 | }; 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/icons/autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/codemirror/icons/autocomplete.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/icons/autoformat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/codemirror/icons/autoformat.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/icons/commentselectedrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/codemirror/icons/commentselectedrange.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/icons/searchcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/codemirror/icons/searchcode.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/icons/uncommentselectedrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/codemirror/icons/uncommentselectedrange.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/af.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'af', { 6 | toolbar: 'Bron', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/ar.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'ar', { 6 | toolbar: 'المصدر', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'bg', { 6 | toolbar: 'Източник', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/bn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'bn', { 6 | toolbar: 'সোর্স', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/bs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'bs', { 6 | toolbar: 'HTML kôd', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'ca', { 6 | toolbar: 'Codi font', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'cs', { 6 | toolbar: 'Zdroj', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'cy', { 6 | toolbar: 'HTML', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'da', { 6 | toolbar: 'Kilde', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'de', { 6 | toolbar: 'Quellcode', 7 | searchCode: 'Quellcode durchsuchen', 8 | autoFormat: 'Auswahl formatieren', 9 | commentSelectedRange: 'Auswahl auskommentieren', 10 | uncommentSelectedRange: 'Auskommentierung entfernen', 11 | autoCompleteToggle: 'HTML Tag Autovervollständigen de-/aktivieren' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'el', { 6 | toolbar: 'HTML κώδικας', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/en-au.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'en-au', { 6 | toolbar: 'Source', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'en-ca', { 6 | toolbar: 'Source', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'en-gb', { 6 | toolbar: 'Source', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'en', { 6 | toolbar: 'Source', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'eo', { 6 | toolbar: 'Fonto', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/es.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'es', { 6 | toolbar: 'Fuente HTML', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/et.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'et', { 6 | toolbar: 'Lähtekood', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/eu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'eu', { 6 | toolbar: 'HTML Iturburua', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'fa', { 6 | toolbar: 'منبع', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'fi', { 6 | toolbar: 'Koodi', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/fo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'fo', { 6 | toolbar: 'Kelda', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'fr-ca', { 6 | toolbar: 'Source', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'fr', { 6 | toolbar: 'Source', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/gl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'gl', { 6 | toolbar: 'Código Fonte', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/gu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'gu', { 6 | toolbar: 'મૂળ કે પ્રાથમિક દસ્તાવેજ', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'he', { 6 | toolbar: 'מקור', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/hi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'hi', { 6 | toolbar: 'सोर्स', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'hr', { 6 | toolbar: 'Kôd', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'hu', { 6 | toolbar: 'Forráskód', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/is.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'is', { 6 | toolbar: 'Kóði', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'it', { 6 | toolbar: 'Codice Sorgente', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'ja', { 6 | toolbar: 'ソース', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/ka.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'ka', { 6 | toolbar: 'კოდები', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/km.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'km', { 6 | toolbar: 'កូត', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'ko', { 6 | toolbar: '소스', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/ku.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'ku', { 6 | toolbar: 'سەرچاوە', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/lt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'lt', { 6 | toolbar: 'Šaltinis', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/lv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'lv', { 6 | toolbar: 'HTML kods', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/mk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'mk', { 6 | toolbar: 'Source', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/mn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'mn', { 6 | toolbar: 'Код', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/ms.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'ms', { 6 | toolbar: 'Sumber', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'nb', { 6 | toolbar: 'Kilde', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'nl', { 6 | toolbar: 'Broncode', 7 | searchCode: 'Zoek in broncode', 8 | autoFormat: 'Formatteer selectie', 9 | commentSelectedRange: 'Zet selectie in commentaar', 10 | uncommentSelectedRange: 'Haal selectie uit commentaar', 11 | autoCompleteToggle: 'Zet automatisch aanvullen van HTML tags aan/uit' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'no', { 6 | toolbar: 'Kilde', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'pl', { 6 | toolbar: 'Źródło dokumentu', 7 | autoFormat: 'Sformatuj zaznaczenie', 8 | commentSelectedRange: 'Zakomentuj zaznaczenie', 9 | uncommentSelectedRange: 'Odkomentuj zaznaczenie', 10 | searchCode: 'Wyszukaj w źródle', 11 | autoCompleteToggle: 'Włącza/Wyłącza automatyczne uzupełniania tagów HTML' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'pt-br', { 6 | toolbar: 'Código-Fonte', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/pt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'pt', { 6 | toolbar: 'Fonte', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/ro.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'ro', { 6 | toolbar: 'Sursa', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/ru.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'ru', { 6 | toolbar: 'Источник', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'sk', { 6 | toolbar: 'Zdroj', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/sl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'sl', { 6 | toolbar: 'Izvorna koda', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'sr-latn', { 6 | toolbar: 'Kôd', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/sr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'sr', { 6 | toolbar: 'Kôд', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'sv', { 6 | toolbar: 'Källa', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/th.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'th', { 6 | toolbar: 'ดูรหัส HTML', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'tr', { 6 | toolbar: 'Kaynak', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'ug', { 6 | toolbar: 'مەنبە', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'uk', { 6 | toolbar: 'Джерело', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'vi', { 6 | toolbar: 'Mã HTML', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'zh-cn', { 6 | toolbar: '源码', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'zh', { 6 | toolbar: '原始碼', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/codemirror/theme/ambiance-mobile.css: -------------------------------------------------------------------------------- 1 | .cm-s-ambiance.CodeMirror { 2 | -webkit-box-shadow: none; 3 | -moz-box-shadow: none; 4 | box-shadow: none; 5 | } 6 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/preview/preview.html: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/angel_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/angel_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/angry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/angry_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/broken_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/broken_heart.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/confused_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/confused_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/cry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/cry_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/devil_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/devil_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/embarrassed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/embarrassed_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/embarrassed_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/embarrassed_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/envelope.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/heart.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/kiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/kiss.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/lightbulb.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/omg_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/omg_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/regular_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/regular_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/sad_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/sad_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/shades_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/shades_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/teeth_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/teeth_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/thumbs_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/thumbs_down.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/thumbs_up.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/tongue_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/tongue_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/tongue_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/tongue_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/wink_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/smiley/images/wink_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /assets/ckeditor/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/samples/img/github-top.png -------------------------------------------------------------------------------- /assets/ckeditor/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/samples/img/header-bg.png -------------------------------------------------------------------------------- /assets/ckeditor/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/samples/img/header-separator.png -------------------------------------------------------------------------------- /assets/ckeditor/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/samples/img/logo.png -------------------------------------------------------------------------------- /assets/ckeditor/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /assets/ckeditor/samples/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/samples/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /assets/ckeditor/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /assets/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /assets/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /assets/ckeditor/samples/toolbarconfigurator/font/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Font license info 2 | 3 | 4 | ## Font Awesome 5 | 6 | Copyright (C) 2012 by Dave Gandy 7 | 8 | Author: Dave Gandy 9 | License: SIL () 10 | Homepage: http://fortawesome.github.com/Font-Awesome/ 11 | -------------------------------------------------------------------------------- /assets/ckeditor/samples/toolbarconfigurator/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/samples/toolbarconfigurator/font/fontello.eot -------------------------------------------------------------------------------- /assets/ckeditor/samples/toolbarconfigurator/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/samples/toolbarconfigurator/font/fontello.ttf -------------------------------------------------------------------------------- /assets/ckeditor/samples/toolbarconfigurator/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/samples/toolbarconfigurator/font/fontello.woff -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/skins/moono/images/spinner.gif -------------------------------------------------------------------------------- /assets/ckeditor/skins/moonocolor/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/skins/moonocolor/icons.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moonocolor/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/skins/moonocolor/icons_hidpi.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moonocolor/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/skins/moonocolor/images/arrow.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moonocolor/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/skins/moonocolor/images/close.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moonocolor/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/skins/moonocolor/images/hidpi/close.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moonocolor/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/skins/moonocolor/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moonocolor/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/skins/moonocolor/images/hidpi/lock.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moonocolor/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/skins/moonocolor/images/hidpi/refresh.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moonocolor/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/skins/moonocolor/images/lock-open.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moonocolor/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/skins/moonocolor/images/lock.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moonocolor/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/skins/moonocolor/images/refresh.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moonocolor/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/ckeditor/skins/moonocolor/images/spinner.gif -------------------------------------------------------------------------------- /assets/font-awesome-4.7.0/HELP-US-OUT.txt: -------------------------------------------------------------------------------- 1 | I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, 2 | Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, 3 | comprehensive icon sets or copy and paste your own. 4 | 5 | Please. Check it out. 6 | 7 | -Dave Gandy 8 | -------------------------------------------------------------------------------- /assets/font-awesome-4.7.0/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/font-awesome-4.7.0/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/font-awesome-4.7.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/font-awesome-4.7.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/font-awesome-4.7.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/font-awesome-4.7.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/font-awesome-4.7.0/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /assets/font-awesome-4.7.0/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /assets/font-awesome-4.7.0/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "animated.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | @import "screen-reader.less"; 19 | -------------------------------------------------------------------------------- /assets/font-awesome-4.7.0/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /assets/font-awesome-4.7.0/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /assets/font-awesome-4.7.0/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /assets/font-awesome-4.7.0/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /assets/font-awesome-4.7.0/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /assets/font-awesome-4.7.0/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /assets/font-awesome-4.7.0/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /assets/font-awesome-4.7.0/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /assets/font-awesome-4.7.0/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /assets/font-awesome-4.7.0/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /assets/font-awesome-4.7.0/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | @import "screen-reader"; 19 | -------------------------------------------------------------------------------- /assets/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/jquery/jquery-ui-1.12.1.custom/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/jquery/jquery-ui-1.12.1.custom/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /assets/jquery/jquery-ui-1.12.1.custom/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/jquery/jquery-ui-1.12.1.custom/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /assets/jquery/jquery-ui-1.12.1.custom/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/jquery/jquery-ui-1.12.1.custom/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /assets/jquery/jquery-ui-1.12.1.custom/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/jquery/jquery-ui-1.12.1.custom/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /assets/jquery/jquery-ui-1.12.1.custom/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/jquery/jquery-ui-1.12.1.custom/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /assets/jquery/jquery-ui-1.12.1.custom/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/jquery/jquery-ui-1.12.1.custom/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /assets/jquery/jquery-ui-1.12.1.custom/jquery-ui.structure.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.12.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/category/theming/ 10 | */ 11 | .ui-sortable-handle { 12 | -ms-touch-action: none; 13 | touch-action: none; 14 | } 15 | -------------------------------------------------------------------------------- /assets/jquery/jquery-ui-1.12.1.custom/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.12.1 - 2017-05-02 2 | * http://jqueryui.com 3 | * Copyright jQuery Foundation and other contributors; Licensed MIT */ 4 | 5 | .ui-sortable-handle{-ms-touch-action:none;touch-action:none} -------------------------------------------------------------------------------- /assets/psd/customers-label.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/psd/customers-label.psd -------------------------------------------------------------------------------- /assets/psd/fbCover.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/psd/fbCover.psd -------------------------------------------------------------------------------- /assets/psd/fbLogo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/psd/fbLogo.psd -------------------------------------------------------------------------------- /assets/psd/first-mac.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/psd/first-mac.psd -------------------------------------------------------------------------------- /assets/psd/home_steps.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/psd/home_steps.psd -------------------------------------------------------------------------------- /assets/psd/pm-subpages.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/psd/pm-subpages.psd -------------------------------------------------------------------------------- /assets/psd/pmInvoice-Logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/psd/pmInvoice-Logo.psd -------------------------------------------------------------------------------- /assets/psd/responsive.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/psd/responsive.psd -------------------------------------------------------------------------------- /assets/psd/support-image.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/psd/support-image.psd -------------------------------------------------------------------------------- /assets/public/css/stabilizator_bg.css: -------------------------------------------------------------------------------- 1 | @media (min-width: 992px) and (max-width: 1199px) { 2 | 3 | } 4 | @media (min-width: 768px) and (max-width: 991px) { 5 | 6 | } 7 | 8 | @media (max-width: 991px) { 9 | 10 | } 11 | @media screen and (max-width: 767px) { 12 | } -------------------------------------------------------------------------------- /assets/public/css/stabilizator_en.css: -------------------------------------------------------------------------------- 1 | @media (min-width: 992px) and (max-width: 1199px) { 2 | 3 | } 4 | @media (min-width: 768px) and (max-width: 991px) { 5 | 6 | } 7 | 8 | @media (max-width: 991px) { 9 | 10 | } 11 | @media screen and (max-width: 767px) { 12 | } -------------------------------------------------------------------------------- /assets/public/css/stabilizator_fr.css: -------------------------------------------------------------------------------- 1 | @media (min-width: 992px) and (max-width: 1199px) { 2 | 3 | } 4 | @media (min-width: 768px) and (max-width: 991px) { 5 | 6 | } 7 | 8 | @media (max-width: 991px) { 9 | 10 | } 11 | @media screen and (max-width: 767px) { 12 | } -------------------------------------------------------------------------------- /assets/users/imgs/notok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/users/imgs/notok.png -------------------------------------------------------------------------------- /assets/users/imgs/pages-delivery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/users/imgs/pages-delivery.png -------------------------------------------------------------------------------- /assets/users/imgs/paypal-pay-now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/users/imgs/paypal-pay-now.png -------------------------------------------------------------------------------- /assets/users/imgs/sprite-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/assets/users/imgs/sprite-icons.png -------------------------------------------------------------------------------- /attachments/featuresimages/Warranty-Certificate-Template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/attachments/featuresimages/Warranty-Certificate-Template.png -------------------------------------------------------------------------------- /attachments/featuresimages/inventory-management-software.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/attachments/featuresimages/inventory-management-software.png -------------------------------------------------------------------------------- /attachments/featuresimages/inventory-management-software1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/attachments/featuresimages/inventory-management-software1.png -------------------------------------------------------------------------------- /attachments/featuresimages/inventory-management-software2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/attachments/featuresimages/inventory-management-software2.png -------------------------------------------------------------------------------- /attachments/featuresimages/priemo-predavatelen-protokol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/attachments/featuresimages/priemo-predavatelen-protokol.gif -------------------------------------------------------------------------------- /design/public/card_icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/design/public/card_icons.psd -------------------------------------------------------------------------------- /design/public/first-mac.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/design/public/first-mac.psd -------------------------------------------------------------------------------- /design/user/CMS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/design/user/CMS.jpg -------------------------------------------------------------------------------- /design/user/CMS.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/design/user/CMS.psd -------------------------------------------------------------------------------- /design/user/Fonts/OpenSans-Regular_A.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/design/user/Fonts/OpenSans-Regular_A.ttf -------------------------------------------------------------------------------- /design/user/create_invoice_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/design/user/create_invoice_page.png -------------------------------------------------------------------------------- /design/user/design_of_invoice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/design/user/design_of_invoice.png -------------------------------------------------------------------------------- /design/user/design_of_invoices_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/design/user/design_of_invoices_list.png -------------------------------------------------------------------------------- /design/user/sprite-icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/design/user/sprite-icons.psd -------------------------------------------------------------------------------- /design/user/stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/design/user/stats.png -------------------------------------------------------------------------------- /pdfs.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/pdfs.log -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /system/core/compat/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | --------------------------------------------------------------------------------