├── .gitattributes ├── .gitignore ├── README.md ├── application ├── Bootstrap.php ├── Functions.php ├── controllers │ ├── Common.php │ ├── Demo.php │ ├── Error.php │ └── Index.php ├── library │ ├── Blowfish.php │ ├── Captcha.php │ ├── Controller.php │ ├── Cookie.php │ ├── CreateExcel.php │ ├── DB.php │ ├── ExcelReader.php │ ├── ImageManager.php │ ├── Mail.php │ ├── MinifyHTML.php │ ├── MobileDetect.php │ ├── Munee │ │ ├── autoload.php │ │ ├── bin │ │ │ └── pscss │ │ ├── coffeescript │ │ │ └── coffeescript │ │ │ │ ├── src │ │ │ │ └── CoffeeScript │ │ │ │ │ ├── Compiler.php │ │ │ │ │ ├── Error.php │ │ │ │ │ ├── Helpers.php │ │ │ │ │ ├── Init.php │ │ │ │ │ ├── Lexer.php │ │ │ │ │ ├── Nodes.php │ │ │ │ │ ├── Parser.php │ │ │ │ │ ├── Rewriter.php │ │ │ │ │ ├── Scope.php │ │ │ │ │ ├── SyntaxError.php │ │ │ │ │ ├── Value.php │ │ │ │ │ └── yy │ │ │ │ │ ├── Access.php │ │ │ │ │ ├── Arr.php │ │ │ │ │ ├── Assign.php │ │ │ │ │ ├── Base.php │ │ │ │ │ ├── Block.php │ │ │ │ │ ├── Call.php │ │ │ │ │ ├── Class.php │ │ │ │ │ ├── Closure.php │ │ │ │ │ ├── Code.php │ │ │ │ │ ├── Comment.php │ │ │ │ │ ├── Existence.php │ │ │ │ │ ├── Extends.php │ │ │ │ │ ├── For.php │ │ │ │ │ ├── If.php │ │ │ │ │ ├── In.php │ │ │ │ │ ├── Index.php │ │ │ │ │ ├── Literal.php │ │ │ │ │ ├── Obj.php │ │ │ │ │ ├── Op.php │ │ │ │ │ ├── Param.php │ │ │ │ │ ├── Parens.php │ │ │ │ │ ├── Range.php │ │ │ │ │ ├── Return.php │ │ │ │ │ ├── Slice.php │ │ │ │ │ ├── Splat.php │ │ │ │ │ ├── Switch.php │ │ │ │ │ ├── Throw.php │ │ │ │ │ ├── Try.php │ │ │ │ │ ├── Value.php │ │ │ │ │ └── While.php │ │ │ │ └── tests │ │ │ │ ├── cases │ │ │ │ ├── arrays.coffee │ │ │ │ ├── eval.coffee │ │ │ │ ├── ranges.coffee │ │ │ │ ├── scope.coffee │ │ │ │ └── soaks.coffee │ │ │ │ ├── css │ │ │ │ └── style.css │ │ │ │ └── js │ │ │ │ ├── lib │ │ │ │ ├── coffeescript_1.1.1.js │ │ │ │ ├── coffeescript_1.2.0.js │ │ │ │ ├── coffeescript_1.3.0.js │ │ │ │ ├── coffeescript_1.3.1.js │ │ │ │ └── diff.js │ │ │ │ └── main.js │ │ ├── composer │ │ │ ├── ClassLoader.php │ │ │ ├── autoload_classmap.php │ │ │ ├── autoload_files.php │ │ │ ├── autoload_namespaces.php │ │ │ ├── autoload_real.php │ │ │ └── installed.json │ │ ├── imagine │ │ │ └── imagine │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── Rakefile │ │ │ │ ├── composer.json │ │ │ │ ├── docs │ │ │ │ ├── API │ │ │ │ │ └── API │ │ │ │ │ │ ├── Imagine.html │ │ │ │ │ │ ├── Imagine │ │ │ │ │ │ ├── Draw.html │ │ │ │ │ │ ├── Draw │ │ │ │ │ │ │ ├── DrawerInterface.html │ │ │ │ │ │ │ └── namespace-frame.html │ │ │ │ │ │ ├── Effects.html │ │ │ │ │ │ ├── Effects │ │ │ │ │ │ │ ├── EffectsInterface.html │ │ │ │ │ │ │ └── namespace-frame.html │ │ │ │ │ │ ├── Exception.html │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ ├── Exception.html │ │ │ │ │ │ │ ├── InvalidArgumentException.html │ │ │ │ │ │ │ ├── OutOfBoundsException.html │ │ │ │ │ │ │ ├── RuntimeException.html │ │ │ │ │ │ │ └── namespace-frame.html │ │ │ │ │ │ ├── Filter.html │ │ │ │ │ │ ├── Filter │ │ │ │ │ │ │ ├── Advanced.html │ │ │ │ │ │ │ ├── Advanced │ │ │ │ │ │ │ │ ├── Border.html │ │ │ │ │ │ │ │ ├── Canvas.html │ │ │ │ │ │ │ │ ├── Grayscale.html │ │ │ │ │ │ │ │ ├── OnPixelBased.html │ │ │ │ │ │ │ │ ├── RelativeResize.html │ │ │ │ │ │ │ │ └── namespace-frame.html │ │ │ │ │ │ │ ├── Basic.html │ │ │ │ │ │ │ ├── Basic │ │ │ │ │ │ │ │ ├── ApplyMask.html │ │ │ │ │ │ │ │ ├── Copy.html │ │ │ │ │ │ │ │ ├── Crop.html │ │ │ │ │ │ │ │ ├── Fill.html │ │ │ │ │ │ │ │ ├── FlipHorizontally.html │ │ │ │ │ │ │ │ ├── FlipVertically.html │ │ │ │ │ │ │ │ ├── Paste.html │ │ │ │ │ │ │ │ ├── Resize.html │ │ │ │ │ │ │ │ ├── Rotate.html │ │ │ │ │ │ │ │ ├── Save.html │ │ │ │ │ │ │ │ ├── Show.html │ │ │ │ │ │ │ │ ├── Strip.html │ │ │ │ │ │ │ │ ├── Thumbnail.html │ │ │ │ │ │ │ │ └── namespace-frame.html │ │ │ │ │ │ │ ├── FilterInterface.html │ │ │ │ │ │ │ ├── ImagineAware.html │ │ │ │ │ │ │ ├── Transformation.html │ │ │ │ │ │ │ └── namespace-frame.html │ │ │ │ │ │ ├── Gd.html │ │ │ │ │ │ ├── Gd │ │ │ │ │ │ │ ├── Drawer.html │ │ │ │ │ │ │ ├── Effects.html │ │ │ │ │ │ │ ├── Font.html │ │ │ │ │ │ │ ├── Image.html │ │ │ │ │ │ │ ├── Imagine.html │ │ │ │ │ │ │ ├── Layers.html │ │ │ │ │ │ │ └── namespace-frame.html │ │ │ │ │ │ ├── Gmagick.html │ │ │ │ │ │ ├── Gmagick │ │ │ │ │ │ │ ├── Drawer.html │ │ │ │ │ │ │ ├── Effects.html │ │ │ │ │ │ │ ├── Font.html │ │ │ │ │ │ │ ├── Image.html │ │ │ │ │ │ │ ├── Imagine.html │ │ │ │ │ │ │ ├── Layers.html │ │ │ │ │ │ │ └── namespace-frame.html │ │ │ │ │ │ ├── Image.html │ │ │ │ │ │ ├── Image │ │ │ │ │ │ │ ├── AbstractFont.html │ │ │ │ │ │ │ ├── AbstractLayers.html │ │ │ │ │ │ │ ├── Box.html │ │ │ │ │ │ │ ├── BoxInterface.html │ │ │ │ │ │ │ ├── Color.html │ │ │ │ │ │ │ ├── Fill.html │ │ │ │ │ │ │ ├── Fill │ │ │ │ │ │ │ │ ├── FillInterface.html │ │ │ │ │ │ │ │ ├── Gradient.html │ │ │ │ │ │ │ │ ├── Gradient │ │ │ │ │ │ │ │ │ ├── Horizontal.html │ │ │ │ │ │ │ │ │ ├── Linear.html │ │ │ │ │ │ │ │ │ ├── Vertical.html │ │ │ │ │ │ │ │ │ └── namespace-frame.html │ │ │ │ │ │ │ │ └── namespace-frame.html │ │ │ │ │ │ │ ├── FontInterface.html │ │ │ │ │ │ │ ├── Histogram.html │ │ │ │ │ │ │ ├── Histogram │ │ │ │ │ │ │ │ ├── Bucket.html │ │ │ │ │ │ │ │ ├── Range.html │ │ │ │ │ │ │ │ └── namespace-frame.html │ │ │ │ │ │ │ ├── ImageInterface.html │ │ │ │ │ │ │ ├── ImagineInterface.html │ │ │ │ │ │ │ ├── LayersInterface.html │ │ │ │ │ │ │ ├── ManipulatorInterface.html │ │ │ │ │ │ │ ├── Point.html │ │ │ │ │ │ │ ├── Point │ │ │ │ │ │ │ │ ├── Center.html │ │ │ │ │ │ │ │ └── namespace-frame.html │ │ │ │ │ │ │ ├── PointInterface.html │ │ │ │ │ │ │ └── namespace-frame.html │ │ │ │ │ │ ├── Imagick.html │ │ │ │ │ │ ├── Imagick │ │ │ │ │ │ │ ├── Drawer.html │ │ │ │ │ │ │ ├── Effects.html │ │ │ │ │ │ │ ├── Font.html │ │ │ │ │ │ │ ├── Image.html │ │ │ │ │ │ │ ├── Imagine.html │ │ │ │ │ │ │ ├── Layers.html │ │ │ │ │ │ │ └── namespace-frame.html │ │ │ │ │ │ ├── Test.html │ │ │ │ │ │ ├── Test │ │ │ │ │ │ │ ├── Constraint.html │ │ │ │ │ │ │ ├── Constraint │ │ │ │ │ │ │ │ ├── IsImageEqual.html │ │ │ │ │ │ │ │ └── namespace-frame.html │ │ │ │ │ │ │ ├── ImagineTestCase.html │ │ │ │ │ │ │ └── namespace-frame.html │ │ │ │ │ │ └── namespace-frame.html │ │ │ │ │ │ ├── PROJECT_VERSION │ │ │ │ │ │ ├── SAMI_VERSION │ │ │ │ │ │ ├── classes-frame.html │ │ │ │ │ │ ├── classes.html │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── main.css │ │ │ │ │ │ ├── panel.css │ │ │ │ │ │ └── reset.css │ │ │ │ │ │ ├── doc-index.html │ │ │ │ │ │ ├── i │ │ │ │ │ │ ├── arrows.png │ │ │ │ │ │ ├── loader.gif │ │ │ │ │ │ ├── results_bg.png │ │ │ │ │ │ └── tree_bg.png │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── interfaces.html │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── jquery-1.3.2.min.js │ │ │ │ │ │ └── searchdoc.js │ │ │ │ │ │ ├── namespaces-frame.html │ │ │ │ │ │ ├── namespaces.html │ │ │ │ │ │ ├── opensearch.xml │ │ │ │ │ │ ├── panel.html │ │ │ │ │ │ ├── renderer.index │ │ │ │ │ │ ├── search_index.js │ │ │ │ │ │ ├── stylesheet.css │ │ │ │ │ │ └── tree.js │ │ │ │ ├── Makefile │ │ │ │ ├── _static │ │ │ │ │ ├── css │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── img │ │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ │ ├── logo.png │ │ │ │ │ └── pygments.css │ │ │ │ ├── _themes │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── imagine │ │ │ │ │ │ ├── layout.html │ │ │ │ │ │ ├── static │ │ │ │ │ │ └── imagine.css_t │ │ │ │ │ │ └── theme.conf │ │ │ │ ├── conf.py │ │ │ │ ├── index.rst │ │ │ │ ├── requirements.txt │ │ │ │ ├── sami_configuration.php │ │ │ │ └── usage │ │ │ │ │ ├── coordinates.rst │ │ │ │ │ ├── drawing.rst │ │ │ │ │ ├── effects.rst │ │ │ │ │ ├── exceptions.rst │ │ │ │ │ ├── filters.rst │ │ │ │ │ ├── introduction.rst │ │ │ │ │ └── layers.rst │ │ │ │ ├── lib │ │ │ │ └── Imagine │ │ │ │ │ ├── Draw │ │ │ │ │ └── DrawerInterface.php │ │ │ │ │ ├── Effects │ │ │ │ │ └── EffectsInterface.php │ │ │ │ │ ├── Exception │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ │ ├── OutOfBoundsException.php │ │ │ │ │ └── RuntimeException.php │ │ │ │ │ ├── Filter │ │ │ │ │ ├── Advanced │ │ │ │ │ │ ├── Border.php │ │ │ │ │ │ ├── Canvas.php │ │ │ │ │ │ ├── Grayscale.php │ │ │ │ │ │ ├── OnPixelBased.php │ │ │ │ │ │ └── RelativeResize.php │ │ │ │ │ ├── Basic │ │ │ │ │ │ ├── ApplyMask.php │ │ │ │ │ │ ├── Copy.php │ │ │ │ │ │ ├── Crop.php │ │ │ │ │ │ ├── Fill.php │ │ │ │ │ │ ├── FlipHorizontally.php │ │ │ │ │ │ ├── FlipVertically.php │ │ │ │ │ │ ├── Paste.php │ │ │ │ │ │ ├── Resize.php │ │ │ │ │ │ ├── Rotate.php │ │ │ │ │ │ ├── Save.php │ │ │ │ │ │ ├── Show.php │ │ │ │ │ │ ├── Strip.php │ │ │ │ │ │ └── Thumbnail.php │ │ │ │ │ ├── FilterInterface.php │ │ │ │ │ ├── ImagineAware.php │ │ │ │ │ └── Transformation.php │ │ │ │ │ ├── Gd │ │ │ │ │ ├── Drawer.php │ │ │ │ │ ├── Effects.php │ │ │ │ │ ├── Font.php │ │ │ │ │ ├── Image.php │ │ │ │ │ ├── Imagine.php │ │ │ │ │ └── Layers.php │ │ │ │ │ ├── Gmagick │ │ │ │ │ ├── Drawer.php │ │ │ │ │ ├── Effects.php │ │ │ │ │ ├── Font.php │ │ │ │ │ ├── Image.php │ │ │ │ │ ├── Imagine.php │ │ │ │ │ └── Layers.php │ │ │ │ │ ├── Image │ │ │ │ │ ├── AbstractFont.php │ │ │ │ │ ├── AbstractLayers.php │ │ │ │ │ ├── Box.php │ │ │ │ │ ├── BoxInterface.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Fill │ │ │ │ │ │ ├── FillInterface.php │ │ │ │ │ │ └── Gradient │ │ │ │ │ │ │ ├── Horizontal.php │ │ │ │ │ │ │ ├── Linear.php │ │ │ │ │ │ │ └── Vertical.php │ │ │ │ │ ├── FontInterface.php │ │ │ │ │ ├── Histogram │ │ │ │ │ │ ├── Bucket.php │ │ │ │ │ │ └── Range.php │ │ │ │ │ ├── ImageInterface.php │ │ │ │ │ ├── ImagineInterface.php │ │ │ │ │ ├── LayersInterface.php │ │ │ │ │ ├── ManipulatorInterface.php │ │ │ │ │ ├── Point.php │ │ │ │ │ ├── Point │ │ │ │ │ │ └── Center.php │ │ │ │ │ └── PointInterface.php │ │ │ │ │ ├── Imagick │ │ │ │ │ ├── Drawer.php │ │ │ │ │ ├── Effects.php │ │ │ │ │ ├── Font.php │ │ │ │ │ ├── Image.php │ │ │ │ │ ├── Imagine.php │ │ │ │ │ └── Layers.php │ │ │ │ │ └── Test │ │ │ │ │ ├── Constraint │ │ │ │ │ └── IsImageEqual.php │ │ │ │ │ └── ImagineTestCase.php │ │ │ │ ├── phpunit.xml.dist │ │ │ │ └── tests │ │ │ │ ├── Imagine │ │ │ │ ├── Fixtures │ │ │ │ │ ├── anima.gif │ │ │ │ │ ├── blue.gif │ │ │ │ │ ├── cat.gif │ │ │ │ │ ├── font │ │ │ │ │ │ └── Arial.ttf │ │ │ │ │ ├── google.png │ │ │ │ │ ├── large.jpg │ │ │ │ │ ├── pink.gif │ │ │ │ │ ├── resize │ │ │ │ │ │ └── 210-design-19933.jpg │ │ │ │ │ ├── results │ │ │ │ │ │ ├── blank.png │ │ │ │ │ │ ├── crop_resize_flip.png │ │ │ │ │ │ ├── gradient.png │ │ │ │ │ │ ├── layers-multi-mono.png │ │ │ │ │ │ ├── layers-multi-multi.gif │ │ │ │ │ │ ├── rotate.jpg │ │ │ │ │ │ └── thumbnails │ │ │ │ │ │ │ ├── inset.png │ │ │ │ │ │ │ └── outbound.png │ │ │ │ │ ├── sample.gif │ │ │ │ │ ├── trans.gif │ │ │ │ │ ├── trans.png │ │ │ │ │ ├── xparent.gif │ │ │ │ │ └── yellow.gif │ │ │ │ └── Test │ │ │ │ │ ├── Draw │ │ │ │ │ └── AbstractDrawerTest.php │ │ │ │ │ ├── Effects │ │ │ │ │ └── AbstractEffectsTest.php │ │ │ │ │ ├── Filter │ │ │ │ │ ├── Advanced │ │ │ │ │ │ ├── BorderTest.php │ │ │ │ │ │ ├── CanvasTest.php │ │ │ │ │ │ └── GrayscaleTest.php │ │ │ │ │ ├── Basic │ │ │ │ │ │ ├── CopyTest.php │ │ │ │ │ │ ├── CropTest.php │ │ │ │ │ │ ├── FlipHorizontallyTest.php │ │ │ │ │ │ ├── FlipVerticallyTest.php │ │ │ │ │ │ ├── PasteTest.php │ │ │ │ │ │ ├── ResizeTest.php │ │ │ │ │ │ ├── RotateTest.php │ │ │ │ │ │ ├── SaveTest.php │ │ │ │ │ │ ├── ShowTest.php │ │ │ │ │ │ ├── StripTest.php │ │ │ │ │ │ └── ThumbnailTest.php │ │ │ │ │ ├── DummyImagineAwareFilter.php │ │ │ │ │ ├── FilterTestCase.php │ │ │ │ │ ├── ImagineAwareTest.php │ │ │ │ │ └── TransformationTest.php │ │ │ │ │ ├── Functional │ │ │ │ │ └── GdTransparentGifHandlingTest.php │ │ │ │ │ ├── Gd │ │ │ │ │ ├── DrawerTest.php │ │ │ │ │ ├── EffectsTest.php │ │ │ │ │ ├── ImageTest.php │ │ │ │ │ ├── ImagineTest.php │ │ │ │ │ └── LayersTest.php │ │ │ │ │ ├── Gmagick │ │ │ │ │ ├── DrawerTest.php │ │ │ │ │ ├── EffectsTest.php │ │ │ │ │ ├── ImageTest.php │ │ │ │ │ ├── ImagineTest.php │ │ │ │ │ └── LayersTest.php │ │ │ │ │ ├── Image │ │ │ │ │ ├── AbstractImageTest.php │ │ │ │ │ ├── AbstractImagineTest.php │ │ │ │ │ ├── AbstractLayersTest.php │ │ │ │ │ ├── BoxTest.php │ │ │ │ │ ├── ColorTest.php │ │ │ │ │ ├── Fill │ │ │ │ │ │ └── Gradient │ │ │ │ │ │ │ ├── HorizontalTest.php │ │ │ │ │ │ │ ├── LinearTest.php │ │ │ │ │ │ │ └── VerticalTest.php │ │ │ │ │ ├── Histogram │ │ │ │ │ │ ├── BucketTest.php │ │ │ │ │ │ └── RangeTest.php │ │ │ │ │ ├── Point │ │ │ │ │ │ └── CenterTest.php │ │ │ │ │ └── PointTest.php │ │ │ │ │ ├── Imagick │ │ │ │ │ ├── DrawerTest.php │ │ │ │ │ ├── EffectsTest.php │ │ │ │ │ ├── ImageTest.php │ │ │ │ │ ├── ImagineTest.php │ │ │ │ │ └── LayersTest.php │ │ │ │ │ └── Issues │ │ │ │ │ ├── Issue131Test.php │ │ │ │ │ ├── Issue17Test.php │ │ │ │ │ ├── Issue59Test.php │ │ │ │ │ ├── Issue67Test.php │ │ │ │ │ └── multi-layer.psd │ │ │ │ └── bootstrap.php │ │ ├── leafo │ │ │ ├── lessphp │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ ├── docs │ │ │ │ │ └── docs.md │ │ │ │ ├── lessc.inc.php │ │ │ │ ├── lessify │ │ │ │ ├── lessify.inc.php │ │ │ │ ├── package.sh │ │ │ │ ├── plessc │ │ │ │ └── tests │ │ │ │ │ ├── ApiTest.php │ │ │ │ │ ├── InputTest.php │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bootstrap.sh │ │ │ │ │ ├── inputs │ │ │ │ │ ├── accessors.less.disable │ │ │ │ │ ├── arity.less │ │ │ │ │ ├── attributes.less │ │ │ │ │ ├── builtins.less │ │ │ │ │ ├── colors.less │ │ │ │ │ ├── compile_on_mixin.less │ │ │ │ │ ├── directives.less │ │ │ │ │ ├── escape.less │ │ │ │ │ ├── font_family.less │ │ │ │ │ ├── guards.less │ │ │ │ │ ├── hacks.less │ │ │ │ │ ├── hi.less │ │ │ │ │ ├── ie.less │ │ │ │ │ ├── import.less │ │ │ │ │ ├── interpolation.less │ │ │ │ │ ├── keyframes.less │ │ │ │ │ ├── math.less │ │ │ │ │ ├── media.less │ │ │ │ │ ├── misc.less │ │ │ │ │ ├── mixin_functions.less │ │ │ │ │ ├── mixin_merging.less.disable │ │ │ │ │ ├── mixins.less │ │ │ │ │ ├── nested.less │ │ │ │ │ ├── pattern_matching.less │ │ │ │ │ ├── scopes.less │ │ │ │ │ ├── selector_expressions.less │ │ │ │ │ ├── site_demos.less │ │ │ │ │ ├── test-imports │ │ │ │ │ │ ├── a.less │ │ │ │ │ │ ├── b.less │ │ │ │ │ │ ├── file1.less │ │ │ │ │ │ ├── file2.less │ │ │ │ │ │ ├── file3.less │ │ │ │ │ │ └── inner │ │ │ │ │ │ │ ├── file1.less │ │ │ │ │ │ │ └── file2.less │ │ │ │ │ └── variables.less │ │ │ │ │ ├── outputs │ │ │ │ │ ├── accessors.css │ │ │ │ │ ├── arity.css │ │ │ │ │ ├── attributes.css │ │ │ │ │ ├── builtins.css │ │ │ │ │ ├── colors.css │ │ │ │ │ ├── compile_on_mixin.css │ │ │ │ │ ├── directives.css │ │ │ │ │ ├── escape.css │ │ │ │ │ ├── font_family.css │ │ │ │ │ ├── guards.css │ │ │ │ │ ├── hacks.css │ │ │ │ │ ├── hi.css │ │ │ │ │ ├── ie.css │ │ │ │ │ ├── import.css │ │ │ │ │ ├── interpolation.css │ │ │ │ │ ├── keyframes.css │ │ │ │ │ ├── math.css │ │ │ │ │ ├── media.css │ │ │ │ │ ├── misc.css │ │ │ │ │ ├── mixin_functions.css │ │ │ │ │ ├── mixin_merging.css │ │ │ │ │ ├── mixins.css │ │ │ │ │ ├── nested.css │ │ │ │ │ ├── nesting.css │ │ │ │ │ ├── pattern_matching.css │ │ │ │ │ ├── scopes.css │ │ │ │ │ ├── selector_expressions.css │ │ │ │ │ ├── site_demos.css │ │ │ │ │ └── variables.css │ │ │ │ │ └── sort.php │ │ │ └── scssphp │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ ├── package.sh │ │ │ │ ├── pscss │ │ │ │ ├── site │ │ │ │ ├── .gitignore │ │ │ │ ├── composer.html │ │ │ │ ├── docs │ │ │ │ │ └── index.md │ │ │ │ ├── index.md │ │ │ │ ├── site.moon │ │ │ │ ├── style.scss │ │ │ │ ├── templates │ │ │ │ │ └── index.html │ │ │ │ └── www │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── img │ │ │ │ │ └── tile.png │ │ │ │ │ └── style │ │ │ │ │ └── normalize.css │ │ │ │ ├── tests │ │ │ │ ├── ApiTest.php │ │ │ │ ├── ExceptionTest.php │ │ │ │ ├── InputTest.php │ │ │ │ ├── compare-scss.sh │ │ │ │ ├── inputs │ │ │ │ │ ├── builtins.scss │ │ │ │ │ ├── comments.scss │ │ │ │ │ ├── compass_extract.scss │ │ │ │ │ ├── content.scss │ │ │ │ │ ├── default_args.scss │ │ │ │ │ ├── directives.scss │ │ │ │ │ ├── extends.scss │ │ │ │ │ ├── filter_effects.scss │ │ │ │ │ ├── functions.scss │ │ │ │ │ ├── if.scss │ │ │ │ │ ├── import.scss │ │ │ │ │ ├── imports │ │ │ │ │ │ ├── _partial.scss │ │ │ │ │ │ └── simple.scss │ │ │ │ │ ├── interpolation.scss │ │ │ │ │ ├── keyword_args.scss │ │ │ │ │ ├── list.scss │ │ │ │ │ ├── looping.scss │ │ │ │ │ ├── media.scss │ │ │ │ │ ├── mixins.scss │ │ │ │ │ ├── nesting.scss │ │ │ │ │ ├── null.scss │ │ │ │ │ ├── operators.scss │ │ │ │ │ ├── placeholder_selector.scss │ │ │ │ │ ├── scss_css.scss │ │ │ │ │ ├── selectors.scss │ │ │ │ │ ├── values.scss │ │ │ │ │ └── variables.scss │ │ │ │ └── outputs │ │ │ │ │ ├── builtins.css │ │ │ │ │ ├── comments.css │ │ │ │ │ ├── compass_extract.css │ │ │ │ │ ├── content.css │ │ │ │ │ ├── default_args.css │ │ │ │ │ ├── directives.css │ │ │ │ │ ├── extends.css │ │ │ │ │ ├── filter_effects.css │ │ │ │ │ ├── functions.css │ │ │ │ │ ├── if.css │ │ │ │ │ ├── import.css │ │ │ │ │ ├── interpolation.css │ │ │ │ │ ├── keyword_args.css │ │ │ │ │ ├── list.css │ │ │ │ │ ├── looping.css │ │ │ │ │ ├── media.css │ │ │ │ │ ├── mixins.css │ │ │ │ │ ├── nesting.css │ │ │ │ │ ├── null.css │ │ │ │ │ ├── operators.css │ │ │ │ │ ├── placeholder_selector.css │ │ │ │ │ ├── scss_css.css │ │ │ │ │ ├── selectors.css │ │ │ │ │ ├── values.css │ │ │ │ │ └── variables.css │ │ │ │ └── todo │ │ ├── meenie │ │ │ ├── javascript-packer │ │ │ │ ├── .gitignore │ │ │ │ ├── class.JavaScriptPacker.php │ │ │ │ ├── class.JavaScriptPacker.php4 │ │ │ │ ├── composer.json │ │ │ │ ├── example-file.php │ │ │ │ ├── example-inline.php │ │ │ │ └── readme.txt │ │ │ └── munee │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ ├── config │ │ │ │ └── bootstrap.php │ │ │ │ ├── phpunit.xml.dist │ │ │ │ ├── src │ │ │ │ └── Munee │ │ │ │ │ ├── Asset │ │ │ │ │ ├── Filter.php │ │ │ │ │ ├── Filter │ │ │ │ │ │ ├── Css │ │ │ │ │ │ │ └── Minify.php │ │ │ │ │ │ ├── Image │ │ │ │ │ │ │ ├── Colorize.php │ │ │ │ │ │ │ ├── Grayscale.php │ │ │ │ │ │ │ ├── Negative.php │ │ │ │ │ │ │ └── Resize.php │ │ │ │ │ │ └── JavaScript │ │ │ │ │ │ │ ├── Minify.php │ │ │ │ │ │ │ └── Packer.php │ │ │ │ │ ├── HeaderSetter.php │ │ │ │ │ ├── NotFoundException.php │ │ │ │ │ ├── Registry.php │ │ │ │ │ ├── Type.php │ │ │ │ │ └── Type │ │ │ │ │ │ ├── CompilationException.php │ │ │ │ │ │ ├── Css.php │ │ │ │ │ │ ├── Image.php │ │ │ │ │ │ └── JavaScript.php │ │ │ │ │ ├── Dispatcher.php │ │ │ │ │ ├── ErrorException.php │ │ │ │ │ ├── Request.php │ │ │ │ │ ├── Response.php │ │ │ │ │ └── Utils.php │ │ │ │ └── tests │ │ │ │ ├── Munee │ │ │ │ ├── Cases │ │ │ │ │ ├── Asset │ │ │ │ │ │ └── RegistryTest.php │ │ │ │ │ ├── RequestTest.php │ │ │ │ │ ├── ResponseTest.php │ │ │ │ │ └── UtilsTest.php │ │ │ │ └── Mocks │ │ │ │ │ ├── MockAssetType.php │ │ │ │ │ └── MockRequest.php │ │ │ │ ├── bootstrap.php │ │ │ │ └── tmp │ │ │ │ └── empty │ │ └── tedivm │ │ │ └── jshrink │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── src │ │ │ └── JShrink │ │ │ │ └── Minifier.php │ │ │ └── tests │ │ │ ├── JShrink.php │ │ │ └── minify │ │ │ ├── jshrink │ │ │ ├── expect │ │ │ │ └── preserve-strings.js │ │ │ └── test │ │ │ │ └── preserve-strings.js │ │ │ └── uglify │ │ │ ├── README │ │ │ ├── expect │ │ │ ├── array1.js │ │ │ ├── array2.js │ │ │ ├── array3.js │ │ │ ├── array4.js │ │ │ ├── assignment.js │ │ │ ├── concatstring.js │ │ │ ├── empty-blocks.js │ │ │ ├── forstatement.js │ │ │ ├── if.js │ │ │ ├── ifreturn.js │ │ │ ├── ifreturn2.js │ │ │ ├── null_string.js │ │ │ ├── strict-equals.js │ │ │ ├── var.js │ │ │ ├── whitespace.js │ │ │ └── with.js │ │ │ └── test │ │ │ ├── array1.js │ │ │ ├── array2.js │ │ │ ├── array3.js │ │ │ ├── array4.js │ │ │ ├── assignment.js │ │ │ ├── concatstring.js │ │ │ ├── empty-blocks.js │ │ │ ├── forstatement.js │ │ │ ├── if.js │ │ │ ├── ifreturn.js │ │ │ ├── ifreturn2.js │ │ │ ├── null_string.js │ │ │ ├── strict-equals.js │ │ │ ├── var.js │ │ │ ├── whitespace.js │ │ │ └── with.js │ ├── Object.php │ ├── PHPExcel.php │ ├── PHPExcel │ │ ├── Autoloader.php │ │ ├── CachedObjectStorage │ │ │ ├── APC.php │ │ │ ├── CacheBase.php │ │ │ ├── DiscISAM.php │ │ │ ├── ICache.php │ │ │ ├── Igbinary.php │ │ │ ├── Memcache.php │ │ │ ├── Memory.php │ │ │ ├── MemoryGZip.php │ │ │ ├── MemorySerialized.php │ │ │ ├── PHPTemp.php │ │ │ ├── SQLite.php │ │ │ ├── SQLite3.php │ │ │ └── Wincache.php │ │ ├── CachedObjectStorageFactory.php │ │ ├── CalcEngine │ │ │ ├── CyclicReferenceStack.php │ │ │ └── Logger.php │ │ ├── Calculation.php │ │ ├── Calculation │ │ │ ├── Database.php │ │ │ ├── DateTime.php │ │ │ ├── Engineering.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionHandler.php │ │ │ ├── Financial.php │ │ │ ├── FormulaParser.php │ │ │ ├── FormulaToken.php │ │ │ ├── Function.php │ │ │ ├── Functions.php │ │ │ ├── Logical.php │ │ │ ├── LookupRef.php │ │ │ ├── MathTrig.php │ │ │ ├── Statistical.php │ │ │ ├── TextData.php │ │ │ ├── Token │ │ │ │ └── Stack.php │ │ │ └── functionlist.txt │ │ ├── Cell.php │ │ ├── Cell │ │ │ ├── AdvancedValueBinder.php │ │ │ ├── DataType.php │ │ │ ├── DataValidation.php │ │ │ ├── DefaultValueBinder.php │ │ │ ├── Hyperlink.php │ │ │ └── IValueBinder.php │ │ ├── Chart.php │ │ ├── Chart │ │ │ ├── DataSeries.php │ │ │ ├── DataSeriesValues.php │ │ │ ├── Exception.php │ │ │ ├── Layout.php │ │ │ ├── Legend.php │ │ │ ├── PlotArea.php │ │ │ ├── Renderer │ │ │ │ ├── PHP Charting Libraries.txt │ │ │ │ └── jpgraph.php │ │ │ └── Title.php │ │ ├── Comment.php │ │ ├── DocumentProperties.php │ │ ├── DocumentSecurity.php │ │ ├── Exception.php │ │ ├── HashTable.php │ │ ├── IComparable.php │ │ ├── IOFactory.php │ │ ├── NamedRange.php │ │ ├── Reader │ │ │ ├── Abstract.php │ │ │ ├── CSV.php │ │ │ ├── DefaultReadFilter.php │ │ │ ├── Excel2003XML.php │ │ │ ├── Excel2007.php │ │ │ ├── Excel2007 │ │ │ │ ├── Chart.php │ │ │ │ └── Theme.php │ │ │ ├── Excel5.php │ │ │ ├── Excel5 │ │ │ │ ├── Escher.php │ │ │ │ ├── MD5.php │ │ │ │ └── RC4.php │ │ │ ├── Exception.php │ │ │ ├── Gnumeric.php │ │ │ ├── HTML.php │ │ │ ├── IReadFilter.php │ │ │ ├── IReader.php │ │ │ ├── OOCalc.php │ │ │ └── SYLK.php │ │ ├── ReferenceHelper.php │ │ ├── RichText.php │ │ ├── RichText │ │ │ ├── ITextElement.php │ │ │ ├── Run.php │ │ │ └── TextElement.php │ │ ├── Settings.php │ │ ├── Shared │ │ │ ├── CodePage.php │ │ │ ├── Date.php │ │ │ ├── Drawing.php │ │ │ ├── Escher.php │ │ │ ├── Escher │ │ │ │ ├── DgContainer.php │ │ │ │ ├── DgContainer │ │ │ │ │ ├── SpgrContainer.php │ │ │ │ │ └── SpgrContainer │ │ │ │ │ │ └── SpContainer.php │ │ │ │ ├── DggContainer.php │ │ │ │ └── DggContainer │ │ │ │ │ ├── BstoreContainer.php │ │ │ │ │ └── BstoreContainer │ │ │ │ │ ├── BSE.php │ │ │ │ │ └── BSE │ │ │ │ │ └── Blip.php │ │ │ ├── Excel5.php │ │ │ ├── File.php │ │ │ ├── Font.php │ │ │ ├── JAMA │ │ │ │ ├── CHANGELOG.TXT │ │ │ │ ├── CholeskyDecomposition.php │ │ │ │ ├── EigenvalueDecomposition.php │ │ │ │ ├── LUDecomposition.php │ │ │ │ ├── Matrix.php │ │ │ │ ├── QRDecomposition.php │ │ │ │ ├── SingularValueDecomposition.php │ │ │ │ └── utils │ │ │ │ │ ├── Error.php │ │ │ │ │ └── Maths.php │ │ │ ├── OLE.php │ │ │ ├── OLE │ │ │ │ ├── ChainedBlockStream.php │ │ │ │ ├── PPS.php │ │ │ │ └── PPS │ │ │ │ │ ├── File.php │ │ │ │ │ └── Root.php │ │ │ ├── OLERead.php │ │ │ ├── PCLZip │ │ │ │ ├── gnu-lgpl.txt │ │ │ │ ├── pclzip.lib.php │ │ │ │ └── readme.txt │ │ │ ├── PasswordHasher.php │ │ │ ├── String.php │ │ │ ├── TimeZone.php │ │ │ ├── XMLWriter.php │ │ │ ├── ZipArchive.php │ │ │ ├── ZipStreamWrapper.php │ │ │ └── trend │ │ │ │ ├── bestFitClass.php │ │ │ │ ├── exponentialBestFitClass.php │ │ │ │ ├── linearBestFitClass.php │ │ │ │ ├── logarithmicBestFitClass.php │ │ │ │ ├── polynomialBestFitClass.php │ │ │ │ ├── powerBestFitClass.php │ │ │ │ └── trendClass.php │ │ ├── Style.php │ │ ├── Style │ │ │ ├── Alignment.php │ │ │ ├── Border.php │ │ │ ├── Borders.php │ │ │ ├── Color.php │ │ │ ├── Conditional.php │ │ │ ├── Fill.php │ │ │ ├── Font.php │ │ │ ├── NumberFormat.php │ │ │ ├── Protection.php │ │ │ └── Supervisor.php │ │ ├── Worksheet.php │ │ ├── Worksheet │ │ │ ├── AutoFilter.php │ │ │ ├── AutoFilter │ │ │ │ ├── Column.php │ │ │ │ └── Column │ │ │ │ │ └── Rule.php │ │ │ ├── BaseDrawing.php │ │ │ ├── CellIterator.php │ │ │ ├── ColumnDimension.php │ │ │ ├── Drawing.php │ │ │ ├── Drawing │ │ │ │ └── Shadow.php │ │ │ ├── HeaderFooter.php │ │ │ ├── HeaderFooterDrawing.php │ │ │ ├── MemoryDrawing.php │ │ │ ├── PageMargins.php │ │ │ ├── PageSetup.php │ │ │ ├── Protection.php │ │ │ ├── Row.php │ │ │ ├── RowDimension.php │ │ │ ├── RowIterator.php │ │ │ └── SheetView.php │ │ ├── WorksheetIterator.php │ │ ├── Writer │ │ │ ├── Abstract.php │ │ │ ├── CSV.php │ │ │ ├── Excel2007.php │ │ │ ├── Excel2007 │ │ │ │ ├── Chart.php │ │ │ │ ├── Comments.php │ │ │ │ ├── ContentTypes.php │ │ │ │ ├── DocProps.php │ │ │ │ ├── Drawing.php │ │ │ │ ├── Rels.php │ │ │ │ ├── RelsRibbon.php │ │ │ │ ├── RelsVBA.php │ │ │ │ ├── StringTable.php │ │ │ │ ├── Style.php │ │ │ │ ├── Theme.php │ │ │ │ ├── Workbook.php │ │ │ │ ├── Worksheet.php │ │ │ │ └── WriterPart.php │ │ │ ├── Excel5.php │ │ │ ├── Excel5 │ │ │ │ ├── BIFFwriter.php │ │ │ │ ├── Escher.php │ │ │ │ ├── Font.php │ │ │ │ ├── Parser.php │ │ │ │ ├── Workbook.php │ │ │ │ ├── Worksheet.php │ │ │ │ └── Xf.php │ │ │ ├── Exception.php │ │ │ ├── HTML.php │ │ │ ├── IWriter.php │ │ │ ├── PDF.php │ │ │ └── PDF │ │ │ │ ├── Core.php │ │ │ │ ├── DomPDF.php │ │ │ │ ├── mPDF.php │ │ │ │ └── tcPDF.php │ │ └── locale │ │ │ ├── bg │ │ │ └── config │ │ │ ├── cs │ │ │ ├── config │ │ │ └── functions │ │ │ ├── da │ │ │ ├── config │ │ │ └── functions │ │ │ ├── de │ │ │ ├── config │ │ │ └── functions │ │ │ ├── en │ │ │ └── uk │ │ │ │ └── config │ │ │ ├── es │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fi │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fr │ │ │ ├── config │ │ │ └── functions │ │ │ ├── hu │ │ │ ├── config │ │ │ └── functions │ │ │ ├── it │ │ │ ├── config │ │ │ └── functions │ │ │ ├── nl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── no │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pt │ │ │ ├── br │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ ├── config │ │ │ └── functions │ │ │ ├── ru │ │ │ ├── config │ │ │ └── functions │ │ │ ├── sv │ │ │ ├── config │ │ │ └── functions │ │ │ └── tr │ │ │ ├── config │ │ │ └── functions │ ├── Pagination.php │ ├── Payment │ │ └── Alipay.php │ ├── Pinyin.php │ ├── RedisCluster.php │ ├── Rijndael.php │ ├── SphinxClient.php │ ├── SwiftMailer │ │ ├── classes │ │ │ ├── Swift.php │ │ │ └── Swift │ │ │ │ ├── Attachment.php │ │ │ │ ├── ByteStream │ │ │ │ ├── AbstractFilterableInputStream.php │ │ │ │ ├── ArrayByteStream.php │ │ │ │ ├── FileByteStream.php │ │ │ │ └── TemporaryFileByteStream.php │ │ │ │ ├── CharacterReader.php │ │ │ │ ├── CharacterReader │ │ │ │ ├── GenericFixedWidthReader.php │ │ │ │ ├── UsAsciiReader.php │ │ │ │ └── Utf8Reader.php │ │ │ │ ├── CharacterReaderFactory.php │ │ │ │ ├── CharacterReaderFactory │ │ │ │ └── SimpleCharacterReaderFactory.php │ │ │ │ ├── CharacterStream.php │ │ │ │ ├── CharacterStream │ │ │ │ ├── ArrayCharacterStream.php │ │ │ │ └── NgCharacterStream.php │ │ │ │ ├── ConfigurableSpool.php │ │ │ │ ├── DependencyContainer.php │ │ │ │ ├── DependencyException.php │ │ │ │ ├── EmbeddedFile.php │ │ │ │ ├── Encoder.php │ │ │ │ ├── Encoder │ │ │ │ ├── Base64Encoder.php │ │ │ │ ├── QpEncoder.php │ │ │ │ └── Rfc2231Encoder.php │ │ │ │ ├── Encoding.php │ │ │ │ ├── Events │ │ │ │ ├── CommandEvent.php │ │ │ │ ├── CommandListener.php │ │ │ │ ├── Event.php │ │ │ │ ├── EventDispatcher.php │ │ │ │ ├── EventListener.php │ │ │ │ ├── EventObject.php │ │ │ │ ├── ResponseEvent.php │ │ │ │ ├── ResponseListener.php │ │ │ │ ├── SendEvent.php │ │ │ │ ├── SendListener.php │ │ │ │ ├── SimpleEventDispatcher.php │ │ │ │ ├── TransportChangeEvent.php │ │ │ │ ├── TransportChangeListener.php │ │ │ │ ├── TransportExceptionEvent.php │ │ │ │ └── TransportExceptionListener.php │ │ │ │ ├── FailoverTransport.php │ │ │ │ ├── FileSpool.php │ │ │ │ ├── FileStream.php │ │ │ │ ├── Filterable.php │ │ │ │ ├── Image.php │ │ │ │ ├── InputByteStream.php │ │ │ │ ├── IoException.php │ │ │ │ ├── KeyCache.php │ │ │ │ ├── KeyCache │ │ │ │ ├── ArrayKeyCache.php │ │ │ │ ├── DiskKeyCache.php │ │ │ │ ├── KeyCacheInputStream.php │ │ │ │ ├── NullKeyCache.php │ │ │ │ └── SimpleKeyCacheInputStream.php │ │ │ │ ├── LoadBalancedTransport.php │ │ │ │ ├── MailTransport.php │ │ │ │ ├── Mailer.php │ │ │ │ ├── Mailer │ │ │ │ ├── ArrayRecipientIterator.php │ │ │ │ └── RecipientIterator.php │ │ │ │ ├── MemorySpool.php │ │ │ │ ├── Message.php │ │ │ │ ├── Mime │ │ │ │ ├── Attachment.php │ │ │ │ ├── CharsetObserver.php │ │ │ │ ├── ContentEncoder.php │ │ │ │ ├── ContentEncoder │ │ │ │ │ ├── Base64ContentEncoder.php │ │ │ │ │ ├── NativeQpContentEncoder.php │ │ │ │ │ ├── PlainContentEncoder.php │ │ │ │ │ ├── QpContentEncoder.php │ │ │ │ │ ├── QpContentEncoderProxy.php │ │ │ │ │ └── RawContentEncoder.php │ │ │ │ ├── EmbeddedFile.php │ │ │ │ ├── EncodingObserver.php │ │ │ │ ├── Grammar.php │ │ │ │ ├── Header.php │ │ │ │ ├── HeaderEncoder.php │ │ │ │ ├── HeaderEncoder │ │ │ │ │ ├── Base64HeaderEncoder.php │ │ │ │ │ └── QpHeaderEncoder.php │ │ │ │ ├── HeaderFactory.php │ │ │ │ ├── HeaderSet.php │ │ │ │ ├── Headers │ │ │ │ │ ├── AbstractHeader.php │ │ │ │ │ ├── DateHeader.php │ │ │ │ │ ├── IdentificationHeader.php │ │ │ │ │ ├── MailboxHeader.php │ │ │ │ │ ├── OpenDKIMHeader.php │ │ │ │ │ ├── ParameterizedHeader.php │ │ │ │ │ ├── PathHeader.php │ │ │ │ │ └── UnstructuredHeader.php │ │ │ │ ├── Message.php │ │ │ │ ├── MimeEntity.php │ │ │ │ ├── MimePart.php │ │ │ │ ├── ParameterizedHeader.php │ │ │ │ ├── SimpleHeaderFactory.php │ │ │ │ ├── SimpleHeaderSet.php │ │ │ │ ├── SimpleMessage.php │ │ │ │ └── SimpleMimeEntity.php │ │ │ │ ├── MimePart.php │ │ │ │ ├── NullTransport.php │ │ │ │ ├── OutputByteStream.php │ │ │ │ ├── Plugins │ │ │ │ ├── AntiFloodPlugin.php │ │ │ │ ├── BandwidthMonitorPlugin.php │ │ │ │ ├── Decorator │ │ │ │ │ └── Replacements.php │ │ │ │ ├── DecoratorPlugin.php │ │ │ │ ├── ImpersonatePlugin.php │ │ │ │ ├── Logger.php │ │ │ │ ├── LoggerPlugin.php │ │ │ │ ├── Loggers │ │ │ │ │ ├── ArrayLogger.php │ │ │ │ │ └── EchoLogger.php │ │ │ │ ├── MessageLogger.php │ │ │ │ ├── Pop │ │ │ │ │ ├── Pop3Connection.php │ │ │ │ │ └── Pop3Exception.php │ │ │ │ ├── PopBeforeSmtpPlugin.php │ │ │ │ ├── RedirectingPlugin.php │ │ │ │ ├── Reporter.php │ │ │ │ ├── ReporterPlugin.php │ │ │ │ ├── Reporters │ │ │ │ │ ├── HitReporter.php │ │ │ │ │ └── HtmlReporter.php │ │ │ │ ├── Sleeper.php │ │ │ │ ├── ThrottlerPlugin.php │ │ │ │ └── Timer.php │ │ │ │ ├── Preferences.php │ │ │ │ ├── ReplacementFilterFactory.php │ │ │ │ ├── RfcComplianceException.php │ │ │ │ ├── SendmailTransport.php │ │ │ │ ├── SignedMessage.php │ │ │ │ ├── Signer.php │ │ │ │ ├── Signers │ │ │ │ ├── BodySigner.php │ │ │ │ ├── DKIMSigner.php │ │ │ │ ├── DomainKeySigner.php │ │ │ │ ├── HeaderSigner.php │ │ │ │ ├── OpenDKIMSigner.php │ │ │ │ └── SMimeSigner.php │ │ │ │ ├── SmtpTransport.php │ │ │ │ ├── Spool.php │ │ │ │ ├── SpoolTransport.php │ │ │ │ ├── StreamFilter.php │ │ │ │ ├── StreamFilters │ │ │ │ ├── ByteArrayReplacementFilter.php │ │ │ │ ├── StringReplacementFilter.php │ │ │ │ └── StringReplacementFilterFactory.php │ │ │ │ ├── SwiftException.php │ │ │ │ ├── Transport.php │ │ │ │ ├── Transport │ │ │ │ ├── AbstractSmtpTransport.php │ │ │ │ ├── Esmtp │ │ │ │ │ ├── Auth │ │ │ │ │ │ ├── CramMd5Authenticator.php │ │ │ │ │ │ ├── LoginAuthenticator.php │ │ │ │ │ │ ├── NTLMAuthenticator.php │ │ │ │ │ │ ├── PlainAuthenticator.php │ │ │ │ │ │ └── XOAuth2Authenticator.php │ │ │ │ │ ├── AuthHandler.php │ │ │ │ │ └── Authenticator.php │ │ │ │ ├── EsmtpHandler.php │ │ │ │ ├── EsmtpTransport.php │ │ │ │ ├── FailoverTransport.php │ │ │ │ ├── IoBuffer.php │ │ │ │ ├── LoadBalancedTransport.php │ │ │ │ ├── MailInvoker.php │ │ │ │ ├── MailTransport.php │ │ │ │ ├── NullTransport.php │ │ │ │ ├── SendmailTransport.php │ │ │ │ ├── SimpleMailInvoker.php │ │ │ │ ├── SmtpAgent.php │ │ │ │ ├── SpoolTransport.php │ │ │ │ └── StreamBuffer.php │ │ │ │ ├── TransportException.php │ │ │ │ └── Validate.php │ │ ├── dependency_maps │ │ │ ├── cache_deps.php │ │ │ ├── message_deps.php │ │ │ ├── mime_deps.php │ │ │ └── transport_deps.php │ │ ├── mime_types.php │ │ ├── preferences.php │ │ ├── swift_init.php │ │ ├── swift_required.php │ │ ├── swift_required_pear.php │ │ └── swiftmailer_generate_mimes_config.php │ ├── Tools.php │ ├── Validate.php │ ├── WeiXin.php │ ├── font │ │ └── 5.ttf │ ├── phpFastCache.php │ ├── phpFastCache │ │ ├── driver.php │ │ └── drivers │ │ │ ├── apc.php │ │ │ ├── files.php │ │ │ ├── memcache.php │ │ │ ├── memcached.php │ │ │ ├── sqlite.php │ │ │ ├── wincache.php │ │ │ └── xcache.php │ ├── phpQuery.php │ ├── phpQuery │ │ ├── Callback.php │ │ ├── DOMDocumentWrapper.php │ │ ├── DOMEvent.php │ │ ├── Zend │ │ │ ├── Exception.php │ │ │ ├── Http │ │ │ │ ├── Client.php │ │ │ │ ├── Client │ │ │ │ │ ├── Adapter │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ ├── Interface.php │ │ │ │ │ │ ├── Proxy.php │ │ │ │ │ │ ├── Socket.php │ │ │ │ │ │ └── Test.php │ │ │ │ │ └── Exception.php │ │ │ │ ├── Cookie.php │ │ │ │ ├── CookieJar.php │ │ │ │ ├── Exception.php │ │ │ │ └── Response.php │ │ │ ├── Json │ │ │ │ ├── Decoder.php │ │ │ │ ├── Encoder.php │ │ │ │ └── Exception.php │ │ │ ├── Loader.php │ │ │ ├── Registry.php │ │ │ ├── Uri.php │ │ │ ├── Uri │ │ │ │ ├── Exception.php │ │ │ │ └── Http.php │ │ │ └── Validate │ │ │ │ ├── Abstract.php │ │ │ │ ├── Alnum.php │ │ │ │ ├── Alpha.php │ │ │ │ ├── Barcode.php │ │ │ │ ├── Barcode │ │ │ │ ├── Ean13.php │ │ │ │ └── UpcA.php │ │ │ │ ├── Between.php │ │ │ │ ├── Ccnum.php │ │ │ │ ├── Date.php │ │ │ │ ├── Digits.php │ │ │ │ ├── EmailAddress.php │ │ │ │ ├── Exception.php │ │ │ │ ├── File │ │ │ │ ├── Count.php │ │ │ │ ├── Exists.php │ │ │ │ ├── Extension.php │ │ │ │ ├── FilesSize.php │ │ │ │ ├── ImageSize.php │ │ │ │ ├── MimeType.php │ │ │ │ ├── NotExists.php │ │ │ │ ├── Size.php │ │ │ │ └── Upload.php │ │ │ │ ├── Float.php │ │ │ │ ├── GreaterThan.php │ │ │ │ ├── Hex.php │ │ │ │ ├── Hostname.php │ │ │ │ ├── Hostname │ │ │ │ ├── At.php │ │ │ │ ├── Ch.php │ │ │ │ ├── De.php │ │ │ │ ├── Fi.php │ │ │ │ ├── Hu.php │ │ │ │ ├── Interface.php │ │ │ │ ├── Li.php │ │ │ │ ├── No.php │ │ │ │ └── Se.php │ │ │ │ ├── Identical.php │ │ │ │ ├── InArray.php │ │ │ │ ├── Int.php │ │ │ │ ├── Interface.php │ │ │ │ ├── Ip.php │ │ │ │ ├── LessThan.php │ │ │ │ ├── NotEmpty.php │ │ │ │ ├── Regex.php │ │ │ │ └── StringLength.php │ │ ├── bootstrap.example.php │ │ ├── compat │ │ │ └── mbstring.php │ │ ├── phpQueryEvents.php │ │ ├── phpQueryObject.php │ │ └── plugins │ │ │ ├── Scripts.php │ │ │ ├── Scripts │ │ │ ├── __config.example.php │ │ │ ├── example.php │ │ │ ├── fix_webroot.php │ │ │ ├── google_login.php │ │ │ ├── print_source.php │ │ │ └── print_websafe.php │ │ │ ├── WebBrowser.php │ │ │ └── example.php │ ├── smarty │ │ ├── Adapter.php │ │ ├── Config_File.class.php │ │ ├── Smarty.class.php │ │ ├── Smarty_Compiler.class.php │ │ ├── internals │ │ │ ├── core.assemble_plugin_filepath.php │ │ │ ├── core.assign_smarty_interface.php │ │ │ ├── core.create_dir_structure.php │ │ │ ├── core.display_debug_console.php │ │ │ ├── core.get_include_path.php │ │ │ ├── core.get_microtime.php │ │ │ ├── core.get_php_resource.php │ │ │ ├── core.is_secure.php │ │ │ ├── core.is_trusted.php │ │ │ ├── core.load_plugins.php │ │ │ ├── core.load_resource_plugin.php │ │ │ ├── core.process_cached_inserts.php │ │ │ ├── core.process_compiled_include.php │ │ │ ├── core.read_cache_file.php │ │ │ ├── core.rm_auto.php │ │ │ ├── core.rmdir.php │ │ │ ├── core.run_insert_handler.php │ │ │ ├── core.smarty_include_php.php │ │ │ ├── core.write_cache_file.php │ │ │ ├── core.write_compiled_include.php │ │ │ ├── core.write_compiled_resource.php │ │ │ └── core.write_file.php │ │ └── plugins │ │ │ ├── block.privilege.php │ │ │ ├── block.textformat.php │ │ │ ├── compiler.assign.php │ │ │ ├── function.assign_debug_info.php │ │ │ ├── function.config_load.php │ │ │ ├── function.counter.php │ │ │ ├── function.cycle.php │ │ │ ├── function.debug.php │ │ │ ├── function.eval.php │ │ │ ├── function.fetch.php │ │ │ ├── function.html_checkboxes.php │ │ │ ├── function.html_image.php │ │ │ ├── function.html_options.php │ │ │ ├── function.html_radios.php │ │ │ ├── function.html_select_date.php │ │ │ ├── function.html_select_time.php │ │ │ ├── function.html_table.php │ │ │ ├── function.mailto.php │ │ │ ├── function.math.php │ │ │ ├── function.popup.php │ │ │ ├── function.popup_init.php │ │ │ ├── modifier.capitalize.php │ │ │ ├── modifier.cat.php │ │ │ ├── modifier.count_characters.php │ │ │ ├── modifier.count_paragraphs.php │ │ │ ├── modifier.count_sentences.php │ │ │ ├── modifier.count_words.php │ │ │ ├── modifier.date_format.php │ │ │ ├── modifier.debug_print_var.php │ │ │ ├── modifier.default.php │ │ │ ├── modifier.escape.php │ │ │ ├── modifier.indent.php │ │ │ ├── modifier.lower.php │ │ │ ├── modifier.nl2br.php │ │ │ ├── modifier.regex_replace.php │ │ │ ├── modifier.replace.php │ │ │ ├── modifier.spacify.php │ │ │ ├── modifier.string_format.php │ │ │ ├── modifier.strip.php │ │ │ ├── modifier.strip_tags.php │ │ │ ├── modifier.truncate.php │ │ │ ├── modifier.upper.php │ │ │ ├── modifier.wordwrap.php │ │ │ ├── outputfilter.trimwhitespace.php │ │ │ ├── shared.escape_special_chars.php │ │ │ └── shared.make_timestamp.php │ └── vendor │ │ ├── autoload.php │ │ ├── composer │ │ ├── ClassLoader.php │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ └── installed.json │ │ ├── illuminate │ │ ├── container │ │ │ └── Illuminate │ │ │ │ └── Container │ │ │ │ ├── BindingResolutionException.php │ │ │ │ ├── Container.php │ │ │ │ └── composer.json │ │ ├── database │ │ │ └── Illuminate │ │ │ │ └── Database │ │ │ │ ├── Capsule │ │ │ │ └── Manager.php │ │ │ │ ├── Connection.php │ │ │ │ ├── ConnectionInterface.php │ │ │ │ ├── ConnectionResolver.php │ │ │ │ ├── ConnectionResolverInterface.php │ │ │ │ ├── Connectors │ │ │ │ ├── ConnectionFactory.php │ │ │ │ ├── Connector.php │ │ │ │ ├── ConnectorInterface.php │ │ │ │ ├── MySqlConnector.php │ │ │ │ ├── PostgresConnector.php │ │ │ │ ├── SQLiteConnector.php │ │ │ │ └── SqlServerConnector.php │ │ │ │ ├── Console │ │ │ │ ├── Migrations │ │ │ │ │ ├── BaseCommand.php │ │ │ │ │ ├── InstallCommand.php │ │ │ │ │ ├── MigrateCommand.php │ │ │ │ │ ├── MigrateMakeCommand.php │ │ │ │ │ ├── RefreshCommand.php │ │ │ │ │ ├── ResetCommand.php │ │ │ │ │ └── RollbackCommand.php │ │ │ │ └── SeedCommand.php │ │ │ │ ├── DatabaseManager.php │ │ │ │ ├── DatabaseServiceProvider.php │ │ │ │ ├── Eloquent │ │ │ │ ├── Builder.php │ │ │ │ ├── Collection.php │ │ │ │ ├── MassAssignmentException.php │ │ │ │ ├── Model.php │ │ │ │ ├── ModelNotFoundException.php │ │ │ │ ├── Relations │ │ │ │ │ ├── BelongsTo.php │ │ │ │ │ ├── BelongsToMany.php │ │ │ │ │ ├── HasMany.php │ │ │ │ │ ├── HasManyThrough.php │ │ │ │ │ ├── HasOne.php │ │ │ │ │ ├── HasOneOrMany.php │ │ │ │ │ ├── MorphMany.php │ │ │ │ │ ├── MorphOne.php │ │ │ │ │ ├── MorphOneOrMany.php │ │ │ │ │ ├── MorphPivot.php │ │ │ │ │ ├── MorphTo.php │ │ │ │ │ ├── MorphToMany.php │ │ │ │ │ ├── Pivot.php │ │ │ │ │ └── Relation.php │ │ │ │ ├── ScopeInterface.php │ │ │ │ ├── SoftDeletingScope.php │ │ │ │ └── SoftDeletingTrait.php │ │ │ │ ├── Grammar.php │ │ │ │ ├── MigrationServiceProvider.php │ │ │ │ ├── Migrations │ │ │ │ ├── DatabaseMigrationRepository.php │ │ │ │ ├── Migration.php │ │ │ │ ├── MigrationCreator.php │ │ │ │ ├── MigrationRepositoryInterface.php │ │ │ │ ├── Migrator.php │ │ │ │ └── stubs │ │ │ │ │ ├── blank.stub │ │ │ │ │ ├── create.stub │ │ │ │ │ └── update.stub │ │ │ │ ├── MySqlConnection.php │ │ │ │ ├── PostgresConnection.php │ │ │ │ ├── Query │ │ │ │ ├── Builder.php │ │ │ │ ├── Expression.php │ │ │ │ ├── Grammars │ │ │ │ │ ├── Grammar.php │ │ │ │ │ ├── MySqlGrammar.php │ │ │ │ │ ├── PostgresGrammar.php │ │ │ │ │ ├── SQLiteGrammar.php │ │ │ │ │ └── SqlServerGrammar.php │ │ │ │ ├── JoinClause.php │ │ │ │ └── Processors │ │ │ │ │ ├── MySqlProcessor.php │ │ │ │ │ ├── PostgresProcessor.php │ │ │ │ │ ├── Processor.php │ │ │ │ │ ├── SQLiteProcessor.php │ │ │ │ │ └── SqlServerProcessor.php │ │ │ │ ├── QueryException.php │ │ │ │ ├── README.md │ │ │ │ ├── SQLiteConnection.php │ │ │ │ ├── Schema │ │ │ │ ├── Blueprint.php │ │ │ │ ├── Builder.php │ │ │ │ ├── Grammars │ │ │ │ │ ├── Grammar.php │ │ │ │ │ ├── MySqlGrammar.php │ │ │ │ │ ├── PostgresGrammar.php │ │ │ │ │ ├── SQLiteGrammar.php │ │ │ │ │ └── SqlServerGrammar.php │ │ │ │ └── MySqlBuilder.php │ │ │ │ ├── SeedServiceProvider.php │ │ │ │ ├── Seeder.php │ │ │ │ ├── SqlServerConnection.php │ │ │ │ └── composer.json │ │ ├── events │ │ │ └── Illuminate │ │ │ │ └── Events │ │ │ │ ├── Dispatcher.php │ │ │ │ ├── EventServiceProvider.php │ │ │ │ └── composer.json │ │ └── support │ │ │ └── Illuminate │ │ │ └── Support │ │ │ ├── Arr.php │ │ │ ├── ClassLoader.php │ │ │ ├── Collection.php │ │ │ ├── Contracts │ │ │ ├── ArrayableInterface.php │ │ │ ├── JsonableInterface.php │ │ │ ├── MessageProviderInterface.php │ │ │ ├── RenderableInterface.php │ │ │ └── ResponsePreparerInterface.php │ │ │ ├── Facades │ │ │ ├── App.php │ │ │ ├── Artisan.php │ │ │ ├── Auth.php │ │ │ ├── Blade.php │ │ │ ├── Cache.php │ │ │ ├── Config.php │ │ │ ├── Cookie.php │ │ │ ├── Crypt.php │ │ │ ├── DB.php │ │ │ ├── Event.php │ │ │ ├── Facade.php │ │ │ ├── File.php │ │ │ ├── Form.php │ │ │ ├── HTML.php │ │ │ ├── Hash.php │ │ │ ├── Input.php │ │ │ ├── Lang.php │ │ │ ├── Log.php │ │ │ ├── Mail.php │ │ │ ├── Paginator.php │ │ │ ├── Password.php │ │ │ ├── Queue.php │ │ │ ├── Redirect.php │ │ │ ├── Redis.php │ │ │ ├── Request.php │ │ │ ├── Response.php │ │ │ ├── Route.php │ │ │ ├── SSH.php │ │ │ ├── Schema.php │ │ │ ├── Session.php │ │ │ ├── URL.php │ │ │ ├── Validator.php │ │ │ └── View.php │ │ │ ├── Fluent.php │ │ │ ├── Manager.php │ │ │ ├── MessageBag.php │ │ │ ├── NamespacedItemResolver.php │ │ │ ├── Pluralizer.php │ │ │ ├── SerializableClosure.php │ │ │ ├── ServiceProvider.php │ │ │ ├── Str.php │ │ │ ├── Traits │ │ │ ├── CapsuleManagerTrait.php │ │ │ └── MacroableTrait.php │ │ │ ├── ViewErrorBag.php │ │ │ ├── composer.json │ │ │ └── helpers.php │ │ └── nesbot │ │ └── carbon │ │ ├── .editorconfig │ │ ├── LICENSE │ │ ├── composer.json │ │ ├── history.md │ │ ├── phpunit.xml.dist │ │ ├── readme.md │ │ ├── src │ │ └── Carbon │ │ │ └── Carbon.php │ │ └── tests │ │ ├── AddTest.php │ │ ├── ComparisonTest.php │ │ ├── ConstructTest.php │ │ ├── CopyTest.php │ │ ├── CreateFromDateTest.php │ │ ├── CreateFromFormatTest.php │ │ ├── CreateFromTimeTest.php │ │ ├── CreateFromTimestampTest.php │ │ ├── CreateTest.php │ │ ├── DayOfWeekModifiersTest.php │ │ ├── DiffTest.php │ │ ├── FluidSettersTest.php │ │ ├── GettersTest.php │ │ ├── InstanceTest.php │ │ ├── IsTest.php │ │ ├── IssetTest.php │ │ ├── NowAndOtherStaticHelpersTest.php │ │ ├── SettersTest.php │ │ ├── StartEndOfTest.php │ │ ├── StringsTest.php │ │ ├── SubTest.php │ │ ├── TestFixture.php │ │ └── TestingAidsTest.php ├── models │ ├── Demo.php │ └── Index.php ├── modules │ └── Admin │ │ ├── controllers │ │ └── Index.php │ │ └── views │ │ ├── error │ │ └── error.html │ │ ├── index │ │ └── index.html │ │ └── layout │ │ └── layout.html ├── plugins │ ├── Layout.php │ ├── Routes.php │ └── Smarty.php └── views │ ├── demo │ └── index.html │ ├── error │ └── error.html │ ├── index │ └── index.html │ ├── layout │ └── layout.html │ └── templates_c │ ├── %%5A^5AE^5AEAFCBF%%layout.html.php │ ├── %%E2^E21^E218CC22%%error.html.php │ ├── %%E5^E54^E542C5B3%%index.html.php │ └── %%F3^F31^F31A561C%%index.html.php ├── conf ├── Config.inc.php └── application.ini └── public ├── css └── uploadify.css ├── images └── ueditor │ ├── anchor.gif │ ├── arrow.png │ ├── arrow_down.png │ ├── arrow_up.png │ ├── button-bg.gif │ ├── cancelbutton.gif │ ├── charts.png │ ├── cursor_h.gif │ ├── cursor_h.png │ ├── cursor_v.gif │ ├── cursor_v.png │ ├── dialog-title-bg.png │ ├── filescan.png │ ├── highlighted.gif │ ├── icons-all.gif │ ├── icons.gif │ ├── icons.png │ ├── loaderror.png │ ├── loading.gif │ ├── lock.gif │ ├── neweditor-tab-bg.png │ ├── pagebreak.gif │ ├── scale.png │ ├── sortable.png │ ├── spacer.gif │ ├── sparator_v.png │ ├── table-cell-align.png │ ├── tangram-colorpicker.png │ ├── toolbar_bg.png │ ├── unhighlighted.gif │ ├── upload.png │ ├── videologo.gif │ ├── word.gif │ └── wordpaste.png ├── index.php ├── js ├── jquery-1.7.2.min.js ├── jquery.autocomplete.js ├── jquery.cookie.js ├── jquery.uploadify.min.js ├── jscharts.js ├── slider.js └── validate.min.js ├── ueditor ├── dialogs │ ├── anchor │ │ └── anchor.html │ ├── attachment │ │ ├── attachment.css │ │ ├── attachment.html │ │ ├── attachment.js │ │ ├── fileTypeImages │ │ │ ├── icon_chm.gif │ │ │ ├── icon_default.png │ │ │ ├── icon_doc.gif │ │ │ ├── icon_exe.gif │ │ │ ├── icon_jpg.gif │ │ │ ├── icon_mp3.gif │ │ │ ├── icon_mv.gif │ │ │ ├── icon_pdf.gif │ │ │ ├── icon_ppt.gif │ │ │ ├── icon_psd.gif │ │ │ ├── icon_rar.gif │ │ │ ├── icon_txt.gif │ │ │ └── icon_xls.gif │ │ └── images │ │ │ ├── alignicon.gif │ │ │ ├── alignicon.png │ │ │ ├── bg.png │ │ │ ├── file-icons.gif │ │ │ ├── file-icons.png │ │ │ ├── icons.gif │ │ │ ├── icons.png │ │ │ ├── image.png │ │ │ ├── progress.png │ │ │ ├── success.gif │ │ │ └── success.png │ ├── background │ │ ├── background.css │ │ ├── background.html │ │ ├── background.js │ │ └── images │ │ │ ├── bg.png │ │ │ └── success.png │ ├── charts │ │ ├── chart.config.js │ │ ├── charts.css │ │ ├── charts.html │ │ ├── charts.js │ │ └── images │ │ │ ├── charts0.png │ │ │ ├── charts1.png │ │ │ ├── charts2.png │ │ │ ├── charts3.png │ │ │ ├── charts4.png │ │ │ └── charts5.png │ ├── emotion │ │ ├── emotion.css │ │ ├── emotion.html │ │ ├── emotion.js │ │ └── images │ │ │ ├── 0.gif │ │ │ ├── bface.gif │ │ │ ├── cface.gif │ │ │ ├── fface.gif │ │ │ ├── jxface2.gif │ │ │ ├── neweditor-tab-bg.png │ │ │ ├── tface.gif │ │ │ ├── wface.gif │ │ │ └── yface.gif │ ├── gmap │ │ └── gmap.html │ ├── help │ │ ├── help.css │ │ ├── help.html │ │ └── help.js │ ├── image │ │ ├── image.css │ │ ├── image.html │ │ ├── image.js │ │ └── images │ │ │ ├── alignicon.jpg │ │ │ ├── bg.png │ │ │ ├── icons.gif │ │ │ ├── icons.png │ │ │ ├── image.png │ │ │ ├── progress.png │ │ │ ├── success.gif │ │ │ └── success.png │ ├── insertframe │ │ └── insertframe.html │ ├── internal.js │ ├── link │ │ └── link.html │ ├── map │ │ ├── map.html │ │ └── show.html │ ├── music │ │ ├── music.css │ │ ├── music.html │ │ └── music.js │ ├── preview │ │ └── preview.html │ ├── scrawl │ │ ├── images │ │ │ ├── addimg.png │ │ │ ├── brush.png │ │ │ ├── delimg.png │ │ │ ├── delimgH.png │ │ │ ├── empty.png │ │ │ ├── emptyH.png │ │ │ ├── eraser.png │ │ │ ├── redo.png │ │ │ ├── redoH.png │ │ │ ├── scale.png │ │ │ ├── scaleH.png │ │ │ ├── size.png │ │ │ ├── undo.png │ │ │ └── undoH.png │ │ ├── scrawl.css │ │ ├── scrawl.html │ │ └── scrawl.js │ ├── searchreplace │ │ ├── searchreplace.html │ │ └── searchreplace.js │ ├── snapscreen │ │ └── snapscreen.html │ ├── spechars │ │ ├── spechars.html │ │ └── spechars.js │ ├── table │ │ ├── dragicon.png │ │ ├── edittable.css │ │ ├── edittable.html │ │ ├── edittable.js │ │ ├── edittd.html │ │ └── edittip.html │ ├── template │ │ ├── config.js │ │ ├── images │ │ │ ├── bg.gif │ │ │ ├── pre0.png │ │ │ ├── pre1.png │ │ │ ├── pre2.png │ │ │ ├── pre3.png │ │ │ └── pre4.png │ │ ├── template.css │ │ ├── template.html │ │ └── template.js │ ├── video │ │ ├── images │ │ │ ├── bg.png │ │ │ ├── center_focus.jpg │ │ │ ├── file-icons.gif │ │ │ ├── file-icons.png │ │ │ ├── icons.gif │ │ │ ├── icons.png │ │ │ ├── image.png │ │ │ ├── left_focus.jpg │ │ │ ├── none_focus.jpg │ │ │ ├── progress.png │ │ │ ├── right_focus.jpg │ │ │ ├── success.gif │ │ │ └── success.png │ │ ├── video.css │ │ ├── video.html │ │ └── video.js │ ├── webapp │ │ └── webapp.html │ └── wordimage │ │ ├── fClipboard_ueditor.swf │ │ ├── imageUploader.swf │ │ ├── tangram.js │ │ ├── wordimage.html │ │ └── wordimage.js ├── lang │ ├── en │ │ ├── en.js │ │ └── images │ │ │ ├── addimage.png │ │ │ ├── alldeletebtnhoverskin.png │ │ │ ├── alldeletebtnupskin.png │ │ │ ├── background.png │ │ │ ├── button.png │ │ │ ├── copy.png │ │ │ ├── deletedisable.png │ │ │ ├── deleteenable.png │ │ │ ├── listbackground.png │ │ │ ├── localimage.png │ │ │ ├── music.png │ │ │ ├── rotateleftdisable.png │ │ │ ├── rotateleftenable.png │ │ │ ├── rotaterightdisable.png │ │ │ ├── rotaterightenable.png │ │ │ └── upload.png │ └── zh-cn │ │ ├── images │ │ ├── copy.png │ │ ├── localimage.png │ │ ├── music.png │ │ └── upload.png │ │ └── zh-cn.js ├── php │ ├── Uploader.class.php │ ├── action_crawler.php │ ├── action_list.php │ ├── action_upload.php │ ├── config.json │ └── controller.php ├── themes │ ├── default │ │ ├── css │ │ │ ├── ueditor.css │ │ │ └── ueditor.min.css │ │ ├── dialogbase.css │ │ └── images │ │ │ ├── anchor.gif │ │ │ ├── arrow.png │ │ │ ├── arrow_down.png │ │ │ ├── arrow_up.png │ │ │ ├── button-bg.gif │ │ │ ├── cancelbutton.gif │ │ │ ├── charts.png │ │ │ ├── cursor_h.gif │ │ │ ├── cursor_h.png │ │ │ ├── cursor_v.gif │ │ │ ├── cursor_v.png │ │ │ ├── dialog-title-bg.png │ │ │ ├── filescan.png │ │ │ ├── highlighted.gif │ │ │ ├── icons-all.gif │ │ │ ├── icons.gif │ │ │ ├── icons.png │ │ │ ├── loaderror.png │ │ │ ├── loading.gif │ │ │ ├── lock.gif │ │ │ ├── neweditor-tab-bg.png │ │ │ ├── pagebreak.gif │ │ │ ├── scale.png │ │ │ ├── sortable.png │ │ │ ├── spacer.gif │ │ │ ├── sparator_v.png │ │ │ ├── table-cell-align.png │ │ │ ├── tangram-colorpicker.png │ │ │ ├── toolbar_bg.png │ │ │ ├── unhighlighted.gif │ │ │ ├── upload.png │ │ │ ├── videologo.gif │ │ │ ├── word.gif │ │ │ └── wordpaste.png │ └── iframe.css ├── third-party │ ├── SyntaxHighlighter │ │ ├── shCore.js │ │ └── shCoreDefault.css │ ├── codemirror │ │ ├── codemirror.css │ │ └── codemirror.js │ ├── highcharts │ │ ├── adapters │ │ │ ├── mootools-adapter.js │ │ │ ├── mootools-adapter.src.js │ │ │ ├── prototype-adapter.js │ │ │ ├── prototype-adapter.src.js │ │ │ ├── standalone-framework.js │ │ │ └── standalone-framework.src.js │ │ ├── highcharts-more.js │ │ ├── highcharts-more.src.js │ │ ├── highcharts.js │ │ ├── highcharts.src.js │ │ ├── modules │ │ │ ├── annotations.js │ │ │ ├── annotations.src.js │ │ │ ├── canvas-tools.js │ │ │ ├── canvas-tools.src.js │ │ │ ├── data.js │ │ │ ├── data.src.js │ │ │ ├── drilldown.js │ │ │ ├── drilldown.src.js │ │ │ ├── exporting.js │ │ │ ├── exporting.src.js │ │ │ ├── funnel.js │ │ │ ├── funnel.src.js │ │ │ ├── heatmap.js │ │ │ ├── heatmap.src.js │ │ │ ├── map.js │ │ │ ├── map.src.js │ │ │ ├── no-data-to-display.js │ │ │ └── no-data-to-display.src.js │ │ └── themes │ │ │ ├── dark-blue.js │ │ │ ├── dark-green.js │ │ │ ├── gray.js │ │ │ ├── grid.js │ │ │ └── skies.js │ ├── jquery-1.10.2.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── snapscreen │ │ └── UEditorSnapscreen.exe │ ├── video-js │ │ ├── font │ │ │ ├── vjs.eot │ │ │ ├── vjs.svg │ │ │ ├── vjs.ttf │ │ │ └── vjs.woff │ │ ├── video-js.css │ │ ├── video-js.min.css │ │ ├── video-js.swf │ │ ├── video.dev.js │ │ └── video.js │ ├── webuploader │ │ ├── Uploader.swf │ │ ├── webuploader.css │ │ ├── webuploader.custom.js │ │ ├── webuploader.custom.min.js │ │ ├── webuploader.flashonly.js │ │ ├── webuploader.flashonly.min.js │ │ ├── webuploader.html5only.js │ │ ├── webuploader.html5only.min.js │ │ ├── webuploader.js │ │ ├── webuploader.min.js │ │ ├── webuploader.withoutimage.js │ │ └── webuploader.withoutimage.min.js │ └── zeroclipboard │ │ ├── ZeroClipboard.js │ │ ├── ZeroClipboard.min.js │ │ └── ZeroClipboard.swf ├── ueditor.all.js ├── ueditor.all.min.js ├── ueditor.config.js ├── ueditor.parse.js └── ueditor.parse.min.js └── upload └── images └── 20140924 ├── 1411559022203023.jpg └── 1411559647113991.jpg /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # ========================= 18 | # Operating System Files 19 | # ========================= 20 | 21 | # OSX 22 | # ========================= 23 | 24 | .DS_Store 25 | .AppleDouble 26 | .LSOverride 27 | 28 | # Icon must ends with two \r. 29 | Icon 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear on external disk 35 | .Spotlight-V100 36 | .Trashes 37 | .idea 38 | /.idea 39 | -------------------------------------------------------------------------------- /application/library/Controller.php: -------------------------------------------------------------------------------- 1 | _config = Registry::get("config"); 21 | 22 | $this->_session = \Yaf\Session::getInstance(); 23 | $this->_session->start(); 24 | 25 | $this->_layout = Registry::get('layout'); 26 | 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /application/library/DB.php: -------------------------------------------------------------------------------- 1 | message = $message; 12 | } 13 | } 14 | 15 | ?> 16 | -------------------------------------------------------------------------------- /application/library/Munee/coffeescript/coffeescript/src/CoffeeScript/SyntaxError.php: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /application/library/Munee/coffeescript/coffeescript/src/CoffeeScript/Value.php: -------------------------------------------------------------------------------- 1 | v = $v; 12 | } 13 | 14 | function __toString() 15 | { 16 | return $this->v; 17 | } 18 | } 19 | 20 | ?> 21 | -------------------------------------------------------------------------------- /application/library/Munee/coffeescript/coffeescript/src/CoffeeScript/yy/Access.php: -------------------------------------------------------------------------------- 1 | name = $name; 12 | $this->name->as_key = TRUE; 13 | 14 | $this->soak = $tag === 'soak'; 15 | 16 | return $this; 17 | } 18 | 19 | function compile($options, $level = NULL) 20 | { 21 | $name = $this->name->compile($options); 22 | return preg_match(IDENTIFIER, $name) ? ".{$name}" : "[{$name}]"; 23 | } 24 | 25 | function is_complex() 26 | { 27 | return FALSE; 28 | } 29 | } 30 | 31 | ?> 32 | -------------------------------------------------------------------------------- /application/library/Munee/coffeescript/coffeescript/src/CoffeeScript/yy/Extends.php: -------------------------------------------------------------------------------- 1 | child = $child; 12 | $this->parent = $parent; 13 | 14 | return $this; 15 | } 16 | 17 | function compile($options, $level = NULL) 18 | { 19 | $tmp = yy('Call', yy('Value', yy('Literal', utility('extends'))), 20 | array($this->child, $this->parent)); 21 | 22 | return $tmp->compile($options); 23 | } 24 | } 25 | 26 | ?> 27 | -------------------------------------------------------------------------------- /application/library/Munee/coffeescript/coffeescript/src/CoffeeScript/yy/Index.php: -------------------------------------------------------------------------------- 1 | index = $index; 12 | 13 | return $this; 14 | } 15 | 16 | function compile($options, $level = NULL) 17 | { 18 | return '['.$this->index->compile($options, LEVEL_PAREN).']'; 19 | } 20 | 21 | function is_complex() 22 | { 23 | return $this->index->is_complex(); 24 | } 25 | } 26 | 27 | ?> 28 | -------------------------------------------------------------------------------- /application/library/Munee/coffeescript/coffeescript/src/CoffeeScript/yy/Throw.php: -------------------------------------------------------------------------------- 1 | expression = $expression; 12 | 13 | return $this; 14 | } 15 | 16 | function compile_node($options = array()) 17 | { 18 | return $this->tab.'throw '.$this->expression->compile($options).';'; 19 | } 20 | 21 | function is_statement($options = NULL) 22 | { 23 | return TRUE; 24 | } 25 | 26 | function jumps() 27 | { 28 | return FALSE; 29 | } 30 | 31 | function make_return($res = NULL) 32 | { 33 | return $this; 34 | } 35 | } 36 | 37 | ?> 38 | -------------------------------------------------------------------------------- /application/library/Munee/composer/autoload_files.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/meenie/munee/src'), 10 | 'JShrink' => array($vendorDir . '/tedivm/jshrink/src'), 11 | 'Imagine' => array($vendorDir . '/imagine/imagine/lib'), 12 | 'CoffeeScript' => array($vendorDir . '/coffeescript/coffeescript/src'), 13 | ); 14 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/.gitignore: -------------------------------------------------------------------------------- 1 | tests/Imagine/Fixtures/results/in_out 2 | !tests/Imagine/Fixtures/results/in_out/.placeholder 3 | docs/_build 4 | Imagine-*.tgz 5 | imagine-*.phar 6 | composer.phar 7 | vendor/ 8 | bin/ -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | before_script: 3 | - composer self-update 4 | - composer install --prefer-source 5 | php: 6 | - 5.3.3 7 | - 5.3 8 | - 5.4 9 | - 5.5 10 | script: rake test 11 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/Imagine/Draw/namespace-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Imagine\Draw | Imagine API 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/Imagine/Effects/namespace-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Imagine\Effects | Imagine API 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/Imagine/Exception/namespace-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Imagine\Exception | Imagine API 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/Imagine/Filter/Advanced/namespace-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Imagine\Filter\Advanced | Imagine API 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/Imagine/Filter/Basic/namespace-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Imagine\Filter\Basic | Imagine API 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/Imagine/Filter/namespace-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Imagine\Filter | Imagine API 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/Imagine/Gd/namespace-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Imagine\Gd | Imagine API 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/Imagine/Gmagick/namespace-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Imagine\Gmagick | Imagine API 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/Imagine/Image/Fill/Gradient/namespace-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Imagine\Image\Fill\Gradient | Imagine API 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/Imagine/Image/Fill/namespace-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Imagine\Image\Fill | Imagine API 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/Imagine/Image/Histogram/namespace-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Imagine\Image\Histogram | Imagine API 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/Imagine/Image/Point/namespace-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Imagine\Image\Point | Imagine API 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/Imagine/Image/namespace-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Imagine\Image | Imagine API 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/Imagine/Imagick/namespace-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Imagine\Imagick | Imagine API 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/Imagine/Test/Constraint/namespace-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Imagine\Test\Constraint | Imagine API 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/Imagine/Test/namespace-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Imagine\Test | Imagine API 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/Imagine/namespace-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Imagine | Imagine API 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/PROJECT_VERSION: -------------------------------------------------------------------------------- 1 | master -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/SAMI_VERSION: -------------------------------------------------------------------------------- 1 | 0.8.1-DEV -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/classes-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | All Classes | Imagine API 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/i/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/docs/API/API/i/arrows.png -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/i/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/docs/API/API/i/loader.gif -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/i/results_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/docs/API/API/i/results_bg.png -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/i/tree_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/docs/API/API/i/tree_bg.png -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/namespaces-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Namespaces | Imagine API 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/API/API/opensearch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/docs/API/API/opensearch.xml -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/docs/_static/favicon.ico -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/_static/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/docs/_static/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/docs/_static/logo.png -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/_themes/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.pyo 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/_themes/imagine/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = basic 3 | stylesheet = imagine.css 4 | 5 | [options] 6 | github_fork = '' 7 | nosidebar = true 8 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinxcontrib-phpdomain==0.1.3-2 2 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/docs/sami_configuration.php: -------------------------------------------------------------------------------- 1 | files() 10 | ->name('*.php') 11 | ->in('lib') 12 | ; 13 | 14 | return new Sami($iterator, array( 15 | 'title' => 'Imagine API', 16 | 'theme' => 'enhanced', 17 | 'build_dir' => __DIR__.'/API/API', 18 | 'cache_dir' => __DIR__.'/_build/cache', 19 | 'default_opened_level' => 2, 20 | )); 21 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/lib/Imagine/Exception/Exception.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Imagine\Exception; 13 | 14 | /** 15 | * Imagine-specific exception 16 | */ 17 | interface Exception 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/lib/Imagine/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Imagine\Exception; 13 | 14 | use InvalidArgumentException as BaseInvalidArgumentException; 15 | 16 | /** 17 | * Imagine-specific invalid argument exception 18 | */ 19 | class InvalidArgumentException extends BaseInvalidArgumentException implements Exception 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/lib/Imagine/Exception/OutOfBoundsException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Imagine\Exception; 13 | 14 | use OutOfBoundsException as BaseOutOfBoundsException; 15 | 16 | /** 17 | * Imagine-specific out of bounds exception 18 | */ 19 | class OutOfBoundsException extends BaseOutOfBoundsException implements Exception 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/lib/Imagine/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Imagine\Exception; 13 | 14 | use RuntimeException as BaseRuntimeException; 15 | 16 | /** 17 | * Imagine-specific runtime exception 18 | */ 19 | class RuntimeException extends BaseRuntimeException implements Exception 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/lib/Imagine/Filter/Basic/Copy.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Imagine\Filter\Basic; 13 | 14 | use Imagine\Filter\FilterInterface; 15 | use Imagine\Image\ImageInterface; 16 | 17 | /** 18 | * A copy filter 19 | */ 20 | class Copy implements FilterInterface 21 | { 22 | /** 23 | * {@inheritdoc} 24 | */ 25 | public function apply(ImageInterface $image) 26 | { 27 | return $image->copy(); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/lib/Imagine/Filter/Basic/FlipHorizontally.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Imagine\Filter\Basic; 13 | 14 | use Imagine\Image\ImageInterface; 15 | use Imagine\Filter\FilterInterface; 16 | 17 | /** 18 | * A "flip horizontally" filter 19 | */ 20 | class FlipHorizontally implements FilterInterface 21 | { 22 | /** 23 | * {@inheritdoc} 24 | */ 25 | public function apply(ImageInterface $image) 26 | { 27 | return $image->flipHorizontally(); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/lib/Imagine/Filter/Basic/FlipVertically.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Imagine\Filter\Basic; 13 | 14 | use Imagine\Image\ImageInterface; 15 | use Imagine\Filter\FilterInterface; 16 | 17 | /** 18 | * A "flip vertically" filter 19 | */ 20 | class FlipVertically implements FilterInterface 21 | { 22 | /** 23 | * {@inheritdoc} 24 | */ 25 | public function apply(ImageInterface $image) 26 | { 27 | return $image->flipVertically(); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/lib/Imagine/Filter/Basic/Strip.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Imagine\Filter\Basic; 13 | 14 | use Imagine\Image\ImageInterface; 15 | use Imagine\Filter\FilterInterface; 16 | 17 | /** 18 | * A strip filter 19 | */ 20 | class Strip implements FilterInterface 21 | { 22 | /** 23 | * {@inheritdoc} 24 | */ 25 | public function apply(ImageInterface $image) 26 | { 27 | return $image->strip(); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/lib/Imagine/Image/Fill/Gradient/Horizontal.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Imagine\Image\Fill\Gradient; 13 | 14 | use Imagine\Image\PointInterface; 15 | 16 | /** 17 | * Horizontal gradient fill 18 | */ 19 | final class Horizontal extends Linear 20 | { 21 | /** 22 | * {@inheritdoc} 23 | */ 24 | public function getDistance(PointInterface $position) 25 | { 26 | return $position->getX(); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/lib/Imagine/Image/Fill/Gradient/Vertical.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Imagine\Image\Fill\Gradient; 13 | 14 | use Imagine\Image\PointInterface; 15 | 16 | /** 17 | * Vertical gradient fill 18 | */ 19 | final class Vertical extends Linear 20 | { 21 | /** 22 | * {@inheritdoc} 23 | */ 24 | public function getDistance(PointInterface $position) 25 | { 26 | return $position->getY(); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/anima.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/anima.gif -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/blue.gif -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/cat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/cat.gif -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/font/Arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/font/Arial.ttf -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/google.png -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/large.jpg -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/pink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/pink.gif -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/resize/210-design-19933.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/resize/210-design-19933.jpg -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/results/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/results/blank.png -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/results/crop_resize_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/results/crop_resize_flip.png -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/results/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/results/gradient.png -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/results/layers-multi-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/results/layers-multi-mono.png -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/results/layers-multi-multi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/results/layers-multi-multi.gif -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/results/rotate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/results/rotate.jpg -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/results/thumbnails/inset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/results/thumbnails/inset.png -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/results/thumbnails/outbound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/results/thumbnails/outbound.png -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/sample.gif -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/trans.gif -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/trans.png -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/xparent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/xparent.gif -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/yellow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/tests/Imagine/Fixtures/yellow.gif -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/tests/Imagine/Test/Filter/DummyImagineAwareFilter.php: -------------------------------------------------------------------------------- 1 | getImagine()->create(new Box(200, 200)); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/tests/Imagine/Test/Issues/multi-layer.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/imagine/imagine/tests/Imagine/Test/Issues/multi-layer.psd -------------------------------------------------------------------------------- /application/library/Munee/imagine/imagine/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | $loader = require __DIR__.'/../vendor/autoload.php'; 13 | $loader->add('Imagine\Test', __DIR__); 14 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *~ 3 | /*.less 4 | /*.css 5 | tests/bootstrap 6 | tests/tmp 7 | vendor 8 | composer.lock 9 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | script: phpunit tests 3 | php: 4 | - 5.3 5 | - 5.4 6 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | phpunit --colors tests 4 | 5 | release: 6 | ./package.sh 7 | 8 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "leafo/lessphp", 3 | "type": "library", 4 | "description": "lessphp is a compiler for LESS written in PHP.", 5 | "homepage": "http://leafo.net/lessphp/", 6 | "license": [ 7 | "MIT", 8 | "GPL-3.0" 9 | ], 10 | "authors": [ 11 | { 12 | "name": "Leaf Corcoran", 13 | "email": "leafot@gmail.com", 14 | "homepage": "http://leafo.net" 15 | } 16 | ], 17 | "autoload": { 18 | "classmap": ["lessc.inc.php"] 19 | }, 20 | "extra": { 21 | "branch-alias": { 22 | "dev-master": "0.3-dev" 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/lessify: -------------------------------------------------------------------------------- 1 | #!/usr/bin/php 2 | parse(); 19 | } catch (exception $e) { 20 | exit("Fatal error: ".$e->getMessage()."\n"); 21 | } 22 | 23 | 24 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/README.md: -------------------------------------------------------------------------------- 1 | lessphp uses [phpunit](https://github.com/sebastianbergmann/phpunit/) for it's tests 2 | 3 | `InputTest.php` iterates through all the less files in `inputs/`, compiles them, 4 | then compares the result with the respective file in `outputs/`. 5 | 6 | From the root you can run `make` to run all the tests. 7 | 8 | ## bootstrap.sh 9 | 10 | Clones twitter bootsrap, compiles it with lessc and lessphp, cleans up results 11 | with sort.php, and outputs diff. To run it, you need to have git and lessc 12 | installed. 13 | 14 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/inputs/accessors.less.disable: -------------------------------------------------------------------------------- 1 | /* accessors */ 2 | 3 | #defaults { 4 | @width: 960px; 5 | @color: black; 6 | .something { 7 | @space: 10px; 8 | @hello { 9 | color: green; 10 | } 11 | } 12 | } 13 | 14 | .article { color: #294366; } 15 | 16 | .comment { 17 | width: #defaults[@width]; 18 | color: .article['color']; 19 | padding: #defaults > .something[@space]; 20 | } 21 | 22 | .wow { 23 | height: .comment['width']; 24 | background-color: .comment['color']; 25 | color: #defaults > .something > @hello['color']; 26 | 27 | padding: #defaults > non-existant['padding']; 28 | margin: #defaults > .something['non-existant']; 29 | } 30 | 31 | .mix { 32 | #defaults; 33 | font-size: .something[@space]; 34 | } 35 | 36 | 37 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/inputs/compile_on_mixin.less: -------------------------------------------------------------------------------- 1 | 2 | @mixin { 3 | height: 22px; 4 | ul { 5 | height: 20px; 6 | li { 7 | @color: red; 8 | height: 10px; 9 | div span, link { 10 | margin: 10px; 11 | color: @color; 12 | } 13 | } 14 | 15 | div, p { 16 | border: 1px; 17 | &.hello { 18 | color: green; 19 | } 20 | 21 | :what { 22 | color: blue; 23 | } 24 | } 25 | 26 | 27 | a { 28 | b { 29 | color: blue; 30 | } 31 | } 32 | } 33 | } 34 | 35 | 36 | 37 | body { 38 | @mixin; 39 | } 40 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/inputs/directives.less: -------------------------------------------------------------------------------- 1 | 2 | @hello: "utf-8"; 3 | @charset @hello; 4 | 5 | @-moz-document url-prefix(){ 6 | div { 7 | color: red; 8 | } 9 | } 10 | 11 | @page :left { margin-left: 4cm; } 12 | @page :right { margin-left: 3cm; } 13 | @page { margin: 2cm } 14 | 15 | 16 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/inputs/escape.less: -------------------------------------------------------------------------------- 1 | 2 | body { 3 | @hello: "world"; 4 | border: e("this is simple"); 5 | border: e(this is simple); // bug in lessjs 6 | border: e("this is simple", "cool lad"); 7 | border: e(1232); 8 | border: e(@hello); 9 | border: e("one" + 'more'); // no string addition lessjs 10 | border: e(); // syntax error lessjs 11 | 12 | line-height: ~"eating rice"; 13 | line-height: ~"string cheese"; 14 | line-height: a b c ~"string me" d e f; 15 | line-height: ~"string @{hello}"; 16 | } 17 | 18 | .class { 19 | filter: ~"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='image.png')"; 20 | } 21 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/inputs/font_family.less: -------------------------------------------------------------------------------- 1 | 2 | @font-directory: 'fonts/'; 3 | @some-family: Gentium; 4 | 5 | @font-face: maroon; // won't collide with @font-face { } 6 | 7 | @font-face { 8 | font-family: Graublau Sans Web; 9 | src: url(@{font-directory}GraublauWeb.otf) format("opentype"); 10 | } 11 | 12 | @font-face { 13 | font-family: @some-family; 14 | src: url('@{font-directory}Gentium.ttf'); 15 | } 16 | 17 | @font-face { 18 | font-family: @some-family; 19 | src: url("@{font-directory}GentiumItalic.ttf"); 20 | font-style: italic; 21 | } 22 | 23 | h2 { 24 | font-family: @some-family; 25 | crazy: @font-face; 26 | } 27 | 28 | 29 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/inputs/hacks.less: -------------------------------------------------------------------------------- 1 | // css hacks 2 | 3 | :root .alert-message, :root .btn { 4 | border-radius: 0 \0; 5 | } 6 | 7 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/inputs/hi.less: -------------------------------------------------------------------------------- 1 | 2 | div:before { 3 | content: "hi!"; 4 | } 5 | 6 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/inputs/ie.less: -------------------------------------------------------------------------------- 1 | 2 | foo { 3 | filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr=#c0ff3300, endColorstr=#ff000000); 4 | filter:progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr=#c0ff3300, endColorstr=#ff000000); 5 | } 6 | 7 | 8 | foo { 9 | filter: alpha(opacity=20); 10 | filter: alpha(opacity=20, enabled=true); 11 | filter: blaznicate(foo=bar, baz=bang bip, bart=#fa4600); 12 | } 13 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/inputs/interpolation.less: -------------------------------------------------------------------------------- 1 | 2 | @cool-hello: "yes"; 3 | @cool-yes: "okay"; 4 | @var: "hello"; 5 | 6 | div { 7 | color: ~"@{cool-hello}"; 8 | color: ~"@{cool-@{var}}"; 9 | color: ~"@{cool-@{cool-@{var}}}"; 10 | } 11 | 12 | // interpolation in selectors 13 | 14 | @hello: 10; 15 | @world: "yeah"; 16 | 17 | @{hello}@{world} { 18 | color: blue; 19 | } 20 | 21 | @{hello} { 22 | color: blue; 23 | } 24 | 25 | hello world @{hello} { 26 | color: red; 27 | } 28 | 29 | #@{world} { 30 | color: "hello @{hello}"; 31 | } 32 | 33 | 34 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/inputs/scopes.less: -------------------------------------------------------------------------------- 1 | 2 | 3 | @a: 10; 4 | @some { 5 | @b: @a + 10; 6 | div { 7 | @c: @b + 10; 8 | other { 9 | @d: @c + 10; 10 | world { 11 | @e: @d + 10; 12 | height: @e; 13 | } 14 | } 15 | } 16 | } 17 | 18 | 19 | body { 20 | @some; 21 | } 22 | 23 | @some; 24 | 25 | .test(@x: 10) { 26 | height: @x; 27 | .test(@y: 11) { 28 | height: @y; 29 | .test(@z: 12) { 30 | height: @z; 31 | } 32 | .test; 33 | } 34 | .test; 35 | } 36 | 37 | pre { 38 | .test; 39 | } 40 | 41 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/inputs/selector_expressions.less: -------------------------------------------------------------------------------- 1 | 2 | @color: blue; 3 | 4 | (~"something @{color}"), world { 5 | color: blue; 6 | } 7 | 8 | .div { 9 | @color: red; 10 | (3434) { 11 | height: 100px; 12 | } 13 | 14 | (~"cool @{color}") { 15 | height: 4000px; 16 | } 17 | } 18 | 19 | .heck(@a) { color: @a+10 } 20 | 21 | .spanX (@index) when (@index > 0) { 22 | (~".span@{index}") { .heck(@index) } 23 | .spanX(@index - 1); 24 | } 25 | .spanX (0) {} 26 | 27 | .spanX (5); 28 | 29 | 30 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/inputs/test-imports/a.less: -------------------------------------------------------------------------------- 1 | .just-a-class { background: red; } 2 | 3 | .some-mixin() { 4 | height: 200px; 5 | } 6 | 7 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/inputs/test-imports/b.less: -------------------------------------------------------------------------------- 1 | .just-a-class { background: blue; } 2 | 3 | .hello { 4 | .some-mixin(); 5 | } 6 | 7 | 8 | @media cool { 9 | color: red; 10 | .some-mixin(); 11 | } 12 | 13 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/inputs/test-imports/file1.less: -------------------------------------------------------------------------------- 1 | 2 | 3 | /** 4 | * This is a test import file 5 | */ 6 | 7 | @colors { 8 | div.bright { 9 | color: red; 10 | } 11 | 12 | div.sad { 13 | color: blue; 14 | } 15 | } 16 | 17 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/inputs/test-imports/file2.less: -------------------------------------------------------------------------------- 1 | 2 | b { 3 | color: @color; 4 | padding: 16px; 5 | } 6 | 7 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/inputs/test-imports/file3.less: -------------------------------------------------------------------------------- 1 | 2 | h2 { 3 | background: url("../images/logo.png") no-repeat; 4 | } 5 | 6 | @someValue: hello-from-file-3; 7 | 8 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/inputs/test-imports/inner/file1.less: -------------------------------------------------------------------------------- 1 | 2 | .inner { 3 | content: "inner/file1.less" 4 | } 5 | 6 | @import "file2"; // should get the one in inner 7 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/inputs/test-imports/inner/file2.less: -------------------------------------------------------------------------------- 1 | 2 | .inner { 3 | content: "inner/file2.less" 4 | } 5 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/outputs/accessors.css: -------------------------------------------------------------------------------- 1 | .article { color:#294366; } 2 | .comment { 3 | width:960px; 4 | color:#294366; 5 | padding:10px; 6 | } 7 | .wow { 8 | height:960px; 9 | background-color:#294366; 10 | color:green; 11 | padding:; 12 | margin:; 13 | } 14 | .mix { font-size:10px; } -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/outputs/arity.css: -------------------------------------------------------------------------------- 1 | .one { 2 | color: one; 3 | color: one; 4 | } 5 | .two { 6 | color: two; 7 | color: two; 8 | } 9 | .three { 10 | color: three; 11 | color: three; 12 | } 13 | .multi-foo { 14 | color: two; 15 | color: three; 16 | color: two; 17 | color: three; 18 | color: three; 19 | } 20 | .multi-baz { 21 | color: two; 22 | color: three; 23 | color: two; 24 | color: three; 25 | } 26 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/outputs/compile_on_mixin.css: -------------------------------------------------------------------------------- 1 | body { 2 | height: 22px; 3 | } 4 | body ul { 5 | height: 20px; 6 | } 7 | body ul li { 8 | height: 10px; 9 | } 10 | body ul li div span, 11 | body ul li link { 12 | margin: 10px; 13 | color: red; 14 | } 15 | body ul div, 16 | body ul p { 17 | border: 1px; 18 | } 19 | body ul div.hello, 20 | body ul p.hello { 21 | color: green; 22 | } 23 | body ul div :what, 24 | body ul p :what { 25 | color: blue; 26 | } 27 | body ul a b { 28 | color: blue; 29 | } 30 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/outputs/directives.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | @-moz-document url-prefix() { 3 | div { 4 | color: red; 5 | } 6 | } 7 | @page :left { 8 | margin-left: 4cm; 9 | } 10 | @page :right { 11 | margin-left: 3cm; 12 | } 13 | @page { 14 | margin: 2cm; 15 | } 16 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/outputs/escape.css: -------------------------------------------------------------------------------- 1 | body { 2 | border: this is simple; 3 | border: this; 4 | border: this is simple; 5 | border: 1232; 6 | border: world; 7 | border: onemore; 8 | border: ; 9 | line-height: eating rice; 10 | line-height: string cheese; 11 | line-height: a b c string me d e f; 12 | line-height: string world; 13 | } 14 | .class { 15 | filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='image.png'); 16 | } 17 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/outputs/font_family.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: Graublau Sans Web; 3 | src: url(fonts/GraublauWeb.otf) format("opentype"); 4 | } 5 | @font-face { 6 | font-family: Gentium; 7 | src: url('fonts/Gentium.ttf'); 8 | } 9 | @font-face { 10 | font-family: Gentium; 11 | src: url("fonts/GentiumItalic.ttf"); 12 | font-style: italic; 13 | } 14 | h2 { 15 | font-family: Gentium; 16 | crazy: maroon; 17 | } 18 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/outputs/guards.css: -------------------------------------------------------------------------------- 1 | dd { 2 | color: yellow; 3 | } 4 | b { 5 | color: red; 6 | color: blue; 7 | color: blue; 8 | } 9 | img { 10 | color: green; 11 | color: teal; 12 | } 13 | body { 14 | color: purple; 15 | color: silver; 16 | color: purple; 17 | } 18 | div { 19 | color: blue; 20 | } 21 | link { 22 | color: true red; 23 | color: true #fff; 24 | color: true #fffddd; 25 | color: true #000000; 26 | color: true rgba(0,0,0,0.34); 27 | } 28 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/outputs/hacks.css: -------------------------------------------------------------------------------- 1 | :root .alert-message, 2 | :root .btn { 3 | border-radius: 0 \0; 4 | } 5 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/outputs/hi.css: -------------------------------------------------------------------------------- 1 | div:before { 2 | content: "hi!"; 3 | } 4 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/outputs/ie.css: -------------------------------------------------------------------------------- 1 | foo { 2 | filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr=#c0ff3300,endColorstr=#ff000000); 3 | filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr=#c0ff3300,endColorstr=#ff000000); 4 | } 5 | foo { 6 | filter: alpha(opacity=20); 7 | filter: alpha(opacity=20,enabled=true); 8 | filter: blaznicate(foo=bar,baz=bang bip,bart=#fa4600); 9 | } 10 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/outputs/interpolation.css: -------------------------------------------------------------------------------- 1 | div { 2 | color: yes; 3 | color: yes; 4 | color: okay; 5 | } 6 | 10"yeah" { 7 | color: blue; 8 | } 9 | 10 { 10 | color: blue; 11 | } 12 | hello world 10 { 13 | color: red; 14 | } 15 | #"yeah" { 16 | color: "hello 10"; 17 | } 18 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/outputs/mixin_functions.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding: 2.0em; 3 | color: red; 4 | margin: 10px; 5 | height: 12px; 6 | border-bottom: 1px solid green; 7 | } 8 | .skip_args { 9 | margin: 22px; 10 | height: 12px; 11 | padding: 10px 20px 30px 88px; 12 | margin: 4px 12px 2px 1px; 13 | color: red; 14 | } 15 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/outputs/nesting.css: -------------------------------------------------------------------------------- 1 | #header .navigation .border .outside { color:blue; } 2 | #header .navigation { font-size:12px; } 3 | #header .logo:hover { text-decoration:none; } 4 | #header .logo { width:300px; } 5 | #header { color:black; } 6 | a b ul li { color:green; } -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/outputs/scopes.css: -------------------------------------------------------------------------------- 1 | body div other world { 2 | height: 50; 3 | } 4 | div other world { 5 | height: 50; 6 | } 7 | pre { 8 | height: 10; 9 | height: 11; 10 | height: 12; 11 | } 12 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/outputs/selector_expressions.css: -------------------------------------------------------------------------------- 1 | something blue, 2 | world { 3 | color: blue; 4 | } 5 | .div 3434 { 6 | height: 100px; 7 | } 8 | .div cool red { 9 | height: 4000px; 10 | } 11 | .span5 { 12 | color: 15; 13 | } 14 | .span4 { 15 | color: 14; 16 | } 17 | .span3 { 18 | color: 13; 19 | } 20 | .span2 { 21 | color: 12; 22 | } 23 | .span1 { 24 | color: 11; 25 | } 26 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/lessphp/tests/outputs/variables.css: -------------------------------------------------------------------------------- 1 | color: 44px; 2 | color: 44px; 3 | .variables { 4 | width: 14cm; 5 | height: 24px; 6 | margin-top: -20px; 7 | margin-bottom: 30px; 8 | color: #888899; 9 | background: #6c94be; 10 | font-family: "Trebuchet MS", Verdana, sans-serif; 11 | margin: 3px; 12 | font: 10px/12px serif; 13 | font: 120%/120% serif; 14 | } 15 | .external { 16 | color: #888; 17 | border: 1px solid #3326cc; 18 | background: rgba(23,68,149,0.5); 19 | padding: 4px; 20 | } 21 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/.gitignore: -------------------------------------------------------------------------------- 1 | /*.scss 2 | /*.css 3 | /*.php 4 | .sass-cache 5 | /sass/ 6 | /compass/ -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | script: phpunit tests 3 | php: 4 | - 5.3 5 | - 5.4 6 | - 5.5 7 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | phpunit --colors tests -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "leafo/scssphp", 3 | "type": "library", 4 | "description": "scssphp is a compiler for SCSS written in PHP.", 5 | "homepage": "http://leafo.net/scssphp/", 6 | "license": [ 7 | "MIT", 8 | "GPL-3.0" 9 | ], 10 | "authors": [ 11 | { 12 | "name": "Leaf Corcoran", 13 | "email": "leafot@gmail.com", 14 | "homepage": "http://leafo.net" 15 | } 16 | ], 17 | "autoload": { 18 | "classmap": ["scss.inc.php"] 19 | }, 20 | "require": { 21 | "php": ">=5.2.0" 22 | }, 23 | "require-dev": { 24 | "php": ">=5.3.0", 25 | "phpunit/phpunit": "3.7.*" 26 | }, 27 | "bin": ["pscss"] 28 | } 29 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/package.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # creates tar.gz for current version 4 | 5 | TARGET_DIR="site/www/src" 6 | 7 | VERSION=`./pscss -v | sed -n 's/^v\(.*\)$/\1/p'` 8 | OUT_DIR="tmp/scssphp" 9 | TMP=`dirname $OUT_DIR` 10 | 11 | mkdir -p $OUT_DIR 12 | tar -c `git ls-files` | tar -C $OUT_DIR -x 13 | 14 | rm $OUT_DIR/.gitignore 15 | rm $OUT_DIR/package.sh 16 | rm $OUT_DIR/todo 17 | rm -r $OUT_DIR/site 18 | 19 | OUT_PATH="$TARGET_DIR/scssphp-$VERSION.tar.gz" 20 | tar -czf "$OUT_PATH" -C $TMP scssphp/ 21 | echo "Wrote $OUT_PATH" 22 | 23 | rm -r $TMP 24 | 25 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/site/.gitignore: -------------------------------------------------------------------------------- 1 | .sitegen_cache 2 | .tup 3 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/site/composer.html: -------------------------------------------------------------------------------- 1 |
{
2 |   "require": {
3 |     "leafo/scssphp": "$current_version"
4 |   }
5 | }
6 | 
7 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/site/site.moon: -------------------------------------------------------------------------------- 1 | require "sitegen" 2 | 3 | tools = require "sitegen.tools" 4 | 5 | sitegen.create_site => 6 | @current_version = "0.0.5" 7 | @title = "SCSS Compiler in PHP" 8 | 9 | scssphp = tools.system_command "pscss < %s > %s", "css" 10 | build scssphp, "style.scss", "style/style.css" 11 | 12 | deploy_to "leaf@leafo.net", "www/scssphp/" 13 | 14 | add "docs/index.md" 15 | 16 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/site/www/.gitignore: -------------------------------------------------------------------------------- 1 | docs/index.html 2 | index.html -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/site/www/img/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/leafo/scssphp/site/www/img/tile.png -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/tests/compare-scss.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | diff_tool="$1" 4 | 5 | for file in $(ls inputs/*.scss); do 6 | out_file=$(echo $file | sed -e 's/inputs/outputs/' -e 's/\.scss$/\.css/') 7 | sass=$(scss < $file 2> /dev/null) 8 | if [ $? = "0" ]; then 9 | # echo $file 10 | # echo "$sass" 11 | # echo 12 | 13 | if [ "$(cat $out_file)" != "$sass" ]; then 14 | echo "* [FAIL] $file" 15 | if [ -n "$diff_tool" ]; then 16 | $diff_tool $out_file <(echo "$sass") 2> /dev/null 17 | fi 18 | else 19 | echo " [PASS] $file" 20 | fi 21 | else 22 | echo " $file" 23 | fi 24 | done 25 | 26 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/tests/inputs/comments.scss: -------------------------------------------------------------------------------- 1 | 2 | // what is going on? 3 | 4 | /** what the heck **/ 5 | 6 | /** 7 | 8 | Here is a block comment 9 | 10 | **/ 11 | 12 | 13 | // this is a comment 14 | 15 | /*hello*/div /*yeah*/ { //surew 16 | border: 1px solid red; // world 17 | /* another property */ 18 | color: url('http://mage-page.com'); 19 | string: "hello /* this is not a comment */"; 20 | world: "// neither is this"; 21 | string: 'hello /* this is not a comment */' /*what if this is a comment */; 22 | world: '// neither is this' // hell world; 23 | ; 24 | what-ever: 100px; 25 | background: url(/*this is not a comment?*/); // uhh what happens here 26 | } 27 | 28 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/tests/inputs/default_args.scss: -------------------------------------------------------------------------------- 1 | 2 | 3 | @mixin cool($color: blue) { 4 | margin: 100px; 5 | } 6 | 7 | @function what($height: red) { 8 | @return $height; 9 | } 10 | 11 | div { 12 | height: what(); 13 | @include cool; 14 | } 15 | 16 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/tests/inputs/import.scss: -------------------------------------------------------------------------------- 1 | 2 | @import "foo.css"; 3 | @import "foo" screen; 4 | @import "http://foo.com/bar"; 5 | @import url(foo); 6 | 7 | @import "imports/simple"; 8 | 9 | pre { 10 | color: red; 11 | @import "imports/simple.scss"; 12 | } 13 | 14 | code { 15 | @import "imports/simple", "imports/simple"; 16 | } 17 | 18 | @import "imports/partial"; 19 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/tests/inputs/imports/_partial.scss: -------------------------------------------------------------------------------- 1 | 2 | #partial { 3 | color: blue; 4 | } 5 | 6 | 7 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/tests/inputs/imports/simple.scss: -------------------------------------------------------------------------------- 1 | div { 2 | height: 200px; 3 | color: red; 4 | } 5 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/tests/inputs/keyword_args.scss: -------------------------------------------------------------------------------- 1 | 2 | // mixins 3 | 4 | @mixin hello($a: one, $b:two, $c:three, $d: four) { 5 | out: $a $b $c $d; 6 | } 7 | 8 | pre { 9 | @include hello(alpha, $d: palace, $b: fort); 10 | } 11 | 12 | 13 | // functions 14 | 15 | @function cool($a, $b) { 16 | @return $a - $b; 17 | } 18 | 19 | div { 20 | hello: cool($b: 5, $a: 10); 21 | world: cool(5, 10); 22 | } 23 | 24 | 25 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/tests/inputs/list.scss: -------------------------------------------------------------------------------- 1 | $list: (black); 2 | $list: join($list, white, comma); 3 | 4 | div { 5 | padding: join(10px 20px, 30px 40px); 6 | margin: join((0, 10px), (10px, 10px), space); 7 | background: linear-gradient($list); 8 | } 9 | 10 | $list: (); 11 | $list: join($list, (red, blue), comma); 12 | 13 | p { 14 | background: linear-gradient($list); 15 | } -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/tests/inputs/nesting.scss: -------------------------------------------------------------------------------- 1 | 2 | 3 | body { 4 | color: red; 5 | } 6 | 7 | 8 | div { 9 | color: red; 10 | height: yes; 11 | 12 | pre { 13 | color: blue; 14 | } 15 | } 16 | 17 | 18 | div: blue; 19 | 20 | 21 | div { 22 | font: 10px hello world { 23 | size: 10px; 24 | color: blue; 25 | } 26 | 27 | border: { 28 | left: 1px solid blue; 29 | right: 2px dashed green; 30 | } 31 | } 32 | 33 | 34 | #nested-nesting { 35 | bar: baz; 36 | bang: { 37 | bop: bar; 38 | bip: 1px; 39 | blat: { 40 | baf: bort 41 | } 42 | } 43 | } 44 | 45 | 46 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/tests/inputs/placeholder_selector.scss: -------------------------------------------------------------------------------- 1 | #context a%extreme span { 2 | color: blue; 3 | font-weight: bold; 4 | font-size: 2em; 5 | } 6 | 7 | .notice, .error { @extend %extreme; } 8 | 9 | .hidden %placeholder { 10 | margin: 0; 11 | } 12 | 13 | p { 14 | @extend #context; 15 | padding: 2em; 16 | } 17 | 18 | div { @extend .hidden; } -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/tests/outputs/comments.css: -------------------------------------------------------------------------------- 1 | /** what the heck **/ 2 | /** 3 | 4 | Here is a block comment 5 | 6 | **/ 7 | /*hello*/ 8 | div { 9 | /* another property */ 10 | border: 1px solid red; 11 | color: url('http://mage-page.com'); 12 | string: "hello /* this is not a comment */"; 13 | world: "// neither is this"; 14 | /*what if this is a comment */ 15 | string: 'hello /* this is not a comment */'; 16 | world: '// neither is this'; 17 | what-ever: 100px; 18 | /*this is not a comment?*/ 19 | background: url(); } 20 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/tests/outputs/compass_extract.css: -------------------------------------------------------------------------------- 1 | #test-0 { 2 | unit: false; 3 | unit: true; 4 | rhythm: 1.5em; 5 | size: 1; 6 | size: 1; 7 | size: 1; 8 | size: 2; 9 | size: 2; } 10 | 11 | #test-1 { 12 | margin-top: 7.5em; 13 | padding-top: 9em; 14 | padding-bottom: 10.5em; 15 | margin-bottom: 0em; } 16 | 17 | #test-2 { 18 | border-style: solid; 19 | border-width: 0.0625em; 20 | padding: 1.4375em; } 21 | 22 | #test-3 { 23 | border-top-style: solid; 24 | border-top-width: 0.0625em; 25 | padding-top: 1.4375em; 26 | border-bottom-style: solid; 27 | border-bottom-width: 0.0625em; 28 | padding-bottom: 1.4375em; } 29 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/tests/outputs/content.css: -------------------------------------------------------------------------------- 1 | * html #logo { 2 | background-image: url(/logo.gif); } 3 | 4 | .colors { 5 | background-color: blue; 6 | color: white; 7 | border-color: blue; } 8 | 9 | @media only screen and (max-width: 480px) { 10 | body { 11 | color: red; } } 12 | 13 | #sidebar { 14 | width: 300px; } 15 | @media only screen and (max-width: 480px) { 16 | #sidebar { 17 | width: 100px; } } 18 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/tests/outputs/default_args.css: -------------------------------------------------------------------------------- 1 | div { 2 | height: red; 3 | margin: 100px; } 4 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/tests/outputs/filter_effects.css: -------------------------------------------------------------------------------- 1 | #number { 2 | -webkit-filter: grayscale(1) sepia(0.5) saturate(0.1) invert(1) opacity(0.5) brightness(0.5) contrast(0.5); } 3 | 4 | #percentage { 5 | -webkit-filter: grayscale(100%) sepia(50%) saturate(10%) invert(100%) opacity(50%) brightness(50%) contrast(50%); } 6 | 7 | #misc { 8 | -webkit-filter: hue-rotate(90deg) blur(10px) drop-shadow(10px -16px 30px purple); } 9 | 10 | #decimal { 11 | opacity: 0.5; 12 | filter: alpha(opacity=50, style=1); } 13 | 14 | #percent { 15 | opacity: 0.5; 16 | filter: alpha(opacity=50); } 17 | 18 | .row { 19 | background-color: #071c23; 20 | color: #2284a1; } 21 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/tests/outputs/functions.css: -------------------------------------------------------------------------------- 1 | div { 2 | color: 14px; 3 | sum: 23; } 4 | 5 | div { 6 | hello: 10 55; 7 | hello: 1010 55; 8 | hello: "hello 10 and 55"; } 9 | 10 | del { 11 | color: 1000; } 12 | 13 | div { 14 | hello: "hello foo and bar"; 15 | hello: "hello bar and default"; 16 | hello: "hello Alice, Bob, Tom"; } 17 | 18 | .foo { 19 | test2: -moz-art; } 20 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/tests/outputs/if.css: -------------------------------------------------------------------------------- 1 | div { 2 | color: blue; } 3 | 4 | pre { 5 | val-1: "red"; 6 | val-2: "blue"; 7 | val-3: "blue"; 8 | val-4: "red"; 9 | val-5: "red"; } 10 | 11 | span { 12 | color: blue; 13 | height: 10px; 14 | width: 20px; } 15 | 16 | div { 17 | color: blue; 18 | border-color: green; } 19 | 20 | del { 21 | thing: no; } 22 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/tests/outputs/import.css: -------------------------------------------------------------------------------- 1 | @import "foo.css"; 2 | @import "foo" screen; 3 | @import "http://foo.com/bar"; 4 | @import url(foo); 5 | div { 6 | height: 200px; 7 | color: red; } 8 | 9 | pre { 10 | color: red; } 11 | pre div { 12 | height: 200px; 13 | color: red; } 14 | 15 | code div { 16 | height: 200px; 17 | color: red; } 18 | code div { 19 | height: 200px; 20 | color: red; } 21 | 22 | #partial { 23 | color: blue; } 24 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/tests/outputs/keyword_args.css: -------------------------------------------------------------------------------- 1 | pre { 2 | out: alpha fort three palace; } 3 | 4 | div { 5 | hello: 5; 6 | world: -5; } 7 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/tests/outputs/list.css: -------------------------------------------------------------------------------- 1 | div { 2 | padding: 10px 20px 30px 40px; 3 | margin: 0 10px 10px 10px; 4 | background: linear-gradient(black, white); } 5 | 6 | p { 7 | background: linear-gradient(red, blue); } 8 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/tests/outputs/nesting.css: -------------------------------------------------------------------------------- 1 | div: blue; 2 | body { 3 | color: red; } 4 | 5 | div { 6 | color: red; 7 | height: yes; } 8 | div pre { 9 | color: blue; } 10 | 11 | div { 12 | font: 10px hello world; 13 | font-size: 10px; 14 | font-color: blue; 15 | border-left: 1px solid blue; 16 | border-right: 2px dashed green; } 17 | 18 | #nested-nesting { 19 | bar: baz; 20 | bang-bop: bar; 21 | bang-bip: 1px; 22 | bang-blat-baf: bort; } 23 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/tests/outputs/null.css: -------------------------------------------------------------------------------- 1 | .div { 2 | one: null; 3 | one: world; 4 | one: NULL world; 5 | one: a, b; 6 | two: a, b; } 7 | 8 | p:before { 9 | content: "I ate pies!"; } 10 | 11 | .foo { 12 | -webkit-border-radius: 10; 13 | border-radius: 10; } 14 | 15 | .fu { 16 | -webkit-border-radius: 20; 17 | border-radius: 20; } 18 | 19 | .bar { 20 | -webkit-border-top-left-radius: 30; 21 | border-top-left-radius: 30; } 22 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/tests/outputs/placeholder_selector.css: -------------------------------------------------------------------------------- 1 | p a.notice span, p a.error span, #context a.notice span, #context a.error span { 2 | color: blue; 3 | font-weight: bold; 4 | font-size: 2em; } 5 | 6 | p { 7 | padding: 2em; } 8 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/tests/outputs/values.css: -------------------------------------------------------------------------------- 1 | #values { 2 | color: #eee; 3 | color: #eee; 4 | height: 20px; 5 | width: 80%; 6 | color: "hello world"; 7 | height: url("http://google.com"); 8 | dads: url(http://leafo.net); 9 | padding: 10px 10px 10px 10px, 3px 3px 3px; 10 | margin: 4, 3, 1; 11 | border-radius: -1px -1px -1px black; } 12 | 13 | #subtraction { 14 | lit: 10 -11; 15 | lit: -1; 16 | lit: -1; 17 | lit: -1; 18 | var: 10 -100; 19 | var: -90; 20 | var: -90; 21 | var: -90; } 22 | 23 | #special { 24 | a: 12px expression(1 + (3 / Foo.bar("baz" + "bang") + function() {return 12;}) % 12); } 25 | 26 | #unary { 27 | b: 0.5em; 28 | c: -foo(12px); 29 | d: +foo(12px); } 30 | -------------------------------------------------------------------------------- /application/library/Munee/leafo/scssphp/tests/outputs/variables.css: -------------------------------------------------------------------------------- 1 | cool: 100px; 2 | div { 3 | height: red, two, three; } 4 | 5 | div { 6 | num: 1000; } 7 | 8 | div { 9 | num: 2000; } 10 | 11 | pre { 12 | color: blue; } 13 | 14 | del { 15 | color: red; } 16 | del div pre { 17 | color: red; } 18 | 19 | body { 20 | font-family: Arial; 21 | font-family: Helvetica Neue; 22 | font-family: "Helvetica Neue"; 23 | font-family: Helvetica, Arial, sans-serif; 24 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; } 25 | -------------------------------------------------------------------------------- /application/library/Munee/meenie/javascript-packer/.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /application/library/Munee/meenie/javascript-packer/class.JavaScriptPacker.php4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/meenie/javascript-packer/class.JavaScriptPacker.php4 -------------------------------------------------------------------------------- /application/library/Munee/meenie/javascript-packer/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "meenie/javascript-packer", 3 | "description": "Composer hosted mirror of the PHP Version of Dean Edwards' JavaScript Packer", 4 | "keywords": ["javascript packer"], 5 | "homepage": "http://joliclic.free.fr/php/javascript-packer/en/", 6 | "license": "LGPL 2.1", 7 | "authors": [ 8 | { 9 | "name": "Nicolas Martin", 10 | "role": "Developer" 11 | } 12 | ], 13 | "autoload": { 14 | "files": ["class.JavaScriptPacker.php"] 15 | } 16 | } -------------------------------------------------------------------------------- /application/library/Munee/meenie/javascript-packer/readme.txt: -------------------------------------------------------------------------------- 1 | PHP 5 : 2 | use class.JavaScriptPacker.php (Tested under PHP 5.1.2, 5.1.3, 5.1.4, 5.2.3.) 3 | - usage and comments in source. 4 | - there is 2 examples in this archive for PHP 5, 5 | 'example-file.php' and example-inline.php 6 | 7 | PHP 4 : 8 | use class.JavaScriptPacker.php4, it's an adaptation for PHP4. 9 | The examples in this archive will not work directly with PHP 4, they are 10 | writed in PHP5, you'll need to adapt them. If some functions are missing in 11 | PHP 4, you can find their equivalent here : 12 | http://pear.php.net/package/PHP_Compat 13 | -------------------------------------------------------------------------------- /application/library/Munee/meenie/munee/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | composer.lock 3 | composer.phar 4 | cache/* 5 | vendor/* 6 | webroot/* 7 | !empty -------------------------------------------------------------------------------- /application/library/Munee/meenie/munee/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | php: 3 | - 5.4 4 | - 5.3 -------------------------------------------------------------------------------- /application/library/Munee/meenie/munee/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ./tests/Munee/ 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /application/library/Munee/meenie/munee/src/Munee/Asset/NotFoundException.php: -------------------------------------------------------------------------------- 1 | ext = 'foo'; 26 | } 27 | } -------------------------------------------------------------------------------- /application/library/Munee/meenie/munee/tests/tmp/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/Munee/meenie/munee/tests/tmp/empty -------------------------------------------------------------------------------- /application/library/Munee/tedivm/jshrink/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.settings 3 | /.buildpath 4 | /.project 5 | /composer.lock 6 | /vendor 7 | /report -------------------------------------------------------------------------------- /application/library/Munee/tedivm/jshrink/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | php: 3 | - 5.3 4 | - 5.4 5 | script: phpunit tests/* 6 | -------------------------------------------------------------------------------- /application/library/Munee/tedivm/jshrink/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tedivm/jshrink", 3 | "description": "Javascript Minifier built in PHP", 4 | "keywords": ["minifier","javascript"], 5 | "homepage": "http://github.com/tedivm/JShrink", 6 | "type": "library", 7 | "license": "BSD-3-Clause", 8 | "authors": [ 9 | { 10 | "name": "Robert Hafner", 11 | "email": "tedivm@tedivm.com" 12 | } 13 | ], 14 | "require": { 15 | "php": ">=5.3.0" 16 | }, 17 | "autoload": { 18 | "psr-0": {"JShrink": "src/"} 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /application/library/Munee/tedivm/jshrink/tests/minify/jshrink/expect/preserve-strings.js: -------------------------------------------------------------------------------- 1 | var test="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; -------------------------------------------------------------------------------- /application/library/Munee/tedivm/jshrink/tests/minify/jshrink/test/preserve-strings.js: -------------------------------------------------------------------------------- 1 | var test = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; 2 | -------------------------------------------------------------------------------- /application/library/Munee/tedivm/jshrink/tests/minify/uglify/README: -------------------------------------------------------------------------------- 1 | The files contained in this subdirectory are test cases that have been copied from the uglify.js test suite, and then subsequently unmangled by Akshay Joshi. 2 | -------------------------------------------------------------------------------- /application/library/Munee/tedivm/jshrink/tests/minify/uglify/expect/array1.js: -------------------------------------------------------------------------------- 1 | new Array();new Array(1);new Array(1,2,3); -------------------------------------------------------------------------------- /application/library/Munee/tedivm/jshrink/tests/minify/uglify/expect/array2.js: -------------------------------------------------------------------------------- 1 | (function(){var Array=function(){};return new Array(1,2,3,4);})(); -------------------------------------------------------------------------------- /application/library/Munee/tedivm/jshrink/tests/minify/uglify/expect/array3.js: -------------------------------------------------------------------------------- 1 | (function(){return new Array(1,2,3,4);function Array(){};})(); -------------------------------------------------------------------------------- /application/library/Munee/tedivm/jshrink/tests/minify/uglify/expect/array4.js: -------------------------------------------------------------------------------- 1 | (function(){(function(){return new Array(1,2,3);})();function Array(){};})(); -------------------------------------------------------------------------------- /application/library/Munee/tedivm/jshrink/tests/minify/uglify/expect/assignment.js: -------------------------------------------------------------------------------- 1 | a=1;b=a;c=1;d=b;e=d;longname=2;if(longname+1){x=3;if(x)var z=7;} 2 | z=1,y=1,x=1 3 | g+=1;h=g;++i;j=i;i++;j=i+17; -------------------------------------------------------------------------------- /application/library/Munee/tedivm/jshrink/tests/minify/uglify/expect/concatstring.js: -------------------------------------------------------------------------------- 1 | var a=a+"a"+"b"+1+c;var b=a+"c"+"ds"+123+c;var c=a+"c"+123+d+"ds"+c; -------------------------------------------------------------------------------- /application/library/Munee/tedivm/jshrink/tests/minify/uglify/expect/empty-blocks.js: -------------------------------------------------------------------------------- 1 | var x=5;function bar(){return--x;} 2 | function foo(){while(bar());} 3 | function mak(){for(;;);} -------------------------------------------------------------------------------- /application/library/Munee/tedivm/jshrink/tests/minify/uglify/expect/forstatement.js: -------------------------------------------------------------------------------- 1 | a=func();b=z;for(a++;i<10;i++){alert(i);} 2 | var z=1;g=2;for(;i<10;i++){alert(i);} 3 | var a=2;for(var i=1;i<10;i++){alert(i);} -------------------------------------------------------------------------------- /application/library/Munee/tedivm/jshrink/tests/minify/uglify/expect/if.js: -------------------------------------------------------------------------------- 1 | var a=1;if(a==1){a=2;}else{a=17;} -------------------------------------------------------------------------------- /application/library/Munee/tedivm/jshrink/tests/minify/uglify/expect/ifreturn.js: -------------------------------------------------------------------------------- 1 | function a(b){if(b==1){return 2;}else{return 17;} 2 | return 3;} -------------------------------------------------------------------------------- /application/library/Munee/tedivm/jshrink/tests/minify/uglify/expect/ifreturn2.js: -------------------------------------------------------------------------------- 1 | function x(a){if(typeof a==='object') 2 | return a;if(a===42) 3 | return 0;return a*2;} 4 | function y(a){if(typeof a==='object') 5 | return a;return null;}; -------------------------------------------------------------------------------- /application/library/Munee/tedivm/jshrink/tests/minify/uglify/expect/null_string.js: -------------------------------------------------------------------------------- 1 | var nullString="\0" -------------------------------------------------------------------------------- /application/library/Munee/tedivm/jshrink/tests/minify/uglify/expect/strict-equals.js: -------------------------------------------------------------------------------- 1 | typeof a==='string' 2 | b+""!==c+"" 3 | d_cache = Registry::get("cache"); 23 | 24 | parent::__construct(); 25 | 26 | } 27 | } -------------------------------------------------------------------------------- /application/library/PHPExcel/Chart/Renderer/PHP Charting Libraries.txt: -------------------------------------------------------------------------------- 1 | ChartDirector 2 | http://www.advsofteng.com/cdphp.html 3 | 4 | GraPHPite 5 | http://graphpite.sourceforge.net/ 6 | 7 | JpGraph 8 | http://www.aditus.nu/jpgraph/ 9 | 10 | LibChart 11 | http://naku.dohcrew.com/libchart/pages/introduction/ 12 | 13 | pChart 14 | http://pchart.sourceforge.net/ 15 | 16 | TeeChart 17 | http://www.steema.com/products/teechart/overview.html 18 | -------------------------------------------------------------------------------- /application/library/PHPExcel/Shared/JAMA/CHANGELOG.TXT: -------------------------------------------------------------------------------- 1 | Mar 1, 2005 11:15 AST by PM 2 | 3 | + For consistency, renamed Math.php to Maths.java, utils to util, 4 | tests to test, docs to doc - 5 | 6 | + Removed conditional logic from top of Matrix class. 7 | 8 | + Switched to using hypo function in Maths.php for all php-hypot calls. 9 | NOTE TO SELF: Need to make sure that all decompositions have been 10 | switched over to using the bundled hypo. 11 | 12 | Feb 25, 2005 at 10:00 AST by PM 13 | 14 | + Recommend using simpler Error.php instead of JAMA_Error.php but 15 | can be persuaded otherwise. 16 | 17 | -------------------------------------------------------------------------------- /application/library/SwiftMailer/classes/Swift/CharacterReaderFactory.php: -------------------------------------------------------------------------------- 1 | getSource(); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /application/library/SwiftMailer/classes/Swift/FileStream.php: -------------------------------------------------------------------------------- 1 | 18 | * @deprecated 19 | */ 20 | class Swift_SignedMessage extends Swift_Message 21 | { 22 | 23 | } 24 | -------------------------------------------------------------------------------- /application/library/SwiftMailer/classes/Swift/Signer.php: -------------------------------------------------------------------------------- 1 | 16 | */ 17 | interface Swift_Signer 18 | { 19 | public function reset(); 20 | } 21 | -------------------------------------------------------------------------------- /application/library/SwiftMailer/classes/Swift/SwiftException.php: -------------------------------------------------------------------------------- 1 | register('cache') 5 | ->asAliasOf('cache.array') 6 | 7 | ->register('tempdir') 8 | ->asValue('/tmp') 9 | 10 | ->register('cache.null') 11 | ->asSharedInstanceOf('Swift_KeyCache_NullKeyCache') 12 | 13 | ->register('cache.array') 14 | ->asSharedInstanceOf('Swift_KeyCache_ArrayKeyCache') 15 | ->withDependencies(array('cache.inputstream')) 16 | 17 | ->register('cache.disk') 18 | ->asSharedInstanceOf('Swift_KeyCache_DiskKeyCache') 19 | ->withDependencies(array('cache.inputstream', 'tempdir')) 20 | 21 | ->register('cache.inputstream') 22 | ->asNewInstanceOf('Swift_KeyCache_SimpleKeyCacheInputStream') 23 | ; 24 | -------------------------------------------------------------------------------- /application/library/SwiftMailer/dependency_maps/message_deps.php: -------------------------------------------------------------------------------- 1 | register('message.message') 5 | ->asNewInstanceOf('Swift_Message') 6 | 7 | ->register('message.mimepart') 8 | ->asNewInstanceOf('Swift_MimePart') 9 | ; 10 | -------------------------------------------------------------------------------- /application/library/font/5.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/application/library/font/5.ttf -------------------------------------------------------------------------------- /application/library/phpQuery/bootstrap.example.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/library/phpQuery/plugins/Scripts/__config.example.php: -------------------------------------------------------------------------------- 1 | array('login@mail', 'password'), 9 | ); 10 | ?> -------------------------------------------------------------------------------- /application/library/phpQuery/plugins/Scripts/example.php: -------------------------------------------------------------------------------- 1 | find($params[0]); 14 | ?> -------------------------------------------------------------------------------- /application/library/phpQuery/plugins/Scripts/fix_webroot.php: -------------------------------------------------------------------------------- 1 | filter($filter) as $el) { 9 | $el = pq($el, $self->getDocumentID()); 10 | // imgs and scripts 11 | if ( $el->is('img') || $el->is('script') ) 12 | $el->attr('src', $params[0].$el->attr('src')); 13 | // css 14 | if ( $el->is('link') ) 15 | $el->attr('href', $params[0].$el->attr('href')); 16 | } -------------------------------------------------------------------------------- /application/library/phpQuery/plugins/Scripts/print_source.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | /** @var phpQueryObject */ 8 | $self = $self; 9 | $return = htmlspecialchars($self); -------------------------------------------------------------------------------- /application/library/phpQuery/plugins/Scripts/print_websafe.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | /** @var phpQueryObject */ 8 | $self = $self; 9 | $self 10 | ->find('script') 11 | ->add('meta[http-equiv=refresh]') 12 | ->add('meta[http-equiv=Refresh]') 13 | ->remove(); -------------------------------------------------------------------------------- /application/library/smarty/internals/core.get_microtime.php: -------------------------------------------------------------------------------- 1 | 24 | -------------------------------------------------------------------------------- /application/library/smarty/plugins/block.privilege.php: -------------------------------------------------------------------------------- 1 | _tpl_vars['gUser']; 13 | $satisfy = false; 14 | switch ($require) { 15 | case Uc_Auth::CRADLE_ROLE_ADM: 16 | if ($user->isAdmin()) { 17 | $satisfy = true; 18 | } 19 | break; 20 | case Uc_Auth::CRADLE_ROLE_OP: 21 | if ($user->isAdmin() 22 | || $user->isOp()) { 23 | $satisfy = true; 24 | } 25 | break; 26 | } 27 | 28 | 29 | return $satisfy? $content : ''; 30 | } 31 | ?> 32 | -------------------------------------------------------------------------------- /application/library/smarty/plugins/modifier.indent.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: indent
14 | * Purpose: indent lines of text 15 | * @link http://Smarty.php.net/manual/en/language.modifier.indent.php 16 | * indent (Smarty online manual) 17 | * @author Monte Ohrt 18 | * @param string 19 | * @param integer 20 | * @param string 21 | * @return string 22 | */ 23 | function smarty_modifier_indent($string,$chars=4,$char=" ") 24 | { 25 | return preg_replace('!^!m',str_repeat($char,$chars),$string); 26 | } 27 | 28 | ?> 29 | -------------------------------------------------------------------------------- /application/library/smarty/plugins/modifier.lower.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: lower
14 | * Purpose: convert string to lowercase 15 | * @link http://Smarty.php.net/manual/en/language.modifier.lower.php 16 | * lower (Smarty online manual) 17 | * @author Monte Ohrt 18 | * @param string 19 | * @return string 20 | */ 21 | function smarty_modifier_lower($string) 22 | { 23 | return strtolower($string); 24 | } 25 | 26 | ?> 27 | -------------------------------------------------------------------------------- /application/library/smarty/plugins/modifier.replace.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: replace
14 | * Purpose: simple search/replace 15 | * @link http://Smarty.php.net/manual/en/language.modifier.replace.php 16 | * replace (Smarty online manual) 17 | * @author Monte Ohrt 18 | * @param string 19 | * @param string 20 | * @param string 21 | * @return string 22 | */ 23 | function smarty_modifier_replace($string, $search, $replace) 24 | { 25 | return str_replace($search, $replace, $string); 26 | } 27 | 28 | /* vim: set expandtab: */ 29 | 30 | ?> 31 | -------------------------------------------------------------------------------- /application/library/smarty/plugins/modifier.string_format.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: string_format
14 | * Purpose: format strings via sprintf 15 | * @link http://Smarty.php.net/manual/en/language.modifier.string.format.php 16 | * string_format (Smarty online manual) 17 | * @author Monte Ohrt 18 | * @param string 19 | * @param string 20 | * @return string 21 | */ 22 | function smarty_modifier_string_format($string, $format) 23 | { 24 | return sprintf($format, $string); 25 | } 26 | 27 | /* vim: set expandtab: */ 28 | 29 | ?> 30 | -------------------------------------------------------------------------------- /application/library/smarty/plugins/modifier.upper.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: upper
14 | * Purpose: convert string to uppercase 15 | * @link http://Smarty.php.net/manual/en/language.modifier.upper.php 16 | * upper (Smarty online manual) 17 | * @author Monte Ohrt 18 | * @param string 19 | * @return string 20 | */ 21 | function smarty_modifier_upper($string) 22 | { 23 | return strtoupper($string); 24 | } 25 | 26 | ?> 27 | -------------------------------------------------------------------------------- /application/library/vendor/autoload.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/illuminate/support'), 10 | 'Illuminate\\Events' => array($vendorDir . '/illuminate/events'), 11 | 'Illuminate\\Database' => array($vendorDir . '/illuminate/database'), 12 | 'Illuminate\\Container' => array($vendorDir . '/illuminate/container'), 13 | 'ElasticSearch' => array($vendorDir . '/nervetattoo/elasticsearch/src'), 14 | 'Carbon' => array($vendorDir . '/nesbot/carbon/src'), 15 | ); 16 | -------------------------------------------------------------------------------- /application/library/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- 1 | =5.4.0" 12 | }, 13 | "autoload": { 14 | "psr-0": { 15 | "Illuminate\\Container": "" 16 | } 17 | }, 18 | "target-dir": "Illuminate/Container", 19 | "extra": { 20 | "branch-alias": { 21 | "dev-master": "4.2-dev" 22 | } 23 | }, 24 | "minimum-stability": "dev" 25 | } 26 | -------------------------------------------------------------------------------- /application/library/vendor/illuminate/database/Illuminate/Database/ConnectionResolverInterface.php: -------------------------------------------------------------------------------- 1 | connection; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /application/library/vendor/illuminate/database/Illuminate/Database/Migrations/stubs/blank.stub: -------------------------------------------------------------------------------- 1 | increments('id'); 18 | $table->timestamps(); 19 | }); 20 | } 21 | 22 | /** 23 | * Reverse the migrations. 24 | * 25 | * @return void 26 | */ 27 | public function down() 28 | { 29 | Schema::drop('{{table}}'); 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /application/library/vendor/illuminate/database/Illuminate/Database/Migrations/stubs/update.stub: -------------------------------------------------------------------------------- 1 | column_name; }, $results); 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /application/library/vendor/illuminate/database/Illuminate/Database/Query/Processors/SQLiteProcessor.php: -------------------------------------------------------------------------------- 1 | name; }, $results)); 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /application/library/vendor/illuminate/events/Illuminate/Events/EventServiceProvider.php: -------------------------------------------------------------------------------- 1 | app['events'] = $this->app->share(function($app) 15 | { 16 | return new Dispatcher($app); 17 | }); 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /application/library/vendor/illuminate/events/Illuminate/Events/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "illuminate/events", 3 | "license": "MIT", 4 | "authors": [ 5 | { 6 | "name": "Taylor Otwell", 7 | "email": "taylorotwell@gmail.com" 8 | } 9 | ], 10 | "require": { 11 | "php": ">=5.4.0", 12 | "illuminate/container": "4.2.*", 13 | "illuminate/support": "4.2.*" 14 | }, 15 | "autoload": { 16 | "psr-0": { 17 | "Illuminate\\Events": "" 18 | } 19 | }, 20 | "target-dir": "Illuminate/Events", 21 | "extra": { 22 | "branch-alias": { 23 | "dev-master": "4.2-dev" 24 | } 25 | }, 26 | "minimum-stability": "dev" 27 | } 28 | -------------------------------------------------------------------------------- /application/library/vendor/illuminate/support/Illuminate/Support/Contracts/ArrayableInterface.php: -------------------------------------------------------------------------------- 1 | getEngineResolver()->resolve('blade')->getCompiler(); 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /application/library/vendor/illuminate/support/Illuminate/Support/Facades/Cache.php: -------------------------------------------------------------------------------- 1 | connection($name)->getSchemaBuilder(); 17 | } 18 | 19 | /** 20 | * Get the registered name of the component. 21 | * 22 | * @return string 23 | */ 24 | protected static function getFacadeAccessor() 25 | { 26 | return static::$app['db']->connection()->getSchemaBuilder(); 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /application/library/vendor/illuminate/support/Illuminate/Support/Facades/Session.php: -------------------------------------------------------------------------------- 1 | =5.3.0" 21 | }, 22 | "require-dev": { 23 | "phpunit/phpunit": "~4.0" 24 | }, 25 | "autoload": { 26 | "psr-0": { 27 | "Carbon": "src" 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /application/models/Index.php: -------------------------------------------------------------------------------- 1 | where("user_id",$user_id) 27 | ->get() 28 | ); 29 | 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /application/modules/Admin/controllers/Index.php: -------------------------------------------------------------------------------- 1 | handle(); 18 | die(); 19 | } 20 | 21 | public function searchAction(){ 22 | echo "=================IndexSearch"; 23 | 24 | die(); 25 | } 26 | } -------------------------------------------------------------------------------- /application/modules/Admin/views/index/index.html: -------------------------------------------------------------------------------- 1 | {$page} -------------------------------------------------------------------------------- /application/modules/Admin/views/layout/layout.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {$layout.meta_title} 5 | 6 | 7 | {$content} 8 | 9 | -------------------------------------------------------------------------------- /application/views/demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | {literal} 3 | 4 | 5 | 完整demo 6 | 7 | 8 | 9 | 10 |
11 |

完整demo

12 | 13 | 16 |
17 | 18 | 19 | 20 | {/literal} -------------------------------------------------------------------------------- /application/views/index/index.html: -------------------------------------------------------------------------------- 1 | {$page} -------------------------------------------------------------------------------- /application/views/layout/layout.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {$layout.meta_title} 5 | 6 | 7 | 8 | {$content} 9 | 10 | -------------------------------------------------------------------------------- /application/views/templates_c/%%5A^5AE^5AEAFCBF%%layout.html.php: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | <?php echo $this->_tpl_vars['layout']['meta_title']; ?> 7 | 8 | 9 | 10 | 11 | _tpl_vars['content']; ?> 12 | 13 | 14 | -------------------------------------------------------------------------------- /application/views/templates_c/%%E5^E54^E542C5B3%%index.html.php: -------------------------------------------------------------------------------- 1 | 3 | _tpl_vars['page']; ?> -------------------------------------------------------------------------------- /conf/Config.inc.php: -------------------------------------------------------------------------------- 1 | bootstrap()/*bootstrap是可选的调用*/ 13 | ->run()/*执行*/; 14 | -------------------------------------------------------------------------------- /public/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/attachment/fileTypeImages/icon_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/attachment/fileTypeImages/icon_default.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/attachment/images/alignicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/attachment/images/alignicon.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/attachment/images/alignicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/attachment/images/alignicon.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/attachment/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/attachment/images/bg.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/attachment/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/attachment/images/file-icons.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/attachment/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/attachment/images/file-icons.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/attachment/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/attachment/images/icons.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/attachment/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/attachment/images/icons.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/attachment/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/attachment/images/image.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/attachment/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/attachment/images/progress.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/attachment/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/attachment/images/success.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/attachment/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/attachment/images/success.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/background/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/background/images/bg.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/background/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/background/images/success.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/charts/images/charts0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/charts/images/charts0.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/charts/images/charts1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/charts/images/charts1.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/charts/images/charts2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/charts/images/charts2.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/charts/images/charts3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/charts/images/charts3.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/charts/images/charts4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/charts/images/charts4.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/charts/images/charts5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/charts/images/charts5.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/emotion/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/emotion/images/0.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/emotion/images/bface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/emotion/images/bface.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/emotion/images/cface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/emotion/images/cface.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/emotion/images/fface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/emotion/images/fface.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/emotion/images/jxface2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/emotion/images/jxface2.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/emotion/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/emotion/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/emotion/images/tface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/emotion/images/tface.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/emotion/images/wface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/emotion/images/wface.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/emotion/images/yface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/emotion/images/yface.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/help/help.css: -------------------------------------------------------------------------------- 1 | .wrapper{width: 370px;margin: 10px auto;zoom: 1;} 2 | .tabbody{height: 360px;} 3 | .tabbody .panel{width:100%;height: 360px;position: absolute;background: #fff;} 4 | .tabbody .panel h1{font-size:26px;margin: 5px 0 0 5px;} 5 | .tabbody .panel p{font-size:12px;margin: 5px 0 0 5px;} 6 | .tabbody table{width:90%;line-height: 20px;margin: 5px 0 0 5px;;} 7 | .tabbody table thead{font-weight: bold;line-height: 25px;} -------------------------------------------------------------------------------- /public/ueditor/dialogs/image/images/alignicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/image/images/alignicon.jpg -------------------------------------------------------------------------------- /public/ueditor/dialogs/image/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/image/images/bg.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/image/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/image/images/icons.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/image/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/image/images/icons.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/image/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/image/images/image.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/image/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/image/images/progress.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/image/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/image/images/success.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/image/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/image/images/success.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/scrawl/images/addimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/scrawl/images/addimg.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/scrawl/images/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/scrawl/images/brush.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/scrawl/images/delimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/scrawl/images/delimg.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/scrawl/images/delimgH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/scrawl/images/delimgH.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/scrawl/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/scrawl/images/empty.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/scrawl/images/emptyH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/scrawl/images/emptyH.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/scrawl/images/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/scrawl/images/eraser.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/scrawl/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/scrawl/images/redo.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/scrawl/images/redoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/scrawl/images/redoH.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/scrawl/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/scrawl/images/scale.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/scrawl/images/scaleH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/scrawl/images/scaleH.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/scrawl/images/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/scrawl/images/size.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/scrawl/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/scrawl/images/undo.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/scrawl/images/undoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/scrawl/images/undoH.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/table/dragicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/table/dragicon.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/template/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/template/images/bg.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/template/images/pre0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/template/images/pre0.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/template/images/pre1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/template/images/pre1.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/template/images/pre2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/template/images/pre2.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/template/images/pre3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/template/images/pre3.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/template/images/pre4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/template/images/pre4.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/video/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/video/images/bg.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/video/images/center_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/video/images/center_focus.jpg -------------------------------------------------------------------------------- /public/ueditor/dialogs/video/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/video/images/file-icons.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/video/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/video/images/file-icons.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/video/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/video/images/icons.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/video/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/video/images/icons.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/video/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/video/images/image.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/video/images/left_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/video/images/left_focus.jpg -------------------------------------------------------------------------------- /public/ueditor/dialogs/video/images/none_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/video/images/none_focus.jpg -------------------------------------------------------------------------------- /public/ueditor/dialogs/video/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/video/images/progress.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/video/images/right_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/video/images/right_focus.jpg -------------------------------------------------------------------------------- /public/ueditor/dialogs/video/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/video/images/success.gif -------------------------------------------------------------------------------- /public/ueditor/dialogs/video/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/video/images/success.png -------------------------------------------------------------------------------- /public/ueditor/dialogs/wordimage/fClipboard_ueditor.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/wordimage/fClipboard_ueditor.swf -------------------------------------------------------------------------------- /public/ueditor/dialogs/wordimage/imageUploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/dialogs/wordimage/imageUploader.swf -------------------------------------------------------------------------------- /public/ueditor/lang/en/images/addimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/lang/en/images/addimage.png -------------------------------------------------------------------------------- /public/ueditor/lang/en/images/alldeletebtnhoverskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/lang/en/images/alldeletebtnhoverskin.png -------------------------------------------------------------------------------- /public/ueditor/lang/en/images/alldeletebtnupskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/lang/en/images/alldeletebtnupskin.png -------------------------------------------------------------------------------- /public/ueditor/lang/en/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/lang/en/images/background.png -------------------------------------------------------------------------------- /public/ueditor/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/lang/en/images/button.png -------------------------------------------------------------------------------- /public/ueditor/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/lang/en/images/copy.png -------------------------------------------------------------------------------- /public/ueditor/lang/en/images/deletedisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/lang/en/images/deletedisable.png -------------------------------------------------------------------------------- /public/ueditor/lang/en/images/deleteenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/lang/en/images/deleteenable.png -------------------------------------------------------------------------------- /public/ueditor/lang/en/images/listbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/lang/en/images/listbackground.png -------------------------------------------------------------------------------- /public/ueditor/lang/en/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/lang/en/images/localimage.png -------------------------------------------------------------------------------- /public/ueditor/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/lang/en/images/music.png -------------------------------------------------------------------------------- /public/ueditor/lang/en/images/rotateleftdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/lang/en/images/rotateleftdisable.png -------------------------------------------------------------------------------- /public/ueditor/lang/en/images/rotateleftenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/lang/en/images/rotateleftenable.png -------------------------------------------------------------------------------- /public/ueditor/lang/en/images/rotaterightdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/lang/en/images/rotaterightdisable.png -------------------------------------------------------------------------------- /public/ueditor/lang/en/images/rotaterightenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/lang/en/images/rotaterightenable.png -------------------------------------------------------------------------------- /public/ueditor/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/lang/en/images/upload.png -------------------------------------------------------------------------------- /public/ueditor/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /public/ueditor/lang/zh-cn/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/lang/zh-cn/images/localimage.png -------------------------------------------------------------------------------- /public/ueditor/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /public/ueditor/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/anchor.gif -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/arrow.png -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/arrow_down.png -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/arrow_up.png -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/button-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/button-bg.gif -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/cancelbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/cancelbutton.gif -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/charts.png -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/cursor_h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/cursor_h.gif -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/cursor_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/cursor_h.png -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/cursor_v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/cursor_v.gif -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/cursor_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/cursor_v.png -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/dialog-title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/dialog-title-bg.png -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/filescan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/filescan.png -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/highlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/highlighted.gif -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/icons-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/icons-all.gif -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/icons.gif -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/icons.png -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/loaderror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/loaderror.png -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/loading.gif -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/lock.gif -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/pagebreak.gif -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/scale.png -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/sortable.png -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/spacer.gif -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/sparator_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/sparator_v.png -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/table-cell-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/table-cell-align.png -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/tangram-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/tangram-colorpicker.png -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/toolbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/toolbar_bg.png -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/unhighlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/unhighlighted.gif -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/upload.png -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/videologo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/videologo.gif -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/word.gif -------------------------------------------------------------------------------- /public/ueditor/themes/default/images/wordpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoco/yaf-ext/8d563f4118de4a99ceab98bb7f6239468181a374/public/ueditor/themes/default/images/wordpaste.png -------------------------------------------------------------------------------- /public/ueditor/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | -------------------------------------------------------------------------------- /public/ueditor/third-party/highcharts/modules/heatmap.js: -------------------------------------------------------------------------------- 1 | (function(b){var k=b.seriesTypes,l=b.each;k.heatmap=b.extendClass(k.map,{colorKey:"z",useMapGeometry:!1,pointArrayMap:["y","z"],translate:function(){var c=this,b=c.options,i=Number.MAX_VALUE,j=Number.MIN_VALUE;c.generatePoints();l(c.data,function(a){var e=a.x,f=a.y,d=a.z,g=(b.colsize||1)/2,h=(b.rowsize||1)/2;a.path=["M",e-g,f-h,"L",e+g,f-h,"L",e+g,f+h,"L",e-g,f+h,"Z"];a.shapeType="path";a.shapeArgs={d:c.translatePath(a.path)};typeof d==="number"&&(d>j?j=d:d