├── .gitignore
├── .gitmodules
├── INSTALL
├── LICENSE
├── configure.rb
├── contents
├── contents.pri
├── contents.pro
├── daemons
│ ├── chatdaemon.qml
│ └── timer.qml
├── errors
│ ├── 301.qml
│ ├── 403.qml
│ ├── 404.qml
│ ├── 500.qml
│ ├── errors.pri
│ └── errors.qrc
└── root
│ ├── 3rdparty
│ ├── css
│ │ ├── bootstrap-responsive.css
│ │ ├── bootstrap-responsive.min.css
│ │ ├── bootstrap.css
│ │ ├── bootstrap.min.css
│ │ └── docs.css
│ ├── img
│ │ ├── glyphicons-halflings-white.png
│ │ └── glyphicons-halflings.png
│ └── js
│ │ ├── bootstrap.js
│ │ └── jquery.js
│ ├── GoogleAnalytics.qml
│ ├── SilkPageTemplate.qml
│ ├── background.png
│ ├── components
│ └── ArchitectureBlock.qml
│ ├── css
│ ├── ArchitectureBlock.qml
│ ├── archtecture.qml
│ └── index.qml
│ ├── examples.qml
│ ├── examples
│ ├── 42-002.qml
│ ├── IPhoneCSS.qml
│ ├── chat.js
│ ├── chat.qml
│ ├── chatserver.qml
│ ├── class.qml
│ ├── components
│ │ ├── Rectangle.qml
│ │ ├── Twitter.qml
│ │ ├── UserInput.qml
│ │ └── qmldir
│ ├── config.qml
│ ├── cookies.qml
│ ├── css.qml
│ ├── database.qml
│ ├── echo.qml
│ ├── enabled.qml
│ ├── file.qml
│ ├── get.qml
│ ├── header.qml
│ ├── iphone.qml
│ ├── iphone_css.qml
│ ├── javascript.qml
│ ├── json.js
│ ├── json.qml
│ ├── jsondata.qml
│ ├── oauth.qml
│ ├── post.qml
│ ├── process.qml
│ ├── recursive.qml
│ ├── remote.qml
│ ├── repeater.qml
│ ├── reverse.js
│ ├── session.qml
│ ├── smtp.qml
│ ├── stylesheet1.qml
│ ├── stylesheet2.qml
│ ├── timer.qml
│ ├── upload.qml
│ ├── websocket.js
│ └── websocket.qml
│ ├── favicon.ico
│ ├── getting-started.qml
│ ├── index.qml
│ ├── js
│ ├── gin.js
│ └── highlighter.js
│ ├── modules.qml
│ ├── qt-logo.png
│ ├── scaffolding.qml
│ └── scaffolding
│ ├── CssExample.qml
│ ├── HtmlExample.qml
│ ├── JsonExample.qml
│ ├── TextExample.qml
│ ├── XmlExample.qml
│ ├── css.qml
│ ├── html.qml
│ ├── json.qml
│ ├── text.qml
│ └── xml.qml
├── demos
├── bootstrap
│ ├── BsDocsExample.qml
│ ├── BsDocsSeparator.qml
│ ├── JumboTron.qml
│ ├── PrePrettyPrint.qml
│ ├── PrePrettyPrintLineNums.qml
│ ├── Template.qml
│ ├── base-css.qml
│ ├── bootstraprc
│ ├── examples
│ │ ├── Navbar.qml
│ │ ├── Template.qml
│ │ ├── hero.qml
│ │ └── starter-template.qml
│ ├── getting-started.qml
│ ├── index.qml
│ └── scaffolding.qml
├── carpet
│ ├── carpet.pro
│ └── src
│ │ ├── carpet
│ │ ├── app
│ │ │ ├── service
│ │ │ │ └── carpet.qml
│ │ │ └── web
│ │ │ │ ├── CarpetTemplate.qml
│ │ │ │ ├── FileListView.qml
│ │ │ │ ├── Icon.qml
│ │ │ │ ├── MenuBar.qml
│ │ │ │ ├── StatusBar.qml
│ │ │ │ ├── UserInput.qml
│ │ │ │ ├── backuplist.qml
│ │ │ │ ├── components
│ │ │ │ ├── QAbstractItemView.qml
│ │ │ │ ├── QBoxLayout.qml
│ │ │ │ ├── QDialog.qml
│ │ │ │ ├── QFrame.qml
│ │ │ │ ├── QHBoxLayout.qml
│ │ │ │ ├── QHSplitter.qml
│ │ │ │ ├── QLabel.qml
│ │ │ │ ├── QLayout.qml
│ │ │ │ ├── QLayoutItem.qml
│ │ │ │ ├── QListView.qml
│ │ │ │ ├── QMenu.qml
│ │ │ │ ├── QMenuBar.qml
│ │ │ │ ├── QMenuItem.qml
│ │ │ │ ├── QSplitter.qml
│ │ │ │ ├── QStackedLayout.qml
│ │ │ │ ├── QTableView.qml
│ │ │ │ ├── QTextEdit.qml
│ │ │ │ ├── QTreeView.qml
│ │ │ │ ├── QVBoxLayout.qml
│ │ │ │ ├── QVSplitter.qml
│ │ │ │ ├── QWidget.qml
│ │ │ │ └── components.js
│ │ │ │ ├── css.qml
│ │ │ │ ├── favicon.ico
│ │ │ │ ├── filemanager.qml
│ │ │ │ ├── icons
│ │ │ │ ├── anonymous.png
│ │ │ │ ├── backuplist.png
│ │ │ │ ├── dashboard.png
│ │ │ │ ├── disabled.png
│ │ │ │ ├── download.png
│ │ │ │ ├── edit-delete.png
│ │ │ │ ├── enabled.png
│ │ │ │ ├── file.png
│ │ │ │ ├── folder-home.png
│ │ │ │ ├── folder-open.png
│ │ │ │ ├── folder-temp.png
│ │ │ │ ├── folder.png
│ │ │ │ ├── list-add.png
│ │ │ │ ├── list-remove.png
│ │ │ │ ├── mime
│ │ │ │ │ ├── application-epub+zip.png
│ │ │ │ │ ├── application-illustrator.png
│ │ │ │ │ ├── application-javascript.png
│ │ │ │ │ ├── application-msword-template.png
│ │ │ │ │ ├── application-msword.png
│ │ │ │ │ ├── application-octet-stream.png
│ │ │ │ │ ├── application-pdf.png
│ │ │ │ │ ├── application-pgp-encrypted.png
│ │ │ │ │ ├── application-pgp-keys.png
│ │ │ │ │ ├── application-pgp-signature.png
│ │ │ │ │ ├── application-pkcs7-mime.png
│ │ │ │ │ ├── application-pkcs7-signature.png
│ │ │ │ │ ├── application-postscript.png
│ │ │ │ │ ├── application-relaxng.png
│ │ │ │ │ ├── application-rss+xml.png
│ │ │ │ │ ├── application-rtf.png
│ │ │ │ │ ├── application-sxw.png
│ │ │ │ │ ├── application-vnd-google-earth-kml.png
│ │ │ │ │ ├── application-vnd.iccprofile.png
│ │ │ │ │ ├── application-vnd.ms-access.png
│ │ │ │ │ ├── application-vnd.ms-excel.png
│ │ │ │ │ ├── application-vnd.ms-powerpoint.png
│ │ │ │ │ ├── application-vnd.oasis.opendocument.chart.png
│ │ │ │ │ ├── application-vnd.oasis.opendocument.database.png
│ │ │ │ │ ├── application-vnd.oasis.opendocument.formula-template.png
│ │ │ │ │ ├── application-vnd.oasis.opendocument.formula.png
│ │ │ │ │ ├── application-vnd.oasis.opendocument.graphics.png
│ │ │ │ │ ├── application-vnd.oasis.opendocument.image.png
│ │ │ │ │ ├── application-vnd.oasis.opendocument.presentation-template.png
│ │ │ │ │ ├── application-vnd.oasis.opendocument.presentation.png
│ │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet-template.png
│ │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet.png
│ │ │ │ │ ├── application-vnd.oasis.opendocument.text.png
│ │ │ │ │ ├── application-vnd.openxmlformats-officedocument.wordprocessingml.document.png
│ │ │ │ │ ├── application-vnd.rn-realmedia.png
│ │ │ │ │ ├── application-vnd.scribus.png
│ │ │ │ │ ├── application-vnd.stardivision.calc.png
│ │ │ │ │ ├── application-vnd.stardivision.draw.png
│ │ │ │ │ ├── application-vnd.stardivision.math.png
│ │ │ │ │ ├── application-vnd.sun.xml.calc.png
│ │ │ │ │ ├── application-vnd.sun.xml.calc.template.png
│ │ │ │ │ ├── application-vnd.sun.xml.draw.png
│ │ │ │ │ ├── application-vnd.sun.xml.draw.template.png
│ │ │ │ │ ├── application-vnd.sun.xml.math.png
│ │ │ │ │ ├── application-vnd.wordperfect.png
│ │ │ │ │ ├── application-x-7z-compressed.png
│ │ │ │ │ ├── application-x-abiword.png
│ │ │ │ │ ├── application-x-ace.png
│ │ │ │ │ ├── application-x-applix-spreadsheet.png
│ │ │ │ │ ├── application-x-applix-word.png
│ │ │ │ │ ├── application-x-ar.png
│ │ │ │ │ ├── application-x-arc.png
│ │ │ │ │ ├── application-x-archive.png
│ │ │ │ │ ├── application-x-arj.png
│ │ │ │ │ ├── application-x-awk.png
│ │ │ │ │ ├── application-x-bittorrent.png
│ │ │ │ │ ├── application-x-blender.png
│ │ │ │ │ ├── application-x-bzdvi.png
│ │ │ │ │ ├── application-x-bzip-compressed-tar.png
│ │ │ │ │ ├── application-x-bzip.png
│ │ │ │ │ ├── application-x-cd-image.png
│ │ │ │ │ ├── application-x-cda.png
│ │ │ │ │ ├── application-x-chm.png
│ │ │ │ │ ├── application-x-compress.png
│ │ │ │ │ ├── application-x-compressed-tar.png
│ │ │ │ │ ├── application-x-cpio.png
│ │ │ │ │ ├── application-x-cue.png
│ │ │ │ │ ├── application-x-deb.png
│ │ │ │ │ ├── application-x-designer.png
│ │ │ │ │ ├── application-x-desktop.png
│ │ │ │ │ ├── application-x-egon.png
│ │ │ │ │ ├── application-x-executable-script.png
│ │ │ │ │ ├── application-x-executable.png
│ │ │ │ │ ├── application-x-font-afm.png
│ │ │ │ │ ├── application-x-font-bdf.png
│ │ │ │ │ ├── application-x-font-otf.png
│ │ │ │ │ ├── application-x-font-pcf.png
│ │ │ │ │ ├── application-x-font-snf.png
│ │ │ │ │ ├── application-x-font-ttf.png
│ │ │ │ │ ├── application-x-font-type1.png
│ │ │ │ │ ├── application-x-gnumeric.png
│ │ │ │ │ ├── application-x-gzdvi.png
│ │ │ │ │ ├── application-x-gzip.png
│ │ │ │ │ ├── application-x-gzpostscript.png
│ │ │ │ │ ├── application-x-it87.png
│ │ │ │ │ ├── application-x-java-applet.png
│ │ │ │ │ ├── application-x-java-archive.png
│ │ │ │ │ ├── application-x-java.png
│ │ │ │ │ ├── application-x-javascript.png
│ │ │ │ │ ├── application-x-k3b.png
│ │ │ │ │ ├── application-x-kcsrc.png
│ │ │ │ │ ├── application-x-kformula.png
│ │ │ │ │ ├── application-x-kgetlist.png
│ │ │ │ │ ├── application-x-kontour.png
│ │ │ │ │ ├── application-x-kplato.png
│ │ │ │ │ ├── application-x-krita.png
│ │ │ │ │ ├── application-x-kvtml.png
│ │ │ │ │ ├── application-x-kword.png
│ │ │ │ │ ├── application-x-lha.png
│ │ │ │ │ ├── application-x-lyx.png
│ │ │ │ │ ├── application-x-lzma-compressed-tar.png
│ │ │ │ │ ├── application-x-lzop.png
│ │ │ │ │ ├── application-x-m4.png
│ │ │ │ │ ├── application-x-marble.png
│ │ │ │ │ ├── application-x-mimearchive.png
│ │ │ │ │ ├── application-x-mplayer2.png
│ │ │ │ │ ├── application-x-ms-dos-executable.png
│ │ │ │ │ ├── application-x-mswinurl.png
│ │ │ │ │ ├── application-x-mswrite.png
│ │ │ │ │ ├── application-x-nzb.png
│ │ │ │ │ ├── application-x-object.png
│ │ │ │ │ ├── application-x-pak.png
│ │ │ │ │ ├── application-x-pem-key.png
│ │ │ │ │ ├── application-x-perl.png
│ │ │ │ │ ├── application-x-php.png
│ │ │ │ │ ├── application-x-plasma.png
│ │ │ │ │ ├── application-x-python-bytecode.png
│ │ │ │ │ ├── application-x-qet-element.png
│ │ │ │ │ ├── application-x-qet-project.png
│ │ │ │ │ ├── application-x-quattropro.png
│ │ │ │ │ ├── application-x-rar.png
│ │ │ │ │ ├── application-x-rpm.png
│ │ │ │ │ ├── application-x-ruby.png
│ │ │ │ │ ├── application-x-sharedlib.png
│ │ │ │ │ ├── application-x-shellscript.png
│ │ │ │ │ ├── application-x-shockwave-flash.png
│ │ │ │ │ ├── application-x-siag.png
│ │ │ │ │ ├── application-x-smb-server.png
│ │ │ │ │ ├── application-x-smb-workgroup.png
│ │ │ │ │ ├── application-x-srt.png
│ │ │ │ │ ├── application-x-srtrip.png
│ │ │ │ │ ├── application-x-subrip.png
│ │ │ │ │ ├── application-x-tar.png
│ │ │ │ │ ├── application-x-tarz.png
│ │ │ │ │ ├── application-x-tgif.png
│ │ │ │ │ ├── application-x-trash.png
│ │ │ │ │ ├── application-x-troff-man.png
│ │ │ │ │ ├── application-x-tzo.png
│ │ │ │ │ ├── application-x-wmf.png
│ │ │ │ │ ├── application-x-zerosize.png
│ │ │ │ │ ├── application-x-zoo.png
│ │ │ │ │ ├── application-xhtml+xml.png
│ │ │ │ │ ├── application-xml.png
│ │ │ │ │ ├── application-xsd.png
│ │ │ │ │ ├── application-xslt+xml.png
│ │ │ │ │ ├── application-zip.png
│ │ │ │ │ ├── audio-ac3.png
│ │ │ │ │ ├── audio-midi.png
│ │ │ │ │ ├── audio-prs.sid.png
│ │ │ │ │ ├── audio-vn.rn-realmedia.png
│ │ │ │ │ ├── audio-vnd.rn-realvideo.png
│ │ │ │ │ ├── audio-x-adpcm.png
│ │ │ │ │ ├── audio-x-aiff.png
│ │ │ │ │ ├── audio-x-flac+ogg.png
│ │ │ │ │ ├── audio-x-flac.png
│ │ │ │ │ ├── audio-x-generic.png
│ │ │ │ │ ├── audio-x-monkey.png
│ │ │ │ │ ├── audio-x-speex+ogg.png
│ │ │ │ │ ├── audio-x-wav.png
│ │ │ │ │ ├── encrypted.png
│ │ │ │ │ ├── fonts-package.png
│ │ │ │ │ ├── image-svg+xml-compressed.png
│ │ │ │ │ ├── image-svg+xml.png
│ │ │ │ │ ├── image-vnd.dgn.png
│ │ │ │ │ ├── image-vnd.dwg.png
│ │ │ │ │ ├── image-x-adobe-dng.png
│ │ │ │ │ ├── image-x-eps.png
│ │ │ │ │ ├── image-x-generic.png
│ │ │ │ │ ├── image-x-vnd.trolltech.qpicture.png
│ │ │ │ │ ├── image-x-xfig.png
│ │ │ │ │ ├── inode-directory.png
│ │ │ │ │ ├── inode-symlink.png
│ │ │ │ │ ├── mail-message-new-list.png
│ │ │ │ │ ├── message-news.png
│ │ │ │ │ ├── message-partial.png
│ │ │ │ │ ├── message-rfc822.png
│ │ │ │ │ ├── message-x-gnu-rmail.png
│ │ │ │ │ ├── message.png
│ │ │ │ │ ├── package-x-generic.png
│ │ │ │ │ ├── removed.png
│ │ │ │ │ ├── text-calendar.png
│ │ │ │ │ ├── text-csharp.png
│ │ │ │ │ ├── text-css.png
│ │ │ │ │ ├── text-csv.png
│ │ │ │ │ ├── text-directory.png
│ │ │ │ │ ├── text-enriched.png
│ │ │ │ │ ├── text-html.png
│ │ │ │ │ ├── text-mathml.png
│ │ │ │ │ ├── text-plain.png
│ │ │ │ │ ├── text-rdf+xml.png
│ │ │ │ │ ├── text-rdf.png
│ │ │ │ │ ├── text-rtf.png
│ │ │ │ │ ├── text-sgml.png
│ │ │ │ │ ├── text-troff.png
│ │ │ │ │ ├── text-vcalendar.png
│ │ │ │ │ ├── text-vnd.abc.png
│ │ │ │ │ ├── text-vnd.wap.wml.png
│ │ │ │ │ ├── text-x-adasrc.png
│ │ │ │ │ ├── text-x-authors.png
│ │ │ │ │ ├── text-x-bibtex.png
│ │ │ │ │ ├── text-x-c++hdr.png
│ │ │ │ │ ├── text-x-c++src.png
│ │ │ │ │ ├── text-x-changelog.png
│ │ │ │ │ ├── text-x-chdr.png
│ │ │ │ │ ├── text-x-cmake.png
│ │ │ │ │ ├── text-x-copying.png
│ │ │ │ │ ├── text-x-csharp.png
│ │ │ │ │ ├── text-x-csrc.png
│ │ │ │ │ ├── text-x-dtd.png
│ │ │ │ │ ├── text-x-generic.png
│ │ │ │ │ ├── text-x-haskell.png
│ │ │ │ │ ├── text-x-hex.png
│ │ │ │ │ ├── text-x-install.png
│ │ │ │ │ ├── text-x-java.png
│ │ │ │ │ ├── text-x-katefilelist.png
│ │ │ │ │ ├── text-x-ldif.png
│ │ │ │ │ ├── text-x-lilypond.png
│ │ │ │ │ ├── text-x-log.png
│ │ │ │ │ ├── text-x-makefile.png
│ │ │ │ │ ├── text-x-nfo.png
│ │ │ │ │ ├── text-x-objchdr.png
│ │ │ │ │ ├── text-x-objcsrc.png
│ │ │ │ │ ├── text-x-pascal.png
│ │ │ │ │ ├── text-x-patch.png
│ │ │ │ │ ├── text-x-plain.png
│ │ │ │ │ ├── text-x-po.png
│ │ │ │ │ ├── text-x-python.png
│ │ │ │ │ ├── text-x-qml.png
│ │ │ │ │ ├── text-x-readme.png
│ │ │ │ │ ├── text-x-rpm-spec.png
│ │ │ │ │ ├── text-x-script.png
│ │ │ │ │ ├── text-x-sql.png
│ │ │ │ │ ├── text-x-tcl.png
│ │ │ │ │ ├── text-x-tex.png
│ │ │ │ │ ├── text-x-texinfo.png
│ │ │ │ │ ├── text-x-vcard.png
│ │ │ │ │ ├── text-x-xslfo.png
│ │ │ │ │ ├── text-xmcd.png
│ │ │ │ │ ├── text-xml.png
│ │ │ │ │ ├── unknown.png
│ │ │ │ │ ├── uri-mms.png
│ │ │ │ │ ├── uri-mmst.png
│ │ │ │ │ ├── uri-mmsu.png
│ │ │ │ │ ├── uri-pnm.png
│ │ │ │ │ ├── uri-rtspt.png
│ │ │ │ │ ├── uri-rtspu.png
│ │ │ │ │ ├── video-x-generic.png
│ │ │ │ │ ├── video-x-mng.png
│ │ │ │ │ ├── x-kde-nsplugin-generated.png
│ │ │ │ │ ├── x-mail-distribution-list.png
│ │ │ │ │ ├── x-media-podcast.png
│ │ │ │ │ ├── x-office-address-book.png
│ │ │ │ │ ├── x-office-calendar.png
│ │ │ │ │ ├── x-office-contact.png
│ │ │ │ │ ├── x-office-document.png
│ │ │ │ │ └── x-office-spreadsheet.png
│ │ │ │ ├── process-idle.png
│ │ │ │ ├── process-working.png
│ │ │ │ ├── restore.png
│ │ │ │ ├── run.png
│ │ │ │ ├── settings.png
│ │ │ │ ├── tree-closed.png
│ │ │ │ ├── tree-empty.png
│ │ │ │ └── tree-open.png
│ │ │ │ ├── index.js
│ │ │ │ ├── index.qml
│ │ │ │ ├── jquery-1.8.2.min.js
│ │ │ │ ├── jquery.ba-resize.min.js
│ │ │ │ ├── jquery.pjax.js
│ │ │ │ ├── mimetype.js
│ │ │ │ ├── server.qml
│ │ │ │ ├── settings.qml
│ │ │ │ └── settings
│ │ │ │ └── DirectoryTreeView.qml
│ │ ├── carpet.pro
│ │ ├── carpet.qrc
│ │ ├── carpetrc
│ │ └── main.cpp
│ │ ├── imports
│ │ ├── Carpet
│ │ │ ├── Carpet.pro
│ │ │ ├── abstractcarpetjob.cpp
│ │ │ ├── abstractcarpetjob.h
│ │ │ ├── abstractcarpetjobprivate_p.cpp
│ │ │ ├── abstractcarpetjobprivate_p.h
│ │ │ ├── addexcludepatternjob.cpp
│ │ │ ├── addexcludepatternjob.h
│ │ │ ├── backup.cpp
│ │ │ ├── backup.h
│ │ │ ├── backupjob.cpp
│ │ │ ├── backupjob.h
│ │ │ ├── carpetabstractmodel.cpp
│ │ │ ├── carpetabstractmodel.h
│ │ │ ├── carpetdb.cpp
│ │ │ ├── carpetdb.h
│ │ │ ├── carpetfileinfo.h
│ │ │ ├── carpetplugin.h
│ │ │ ├── entrymodel.cpp
│ │ │ ├── entrymodel.h
│ │ │ ├── filelistmodel.cpp
│ │ │ ├── filelistmodel.h
│ │ │ ├── frequentlychangedmodel.cpp
│ │ │ ├── frequentlychangedmodel.h
│ │ │ ├── historymodel.cpp
│ │ │ ├── historymodel.h
│ │ │ ├── pathmodel.cpp
│ │ │ ├── pathmodel.h
│ │ │ ├── recentlychangedmodel.cpp
│ │ │ ├── recentlychangedmodel.h
│ │ │ ├── removeexcludepatternjob.cpp
│ │ │ ├── removeexcludepatternjob.h
│ │ │ ├── sizeconsumedmodel.cpp
│ │ │ ├── sizeconsumedmodel.h
│ │ │ ├── updatestatisticsjob.cpp
│ │ │ └── updatestatisticsjob.h
│ │ └── imports.pro
│ │ └── src.pro
├── demos.pro
├── minimal
│ ├── contents
│ │ └── index.qml
│ ├── main.cpp
│ ├── minimal.pro
│ ├── minimal.qrc
│ └── minimalrc
└── ssso
│ ├── src
│ ├── plugins
│ │ ├── plugins.pro
│ │ └── protocolhandler
│ │ │ ├── protocolhandler.pro
│ │ │ └── ssso
│ │ │ ├── ssso.pro
│ │ │ ├── sssohandler.cpp
│ │ │ ├── sssohandler.h
│ │ │ └── sssoplugin.h
│ ├── src.pro
│ └── ssso
│ │ ├── contents
│ │ ├── AccountModel.qml
│ │ ├── SSSOBase.qml
│ │ ├── SSSODatabase.qml
│ │ ├── SessionModel.qml
│ │ ├── SignupModel.qml
│ │ ├── UserInput.qml
│ │ ├── index.qml
│ │ ├── password.qml
│ │ └── signup.qml
│ │ ├── main.cpp
│ │ ├── ssso.pro
│ │ ├── ssso.qrc
│ │ └── sssorc
│ └── ssso.pro
├── etc
├── etc.pri
├── etc.qrc
└── silkconfig.qml
├── silk.pri
├── silk.pro
├── silkapp.pri
├── silkdata.pri
├── silkdeployment.pri
├── silkimports.pri
├── silklib.pri
├── silkplatform.pri
├── silkplugin.pri
├── silkroot.pri
├── silkrpath.pri
├── silktest.pri
└── src
├── imports
├── Silk
│ ├── Bootstrap
│ │ ├── ABtn.qml
│ │ ├── ABtnPrimary.qml
│ │ ├── Alert.qml
│ │ ├── AlertBlock.qml
│ │ ├── AlertInfo.qml
│ │ ├── Bootstrap.pro
│ │ ├── Bootstrap.qrc
│ │ ├── Btn.qml
│ │ ├── BtnNavbar.qml
│ │ ├── Button.qml
│ │ ├── ButtonGroup.qml
│ │ ├── Container.qml
│ │ ├── ContainerFluid.qml
│ │ ├── ControlGroup.qml
│ │ ├── Controls.qml
│ │ ├── Divider.qml
│ │ ├── DropdownButton.qml
│ │ ├── HeroUnit.qml
│ │ ├── IconBar.qml
│ │ ├── IconChevronRight.qml
│ │ ├── Label.qml
│ │ ├── LabelImportant.qml
│ │ ├── LabelInfo.qml
│ │ ├── LabelInverse.qml
│ │ ├── LabelSuccess.qml
│ │ ├── LabelWarning.qml
│ │ ├── Lead.qml
│ │ ├── Nav.qml
│ │ ├── NavCollapse.qml
│ │ ├── NavDropdown.qml
│ │ ├── NavHeader.qml
│ │ ├── NavItem.qml
│ │ ├── NavList.qml
│ │ ├── Navbar.qml
│ │ ├── NavbarForm.qml
│ │ ├── PageHeader.qml
│ │ ├── Row.qml
│ │ ├── RowFluid.qml
│ │ ├── Span1.qml
│ │ ├── Span12.qml
│ │ ├── Span2.qml
│ │ ├── Span3.qml
│ │ ├── Span4.qml
│ │ ├── Span5.qml
│ │ ├── Span6.qml
│ │ ├── Span8.qml
│ │ ├── Span9.qml
│ │ ├── Tab.qml
│ │ ├── TabBar.qml
│ │ ├── TabContent.qml
│ │ ├── TabPane.qml
│ │ ├── Tabbable.qml
│ │ ├── Table.qml
│ │ ├── Thumbnails.qml
│ │ ├── Tr.qml
│ │ ├── bootstrapplugin.h
│ │ └── qmldir
│ ├── CSS
│ │ ├── 21_Css.qml
│ │ ├── 21_Rule.qml
│ │ ├── 30_Css.qml
│ │ ├── 30_Rule.qml
│ │ ├── CSS.pro
│ │ ├── CSS.qrc
│ │ ├── cssplugin.h
│ │ ├── cssrule.cpp
│ │ ├── cssrule.h
│ │ └── qmldir
│ ├── Cache
│ │ ├── Cache.pro
│ │ ├── cacheobject.cpp
│ │ ├── cacheobject.h
│ │ └── cacheplugin.h
│ ├── HTML
│ │ ├── 401_A.qml
│ │ ├── 401_Abbr.qml
│ │ ├── 401_AbstractCoreattrsElement.qml
│ │ ├── 401_AbstractElement.qml
│ │ ├── 401_AbstractI18nCoreattrsElement.qml
│ │ ├── 401_AbstractI18nCoreattrsEventsElement.qml
│ │ ├── 401_AbstractI18nElement.qml
│ │ ├── 401_Acronym.qml
│ │ ├── 401_Address.qml
│ │ ├── 401_Area.qml
│ │ ├── 401_Article.qml
│ │ ├── 401_Aside.qml
│ │ ├── 401_Base.qml
│ │ ├── 401_BlockQuote.qml
│ │ ├── 401_Body.qml
│ │ ├── 401_Br.qml
│ │ ├── 401_Button.qml
│ │ ├── 401_Caption.qml
│ │ ├── 401_Cite.qml
│ │ ├── 401_Code.qml
│ │ ├── 401_Col.qml
│ │ ├── 401_ColGroup.qml
│ │ ├── 401_Dd.qml
│ │ ├── 401_Del.qml
│ │ ├── 401_Dfn.qml
│ │ ├── 401_Div.qml
│ │ ├── 401_Dl.qml
│ │ ├── 401_DocType.qml
│ │ ├── 401_Dt.qml
│ │ ├── 401_Em.qml
│ │ ├── 401_FieldSet.qml
│ │ ├── 401_FigCaption.qml
│ │ ├── 401_Figure.qml
│ │ ├── 401_Footer.qml
│ │ ├── 401_Form.qml
│ │ ├── 401_Frame.qml
│ │ ├── 401_FrameSet.qml
│ │ ├── 401_H1.qml
│ │ ├── 401_H2.qml
│ │ ├── 401_H3.qml
│ │ ├── 401_H4.qml
│ │ ├── 401_H5.qml
│ │ ├── 401_H6.qml
│ │ ├── 401_HGroup.qml
│ │ ├── 401_Head.qml
│ │ ├── 401_Header.qml
│ │ ├── 401_Hr.qml
│ │ ├── 401_Html.qml
│ │ ├── 401_IFrame.qml
│ │ ├── 401_Img.qml
│ │ ├── 401_Input.qml
│ │ ├── 401_Ins.qml
│ │ ├── 401_Kbd.qml
│ │ ├── 401_Label.qml
│ │ ├── 401_Legend.qml
│ │ ├── 401_Li.qml
│ │ ├── 401_Link.qml
│ │ ├── 401_Map.qml
│ │ ├── 401_Meta.qml
│ │ ├── 401_Nav.qml
│ │ ├── 401_NoFrames.qml
│ │ ├── 401_NoScript.qml
│ │ ├── 401_Object.qml
│ │ ├── 401_Ol.qml
│ │ ├── 401_OptGroup.qml
│ │ ├── 401_Option.qml
│ │ ├── 401_P.qml
│ │ ├── 401_Param.qml
│ │ ├── 401_Pre.qml
│ │ ├── 401_Q.qml
│ │ ├── 401_Samp.qml
│ │ ├── 401_Script.qml
│ │ ├── 401_Section.qml
│ │ ├── 401_Select.qml
│ │ ├── 401_Span.qml
│ │ ├── 401_Strong.qml
│ │ ├── 401_Style.qml
│ │ ├── 401_Sub.qml
│ │ ├── 401_Sup.qml
│ │ ├── 401_TBody.qml
│ │ ├── 401_TFoot.qml
│ │ ├── 401_THead.qml
│ │ ├── 401_Table.qml
│ │ ├── 401_Td.qml
│ │ ├── 401_TextArea.qml
│ │ ├── 401_Th.qml
│ │ ├── 401_Title.qml
│ │ ├── 401_Tr.qml
│ │ ├── 401_Ul.qml
│ │ ├── 401_Var.qml
│ │ ├── 50_A.qml
│ │ ├── 50_Abbr.qml
│ │ ├── 50_AbstractElement.qml
│ │ ├── 50_AbstractGlobalAttributesElement.qml
│ │ ├── 50_Address.qml
│ │ ├── 50_Area.qml
│ │ ├── 50_Article.qml
│ │ ├── 50_Aside.qml
│ │ ├── 50_Audio.qml
│ │ ├── 50_B.qml
│ │ ├── 50_BDi.qml
│ │ ├── 50_BDo.qml
│ │ ├── 50_Base.qml
│ │ ├── 50_BlockQuote.qml
│ │ ├── 50_Body.qml
│ │ ├── 50_Br.qml
│ │ ├── 50_Button.qml
│ │ ├── 50_Canvas.qml
│ │ ├── 50_Caption.qml
│ │ ├── 50_Cite.qml
│ │ ├── 50_Code.qml
│ │ ├── 50_Col.qml
│ │ ├── 50_ColGroup.qml
│ │ ├── 50_Command.qml
│ │ ├── 50_DataList.qml
│ │ ├── 50_Dd.qml
│ │ ├── 50_Del.qml
│ │ ├── 50_Details.qml
│ │ ├── 50_Dfn.qml
│ │ ├── 50_Div.qml
│ │ ├── 50_Dl.qml
│ │ ├── 50_DocType.qml
│ │ ├── 50_Dt.qml
│ │ ├── 50_Em.qml
│ │ ├── 50_Embed.qml
│ │ ├── 50_FieldSet.qml
│ │ ├── 50_FigCaption.qml
│ │ ├── 50_Figure.qml
│ │ ├── 50_Footer.qml
│ │ ├── 50_Form.qml
│ │ ├── 50_H1.qml
│ │ ├── 50_H2.qml
│ │ ├── 50_H3.qml
│ │ ├── 50_H4.qml
│ │ ├── 50_H5.qml
│ │ ├── 50_H6.qml
│ │ ├── 50_HGroup.qml
│ │ ├── 50_Head.qml
│ │ ├── 50_Header.qml
│ │ ├── 50_Hr.qml
│ │ ├── 50_Html.qml
│ │ ├── 50_I.qml
│ │ ├── 50_IFrame.qml
│ │ ├── 50_Img.qml
│ │ ├── 50_Input.qml
│ │ ├── 50_Ins.qml
│ │ ├── 50_Kbd.qml
│ │ ├── 50_KeyGen.qml
│ │ ├── 50_Label.qml
│ │ ├── 50_Legend.qml
│ │ ├── 50_Li.qml
│ │ ├── 50_Link.qml
│ │ ├── 50_Map.qml
│ │ ├── 50_Mark.qml
│ │ ├── 50_Menu.qml
│ │ ├── 50_Meta.qml
│ │ ├── 50_Meter.qml
│ │ ├── 50_Nav.qml
│ │ ├── 50_NoScript.qml
│ │ ├── 50_Object.qml
│ │ ├── 50_Ol.qml
│ │ ├── 50_OptGroup.qml
│ │ ├── 50_Option.qml
│ │ ├── 50_Output.qml
│ │ ├── 50_P.qml
│ │ ├── 50_Param.qml
│ │ ├── 50_Pre.qml
│ │ ├── 50_Progress.qml
│ │ ├── 50_Q.qml
│ │ ├── 50_Rp.qml
│ │ ├── 50_Rt.qml
│ │ ├── 50_Ruby.qml
│ │ ├── 50_S.qml
│ │ ├── 50_Samp.qml
│ │ ├── 50_Script.qml
│ │ ├── 50_Section.qml
│ │ ├── 50_Select.qml
│ │ ├── 50_Small.qml
│ │ ├── 50_Source.qml
│ │ ├── 50_Span.qml
│ │ ├── 50_Strong.qml
│ │ ├── 50_Style.qml
│ │ ├── 50_Sub.qml
│ │ ├── 50_Summary.qml
│ │ ├── 50_Sup.qml
│ │ ├── 50_TBody.qml
│ │ ├── 50_TFoot.qml
│ │ ├── 50_THead.qml
│ │ ├── 50_Table.qml
│ │ ├── 50_Td.qml
│ │ ├── 50_TextArea.qml
│ │ ├── 50_Th.qml
│ │ ├── 50_Time.qml
│ │ ├── 50_Title.qml
│ │ ├── 50_Tr.qml
│ │ ├── 50_Track.qml
│ │ ├── 50_U.qml
│ │ ├── 50_Ul.qml
│ │ ├── 50_Var.qml
│ │ ├── 50_Video.qml
│ │ ├── 50_WBr.qml
│ │ ├── HTML.pro
│ │ ├── HTML.qrc
│ │ ├── htmlplugin.h
│ │ └── qmldir
│ ├── JSON
│ │ ├── JSON.pro
│ │ ├── jsonobject.cpp
│ │ ├── jsonobject.h
│ │ └── jsonplugin.h
│ ├── OAuth
│ │ ├── OAuth.pro
│ │ ├── hmac_sha1.cpp
│ │ ├── hmac_sha1.h
│ │ ├── oauth.cpp
│ │ ├── oauth.h
│ │ └── oauthplugin.h
│ ├── Process
│ │ ├── Process.pro
│ │ ├── process.cpp
│ │ ├── process.h
│ │ └── processplugin.h
│ ├── RSS
│ │ ├── 20_Author.qml
│ │ ├── 20_Category.qml
│ │ ├── 20_Channel.qml
│ │ ├── 20_Cloud.qml
│ │ ├── 20_Comments.qml
│ │ ├── 20_Copyright.qml
│ │ ├── 20_Description.qml
│ │ ├── 20_Docs.qml
│ │ ├── 20_Enclosure.qml
│ │ ├── 20_Generator.qml
│ │ ├── 20_Guid.qml
│ │ ├── 20_Image.qml
│ │ ├── 20_Item.qml
│ │ ├── 20_Language.qml
│ │ ├── 20_LastBuildDate.qml
│ │ ├── 20_Link.qml
│ │ ├── 20_ManagingEditor.qml
│ │ ├── 20_PubDate.qml
│ │ ├── 20_Rss.qml
│ │ ├── 20_SkipDays.qml
│ │ ├── 20_SkipHours.qml
│ │ ├── 20_Source.qml
│ │ ├── 20_TextInput.qml
│ │ ├── 20_Title.qml
│ │ ├── 20_Ttl.qml
│ │ ├── RSS.pro
│ │ ├── RSS.qrc
│ │ ├── qmldir
│ │ └── rssplugin.h
│ ├── SMTP
│ │ ├── SMTP.pro
│ │ ├── smtp.cpp
│ │ ├── smtp.h
│ │ └── smtpplugin.h
│ ├── Silk.pro
│ ├── Utils
│ │ ├── Utils.pro
│ │ ├── client.cpp
│ │ ├── client.h
│ │ ├── config.cpp
│ │ ├── config.h
│ │ ├── recursive.cpp
│ │ ├── recursive.h
│ │ ├── repeater.cpp
│ │ ├── repeater.h
│ │ ├── server.cpp
│ │ ├── server.h
│ │ └── utilsplugin.h
│ └── XML
│ │ ├── XML.pro
│ │ ├── xmlcomment.cpp
│ │ ├── xmlcomment.h
│ │ ├── xmlplugin.h
│ │ ├── xmltag.cpp
│ │ └── xmltag.h
└── imports.pro
├── lib
├── lib.pri
├── lib.pro
├── silkabstracthttpobject.cpp
├── silkabstracthttpobject.h
├── silkabstractmimehandler.cpp
├── silkabstractmimehandler.h
├── silkabstractobject.cpp
├── silkabstractobject.h
├── silkabstractprotocolhandler.cpp
├── silkabstractprotocolhandler.h
├── silkconfig.cpp
├── silkconfig.h
├── silkglobal.h
├── silkimportsinterface.h
├── silkmimehandlerinterface.h
├── silkprotocolhandlerinterface.h
├── silkserver.cpp
├── silkserver.h
├── silkserver_logging.cpp
└── silkserver_logging.h
├── plugins
├── mimehandler
│ ├── deflate
│ │ ├── deflate.pro
│ │ ├── deflatehandler.cpp
│ │ ├── deflatehandler.h
│ │ └── deflateplugin.h
│ ├── mimehandler.pro
│ └── qml
│ │ ├── httpobject.cpp
│ │ ├── httpobject.h
│ │ ├── qml.pro
│ │ ├── qmlhandler.cpp
│ │ ├── qmlhandler.h
│ │ ├── qmlplugin.h
│ │ ├── silk.cpp
│ │ ├── silk.h
│ │ ├── text.cpp
│ │ ├── text.h
│ │ ├── websocketobject.cpp
│ │ └── websocketobject.h
├── plugins.pro
└── protocolhandler
│ ├── http
│ ├── http.pro
│ ├── httphandler.cpp
│ ├── httphandler.h
│ └── httpplugin.h
│ └── protocolhandler.pro
├── silk
├── main.cpp
└── silk.pro
└── src.pro
/.gitignore:
--------------------------------------------------------------------------------
1 | *.pro.user*
2 |
--------------------------------------------------------------------------------
/.gitmodules:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/.gitmodules
--------------------------------------------------------------------------------
/INSTALL:
--------------------------------------------------------------------------------
1 | $ git clone git://git.qtquick.me/silk.git
2 | $ cd silk
3 | $ git submodule update --init
4 | $ qt5/bin/qmake
5 | $ make
6 | $ ./bin/silk
7 | silk is running on 8080
8 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Copyright (c) 2012 - 2013 Silk Project.
2 | All rights reserved.
3 |
4 | Redistribution and use in source and binary forms, with or without
5 | modification, are permitted provided that the following conditions are met:
6 | * Redistributions of source code must retain the above copyright
7 | notice, this list of conditions and the following disclaimer.
8 | * Redistributions in binary form must reproduce the above copyright
9 | notice, this list of conditions and the following disclaimer in the
10 | documentation and/or other materials provided with the distribution.
11 | * Neither the name of the Silk nor the
12 | names of its contributors may be used to endorse or promote products
13 | derived from this software without specific prior written permission.
14 |
15 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 |
--------------------------------------------------------------------------------
/contents/contents.pri:
--------------------------------------------------------------------------------
1 | include(errors/errors.pri)
2 |
--------------------------------------------------------------------------------
/contents/contents.pro:
--------------------------------------------------------------------------------
1 | TEMPLATE = aux
2 |
3 | include(../silk.pri)
4 | root.source = root
5 | root.target = $${SILK_DATA_PATH}
6 |
7 | daemons.source = daemons
8 | daemons.target = $${SILK_DATA_PATH}
9 |
10 | DEPLOYMENTFOLDERS = root daemons
11 |
12 | silk_platform_linux {
13 | target.path = $$PREFIX/
14 | }
15 |
16 | include(../silkdeployment.pri)
17 | qtcAddDeployment()
18 |
--------------------------------------------------------------------------------
/contents/errors/errors.pri:
--------------------------------------------------------------------------------
1 | RESOURCES += $$PWD/errors.qrc
2 |
--------------------------------------------------------------------------------
/contents/errors/errors.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | 301.qml
4 | 403.qml
5 | 404.qml
6 | 500.qml
7 |
8 |
9 |
--------------------------------------------------------------------------------
/contents/root/3rdparty/img/glyphicons-halflings-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/contents/root/3rdparty/img/glyphicons-halflings-white.png
--------------------------------------------------------------------------------
/contents/root/3rdparty/img/glyphicons-halflings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/contents/root/3rdparty/img/glyphicons-halflings.png
--------------------------------------------------------------------------------
/contents/root/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/contents/root/background.png
--------------------------------------------------------------------------------
/contents/root/examples/components/qmldir:
--------------------------------------------------------------------------------
1 | Rectangle Rectangle.qml
2 |
--------------------------------------------------------------------------------
/contents/root/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/contents/root/favicon.ico
--------------------------------------------------------------------------------
/contents/root/qt-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/contents/root/qt-logo.png
--------------------------------------------------------------------------------
/contents/root/scaffolding/CssExample.qml:
--------------------------------------------------------------------------------
1 | import Silk.CSS 3.0
2 |
3 | Css {
4 | Rule {
5 | selector: 'body'
6 | background_color: 'red'
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/contents/root/scaffolding/HtmlExample.qml:
--------------------------------------------------------------------------------
1 | import Silk.HTML 5.0
2 |
3 | Html {
4 | lang: "en"
5 | Head {
6 | Meta { charset: "utf-8" }
7 | Title { text: "test page" }
8 | }
9 |
10 | Body {
11 | H1 { text: "Hello, world!" }
12 | P { text: "This is how HTML looks like on Silk." }
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/contents/root/scaffolding/JsonExample.qml:
--------------------------------------------------------------------------------
1 | import Silk.JSON 1.0
2 |
3 | Json {
4 | object: { "greetings": "Hello, world!" }
5 | }
6 |
--------------------------------------------------------------------------------
/contents/root/scaffolding/TextExample.qml:
--------------------------------------------------------------------------------
1 | import Silk.Text 1.0
2 |
3 | Text {
4 | text: 'Hello, world!'
5 | }
6 |
--------------------------------------------------------------------------------
/contents/root/scaffolding/XmlExample.qml:
--------------------------------------------------------------------------------
1 | import Silk.XML 1.0
2 |
3 | Tag {
4 | tagName: 'quiz'
5 | Tag {
6 | tagName: 'question'
7 | text: 'Who was the forty-second president of the U.S.A?'
8 | }
9 | Tag {
10 | tagName: 'answer'
11 | text: 'William Jefferson Clinton'
12 | }
13 | Comment {
14 | text: ' Note: We need to add more questions later.'
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/contents/root/scaffolding/css.qml:
--------------------------------------------------------------------------------
1 | CssExample {}
2 |
--------------------------------------------------------------------------------
/contents/root/scaffolding/html.qml:
--------------------------------------------------------------------------------
1 | HtmlExample {}
2 |
--------------------------------------------------------------------------------
/contents/root/scaffolding/json.qml:
--------------------------------------------------------------------------------
1 | JsonExample {}
2 |
--------------------------------------------------------------------------------
/contents/root/scaffolding/text.qml:
--------------------------------------------------------------------------------
1 | TextExample {}
2 |
--------------------------------------------------------------------------------
/contents/root/scaffolding/xml.qml:
--------------------------------------------------------------------------------
1 | XmlExample {}
2 |
--------------------------------------------------------------------------------
/demos/bootstrap/bootstraprc:
--------------------------------------------------------------------------------
1 | {
2 | "listen": { "address": "*", "port": 8081 }
3 | , "contents": { "*": "." }
4 | , "silk": { "tasks": [] }
5 | , "cache": { "qml": false }
6 | }
7 |
8 |
--------------------------------------------------------------------------------
/demos/carpet/carpet.pro:
--------------------------------------------------------------------------------
1 | TEMPLATE = subdirs
2 | SUBDIRS = src
3 |
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/components/QWidget.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | QLayoutItem {
28 | _class: "widget"
29 | }
30 |
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/favicon.ico
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/anonymous.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/anonymous.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/backuplist.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/backuplist.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/dashboard.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/disabled.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/download.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/download.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/edit-delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/edit-delete.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/enabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/enabled.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/file.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/folder-home.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/folder-home.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/folder-open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/folder-open.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/folder-temp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/folder-temp.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/folder.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/list-add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/list-add.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/list-remove.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/list-remove.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-epub+zip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-epub+zip.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-illustrator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-illustrator.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-javascript.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-javascript.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-msword-template.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-msword-template.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-msword.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-msword.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-octet-stream.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-octet-stream.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-pdf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-pdf.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-pgp-encrypted.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-pgp-encrypted.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-pgp-keys.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-pgp-keys.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-pgp-signature.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-pgp-signature.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-pkcs7-mime.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-pkcs7-mime.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-pkcs7-signature.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-pkcs7-signature.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-postscript.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-postscript.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-relaxng.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-relaxng.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-rss+xml.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-rss+xml.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-rtf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-rtf.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-sxw.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-sxw.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd-google-earth-kml.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd-google-earth-kml.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.iccprofile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.iccprofile.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.ms-access.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.ms-access.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.ms-excel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.ms-excel.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.ms-powerpoint.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.ms-powerpoint.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.oasis.opendocument.chart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.oasis.opendocument.chart.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.oasis.opendocument.database.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.oasis.opendocument.database.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.oasis.opendocument.formula-template.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.oasis.opendocument.formula-template.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.oasis.opendocument.formula.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.oasis.opendocument.formula.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.oasis.opendocument.graphics.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.oasis.opendocument.graphics.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.oasis.opendocument.image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.oasis.opendocument.image.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.oasis.opendocument.presentation-template.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.oasis.opendocument.presentation-template.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.oasis.opendocument.presentation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.oasis.opendocument.presentation.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.oasis.opendocument.spreadsheet-template.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.oasis.opendocument.spreadsheet-template.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.oasis.opendocument.spreadsheet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.oasis.opendocument.spreadsheet.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.oasis.opendocument.text.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.oasis.opendocument.text.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.openxmlformats-officedocument.wordprocessingml.document.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.openxmlformats-officedocument.wordprocessingml.document.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.rn-realmedia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.rn-realmedia.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.scribus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.scribus.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.stardivision.calc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.stardivision.calc.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.stardivision.draw.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.stardivision.draw.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.stardivision.math.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.stardivision.math.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.sun.xml.calc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.sun.xml.calc.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.sun.xml.calc.template.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.sun.xml.calc.template.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.sun.xml.draw.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.sun.xml.draw.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.sun.xml.draw.template.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.sun.xml.draw.template.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.sun.xml.math.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.sun.xml.math.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.wordperfect.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-vnd.wordperfect.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-7z-compressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-7z-compressed.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-abiword.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-abiword.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-ace.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-ace.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-applix-spreadsheet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-applix-spreadsheet.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-applix-word.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-applix-word.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-ar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-ar.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-arc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-arc.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-archive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-archive.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-arj.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-arj.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-awk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-awk.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-bittorrent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-bittorrent.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-blender.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-blender.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-bzdvi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-bzdvi.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-bzip-compressed-tar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-bzip-compressed-tar.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-bzip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-bzip.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-cd-image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-cd-image.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-cda.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-cda.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-chm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-chm.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-compress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-compress.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-compressed-tar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-compressed-tar.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-cpio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-cpio.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-cue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-cue.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-deb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-deb.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-designer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-designer.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-desktop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-desktop.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-egon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-egon.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-executable-script.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-executable-script.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-executable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-executable.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-font-afm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-font-afm.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-font-bdf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-font-bdf.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-font-otf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-font-otf.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-font-pcf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-font-pcf.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-font-snf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-font-snf.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-font-ttf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-font-ttf.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-font-type1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-font-type1.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-gnumeric.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-gnumeric.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-gzdvi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-gzdvi.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-gzip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-gzip.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-gzpostscript.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-gzpostscript.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-it87.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-it87.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-java-applet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-java-applet.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-java-archive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-java-archive.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-java.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-java.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-javascript.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-javascript.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-k3b.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-k3b.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-kcsrc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-kcsrc.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-kformula.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-kformula.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-kgetlist.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-kgetlist.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-kontour.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-kontour.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-kplato.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-kplato.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-krita.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-krita.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-kvtml.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-kvtml.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-kword.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-kword.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-lha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-lha.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-lyx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-lyx.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-lzma-compressed-tar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-lzma-compressed-tar.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-lzop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-lzop.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-m4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-m4.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-marble.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-marble.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-mimearchive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-mimearchive.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-mplayer2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-mplayer2.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-ms-dos-executable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-ms-dos-executable.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-mswinurl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-mswinurl.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-mswrite.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-mswrite.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-nzb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-nzb.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-object.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-object.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-pak.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-pak.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-pem-key.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-pem-key.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-perl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-perl.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-php.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-php.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-plasma.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-plasma.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-python-bytecode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-python-bytecode.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-qet-element.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-qet-element.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-qet-project.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-qet-project.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-quattropro.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-quattropro.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-rar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-rar.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-rpm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-rpm.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-ruby.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-ruby.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-sharedlib.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-sharedlib.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-shellscript.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-shellscript.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-shockwave-flash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-shockwave-flash.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-siag.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-siag.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-smb-server.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-smb-server.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-smb-workgroup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-smb-workgroup.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-srt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-srt.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-srtrip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-srtrip.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-subrip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-subrip.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-tar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-tar.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-tarz.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-tarz.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-tgif.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-tgif.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-trash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-trash.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-troff-man.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-troff-man.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-tzo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-tzo.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-wmf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-wmf.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-zerosize.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-zerosize.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-x-zoo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-x-zoo.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-xhtml+xml.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-xhtml+xml.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-xml.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-xml.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-xsd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-xsd.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-xslt+xml.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-xslt+xml.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/application-zip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/application-zip.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/audio-ac3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/audio-ac3.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/audio-midi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/audio-midi.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/audio-prs.sid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/audio-prs.sid.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/audio-vn.rn-realmedia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/audio-vn.rn-realmedia.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/audio-vnd.rn-realvideo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/audio-vnd.rn-realvideo.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/audio-x-adpcm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/audio-x-adpcm.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/audio-x-aiff.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/audio-x-aiff.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/audio-x-flac+ogg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/audio-x-flac+ogg.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/audio-x-flac.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/audio-x-flac.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/audio-x-generic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/audio-x-generic.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/audio-x-monkey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/audio-x-monkey.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/audio-x-speex+ogg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/audio-x-speex+ogg.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/audio-x-wav.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/audio-x-wav.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/encrypted.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/encrypted.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/fonts-package.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/fonts-package.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/image-svg+xml-compressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/image-svg+xml-compressed.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/image-svg+xml.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/image-svg+xml.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/image-vnd.dgn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/image-vnd.dgn.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/image-vnd.dwg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/image-vnd.dwg.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/image-x-adobe-dng.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/image-x-adobe-dng.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/image-x-eps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/image-x-eps.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/image-x-generic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/image-x-generic.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/image-x-vnd.trolltech.qpicture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/image-x-vnd.trolltech.qpicture.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/image-x-xfig.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/image-x-xfig.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/inode-directory.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/inode-directory.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/inode-symlink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/inode-symlink.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/mail-message-new-list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/mail-message-new-list.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/message-news.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/message-news.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/message-partial.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/message-partial.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/message-rfc822.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/message-rfc822.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/message-x-gnu-rmail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/message-x-gnu-rmail.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/message.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/message.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/package-x-generic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/package-x-generic.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/removed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/removed.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-calendar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-calendar.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-csharp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-csharp.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-css.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-csv.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-csv.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-directory.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-directory.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-enriched.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-enriched.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-html.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-html.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-mathml.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-mathml.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-plain.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-plain.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-rdf+xml.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-rdf+xml.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-rdf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-rdf.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-rtf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-rtf.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-sgml.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-sgml.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-troff.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-troff.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-vcalendar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-vcalendar.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-vnd.abc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-vnd.abc.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-vnd.wap.wml.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-vnd.wap.wml.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-adasrc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-adasrc.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-authors.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-authors.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-bibtex.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-bibtex.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-c++hdr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-c++hdr.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-c++src.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-c++src.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-changelog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-changelog.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-chdr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-chdr.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-cmake.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-cmake.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-copying.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-copying.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-csharp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-csharp.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-csrc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-csrc.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-dtd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-dtd.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-generic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-generic.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-haskell.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-haskell.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-hex.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-hex.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-install.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-install.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-java.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-java.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-katefilelist.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-katefilelist.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-ldif.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-ldif.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-lilypond.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-lilypond.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-log.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-log.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-makefile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-makefile.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-nfo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-nfo.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-objchdr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-objchdr.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-objcsrc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-objcsrc.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-pascal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-pascal.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-patch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-patch.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-plain.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-plain.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-po.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-po.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-python.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-python.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-qml.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-qml.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-readme.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-readme.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-rpm-spec.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-rpm-spec.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-script.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-script.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-sql.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-sql.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-tcl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-tcl.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-tex.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-tex.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-texinfo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-texinfo.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-vcard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-vcard.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-x-xslfo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-x-xslfo.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-xmcd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-xmcd.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/text-xml.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/text-xml.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/unknown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/unknown.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/uri-mms.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/uri-mms.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/uri-mmst.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/uri-mmst.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/uri-mmsu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/uri-mmsu.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/uri-pnm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/uri-pnm.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/uri-rtspt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/uri-rtspt.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/uri-rtspu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/uri-rtspu.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/video-x-generic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/video-x-generic.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/video-x-mng.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/video-x-mng.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/x-kde-nsplugin-generated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/x-kde-nsplugin-generated.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/x-mail-distribution-list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/x-mail-distribution-list.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/x-media-podcast.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/x-media-podcast.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/x-office-address-book.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/x-office-address-book.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/x-office-calendar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/x-office-calendar.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/x-office-contact.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/x-office-contact.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/x-office-document.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/x-office-document.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/mime/x-office-spreadsheet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/mime/x-office-spreadsheet.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/process-idle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/process-idle.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/process-working.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/process-working.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/restore.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/restore.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/run.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/run.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/settings.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/tree-closed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/tree-closed.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/tree-empty.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/tree-empty.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/icons/tree-open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qt-users-jp/silk/7764876ef88e2fbfcf1fff5e3c2cd9b15b4fd0ef/demos/carpet/src/carpet/app/web/icons/tree-open.png
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/jquery.ba-resize.min.js:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery resize event - v1.1 - 3/14/2010
3 | * http://benalman.com/projects/jquery-resize-plugin/
4 | *
5 | * Copyright (c) 2010 "Cowboy" Ben Alman
6 | * Dual licensed under the MIT and GPL licenses.
7 | * http://benalman.com/about/license/
8 | */
9 | (function($,h,c){var a=$([]),e=$.resize=$.extend($.resize,{}),i,k="setTimeout",j="resize",d=j+"-special-event",b="delay",f="throttleWindow";e[b]=250;e[f]=true;$.event.special[j]={setup:function(){if(!e[f]&&this[k]){return false}var l=$(this);a=a.add(l);$.data(this,d,{w:l.width(),h:l.height()});if(a.length===1){g()}},teardown:function(){if(!e[f]&&this[k]){return false}var l=$(this);a=a.not(l);l.removeData(d);if(!a.length){clearTimeout(i)}},add:function(l){if(!e[f]&&this[k]){return false}var n;function m(s,o,p){var q=$(this),r=$.data(this,d);r.w=o!==c?o:q.width();r.h=p!==c?p:q.height();n.apply(this,arguments)}if($.isFunction(l)){n=l;return m}else{n=l.handler;l.handler=m}}};function g(){i=h[k](function(){a.each(function(){var n=$(this),m=n.width(),l=n.height(),o=$.data(this,d);if(m!==o.w||l!==o.h){n.trigger(j,[o.w=m,o.h=l])}});g()},e[b])}})(jQuery,this);
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/app/web/mimetype.js:
--------------------------------------------------------------------------------
1 | var mimeTypeDatabase = {}
2 | mimeTypeDatabase['inode/directory'] = 'inode-directory'
3 |
4 | function iconNameForMimeType(mime) {
5 | var ret = mimeTypeDatabase[mime]
6 | if (!ret)
7 | ret = mime.replace('/', '-')
8 | return '/icons/mime/' + ret + '.png'
9 | }
10 |
--------------------------------------------------------------------------------
/demos/carpet/src/carpet/carpetrc:
--------------------------------------------------------------------------------
1 | {
2 | "listen": {
3 | "address": "localhost"
4 | , "port": 18080
5 | }
6 | , "silk": {
7 | "tasks": [":/app/service/carpet.qml"]
8 | }
9 | , "contents": {
10 | "*": ":/app/web/"
11 | }
12 | , "cache": {
13 | "qml": true
14 | }
15 | , "carpet": {
16 | "from": "/home/tasuku"
17 | , "to": "/home/tasuku/.carpet"
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/demos/carpet/src/imports/Carpet/Carpet.pro:
--------------------------------------------------------------------------------
1 | include(../../../../../silkimports.pri)
2 |
3 | QT += sql
4 |
5 | HEADERS += \
6 | carpetplugin.h \
7 | backup.h \
8 | backupjob.h \
9 | abstractcarpetjob.h \
10 | addexcludepatternjob.h \
11 | removeexcludepatternjob.h \
12 | updatestatisticsjob.h \
13 | abstractcarpetjobprivate_p.h \
14 | filelistmodel.h \
15 | carpetdb.h \
16 | frequentlychangedmodel.h \
17 | recentlychangedmodel.h \
18 | sizeconsumedmodel.h \
19 | pathmodel.h \
20 | carpetabstractmodel.h \
21 | carpetfileinfo.h \
22 | entrymodel.h \
23 | historymodel.h
24 |
25 | SOURCES += \
26 | backup.cpp \
27 | backupjob.cpp \
28 | abstractcarpetjob.cpp \
29 | addexcludepatternjob.cpp \
30 | removeexcludepatternjob.cpp \
31 | updatestatisticsjob.cpp \
32 | abstractcarpetjobprivate_p.cpp \
33 | filelistmodel.cpp \
34 | carpetdb.cpp \
35 | frequentlychangedmodel.cpp \
36 | recentlychangedmodel.cpp \
37 | sizeconsumedmodel.cpp \
38 | pathmodel.cpp \
39 | carpetabstractmodel.cpp \
40 | entrymodel.cpp \
41 | historymodel.cpp
42 |
--------------------------------------------------------------------------------
/demos/carpet/src/imports/imports.pro:
--------------------------------------------------------------------------------
1 | TEMPLATE = subdirs
2 | SUBDIRS = Carpet
3 |
--------------------------------------------------------------------------------
/demos/carpet/src/src.pro:
--------------------------------------------------------------------------------
1 | TEMPLATE = subdirs
2 | SUBDIRS = carpet imports
3 |
--------------------------------------------------------------------------------
/demos/demos.pro:
--------------------------------------------------------------------------------
1 | TEMPLATE = subdirs
2 | # SUBDIRS += minimal ssso carpet
3 |
--------------------------------------------------------------------------------
/demos/minimal/minimal.pro:
--------------------------------------------------------------------------------
1 | TARGET = minimal
2 | include(../../silkapp.pri)
3 |
4 | SOURCES += main.cpp
5 |
6 | RESOURCES += \
7 | minimal.qrc
8 |
9 | OTHER_FILES += \
10 | minimalrc \
11 | contents/index.qml
12 |
13 |
--------------------------------------------------------------------------------
/demos/minimal/minimal.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | minimalrc
4 | contents/index.qml
5 |
6 |
7 |
--------------------------------------------------------------------------------
/demos/minimal/minimalrc:
--------------------------------------------------------------------------------
1 | {
2 | "listen": {
3 | "address": "localhost"
4 | , "port": 8080
5 | }
6 | , "contents": {
7 | "*": ":/contents/"
8 | }
9 | , "cache": {
10 | "qml": true
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/demos/ssso/src/plugins/plugins.pro:
--------------------------------------------------------------------------------
1 | TEMPLATE = subdirs
2 | SUBDIRS += protocolhandler
3 |
4 |
--------------------------------------------------------------------------------
/demos/ssso/src/plugins/protocolhandler/protocolhandler.pro:
--------------------------------------------------------------------------------
1 | TEMPLATE = subdirs
2 | SUBDIRS += ssso
3 |
4 |
--------------------------------------------------------------------------------
/demos/ssso/src/plugins/protocolhandler/ssso/ssso.pro:
--------------------------------------------------------------------------------
1 | SILK_PLUGIN_TYPE = protocolhandler
2 | include(../../../../../../silkplugin.pri)
3 |
4 | QT += network sql
5 |
6 | HEADERS += \
7 | sssoplugin.h \
8 | sssohandler.h
9 |
10 | SOURCES += \
11 | sssohandler.cpp
12 |
--------------------------------------------------------------------------------
/demos/ssso/src/src.pro:
--------------------------------------------------------------------------------
1 | TEMPLATE = subdirs
2 | SUBDIRS += ssso plugins
3 |
4 |
--------------------------------------------------------------------------------
/demos/ssso/src/ssso/ssso.pro:
--------------------------------------------------------------------------------
1 | TARGET = ssso
2 | include(../../../../silkapp.pri)
3 |
4 | SOURCES += main.cpp
5 |
6 | RESOURCES += \
7 | ssso.qrc
8 |
9 | OTHER_FILES += \
10 | sssorc \
11 | contents/index.qml \
12 | contents/signup.qml \
13 | contents/password.qml \
14 | contents/SSSOBase.qml \
15 | contents/UserInput.qml \
16 | contents/SSSODatabase.qml \
17 | contents/AccountModel.qml \
18 | contents/SessionModel.qml \
19 | contents/SignupModel.qml
20 |
21 |
--------------------------------------------------------------------------------
/demos/ssso/src/ssso/ssso.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | sssorc
4 | contents/index.qml
5 | contents/UserInput.qml
6 | contents/signup.qml
7 | contents/password.qml
8 | contents/SSSOBase.qml
9 | contents/AccountModel.qml
10 | contents/SessionModel.qml
11 | contents/SignupModel.qml
12 | contents/SSSODatabase.qml
13 |
14 |
15 |
--------------------------------------------------------------------------------
/demos/ssso/src/ssso/sssorc:
--------------------------------------------------------------------------------
1 | {
2 | "listen": {
3 | "address": "localhost"
4 | , "port": 9100
5 | }
6 | , "contents": {
7 | "ssso.qtquick2.me": ":/contents/"
8 | , "cr.qtquick2.me": "ssso://localhost:9101"
9 | , "ci.qtquick2.me": "ssso://localhost:9102"
10 | , "dev.qtquick2.me": "ssso://localhost:9103"
11 | }
12 | , "ssso": {
13 | "domain": ".qtquick2.me"
14 | , "loginUrl": "http://ssso.qtquick2.me:9100/"
15 | , "database": {
16 | "connectionName": "ssso"
17 | , "type": "QPSQL"
18 | , "hostName": "localhost"
19 | , "databaseName": "ssso"
20 | , "userName": "ssso"
21 | , "password": "ssso"
22 | }
23 | }
24 | , "cache": {
25 | "qml": true
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/demos/ssso/ssso.pro:
--------------------------------------------------------------------------------
1 | TEMPLATE = subdirs
2 | SUBDIRS += src
3 |
4 |
--------------------------------------------------------------------------------
/etc/etc.pri:
--------------------------------------------------------------------------------
1 | RESOURCES += $$PWD/etc.qrc
2 |
3 | OTHER_FILES += $$PWD/silkrc
4 |
--------------------------------------------------------------------------------
/etc/etc.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | silkconfig.qml
4 |
5 |
6 |
--------------------------------------------------------------------------------
/etc/silkconfig.qml:
--------------------------------------------------------------------------------
1 | import Silk.Config 0.1
2 |
3 | Config {
4 | listen: Listen {
5 | address: '*'
6 | port: 8080
7 | }
8 |
9 | contents: {
10 | '/': SILK_DATA_PATH + '/root/'
11 | }
12 |
13 | daemons: [
14 | SILK_DATA_PATH + '/daemons/chatdaemon.qml'
15 | ]
16 |
17 | offlineStoragePath: SILK_DATA_PATH
18 |
19 | imports: []
20 |
21 | cache: {
22 | 'qml': true
23 | }
24 |
25 | deflate: {
26 | 'video/*': false
27 | , 'image/*': false
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/silk.pro:
--------------------------------------------------------------------------------
1 | TEMPLATE = subdirs
2 | CONFIG += ordered
3 |
4 | qtHaveModule(qml): qtHaveModule(httpserver) {
5 | SUBDIRS = src contents demos
6 | } else {
7 | error(silk requires QtQml and QtHttpserver installed.)
8 | }
9 |
--------------------------------------------------------------------------------
/silkapp.pri:
--------------------------------------------------------------------------------
1 | isEmpty(SILKAPP_PRI) { SILKAPP_PRI = 1
2 |
3 | TEMPLATE = app
4 | QT -= gui
5 | QT += httpserver
6 |
7 | include(./silk.pri)
8 |
9 | silk_platform_mac {
10 | TARGET = Silk
11 | DESTDIR = $$SILK_BUILD_TREE
12 | } else {
13 | DESTDIR = $$SILK_BUILD_TREE/$$SILK_TARGET_PATH/$$SILK_APP_PATH
14 | }
15 |
16 | CONFIG(static, static|shared) {
17 | QT += qml
18 | LIBS += -L$$[QT_INSTALL_QML]/QtQml/Models.2/ -lmodelsplugin
19 |
20 | LIBS += -L$$SILK_BUILD_TREE/$$SILK_TARGET_PATH/$$SILK_PLUGIN_PATH/mimehandler -ldeflate -lqml
21 |
22 | LIBS += -L$$SILK_BUILD_TREE/$$SILK_TARGET_PATH/$$SILK_PLUGIN_PATH/protocolhandler -lhttp
23 |
24 | LIBS += -L$$SILK_BUILD_TREE/$$SILK_TARGET_PATH/$$SILK_IMPORTS_PATH
25 | LIBS += -lBootstrap -lCSS -lCache -lHTML -lJSON -lOAuth -lProcess -lRSS -lSMTP -lUtils -lXML
26 | } else {
27 | QMAKE_RPATHDIR += \$\$ORIGIN/../$$SILK_LIBRARY_PATH
28 | include(./silkrpath.pri)
29 | }
30 | include(./src/lib/lib.pri)
31 |
32 | silk_platform_mac | silk_platform_linux {
33 | target.path = $$PREFIX/$$SILK_APP_PATH
34 | INSTALLS += target
35 | }
36 | }
37 |
--------------------------------------------------------------------------------
/silkdata.pri:
--------------------------------------------------------------------------------
1 | isEmpty(SILKDATA_PRI) { SILKDATA_PRI = 1
2 |
3 | include(./silk.pri)
4 |
5 | # defineReplace(cleanPath) {
6 | # win32:1 ~= s|\\\\|/|g
7 | # contains(1, ^/.*):pfx = /
8 | # else:pfx =
9 | # segs = $$split(1, /)
10 | # out =
11 | # for(seg, segs) {
12 | # equals(seg, ..):out = $$member(out, 0, -2)
13 | # else:!equals(seg, .):out += $$seg
14 | # }
15 | # return($$join(out, /, $$pfx))
16 | # }
17 |
18 | # For use in custom compilers which just copy files
19 | win32:i_flag = i
20 | defineReplace(stripSrcDir) {
21 | win32 {
22 | !contains(1, ^.:.*):1 = $$OUT_PWD/$$1
23 | } else {
24 | !contains(1, ^/.*):1 = $$OUT_PWD/$$1
25 | }
26 | out = $$cleanPath($$1)
27 | out ~= s|^$$re_escape($$PWD/)||$$i_flag
28 | return($$out)
29 | }
30 |
31 | copy_files.path = $$SILK_BUILD_TREE/$$SILK_TARGET_PATH/$$SILK_DATA_PATH/$$COPY_TARGET
32 | copy_files.input = COPY_FILES
33 | copy_files.output = $$SILK_BUILD_TREE/$$SILK_TARGET_PATH/$$SILK_DATA_PATH/$$COPY_TARGET/${QMAKE_FUNC_FILE_IN_stripSrcDir}
34 | copy_files.commands = $$QMAKE_COPY ${QMAKE_FILE_IN} ${QMAKE_FILE_OUT}
35 | copy_files.name = COPY $$COPY_FILES
36 | copy_files.CONFIG += no_link
37 | QMAKE_EXTRA_COMPILERS += copy_files
38 | PRE_TARGETDEPS += compiler_copy_files_make_all
39 |
40 | install_files.files = $$COPY_FILES
41 | install_files.path = $$PREFIX/$$SILK_TARGET_PATH/$$SILK_DATA_PATH/$$COPY_TARGET
42 | INSTALLS += install_files
43 |
44 | } # SILKDATA_PRI
45 |
--------------------------------------------------------------------------------
/silkimports.pri:
--------------------------------------------------------------------------------
1 | isEmpty(SILKIMPORTS_PRI) { SILKIMPORTS_PRI = 1
2 |
3 | TEMPLATE = lib
4 | CONFIG += plugin c++11
5 | QT -= gui
6 | QT += qml
7 |
8 | include(./silk.pri)
9 | include(./src/lib/lib.pri)
10 |
11 | contains(QT_CONFIG, reduce_exports): CONFIG += hide_symbols
12 |
13 | TARGET = $$qtLibraryTarget($$TARGET)
14 |
15 | DESTDIR = $$SILK_BUILD_TREE/$$SILK_TARGET_PATH/$$SILK_IMPORTS_PATH/$$TARGETPATH
16 |
17 | CONFIG(shared, static|shared) {
18 | isEmpty(target.path) {
19 | target.path = $$PREFIX/$$SILK_TARGET_PATH/$$SILK_IMPORTS_PATH/$$TARGETPATH
20 | }
21 | INSTALLS += target
22 |
23 | QMAKE_RPATHDIR += \$\$ORIGIN/../../
24 | include(./silkrpath.pri)
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/silklib.pri:
--------------------------------------------------------------------------------
1 | isEmpty(SILKLIBRARY_PRI) { SILKLIBRARY_PRI = 1
2 |
3 | TEMPLATE = lib
4 | CONFIG += console
5 |
6 | include(./silk.pri)
7 |
8 | contains(QT_CONFIG, reduce_exports) {
9 |
10 | contains(CONFIG, qt): CONFIG += hide_symbols
11 | }
12 |
13 | TARGET = $$qtLibraryTarget($$TARGET)
14 |
15 | DESTDIR = $$SILK_BUILD_TREE/$$SILK_TARGET_PATH/$$SILK_LIBRARY_PATH
16 | silk_platform_windows {
17 | DLLDESTDIR = $$SILK_BUILD_TREE/$$SILK_TARGET_PATH/$$SILK_LIBRARY_PATH
18 | }
19 | silk_platform_mac {
20 | QMAKE_LFLAGS_SONAME = -Wl,-install_name,@rpath/PlugIns/
21 | }
22 |
23 | CONFIG(shared, static|shared) {
24 | silk_platform_mac | silk_platform_linux {
25 | target.path = $$PREFIX/$$SILK_TARGET_PATH/$$SILK_LIBRARY_PATH
26 | INSTALLS += target
27 | }
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/silkplatform.pri:
--------------------------------------------------------------------------------
1 | unix {
2 | macx {
3 | CONFIG += silk_platform_mac silk_platform_desktop
4 | DEFINES += SILK_PLATFORM_MAC SILK_PLATFORM_DESKTOP
5 | } else {
6 | CONFIG += silk_platform_linux
7 | DEFINES += SILK_PLATFORM_LINUX
8 | }
9 | } else {
10 | windows {
11 | CONFIG += silk_platform_windows
12 | DEFINES += SILK_PLATFORM_WINDOWS
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/silkplugin.pri:
--------------------------------------------------------------------------------
1 | isEmpty(SILKPLUGIN_PRI) { SILKPLUGIN_PRI = 1
2 |
3 | TEMPLATE = lib
4 | CONFIG += plugin
5 | QT -= gui
6 |
7 | include(./silk.pri)
8 | include(./src/lib/lib.pri)
9 |
10 | contains(QT_CONFIG, reduce_exports): CONFIG += hide_symbols
11 |
12 | TARGET = $$qtLibraryTarget($$TARGET)
13 |
14 | DESTDIR = $$SILK_BUILD_TREE/$$SILK_TARGET_PATH/$$SILK_PLUGIN_PATH/$$SILK_PLUGIN_TYPE/
15 |
16 | CONFIG(shared, static|shared) {
17 | isEmpty(target.path) {
18 | target.path = $$PREFIX/$$SILK_TARGET_PATH/$$SILK_PLUGIN_PATH/$$SILK_PLUGIN_TYPE/
19 | }
20 | INSTALLS += target
21 |
22 | QMAKE_RPATHDIR += \$\$ORIGIN/../../../../$$SILK_LIBRARY_PATH
23 | include(./silkrpath.pri)
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/silkroot.pri:
--------------------------------------------------------------------------------
1 | isEmpty(SILKROOT_PRI) { SILKROOT_PRI = 1
2 |
3 | SILKROOT=$$PWD
4 |
5 | }
6 |
7 |
--------------------------------------------------------------------------------
/silkrpath.pri:
--------------------------------------------------------------------------------
1 | isEmpty(SILKRPATH_PRI) { SILKRPATH_PRI = 1
2 | silk_platform_mac {
3 | QMAKE_LFLAGS += -Wl,-rpath,@loader_path/../,-rpath,@executable_path/../
4 | }
5 |
6 | silk_platform_linux {
7 | # do the rpath by hand since it's not possible to use ORIGIN in QMAKE_RPATHDIR
8 | # this expands to $ORIGIN (after qmake and make), it does NOT read a qmake var
9 | SILK_PLUGIN_RPATH = $$join(QMAKE_RPATHDIR, ":")
10 |
11 | QMAKE_LFLAGS += -Wl,-z,origin \'-Wl,-rpath,$${SILK_PLUGIN_RPATH}\'
12 | QMAKE_RPATHDIR =
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/silktest.pri:
--------------------------------------------------------------------------------
1 | isEmpty(SILKTEST_PRI) { SILKTEST_PRI = 1
2 |
3 | TEMPLATE = app
4 | QT += testlib
5 | CONFIG += testcase
6 |
7 | include(./silk.pri)
8 |
9 | DESTDIR = $$SILK_BUILD_TREE/$$SILK_TARGET_PATH/$$SILK_APP_PATH
10 | QMAKE_RPATHDIR += \$\$ORIGIN/../$$SILK_LIBRARY_PATH
11 |
12 | include(./silkrpath.pri)
13 | include(./src/lib/lib.pri)
14 | }
15 |
--------------------------------------------------------------------------------
/src/imports/Silk/Bootstrap/AlertBlock.qml:
--------------------------------------------------------------------------------
1 | import QtQml 2.0
2 |
3 | Alert {
4 | id: root
5 |
6 | Component.onCompleted: {
7 | var c = root._class.split(' ')
8 | c.unshift('alert-block')
9 | root._class = c.join(' ')
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/src/imports/Silk/Bootstrap/Bootstrap.pro:
--------------------------------------------------------------------------------
1 | include(../../../../silkimports.pri)
2 |
3 | HEADERS += \
4 | bootstrapplugin.h
5 |
6 | RESOURCES += \
7 | Bootstrap.qrc
8 |
9 | OTHER_FILES += \
10 | NavCollapse.qml \
11 | ABtn.qml \
12 | ABtnPrimary.qml \
13 | Span1.qml \
14 | Span2.qml \
15 | Span5.qml \
16 | Span12.qml \
17 | LabelSuccess.qml \
18 | LabelWarning.qml \
19 | LabelImportant.qml \
20 | LabelInfo.qml \
21 | LabelInverse.qml \
22 | Thumbnails.qml \
23 | NavDropdown.qml \
24 | Divider.qml \
25 | NavbarForm.qml
26 |
--------------------------------------------------------------------------------
/src/imports/Silk/Bootstrap/Button.qml:
--------------------------------------------------------------------------------
1 | import QtQml 2.0
2 | import Silk.HTML 5.0 as HTML
3 |
4 | HTML.Div {
5 | id: root
6 |
7 | property string __purpose: ''
8 | property string __size: ''
9 |
10 | Component.onCompleted: {
11 | var c = root._class.split(' ')
12 | c.push('btn')
13 | if (root.__size.length > 0)
14 | c.push('btn-%1'.arg(root.__size))
15 | if (root.__purpose.length > 0)
16 | c.push('btn-%1'.arg(root.__purpose))
17 | root._class = c.join(' ')
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/src/imports/Silk/Bootstrap/ButtonGroup.qml:
--------------------------------------------------------------------------------
1 | import QtQml 2.0
2 | import Silk.HTML 5.0 as HTML
3 |
4 | HTML.Div {
5 | id: root
6 |
7 | Component.onCompleted: {
8 | var c = root._class.split(' ')
9 | c.push('btn-group')
10 | root._class = c.join(' ')
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/src/imports/Silk/Bootstrap/Container.qml:
--------------------------------------------------------------------------------
1 | import Silk.HTML 5.0 as HTML
2 |
3 | HTML.Div {
4 | _class: 'container'
5 | }
6 |
--------------------------------------------------------------------------------
/src/imports/Silk/Bootstrap/ContainerFluid.qml:
--------------------------------------------------------------------------------
1 | import Silk.HTML 5.0 as HTML
2 |
3 | HTML.Div {
4 | _class: 'container-fluid'
5 | }
6 |
--------------------------------------------------------------------------------
/src/imports/Silk/Bootstrap/ControlGroup.qml:
--------------------------------------------------------------------------------
1 | import QtQml 2.0
2 | import Silk.HTML 5.0 as HTML
3 |
4 | HTML.Div {
5 | id: root
6 |
7 | Component.onCompleted: {
8 | var c = root._class.split(' ')
9 | c.push('control-group')
10 | root._class = c.join(' ')
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/src/imports/Silk/Bootstrap/Controls.qml:
--------------------------------------------------------------------------------
1 | import Silk.HTML 5.0 as HTML
2 |
3 | HTML.Div {
4 | _class: 'controls'
5 | }
6 |
--------------------------------------------------------------------------------
/src/imports/Silk/Bootstrap/DropdownButton.qml:
--------------------------------------------------------------------------------
1 | import QtQml 2.0
2 | import Silk.HTML 5.0 as HTML
3 |
4 | ButtonGroup {
5 | id: root
6 | default property alias contents: menu.contents
7 |
8 | HTML.A {
9 | id: button
10 | _class: 'btn dropdown-toggle'
11 | property string data_toggle: 'dropdown'
12 | href: '#'
13 |
14 | HTML.Span { _class: 'caret' }
15 | }
16 |
17 | HTML.Ul {
18 | id: menu
19 | _class: 'dropdown-menu'
20 | }
21 |
22 | Component.onCompleted: {
23 | button.text = root.text
24 | root.text = ''
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/src/imports/Silk/Bootstrap/IconChevronRight.qml:
--------------------------------------------------------------------------------
1 | import Silk.HTML 5.0 as HTML
2 |
3 | HTML.I {
4 | _class: 'icon-chevron-right'
5 | }
6 |
--------------------------------------------------------------------------------
/src/imports/Silk/Bootstrap/Lead.qml:
--------------------------------------------------------------------------------
1 | import Silk.HTML 5.0 as HTML
2 |
3 | HTML.P {
4 | _class: 'lead'
5 | }
6 |
--------------------------------------------------------------------------------
/src/imports/Silk/Bootstrap/NavHeader.qml:
--------------------------------------------------------------------------------
1 | import QtQml 2.0
2 | import Silk.HTML 5.0 as HTML
3 |
4 | HTML.Li {
5 | id: root
6 |
7 | Component.onCompleted: {
8 | var c = root._class.split(' ')
9 | c.push('nav-header')
10 | root._class = c.join(' ')
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/src/imports/Silk/Bootstrap/NavList.qml:
--------------------------------------------------------------------------------
1 | import QtQml 2.0
2 |
3 | Nav {
4 | id: root
5 |
6 | Component.onCompleted: {
7 | var c = root._class.split(' ')
8 | c.unshift('nav-list')
9 | root._class = c.join(' ')
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/src/imports/Silk/Bootstrap/Navbar.qml:
--------------------------------------------------------------------------------
1 | import QtQml 2.0
2 | import Silk.HTML 5.0 as HTML
3 |
4 | HTML.Div {
5 | id: root
6 |
7 | default property alias contents: inner.contents
8 |
9 | Component.onCompleted: {
10 | var c = root._class.split(' ')
11 | c.push('navbar')
12 | root._class = c.join(' ')
13 | }
14 |
15 | HTML.Div {
16 | id: inner
17 | _class: 'navbar-inner'
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/src/imports/Silk/Bootstrap/Span6.qml:
--------------------------------------------------------------------------------
1 | import QtQml 2.0
2 | import Silk.HTML 5.0 as HTML
3 |
4 | HTML.Div {
5 | id: root
6 |
7 | Component.onCompleted: {
8 | var c = root._class.split(' ')
9 | c.unshift('span6')
10 | root._class = c.join(' ')
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/src/imports/Silk/Bootstrap/Span8.qml:
--------------------------------------------------------------------------------
1 | import Silk.HTML 5.0 as HTML
2 |
3 | HTML.Div {
4 | _class: 'span8'
5 | }
6 |
--------------------------------------------------------------------------------
/src/imports/Silk/Bootstrap/Span9.qml:
--------------------------------------------------------------------------------
1 | import Silk.HTML 5.0 as HTML
2 |
3 | HTML.Div {
4 | _class: 'span9'
5 | }
6 |
--------------------------------------------------------------------------------
/src/imports/Silk/Bootstrap/Tab.qml:
--------------------------------------------------------------------------------
1 | import QtQml 2.0
2 | import Silk.HTML 5.0 as HTML
3 |
4 | HTML.Li {
5 | id: root
6 |
7 | property bool __active: false
8 | property alias __pane: button.href
9 |
10 | HTML.A {
11 | id: button
12 | property string data_toggle: 'tab'
13 | }
14 |
15 | Component.onCompleted: {
16 | var c = root._class.split(' ')
17 | if (root.__active)
18 | c.push('active')
19 | root._class = c.join(' ')
20 | button.text = root.text
21 | root.text = ''
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/src/imports/Silk/Bootstrap/TabBar.qml:
--------------------------------------------------------------------------------
1 | import QtQml 2.0
2 | import Silk.HTML 5.0 as HTML
3 |
4 | HTML.Ul {
5 | id: root
6 |
7 | Component.onCompleted: {
8 | var c = root._class.split(' ')
9 | c.push('nav')
10 | c.push('nav-tabs')
11 | root._class = c.join(' ')
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/src/imports/Silk/Bootstrap/TabContent.qml:
--------------------------------------------------------------------------------
1 | import QtQml 2.0
2 | import Silk.HTML 5.0 as HTML
3 |
4 | HTML.Ul {
5 | id: root
6 |
7 | Component.onCompleted: {
8 | var c = root._class.split(' ')
9 | c.push('tab-content')
10 | root._class = c.join(' ')
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/src/imports/Silk/Bootstrap/TabPane.qml:
--------------------------------------------------------------------------------
1 | import QtQml 2.0
2 | import Silk.HTML 5.0 as HTML
3 |
4 | HTML.Ul {
5 | id: root
6 |
7 | property bool __active: false
8 |
9 | Component.onCompleted: {
10 | var c = root._class.split(' ')
11 | c.push('tab-pane')
12 | if (root.__active)
13 | c.push('active')
14 | root._class = c.join(' ')
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/src/imports/Silk/Bootstrap/Tabbable.qml:
--------------------------------------------------------------------------------
1 | import QtQml 2.0
2 | import Silk.HTML 5.0 as HTML
3 |
4 | HTML.Div {
5 | id: root
6 |
7 | Component.onCompleted: {
8 | var c = root._class.split(' ')
9 | c.push('tabbable')
10 | root._class = c.join(' ')
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/src/imports/Silk/Bootstrap/Tr.qml:
--------------------------------------------------------------------------------
1 | import Silk.HTML 5.0 as HTML
2 |
3 | HTML.Tr {
4 | _class: ''
5 | + (__success ? ' success' : '')
6 | + (__error ? ' error' : '')
7 | + (__info ? ' info' : '')
8 |
9 | property bool __success: false
10 | property bool __error: false
11 | property bool __info: false
12 | }
13 |
--------------------------------------------------------------------------------
/src/imports/Silk/Bootstrap/qmldir:
--------------------------------------------------------------------------------
1 | ABtn 2.3 ABtn.qml
2 | ABtnPrimary 2.3 ABtnPrimary.qml
3 | Alert 2.3 Alert.qml
4 | AlertBlock 2.3 AlertBlock.qml
5 | AlertInfo 2.3 AlertInfo.qml
6 | Btn 2.3 Btn.qml
7 | BtnNavbar 2.3 BtnNavbar.qml
8 | Button 2.3 Button.qml
9 | ButtonGroup 2.3 ButtonGroup.qml
10 | Container 2.3 Container.qml
11 | ContainerFluid 2.3 ContainerFluid.qml
12 | ControlGroup 2.3 ControlGroup.qml
13 | Controls 2.3 Controls.qml
14 | DropdownButton 2.3 DropdownButton.qml
15 | Divider 2.3 Divider.qml
16 | HeroUnit 2.3 HeroUnit.qml
17 | IconBar 2.3 IconBar.qml
18 | IconChevronRight 2.3 IconChevronRight.qml
19 | Label 2.3 Label.qml
20 | LabelSuccess 2.3 LabelSuccess.qml
21 | LabelWarning 2.3 LabelWarning.qml
22 | LabelImportant 2.3 LabelImportant.qml
23 | LabelInfo 2.3 LabelInfo.qml
24 | LabelInverse 2.3 LabelInverse.qml
25 | Lead 2.3 Lead.qml
26 | Nav 2.3 Nav.qml
27 | Navbar 2.3 Navbar.qml
28 | NavbarForm 2.3 NavbarForm.qml
29 | NavDropdown 2.3 NavDropdown.qml
30 | NavCollapse 2.3 NavCollapse.qml
31 | NavHeader 2.3 NavHeader.qml
32 | NavItem 2.3 NavItem.qml
33 | NavList 2.3 NavList.qml
34 | PageHeader 2.3 PageHeader.qml
35 | Row 2.3 Row.qml
36 | RowFluid 2.3 RowFluid.qml
37 | Span1 2.3 Span1.qml
38 | Span2 2.3 Span2.qml
39 | Span3 2.3 Span3.qml
40 | Span4 2.3 Span4.qml
41 | Span5 2.3 Span5.qml
42 | Span6 2.3 Span6.qml
43 | Span8 2.3 Span8.qml
44 | Span9 2.3 Span9.qml
45 | Span12 2.3 Span12.qml
46 | Tab 2.3 Tab.qml
47 | TabBar 2.3 TabBar.qml
48 | TabContent 2.3 TabContent.qml
49 | TabPane 2.3 TabPane.qml
50 | Tabbable 2.3 Tabbable.qml
51 | Table 2.3 Table.qml
52 | Thumbnails 2.3 Thumbnails.qml
53 | Tr 2.3 Tr.qml
54 |
--------------------------------------------------------------------------------
/src/imports/Silk/CSS/CSS.pro:
--------------------------------------------------------------------------------
1 | include(../../../../silkimports.pri)
2 |
3 | HEADERS += \
4 | cssplugin.h \
5 | cssrule.h
6 |
7 | SOURCES += \
8 | cssrule.cpp
9 |
10 | RESOURCES += \
11 | CSS.qrc
12 |
--------------------------------------------------------------------------------
/src/imports/Silk/CSS/CSS.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | 21_Rule.qml
4 | 30_Rule.qml
5 | qmldir
6 | 21_Css.qml
7 | 30_Css.qml
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/imports/Silk/CSS/qmldir:
--------------------------------------------------------------------------------
1 | Css 2.1 21_Css.qml
2 | Rule 2.1 21_Rule.qml
3 | Css 3.0 30_Css.qml
4 | Rule 3.0 30_Rule.qml
5 |
--------------------------------------------------------------------------------
/src/imports/Silk/Cache/Cache.pro:
--------------------------------------------------------------------------------
1 | include(../../../../silkimports.pri)
2 |
3 | HEADERS += \
4 | cacheobject.h \
5 | cacheplugin.h
6 |
7 | SOURCES += \
8 | cacheobject.cpp
9 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/401_Address.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractI18nElement {
28 | tagName: 'address'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/401_Br.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractCoreattrsElement {
28 | tagName: 'br'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/401_H1.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractI18nElement {
28 | tagName: 'h1'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/401_H2.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractI18nElement {
28 | tagName: 'h2'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/401_H3.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractI18nElement {
28 | tagName: 'h3'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/401_H4.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractI18nElement {
28 | tagName: 'h4'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/401_H5.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractI18nElement {
28 | tagName: 'h5'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/401_H6.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractI18nElement {
28 | tagName: 'h6'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/401_Section.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractI18nElement {
28 | tagName: 'section'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/401_Title.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractI18nElement {
28 | tagName: 'title'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_AbstractElement.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | import Silk.XML 1.0
28 |
29 | Tag {}
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_B.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'b'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_BDi.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'bdi'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_BDo.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'bdo'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_Br.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'br'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_Dd.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'dd'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_Dfn.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'dfn'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_Dl.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'dl'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_Dt.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'dt'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_Em.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'em'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_H1.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'h1'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_H2.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'h2'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_H3.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'h3'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_H4.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'h4'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_H5.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'h5'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_H6.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'h6'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_Hr.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'hr'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_Kbd.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'kbd'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_Nav.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'nav'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_P.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'p'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_Pre.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'pre'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_Rp.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'rp'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_Rt.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'rt'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_S.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 's'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_Sub.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'sub'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_Sup.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'sup'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_Tr.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'tr'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_U.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'u'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_Ul.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'ul'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_Var.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'var'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/50_WBr.qml:
--------------------------------------------------------------------------------
1 | /* Copyright (c) 2012 Silk Project.
2 | * All rights reserved.
3 | *
4 | * Redistribution and use in source and binary forms, with or without
5 | * modification, are permitted provided that the following conditions are met:
6 | * * Redistributions of source code must retain the above copyright
7 | * notice, this list of conditions and the following disclaimer.
8 | * * Redistributions in binary form must reproduce the above copyright
9 | * notice, this list of conditions and the following disclaimer in the
10 | * documentation and/or other materials provided with the distribution.
11 | * * Neither the name of the Silk nor the
12 | * names of its contributors may be used to endorse or promote products
13 | * derived from this software without specific prior written permission.
14 | *
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 | * DISCLAIMED. IN NO EVENT SHALL SILK BE LIABLE FOR ANY
19 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 | */
26 |
27 | AbstractGlobalAttributesElement {
28 | tagName: 'wbr'
29 | }
30 |
--------------------------------------------------------------------------------
/src/imports/Silk/HTML/HTML.pro:
--------------------------------------------------------------------------------
1 | include(../../../../silkimports.pri)
2 |
3 | HEADERS += \
4 | htmlplugin.h
5 |
6 | RESOURCES += \
7 | HTML.qrc
8 |
--------------------------------------------------------------------------------
/src/imports/Silk/JSON/JSON.pro:
--------------------------------------------------------------------------------
1 | include(../../../../silkimports.pri)
2 |
3 | HEADERS += \
4 | jsonobject.h \
5 | jsonplugin.h
6 |
7 | SOURCES += \
8 | jsonobject.cpp
9 |
--------------------------------------------------------------------------------
/src/imports/Silk/OAuth/OAuth.pro:
--------------------------------------------------------------------------------
1 | include(../../../../silkimports.pri)
2 |
3 | QT += network
4 |
5 | HEADERS += \
6 | oauth.h \
7 | hmac_sha1.h \
8 | oauthplugin.h
9 |
10 | SOURCES += \
11 | hmac_sha1.cpp \
12 | oauth.cpp
13 |
--------------------------------------------------------------------------------
/src/imports/Silk/Process/Process.pro:
--------------------------------------------------------------------------------
1 | include(../../../../silkimports.pri)
2 |
3 | HEADERS += \
4 | process.h \
5 | processplugin.h
6 |
7 | SOURCES += \
8 | process.cpp
9 |
--------------------------------------------------------------------------------
/src/imports/Silk/RSS/RSS.pro:
--------------------------------------------------------------------------------
1 | include(../../../../silkimports.pri)
2 |
3 | HEADERS += \
4 | rssplugin.h
5 |
6 | RESOURCES += \
7 | RSS.qrc
8 |
9 | OTHER_FILES += \
10 | 20_Title.qml \
11 | 20_Link.qml \
12 | 20_Description.qml \
13 | 20_Item.qml \
14 | 20_PubDate.qml \
15 | 20_Language.qml \
16 | 20_Category.qml \
17 | 20_Generator.qml \
18 | 20_Copyright.qml \
19 | 20_ManagingEditor.qml \
20 | 20_Docs.qml \
21 | 20_Cloud.qml \
22 | 20_Ttl.qml \
23 | 20_Image.qml \
24 | 20_TextInput.qml \
25 | 20_SkipHours.qml \
26 | 20_SkipDays.qml \
27 | 20_Author.qml \
28 | 20_Comments.qml \
29 | 20_Enclosure.qml \
30 | 20_Guid.qml \
31 | 20_Source.qml \
32 | 20_LastBuildDate.qml
33 |
--------------------------------------------------------------------------------
/src/imports/Silk/RSS/RSS.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | 20_Author.qml
4 | 20_Category.qml
5 | 20_Channel.qml
6 | 20_Cloud.qml
7 | 20_Comments.qml
8 | 20_Copyright.qml
9 | 20_Description.qml
10 | 20_Docs.qml
11 | 20_Enclosure.qml
12 | 20_Generator.qml
13 | 20_Guid.qml
14 | 20_Image.qml
15 | 20_Item.qml
16 | 20_Language.qml
17 | 20_LastBuildDate.qml
18 | 20_Link.qml
19 | 20_ManagingEditor.qml
20 | 20_PubDate.qml
21 | 20_Rss.qml
22 | 20_SkipDays.qml
23 | 20_SkipHours.qml
24 | 20_Source.qml
25 | 20_TextInput.qml
26 | 20_Title.qml
27 | 20_Ttl.qml
28 | qmldir
29 |
30 |
31 |
--------------------------------------------------------------------------------
/src/imports/Silk/RSS/qmldir:
--------------------------------------------------------------------------------
1 | Author 2.0 20_Author.qml
2 | Category 2.0 20_Category.qml
3 | Channel 2.0 20_Channel.qml
4 | Cloud 2.0 20_Cloud.qml
5 | Comments 2.0 20_Comments.qml
6 | Copyright 2.0 20_Copyright.qml
7 | Description 2.0 20_Description.qml
8 | Docs 2.0 20_Docs.qml
9 | Enclosure 2.0 20_Enclosure.qml
10 | Generator 2.0 20_Generator.qml
11 | Guid 2.0 20_Guid.qml
12 | Image 2.0 20_Image.qml
13 | Item 2.0 20_Item.qml
14 | Language 2.0 20_Language.qml
15 | LastBuildDate 2.0 20_LastBuildDate.qml
16 | Link 2.0 20_Link.qml
17 | ManagingEditor 2.0 20_ManagingEditor.qml
18 | PubDate 2.0 20_PubDate.qml
19 | Rss 2.0 20_Rss.qml
20 | SkipDays 2.0 20_SkipDays.qml
21 | SkipHours 2.0 20_SkipHours.qml
22 | Source 2.0 20_Source.qml
23 | TextInput 2.0 20_TextInput.qml
24 | Title 2.0 20_Title.qml
25 | Ttl 2.0 20_Ttl.qml
26 |
--------------------------------------------------------------------------------
/src/imports/Silk/SMTP/SMTP.pro:
--------------------------------------------------------------------------------
1 | include(../../../../silkimports.pri)
2 |
3 | QT += network
4 |
5 | HEADERS += \
6 | smtp.h \
7 | smtpplugin.h
8 |
9 | SOURCES += \
10 | smtp.cpp
11 |
--------------------------------------------------------------------------------
/src/imports/Silk/Silk.pro:
--------------------------------------------------------------------------------
1 | TEMPLATE = subdirs
2 | SUBDIRS = XML HTML CSS JSON RSS Utils Cache SMTP OAuth Process Bootstrap
3 |
--------------------------------------------------------------------------------
/src/imports/Silk/Utils/Utils.pro:
--------------------------------------------------------------------------------
1 | include(../../../../silkimports.pri)
2 |
3 | HEADERS += \
4 | utilsplugin.h \
5 | repeater.h \
6 | config.h \
7 | server.h \
8 | client.h \
9 | recursive.h
10 |
11 | SOURCES += \
12 | repeater.cpp \
13 | config.cpp \
14 | server.cpp \
15 | client.cpp \
16 | recursive.cpp
17 |
--------------------------------------------------------------------------------
/src/imports/Silk/XML/XML.pro:
--------------------------------------------------------------------------------
1 | include(../../../../silkimports.pri)
2 |
3 | HEADERS += \
4 | xmlplugin.h \
5 | xmltag.h \
6 | xmlcomment.h
7 |
8 | SOURCES += \
9 | xmltag.cpp \
10 | xmlcomment.cpp
11 |
12 |
--------------------------------------------------------------------------------
/src/imports/imports.pro:
--------------------------------------------------------------------------------
1 | TEMPLATE = subdirs
2 | SUBDIRS = Silk
3 | QML_IMPORT_PATH += $$PWD
4 |
--------------------------------------------------------------------------------
/src/lib/lib.pri:
--------------------------------------------------------------------------------
1 | QT += qml
2 |
3 | INCLUDEPATH += $$PWD
4 | DEPENDPATH += $$PWD
5 |
6 | include(../../silk.pri)
7 |
8 | LIBS *= -L$$SILK_BUILD_TREE/$$SILK_TARGET_PATH/$$SILK_LIBRARY_PATH
9 |
10 | LIBS *= -l$$qtLibraryName(silk)
11 |
--------------------------------------------------------------------------------
/src/lib/lib.pro:
--------------------------------------------------------------------------------
1 | TEMPLATE = lib
2 | TARGET = silk
3 |
4 | QT = httpserver qml
5 |
6 | include(../../silklib.pri)
7 |
8 | DEFINES += SILK_LIBRARY
9 |
10 | HEADERS += \
11 | silkglobal.h \
12 | silkconfig.h \
13 | silkimportsinterface.h \
14 | silkabstracthttpobject.h \
15 | silkmimehandlerinterface.h \
16 | silkabstractmimehandler.h \
17 | silkprotocolhandlerinterface.h \
18 | silkabstractprotocolhandler.h \
19 | silkabstractobject.h \
20 | silkserver.h \
21 | silkserver_logging.h
22 |
23 | SOURCES += \
24 | silkconfig.cpp \
25 | silkabstracthttpobject.cpp \
26 | silkabstractmimehandler.cpp \
27 | silkabstractprotocolhandler.cpp \
28 | silkabstractobject.cpp \
29 | silkserver.cpp \
30 | silkserver_logging.cpp
31 |
--------------------------------------------------------------------------------
/src/lib/silkconfig.h:
--------------------------------------------------------------------------------
1 | #ifndef SILKCONFIG_H
2 | #define SILKCONFIG_H
3 |
4 | #include "silkglobal.h"
5 |
6 | #include
7 |
8 | class QCoreApplication;
9 |
10 | class SILK_EXPORT SilkConfig
11 | {
12 | public:
13 | static void initialize(QCoreApplication *app);
14 | static const QVariantHash &config();
15 | static QVariant value(const QString &key);
16 | static QUrl url();
17 |
18 | private:
19 | SilkConfig() {}
20 |
21 | static QVariantHash readConfigFile(const QUrl &url);
22 | static QVariant value(const QVariant &v, const QString &key);
23 |
24 | static QVariantHash m_config;
25 | static QUrl m_url;
26 | };
27 |
28 | #endif // SILKCONFIG_H
29 |
--------------------------------------------------------------------------------
/src/lib/silkserver_logging.cpp:
--------------------------------------------------------------------------------
1 | #include "silkserver_logging.h"
2 |
3 | Q_LOGGING_CATEGORY(silkServerDebug, "silk.server.debug")
4 | Q_LOGGING_CATEGORY(silkServerRequest, "silk.server.request")
5 | Q_LOGGING_CATEGORY(silkServerOk, "silk.server.ok")
6 | Q_LOGGING_CATEGORY(silkServerError, "silk.server.error")
7 |
--------------------------------------------------------------------------------
/src/lib/silkserver_logging.h:
--------------------------------------------------------------------------------
1 | #ifndef SILKSERVER_LOGGING_H
2 | #define SILKSERVER_LOGGING_H
3 |
4 | #include
5 |
6 | Q_DECLARE_LOGGING_CATEGORY(silkServerDebug)
7 | Q_DECLARE_LOGGING_CATEGORY(silkServerRequest)
8 | Q_DECLARE_LOGGING_CATEGORY(silkServerOk)
9 | Q_DECLARE_LOGGING_CATEGORY(silkServerError)
10 |
11 | #define ssDebug() qCDebug(silkServerDebug)
12 | #define ssWarning() qCWarning(silkServerDebug)
13 | #define ssCritical() qCCritical(silkServerDebug)
14 | #define ssInfo() qCInfo(silkServerDebug)
15 | #define ssFatal(...) qCFatal(silkServerDebug, __VA_ARGS__)
16 |
17 | #define ssRequest() qCInfo(silkServerRequest)
18 | #define ssOk() qCInfo(silkServerOk)
19 | #define ssError() qCInfo(silkServerError)
20 |
21 | #endif // SILKSERVER_LOGGING_H
22 |
--------------------------------------------------------------------------------
/src/plugins/mimehandler/deflate/deflate.pro:
--------------------------------------------------------------------------------
1 | SILK_PLUGIN_TYPE = mimehandler
2 | include(../../../../silkplugin.pri)
3 |
4 | QT = core httpserver
5 |
6 | HEADERS += \
7 | deflateplugin.h \
8 | deflatehandler.h
9 |
10 | SOURCES += \
11 | deflatehandler.cpp
12 |
--------------------------------------------------------------------------------
/src/plugins/mimehandler/mimehandler.pro:
--------------------------------------------------------------------------------
1 | TEMPLATE = subdirs
2 | SUBDIRS = qml deflate
3 |
4 |
--------------------------------------------------------------------------------
/src/plugins/mimehandler/qml/qml.pro:
--------------------------------------------------------------------------------
1 | SILK_PLUGIN_TYPE = mimehandler
2 | include(../../../../silkplugin.pri)
3 |
4 | QT += httpserver qml
5 |
6 | HEADERS += \
7 | qmlplugin.h \
8 | qmlhandler.h \
9 | httpobject.h \
10 | silk.h \
11 | websocketobject.h \
12 | text.h
13 |
14 | SOURCES += \
15 | qmlhandler.cpp \
16 | httpobject.cpp \
17 | silk.cpp \
18 | websocketobject.cpp \
19 | text.cpp
20 |
--------------------------------------------------------------------------------
/src/plugins/plugins.pro:
--------------------------------------------------------------------------------
1 | TEMPLATE = subdirs
2 | SUBDIRS = mimehandler protocolhandler
3 |
4 |
--------------------------------------------------------------------------------
/src/plugins/protocolhandler/http/http.pro:
--------------------------------------------------------------------------------
1 | SILK_PLUGIN_TYPE = protocolhandler
2 | include(../../../../silkplugin.pri)
3 |
4 | QT = httpserver
5 |
6 | HEADERS += \
7 | httpplugin.h \
8 | httphandler.h
9 |
10 | SOURCES += \
11 | httphandler.cpp
12 |
--------------------------------------------------------------------------------
/src/plugins/protocolhandler/protocolhandler.pro:
--------------------------------------------------------------------------------
1 | TEMPLATE = subdirs
2 | SUBDIRS = http
3 |
4 |
--------------------------------------------------------------------------------
/src/silk/silk.pro:
--------------------------------------------------------------------------------
1 | TARGET = silk
2 |
3 | include(../../silkapp.pri)
4 |
5 | include(../../etc/etc.pri)
6 | include(../../contents/contents.pri)
7 |
8 | SOURCES += main.cpp
9 |
--------------------------------------------------------------------------------
/src/src.pro:
--------------------------------------------------------------------------------
1 | TEMPLATE = subdirs
2 | CONFIG += ordered
3 | SUBDIRS = lib plugins imports silk
4 |
5 |
--------------------------------------------------------------------------------