├── .gitattributes ├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ └── maven-wrapper.properties ├── .unaboot └── themes │ └── default │ └── index.html ├── LICENSE ├── README.MD ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── ramostear │ │ └── unaboot │ │ ├── UnaBootApplication.java │ │ ├── common │ │ ├── Authorized.java │ │ ├── Constants.java │ │ ├── ContentType.java │ │ ├── DataBase.java │ │ ├── Editor.java │ │ ├── ExportConvert.java │ │ ├── GitalkKeys.java │ │ ├── ImportConvert.java │ │ ├── Locked.java │ │ ├── ObjectType.java │ │ ├── PageType.java │ │ ├── ParserType.java │ │ ├── PostStatus.java │ │ ├── PostType.java │ │ ├── QiniuZone.java │ │ ├── SortType.java │ │ ├── State.java │ │ ├── TaskMethods.java │ │ └── aspect │ │ │ ├── LogAspect.java │ │ │ └── lang │ │ │ ├── LogType.java │ │ │ └── UnaLog.java │ │ ├── component │ │ ├── FileManager.java │ │ ├── SpringContextAware.java │ │ ├── TaskRegister.java │ │ └── impl │ │ │ └── FileManagerImpl.java │ │ ├── config │ │ ├── AlibabaDruidConfiguration.java │ │ ├── ApacheShiroConfiguration.java │ │ ├── AsyncEventConfiguration.java │ │ ├── SwaggerConfiguration.java │ │ ├── UnaBoot.java │ │ ├── UnaBootSchedulingConfiguration.java │ │ ├── WebMvcConfiguration.java │ │ ├── datasource │ │ │ ├── DefaultUnaBootDatasourceConfiguration.java │ │ │ ├── UnaBootDataSourceSingleConnectionProviderImpl.java │ │ │ └── UnaBootDatasourceConfiguration.java │ │ └── support │ │ │ ├── CurrentUnaBootDataSourceIdentifierResolverImpl.java │ │ │ ├── CustomFreemarkerConfigurer.java │ │ │ ├── DataBaseProperty.java │ │ │ ├── DataSourceHolder.java │ │ │ ├── DruidProperties.java │ │ │ ├── DynamicDataSource.java │ │ │ ├── H2Property.java │ │ │ ├── UnaBootDatasourceContextHolder.java │ │ │ └── UnaBootRealm.java │ │ ├── domain │ │ ├── AbstractEntity.java │ │ ├── dto │ │ │ ├── CategoryDto.java │ │ │ ├── CategoryFullDto.java │ │ │ ├── InitializeDto.java │ │ │ ├── PostDto.java │ │ │ ├── PostMinDto.java │ │ │ ├── PostSimpleDto.java │ │ │ └── PostSmallDto.java │ │ ├── entity │ │ │ ├── Category.java │ │ │ ├── Link.java │ │ │ ├── OperLog.java │ │ │ ├── Post.java │ │ │ ├── PostCategory.java │ │ │ ├── PostTag.java │ │ │ ├── RolePermit.java │ │ │ ├── Schedule.java │ │ │ ├── Setting.java │ │ │ ├── Tag.java │ │ │ ├── Theme.java │ │ │ ├── User.java │ │ │ └── UserCategory.java │ │ ├── param │ │ │ ├── LoginParam.java │ │ │ └── PostParam.java │ │ └── vo │ │ │ ├── ArchiveVo.java │ │ │ ├── CategorySimpleVo.java │ │ │ ├── CategoryVo.java │ │ │ ├── Gitalk.java │ │ │ ├── PostSimpleVo.java │ │ │ ├── PostVo.java │ │ │ ├── QiniuProperty.java │ │ │ ├── QiniuZoneNode.java │ │ │ ├── QueryParam.java │ │ │ ├── ScheduleVo.java │ │ │ ├── ThemeFolder.java │ │ │ └── UserVo.java │ │ ├── event │ │ ├── LogEvent.java │ │ └── listener │ │ │ └── LogEventListener.java │ │ ├── exception │ │ ├── AlreadyExistException.java │ │ ├── BadRequestException.java │ │ ├── BeanException.java │ │ ├── ForbiddenException.java │ │ ├── NotFoundException.java │ │ ├── UnAuthorizedException.java │ │ └── UnaBootException.java │ │ ├── freemarker │ │ ├── AbstractMethodModel.java │ │ ├── AbstractTemplateDirectiveModel.java │ │ ├── DirectiveHandler.java │ │ ├── UnaBootParser.java │ │ ├── directive │ │ │ ├── Archives.java │ │ │ ├── Links.java │ │ │ ├── NavMenus.java │ │ │ ├── Pages.java │ │ │ ├── PostInfo.java │ │ │ ├── Posts.java │ │ │ ├── SubNavMenus.java │ │ │ └── Tags.java │ │ └── methods │ │ │ ├── Ellipsis.java │ │ │ ├── Gitalk.java │ │ │ ├── NumberFormat.java │ │ │ ├── PageUrl.java │ │ │ ├── ReadTime.java │ │ │ ├── TimeAgo.java │ │ │ └── Words.java │ │ ├── repository │ │ ├── BaseRepository.java │ │ ├── CategoryRepository.java │ │ ├── LinkRepository.java │ │ ├── OperLogRepository.java │ │ ├── PostCategoryRepository.java │ │ ├── PostRepository.java │ │ ├── PostTagRepository.java │ │ ├── ScheduleRepository.java │ │ ├── SettingRepository.java │ │ ├── TagRepository.java │ │ ├── ThemeRepository.java │ │ ├── UserCategoryRepository.java │ │ ├── UserRepository.java │ │ └── impl │ │ │ └── BaseRepositoryImpl.java │ │ ├── service │ │ ├── ArchiveService.java │ │ ├── BaseService.java │ │ ├── CategoryService.java │ │ ├── InitializeService.java │ │ ├── LinkService.java │ │ ├── LuceneService.java │ │ ├── OperLogService.java │ │ ├── PostCategoryService.java │ │ ├── PostService.java │ │ ├── PostTagService.java │ │ ├── ScheduleService.java │ │ ├── SettingService.java │ │ ├── TagService.java │ │ ├── TaskService.java │ │ ├── ThemeService.java │ │ ├── UserCategoryService.java │ │ ├── UserService.java │ │ └── impl │ │ │ ├── ArchiveServiceImpl.java │ │ │ ├── BaseServiceImpl.java │ │ │ ├── CategoryServiceImpl.java │ │ │ ├── InitializeServiceImpl.java │ │ │ ├── LinkServiceImpl.java │ │ │ ├── LuceneServiceImpl.java │ │ │ ├── OperLogServiceImpl.java │ │ │ ├── PostCategoryServiceImpl.java │ │ │ ├── PostServiceImpl.java │ │ │ ├── PostTagServiceImp.java │ │ │ ├── ScheduleServiceImpl.java │ │ │ ├── SettingServiceImpl.java │ │ │ ├── TagServiceImpl.java │ │ │ ├── TaskServiceImpl.java │ │ │ ├── ThemeServiceImpl.java │ │ │ ├── UserCategoryServiceImpl.java │ │ │ └── UserServiceImpl.java │ │ ├── task │ │ ├── ScheduledTask.java │ │ └── SchedulingRunner.java │ │ ├── util │ │ ├── ArchiveUtils.java │ │ ├── AssertUtils.java │ │ ├── BeanUtils.java │ │ ├── CharsetKit.java │ │ ├── ComponentUtils.java │ │ ├── ConvertUtils.java │ │ ├── DateTimeUtils.java │ │ ├── FreemarkerUtils.java │ │ ├── HtmlUtils.java │ │ ├── IpUtils.java │ │ ├── PinyinUtils.java │ │ ├── QiniuUtils.java │ │ ├── ReflectionUtils.java │ │ ├── SQLUtils.java │ │ ├── ServletUtils.java │ │ ├── ThemeUtils.java │ │ ├── TimeAgoUtils.java │ │ └── UnaBootUtils.java │ │ └── web │ │ ├── ExceptionController.java │ │ ├── UnaBootController.java │ │ ├── admin │ │ ├── CategoryController.java │ │ ├── DashboardController.java │ │ ├── FileUploadController.java │ │ ├── InitializeController.java │ │ ├── LinkController.java │ │ ├── LogController.java │ │ ├── LoginController.java │ │ ├── PostController.java │ │ ├── ScheduleController.java │ │ ├── SettingController.java │ │ ├── TagController.java │ │ ├── ThemeController.java │ │ └── UserController.java │ │ ├── front │ │ └── HomePageController.java │ │ └── handler │ │ ├── AdminExceptionHandler.java │ │ ├── FrontExceptionHandler.java │ │ ├── UnaBootInitializeHandler.java │ │ └── UnaBootServletContextHandler.java └── resources │ ├── application.yml │ ├── banner.txt │ ├── cdn.properties │ ├── ehcache.xml │ ├── ehcache │ └── ehcache-shiro.xml │ ├── initialize.sql │ ├── logback-spring.xml │ ├── mysql.properties │ ├── static │ └── ub-admin │ │ ├── css │ │ ├── adminlte.css │ │ ├── adminlte.css.map │ │ ├── adminlte.min.css │ │ ├── adminlte.min.css.map │ │ ├── alt │ │ │ ├── adminlte.components.css │ │ │ ├── adminlte.components.css.map │ │ │ ├── adminlte.components.min.css │ │ │ ├── adminlte.components.min.css.map │ │ │ ├── adminlte.core.css │ │ │ ├── adminlte.core.css.map │ │ │ ├── adminlte.core.min.css │ │ │ ├── adminlte.core.min.css.map │ │ │ ├── adminlte.extra-components.css │ │ │ ├── adminlte.extra-components.css.map │ │ │ ├── adminlte.extra-components.min.css │ │ │ ├── adminlte.extra-components.min.css.map │ │ │ ├── adminlte.pages.css │ │ │ ├── adminlte.pages.css.map │ │ │ ├── adminlte.pages.min.css │ │ │ ├── adminlte.pages.min.css.map │ │ │ ├── adminlte.plugins.css │ │ │ ├── adminlte.plugins.css.map │ │ │ ├── adminlte.plugins.min.css │ │ │ └── adminlte.plugins.min.css.map │ │ ├── font-awesome.css │ │ ├── ionicons.css │ │ ├── nouislider.min.css │ │ ├── unaboot-admin.css │ │ ├── unaboot-install.css │ │ ├── unaboot-login.css │ │ └── unaboot-login.min.css │ │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── ionicons.eot │ │ ├── ionicons.svg │ │ ├── ionicons.ttf │ │ ├── ionicons.woff │ │ ├── material-icon │ │ │ ├── css │ │ │ │ ├── material-design-iconic-font.css │ │ │ │ └── material-design-iconic-font.min.css │ │ │ └── fonts │ │ │ │ ├── Material-Design-Iconic-Font.eot │ │ │ │ ├── Material-Design-Iconic-Font.svg │ │ │ │ ├── Material-Design-Iconic-Font.ttf │ │ │ │ ├── Material-Design-Iconic-Font.woff │ │ │ │ └── Material-Design-Iconic-Font.woff2 │ │ ├── montserrat │ │ │ ├── Montserrat-Bold.ttf │ │ │ ├── Montserrat-BoldItalic.ttf │ │ │ ├── Montserrat-ExtraLight.ttf │ │ │ ├── Montserrat-ExtraLightItalic.ttf │ │ │ ├── Montserrat-Italic.ttf │ │ │ ├── Montserrat-Light.ttf │ │ │ ├── Montserrat-Medium.ttf │ │ │ ├── Montserrat-Regular.ttf │ │ │ ├── Montserrat-SemiBold.ttf │ │ │ ├── OFL.txt │ │ │ ├── montserrat-v12-latin-900.eot │ │ │ ├── montserrat-v12-latin-900.svg │ │ │ ├── montserrat-v12-latin-900.ttf │ │ │ ├── montserrat-v12-latin-900.woff │ │ │ └── montserrat-v12-latin-900.woff2 │ │ ├── muli │ │ │ ├── Muli-Black.ttf │ │ │ ├── Muli-BlackItalic.ttf │ │ │ ├── Muli-Bold.ttf │ │ │ ├── Muli-BoldItalic.ttf │ │ │ ├── Muli-ExtraBold.ttf │ │ │ ├── Muli-ExtraBoldItalic.ttf │ │ │ ├── Muli-ExtraLight.ttf │ │ │ ├── Muli-ExtraLightItalic.ttf │ │ │ ├── Muli-Italic.ttf │ │ │ ├── Muli-Light.ttf │ │ │ ├── Muli-LightItalic.ttf │ │ │ ├── Muli-Regular.ttf │ │ │ ├── Muli-SemiBold.ttf │ │ │ ├── Muli-SemiBoldItalic.ttf │ │ │ └── OFL.txt │ │ └── poppins │ │ │ ├── poppins-v5-latin-300.eot │ │ │ ├── poppins-v5-latin-300.svg │ │ │ ├── poppins-v5-latin-300.ttf │ │ │ ├── poppins-v5-latin-300.woff │ │ │ ├── poppins-v5-latin-300.woff2 │ │ │ ├── poppins-v5-latin-300italic.eot │ │ │ ├── poppins-v5-latin-300italic.svg │ │ │ ├── poppins-v5-latin-300italic.ttf │ │ │ ├── poppins-v5-latin-300italic.woff │ │ │ ├── poppins-v5-latin-300italic.woff2 │ │ │ ├── poppins-v5-latin-500.eot │ │ │ ├── poppins-v5-latin-500.svg │ │ │ ├── poppins-v5-latin-500.ttf │ │ │ ├── poppins-v5-latin-500.woff │ │ │ ├── poppins-v5-latin-500.woff2 │ │ │ ├── poppins-v5-latin-500italic.eot │ │ │ ├── poppins-v5-latin-500italic.svg │ │ │ ├── poppins-v5-latin-500italic.ttf │ │ │ ├── poppins-v5-latin-500italic.woff │ │ │ ├── poppins-v5-latin-500italic.woff2 │ │ │ ├── poppins-v5-latin-600.eot │ │ │ ├── poppins-v5-latin-600.svg │ │ │ ├── poppins-v5-latin-600.ttf │ │ │ ├── poppins-v5-latin-600.woff │ │ │ ├── poppins-v5-latin-600.woff2 │ │ │ ├── poppins-v5-latin-700.eot │ │ │ ├── poppins-v5-latin-700.svg │ │ │ ├── poppins-v5-latin-700.ttf │ │ │ ├── poppins-v5-latin-700.woff │ │ │ ├── poppins-v5-latin-700.woff2 │ │ │ ├── poppins-v5-latin-700italic.eot │ │ │ ├── poppins-v5-latin-700italic.svg │ │ │ ├── poppins-v5-latin-700italic.ttf │ │ │ ├── poppins-v5-latin-700italic.woff │ │ │ ├── poppins-v5-latin-700italic.woff2 │ │ │ ├── poppins-v5-latin-800.eot │ │ │ ├── poppins-v5-latin-800.svg │ │ │ ├── poppins-v5-latin-800.ttf │ │ │ ├── poppins-v5-latin-800.woff │ │ │ ├── poppins-v5-latin-800.woff2 │ │ │ ├── poppins-v5-latin-800italic.eot │ │ │ ├── poppins-v5-latin-800italic.svg │ │ │ ├── poppins-v5-latin-800italic.ttf │ │ │ ├── poppins-v5-latin-800italic.woff │ │ │ ├── poppins-v5-latin-800italic.woff2 │ │ │ ├── poppins-v5-latin-900.eot │ │ │ ├── poppins-v5-latin-900.svg │ │ │ ├── poppins-v5-latin-900.ttf │ │ │ ├── poppins-v5-latin-900.woff │ │ │ ├── poppins-v5-latin-900.woff2 │ │ │ ├── poppins-v5-latin-italic.eot │ │ │ ├── poppins-v5-latin-italic.svg │ │ │ ├── poppins-v5-latin-italic.ttf │ │ │ ├── poppins-v5-latin-italic.woff │ │ │ ├── poppins-v5-latin-italic.woff2 │ │ │ ├── poppins-v5-latin-regular.eot │ │ │ ├── poppins-v5-latin-regular.svg │ │ │ ├── poppins-v5-latin-regular.ttf │ │ │ ├── poppins-v5-latin-regular.woff │ │ │ ├── poppins-v5-latin-regular.woff2 │ │ │ ├── roboto-condensed-v16-latin-700.eot │ │ │ ├── roboto-condensed-v16-latin-700.svg │ │ │ ├── roboto-condensed-v16-latin-700.ttf │ │ │ ├── roboto-condensed-v16-latin-700.woff │ │ │ ├── roboto-condensed-v16-latin-700.woff2 │ │ │ ├── roboto-condensed-v16-latin-700italic.eot │ │ │ ├── roboto-condensed-v16-latin-700italic.svg │ │ │ ├── roboto-condensed-v16-latin-700italic.ttf │ │ │ ├── roboto-condensed-v16-latin-700italic.woff │ │ │ ├── roboto-condensed-v16-latin-700italic.woff2 │ │ │ ├── roboto-condensed-v16-latin-italic.eot │ │ │ ├── roboto-condensed-v16-latin-italic.svg │ │ │ ├── roboto-condensed-v16-latin-italic.ttf │ │ │ ├── roboto-condensed-v16-latin-italic.woff │ │ │ ├── roboto-condensed-v16-latin-italic.woff2 │ │ │ ├── roboto-condensed-v16-latin-regular.eot │ │ │ ├── roboto-condensed-v16-latin-regular.svg │ │ │ ├── roboto-condensed-v16-latin-regular.ttf │ │ │ ├── roboto-condensed-v16-latin-regular.woff │ │ │ └── roboto-condensed-v16-latin-regular.woff2 │ │ ├── img │ │ ├── UnaBoot.gif │ │ ├── avatar-128x128.png │ │ ├── avatar-32x32.png │ │ ├── avatar-64x64.png │ │ ├── favicon.png │ │ ├── gitalk.png │ │ ├── login_background.svg │ │ ├── logo-blue.svg │ │ ├── logo-gray.svg │ │ ├── qiniu.png │ │ ├── thumb.jpg │ │ └── una-logo-max.png │ │ ├── js │ │ ├── adminlte.js │ │ ├── dobpicker.js │ │ ├── dom-resize.js │ │ ├── install-wizard.js │ │ ├── jquery.steps.min.js │ │ ├── jquery.validate.min.js │ │ ├── main.js │ │ ├── nouislider.min.js │ │ ├── unaboot-admin.core.js │ │ └── wNumb.js │ │ └── plugin │ │ ├── ace-1.4.8 │ │ ├── ace.js │ │ ├── ext-beautify.js │ │ ├── ext-code_lens.js │ │ ├── ext-elastic_tabstops_lite.js │ │ ├── ext-emmet.js │ │ ├── ext-error_marker.js │ │ ├── ext-keybinding_menu.js │ │ ├── ext-language_tools.js │ │ ├── ext-linking.js │ │ ├── ext-modelist.js │ │ ├── ext-options.js │ │ ├── ext-prompt.js │ │ ├── ext-rtl.js │ │ ├── ext-searchbox.js │ │ ├── ext-settings_menu.js │ │ ├── ext-spellcheck.js │ │ ├── ext-split.js │ │ ├── ext-static_highlight.js │ │ ├── ext-statusbar.js │ │ ├── ext-textarea.js │ │ ├── ext-themelist.js │ │ ├── ext-whitespace.js │ │ ├── keybinding-emacs.js │ │ ├── keybinding-sublime.js │ │ ├── keybinding-vim.js │ │ ├── keybinding-vscode.js │ │ ├── mode-csp.js │ │ ├── mode-css.js │ │ ├── mode-ftl.js │ │ ├── mode-html.js │ │ ├── mode-html_elixir.js │ │ ├── mode-html_ruby.js │ │ ├── mode-java.js │ │ ├── mode-javascript.js │ │ ├── mode-json.js │ │ ├── mode-json5.js │ │ ├── mode-jsoniq.js │ │ ├── mode-jsp.js │ │ ├── mode-less.js │ │ ├── mode-markdown.js │ │ ├── mode-mysql.js │ │ ├── mode-nginx.js │ │ ├── mode-php.js │ │ ├── mode-php_laravel_blade.js │ │ ├── mode-plain_text.js │ │ ├── mode-python.js │ │ ├── mode-sass.js │ │ ├── mode-sql.js │ │ ├── mode-sqlserver.js │ │ ├── mode-svg.js │ │ ├── mode-tex.js │ │ ├── mode-text.js │ │ ├── mode-textile.js │ │ ├── mode-typescript.js │ │ ├── mode-vbscript.js │ │ ├── mode-velocity.js │ │ ├── mode-xml.js │ │ ├── mode-yaml.js │ │ ├── snippets │ │ │ ├── abap.js │ │ │ ├── abc.js │ │ │ ├── actionscript.js │ │ │ ├── ada.js │ │ │ ├── apache_conf.js │ │ │ ├── apex.js │ │ │ ├── applescript.js │ │ │ ├── aql.js │ │ │ ├── asciidoc.js │ │ │ ├── asl.js │ │ │ ├── assembly_x86.js │ │ │ ├── autohotkey.js │ │ │ ├── batchfile.js │ │ │ ├── bro.js │ │ │ ├── c9search.js │ │ │ ├── c_cpp.js │ │ │ ├── cirru.js │ │ │ ├── clojure.js │ │ │ ├── cobol.js │ │ │ ├── coffee.js │ │ │ ├── coldfusion.js │ │ │ ├── crystal.js │ │ │ ├── csharp.js │ │ │ ├── csound_document.js │ │ │ ├── csound_orchestra.js │ │ │ ├── csound_score.js │ │ │ ├── csp.js │ │ │ ├── css.js │ │ │ ├── curly.js │ │ │ ├── d.js │ │ │ ├── dart.js │ │ │ ├── diff.js │ │ │ ├── django.js │ │ │ ├── dockerfile.js │ │ │ ├── dot.js │ │ │ ├── drools.js │ │ │ ├── edifact.js │ │ │ ├── eiffel.js │ │ │ ├── ejs.js │ │ │ ├── elixir.js │ │ │ ├── elm.js │ │ │ ├── erlang.js │ │ │ ├── forth.js │ │ │ ├── fortran.js │ │ │ ├── fsharp.js │ │ │ ├── fsl.js │ │ │ ├── ftl.js │ │ │ ├── gcode.js │ │ │ ├── gherkin.js │ │ │ ├── gitignore.js │ │ │ ├── glsl.js │ │ │ ├── gobstones.js │ │ │ ├── golang.js │ │ │ ├── graphqlschema.js │ │ │ ├── groovy.js │ │ │ ├── haml.js │ │ │ ├── handlebars.js │ │ │ ├── haskell.js │ │ │ ├── haskell_cabal.js │ │ │ ├── haxe.js │ │ │ ├── hjson.js │ │ │ ├── html.js │ │ │ ├── html_elixir.js │ │ │ ├── html_ruby.js │ │ │ ├── ini.js │ │ │ ├── io.js │ │ │ ├── jack.js │ │ │ ├── jade.js │ │ │ ├── java.js │ │ │ ├── javascript.js │ │ │ ├── json.js │ │ │ ├── json5.js │ │ │ ├── jsoniq.js │ │ │ ├── jsp.js │ │ │ ├── jssm.js │ │ │ ├── jsx.js │ │ │ ├── julia.js │ │ │ ├── kotlin.js │ │ │ ├── latex.js │ │ │ ├── less.js │ │ │ ├── liquid.js │ │ │ ├── lisp.js │ │ │ ├── livescript.js │ │ │ ├── logiql.js │ │ │ ├── logtalk.js │ │ │ ├── lsl.js │ │ │ ├── lua.js │ │ │ ├── luapage.js │ │ │ ├── lucene.js │ │ │ ├── makefile.js │ │ │ ├── markdown.js │ │ │ ├── mask.js │ │ │ ├── matlab.js │ │ │ ├── maze.js │ │ │ ├── mel.js │ │ │ ├── mixal.js │ │ │ ├── mushcode.js │ │ │ ├── mysql.js │ │ │ ├── nginx.js │ │ │ ├── nim.js │ │ │ ├── nix.js │ │ │ ├── nsis.js │ │ │ ├── nunjucks.js │ │ │ ├── objectivec.js │ │ │ ├── ocaml.js │ │ │ ├── pascal.js │ │ │ ├── perl.js │ │ │ ├── perl6.js │ │ │ ├── pgsql.js │ │ │ ├── php.js │ │ │ ├── php_laravel_blade.js │ │ │ ├── pig.js │ │ │ ├── plain_text.js │ │ │ ├── powershell.js │ │ │ ├── praat.js │ │ │ ├── prolog.js │ │ │ ├── properties.js │ │ │ ├── protobuf.js │ │ │ ├── puppet.js │ │ │ ├── python.js │ │ │ ├── r.js │ │ │ ├── razor.js │ │ │ ├── rdoc.js │ │ │ ├── red.js │ │ │ ├── redshift.js │ │ │ ├── rhtml.js │ │ │ ├── rst.js │ │ │ ├── ruby.js │ │ │ ├── rust.js │ │ │ ├── sass.js │ │ │ ├── scad.js │ │ │ ├── scala.js │ │ │ ├── scheme.js │ │ │ ├── scss.js │ │ │ ├── sh.js │ │ │ ├── sjs.js │ │ │ ├── slim.js │ │ │ ├── smarty.js │ │ │ ├── snippets.js │ │ │ ├── soy_template.js │ │ │ ├── space.js │ │ │ ├── sparql.js │ │ │ ├── sql.js │ │ │ ├── sqlserver.js │ │ │ ├── stylus.js │ │ │ ├── svg.js │ │ │ ├── swift.js │ │ │ ├── tcl.js │ │ │ ├── terraform.js │ │ │ ├── tex.js │ │ │ ├── text.js │ │ │ ├── textile.js │ │ │ ├── toml.js │ │ │ ├── tsx.js │ │ │ ├── turtle.js │ │ │ ├── twig.js │ │ │ ├── typescript.js │ │ │ ├── vala.js │ │ │ ├── vbscript.js │ │ │ ├── velocity.js │ │ │ ├── verilog.js │ │ │ ├── vhdl.js │ │ │ ├── visualforce.js │ │ │ ├── wollok.js │ │ │ ├── xml.js │ │ │ ├── xquery.js │ │ │ ├── yaml.js │ │ │ └── zeek.js │ │ ├── theme-ambiance.js │ │ ├── theme-dracula.js │ │ ├── theme-dreamweaver.js │ │ ├── theme-eclipse.js │ │ ├── theme-github.js │ │ ├── theme-monokai.js │ │ ├── theme-terminal.js │ │ ├── theme-textmate.js │ │ ├── worker-coffee.js │ │ ├── worker-css.js │ │ ├── worker-html.js │ │ ├── worker-javascript.js │ │ ├── worker-json.js │ │ ├── worker-lua.js │ │ ├── worker-php.js │ │ ├── worker-xml.js │ │ └── worker-xquery.js │ │ ├── bootstrap-tagsinput │ │ ├── bootstrap-tagsinput.css │ │ ├── bootstrap-tagsinput.js │ │ ├── bootstrap-tagsinput.less │ │ ├── bootstrap-tagsinput.min.js │ │ └── bootstrap-tagsinput.min.js.map │ │ ├── bootstrap │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── ckeditor5 │ │ ├── ckeditor.js │ │ ├── ckeditor.js.map │ │ ├── css │ │ │ └── styles.css │ │ └── translations │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── ast.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── km.js │ │ │ ├── kn.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── oc.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── datetimepicker │ │ ├── bootstrap-datetimepicker.css │ │ ├── bootstrap-datetimepicker.js │ │ └── bootstrap-datetimepicker.zh-CN.js │ │ ├── editormd │ │ ├── Gulpfile.js │ │ ├── bower.json │ │ ├── css │ │ │ ├── editormd.css │ │ │ ├── editormd.logo.css │ │ │ ├── editormd.logo.min.css │ │ │ ├── editormd.min.css │ │ │ ├── editormd.preview.css │ │ │ └── editormd.preview.min.css │ │ ├── editormd.amd.js │ │ ├── editormd.amd.min.js │ │ ├── editormd.js │ │ ├── editormd.min.js │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── editormd-logo.eot │ │ │ ├── editormd-logo.svg │ │ │ ├── editormd-logo.ttf │ │ │ ├── editormd-logo.woff │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── images │ │ │ ├── loading.gif │ │ │ ├── loading@2x.gif │ │ │ ├── loading@3x.gif │ │ │ └── logos │ │ │ │ ├── editormd-favicon-16x16.ico │ │ │ │ ├── editormd-favicon-24x24.ico │ │ │ │ ├── editormd-favicon-32x32.ico │ │ │ │ ├── editormd-favicon-48x48.ico │ │ │ │ ├── editormd-favicon-64x64.ico │ │ │ │ ├── editormd-logo-114x114.png │ │ │ │ ├── editormd-logo-120x120.png │ │ │ │ ├── editormd-logo-144x144.png │ │ │ │ ├── editormd-logo-16x16.png │ │ │ │ ├── editormd-logo-180x180.png │ │ │ │ ├── editormd-logo-240x240.png │ │ │ │ ├── editormd-logo-24x24.png │ │ │ │ ├── editormd-logo-320x320.png │ │ │ │ ├── editormd-logo-32x32.png │ │ │ │ ├── editormd-logo-48x48.png │ │ │ │ ├── editormd-logo-57x57.png │ │ │ │ ├── editormd-logo-64x64.png │ │ │ │ ├── editormd-logo-72x72.png │ │ │ │ ├── editormd-logo-96x96.png │ │ │ │ └── vi.png │ │ ├── languages │ │ │ ├── en.js │ │ │ └── zh-tw.js │ │ ├── lib │ │ │ ├── codemirror │ │ │ │ ├── AUTHORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── addon │ │ │ │ │ ├── comment │ │ │ │ │ │ ├── comment.js │ │ │ │ │ │ └── continuecomment.js │ │ │ │ │ ├── dialog │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ └── dialog.js │ │ │ │ │ ├── display │ │ │ │ │ │ ├── fullscreen.css │ │ │ │ │ │ ├── fullscreen.js │ │ │ │ │ │ ├── panel.js │ │ │ │ │ │ ├── placeholder.js │ │ │ │ │ │ └── rulers.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── closebrackets.js │ │ │ │ │ │ ├── closetag.js │ │ │ │ │ │ ├── continuelist.js │ │ │ │ │ │ ├── matchbrackets.js │ │ │ │ │ │ ├── matchtags.js │ │ │ │ │ │ └── trailingspace.js │ │ │ │ │ ├── fold │ │ │ │ │ │ ├── brace-fold.js │ │ │ │ │ │ ├── comment-fold.js │ │ │ │ │ │ ├── foldcode.js │ │ │ │ │ │ ├── foldgutter.css │ │ │ │ │ │ ├── foldgutter.js │ │ │ │ │ │ ├── indent-fold.js │ │ │ │ │ │ ├── markdown-fold.js │ │ │ │ │ │ └── xml-fold.js │ │ │ │ │ ├── hint │ │ │ │ │ │ ├── anyword-hint.js │ │ │ │ │ │ ├── css-hint.js │ │ │ │ │ │ ├── html-hint.js │ │ │ │ │ │ ├── javascript-hint.js │ │ │ │ │ │ ├── show-hint.css │ │ │ │ │ │ ├── show-hint.js │ │ │ │ │ │ ├── sql-hint.js │ │ │ │ │ │ └── xml-hint.js │ │ │ │ │ ├── lint │ │ │ │ │ │ ├── coffeescript-lint.js │ │ │ │ │ │ ├── css-lint.js │ │ │ │ │ │ ├── javascript-lint.js │ │ │ │ │ │ ├── json-lint.js │ │ │ │ │ │ ├── lint.css │ │ │ │ │ │ ├── lint.js │ │ │ │ │ │ └── yaml-lint.js │ │ │ │ │ ├── merge │ │ │ │ │ │ ├── merge.css │ │ │ │ │ │ └── merge.js │ │ │ │ │ ├── mode │ │ │ │ │ │ ├── loadmode.js │ │ │ │ │ │ ├── multiplex.js │ │ │ │ │ │ ├── multiplex_test.js │ │ │ │ │ │ ├── overlay.js │ │ │ │ │ │ └── simple.js │ │ │ │ │ ├── runmode │ │ │ │ │ │ ├── colorize.js │ │ │ │ │ │ ├── runmode-standalone.js │ │ │ │ │ │ ├── runmode.js │ │ │ │ │ │ └── runmode.node.js │ │ │ │ │ ├── scroll │ │ │ │ │ │ ├── annotatescrollbar.js │ │ │ │ │ │ ├── scrollpastend.js │ │ │ │ │ │ ├── simplescrollbars.css │ │ │ │ │ │ └── simplescrollbars.js │ │ │ │ │ ├── search │ │ │ │ │ │ ├── match-highlighter.js │ │ │ │ │ │ ├── matchesonscrollbar.css │ │ │ │ │ │ ├── matchesonscrollbar.js │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ └── searchcursor.js │ │ │ │ │ ├── selection │ │ │ │ │ │ ├── active-line.js │ │ │ │ │ │ ├── mark-selection.js │ │ │ │ │ │ └── selection-pointer.js │ │ │ │ │ ├── tern │ │ │ │ │ │ ├── tern.css │ │ │ │ │ │ ├── tern.js │ │ │ │ │ │ └── worker.js │ │ │ │ │ └── wrap │ │ │ │ │ │ └── hardwrap.js │ │ │ │ ├── addons.min.js │ │ │ │ ├── bower.json │ │ │ │ ├── codemirror.min.css │ │ │ │ ├── codemirror.min.js │ │ │ │ ├── lib │ │ │ │ │ ├── codemirror.css │ │ │ │ │ └── codemirror.js │ │ │ │ ├── mode │ │ │ │ │ ├── apl │ │ │ │ │ │ ├── apl.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── asterisk │ │ │ │ │ │ ├── asterisk.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── clike │ │ │ │ │ │ ├── clike.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── scala.html │ │ │ │ │ ├── clojure │ │ │ │ │ │ ├── clojure.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cobol │ │ │ │ │ │ ├── cobol.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── coffeescript │ │ │ │ │ │ ├── coffeescript.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── commonlisp │ │ │ │ │ │ ├── commonlisp.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── css │ │ │ │ │ │ ├── css.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── less.html │ │ │ │ │ │ ├── less_test.js │ │ │ │ │ │ ├── scss.html │ │ │ │ │ │ ├── scss_test.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── cypher │ │ │ │ │ │ ├── cypher.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── d │ │ │ │ │ │ ├── d.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dart │ │ │ │ │ │ ├── dart.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── diff │ │ │ │ │ │ ├── diff.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── django │ │ │ │ │ │ ├── django.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dockerfile │ │ │ │ │ │ ├── dockerfile.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dtd │ │ │ │ │ │ ├── dtd.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dylan │ │ │ │ │ │ ├── dylan.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ebnf │ │ │ │ │ │ ├── ebnf.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ecl │ │ │ │ │ │ ├── ecl.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── eiffel │ │ │ │ │ │ ├── eiffel.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── erlang │ │ │ │ │ │ ├── erlang.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── forth │ │ │ │ │ │ ├── forth.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fortran │ │ │ │ │ │ ├── fortran.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── gas │ │ │ │ │ │ ├── gas.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── gfm │ │ │ │ │ │ ├── gfm.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── gherkin │ │ │ │ │ │ ├── gherkin.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── go │ │ │ │ │ │ ├── go.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── groovy │ │ │ │ │ │ ├── groovy.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── haml │ │ │ │ │ │ ├── haml.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── haskell │ │ │ │ │ │ ├── haskell.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── haxe │ │ │ │ │ │ ├── haxe.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── htmlembedded │ │ │ │ │ │ ├── htmlembedded.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── htmlmixed │ │ │ │ │ │ ├── htmlmixed.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── http │ │ │ │ │ │ ├── http.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── idl │ │ │ │ │ │ ├── idl.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jade │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── jade.js │ │ │ │ │ ├── javascript │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── javascript.js │ │ │ │ │ │ ├── json-ld.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── typescript.html │ │ │ │ │ ├── jinja2 │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── jinja2.js │ │ │ │ │ ├── julia │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── julia.js │ │ │ │ │ ├── kotlin │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── kotlin.js │ │ │ │ │ ├── livescript │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── livescript.js │ │ │ │ │ ├── lua │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── lua.js │ │ │ │ │ ├── markdown │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── markdown.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── meta.js │ │ │ │ │ ├── mirc │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── mirc.js │ │ │ │ │ ├── mllike │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── mllike.js │ │ │ │ │ ├── modelica │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── modelica.js │ │ │ │ │ ├── nginx │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nginx.js │ │ │ │ │ ├── ntriples │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── ntriples.js │ │ │ │ │ ├── octave │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── octave.js │ │ │ │ │ ├── pascal │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pascal.js │ │ │ │ │ ├── pegjs │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pegjs.js │ │ │ │ │ ├── perl │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── perl.js │ │ │ │ │ ├── php │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── php.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── pig │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pig.js │ │ │ │ │ ├── properties │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── properties.js │ │ │ │ │ ├── puppet │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── puppet.js │ │ │ │ │ ├── python │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── python.js │ │ │ │ │ ├── q │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── q.js │ │ │ │ │ ├── r │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── r.js │ │ │ │ │ ├── rpm │ │ │ │ │ │ ├── changes │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── rpm.js │ │ │ │ │ ├── rst │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── rst.js │ │ │ │ │ ├── ruby │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── ruby.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── rust │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── rust.js │ │ │ │ │ ├── sass │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sass.js │ │ │ │ │ ├── scheme │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── scheme.js │ │ │ │ │ ├── shell │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── shell.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── sieve │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sieve.js │ │ │ │ │ ├── slim │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── slim.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── smalltalk │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── smalltalk.js │ │ │ │ │ ├── smarty │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── smarty.js │ │ │ │ │ ├── smartymixed │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── smartymixed.js │ │ │ │ │ ├── solr │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── solr.js │ │ │ │ │ ├── soy │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── soy.js │ │ │ │ │ ├── sparql │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sparql.js │ │ │ │ │ ├── spreadsheet │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── spreadsheet.js │ │ │ │ │ ├── sql │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sql.js │ │ │ │ │ ├── stex │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── stex.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── stylus │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── stylus.js │ │ │ │ │ ├── tcl │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── tcl.js │ │ │ │ │ ├── textile │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── textile.js │ │ │ │ │ ├── tiddlywiki │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── tiddlywiki.css │ │ │ │ │ │ └── tiddlywiki.js │ │ │ │ │ ├── tiki │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── tiki.css │ │ │ │ │ │ └── tiki.js │ │ │ │ │ ├── toml │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── toml.js │ │ │ │ │ ├── tornado │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── tornado.js │ │ │ │ │ ├── turtle │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── turtle.js │ │ │ │ │ ├── vb │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── vb.js │ │ │ │ │ ├── vbscript │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── vbscript.js │ │ │ │ │ ├── velocity │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── velocity.js │ │ │ │ │ ├── verilog │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── verilog.js │ │ │ │ │ ├── xml │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── xml.js │ │ │ │ │ ├── xquery │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── xquery.js │ │ │ │ │ ├── yaml │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── yaml.js │ │ │ │ │ └── z80 │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── z80.js │ │ │ │ ├── modes.min.js │ │ │ │ ├── package.json │ │ │ │ └── theme │ │ │ │ │ ├── 3024-day.css │ │ │ │ │ ├── 3024-night.css │ │ │ │ │ ├── ambiance-mobile.css │ │ │ │ │ ├── ambiance.css │ │ │ │ │ ├── base16-dark.css │ │ │ │ │ ├── base16-light.css │ │ │ │ │ ├── blackboard.css │ │ │ │ │ ├── cobalt.css │ │ │ │ │ ├── colorforth.css │ │ │ │ │ ├── eclipse.css │ │ │ │ │ ├── elegant.css │ │ │ │ │ ├── erlang-dark.css │ │ │ │ │ ├── lesser-dark.css │ │ │ │ │ ├── mbo.css │ │ │ │ │ ├── mdn-like.css │ │ │ │ │ ├── midnight.css │ │ │ │ │ ├── monokai.css │ │ │ │ │ ├── neat.css │ │ │ │ │ ├── neo.css │ │ │ │ │ ├── night.css │ │ │ │ │ ├── paraiso-dark.css │ │ │ │ │ ├── paraiso-light.css │ │ │ │ │ ├── pastel-on-dark.css │ │ │ │ │ ├── rubyblue.css │ │ │ │ │ ├── solarized.css │ │ │ │ │ ├── the-matrix.css │ │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ │ ├── twilight.css │ │ │ │ │ ├── vibrant-ink.css │ │ │ │ │ ├── xq-dark.css │ │ │ │ │ ├── xq-light.css │ │ │ │ │ └── zenburn.css │ │ │ ├── flowchart.min.js │ │ │ ├── jquery.flowchart.min.js │ │ │ ├── marked.min.js │ │ │ ├── prettify.min.js │ │ │ ├── raphael.min.js │ │ │ ├── sequence-diagram.min.js │ │ │ └── underscore.min.js │ │ ├── plugins │ │ │ ├── code-block-dialog │ │ │ │ └── code-block-dialog.js │ │ │ ├── emoji-dialog │ │ │ │ ├── emoji-dialog.js │ │ │ │ └── emoji.json │ │ │ ├── goto-line-dialog │ │ │ │ └── goto-line-dialog.js │ │ │ ├── help-dialog │ │ │ │ ├── help-dialog.js │ │ │ │ └── help.md │ │ │ ├── html-entities-dialog │ │ │ │ ├── html-entities-dialog.js │ │ │ │ └── html-entities.json │ │ │ ├── image-dialog │ │ │ │ └── image-dialog.js │ │ │ ├── link-dialog │ │ │ │ └── link-dialog.js │ │ │ ├── plugin-template.js │ │ │ ├── preformatted-text-dialog │ │ │ │ └── preformatted-text-dialog.js │ │ │ ├── reference-link-dialog │ │ │ │ └── reference-link-dialog.js │ │ │ ├── table-dialog │ │ │ │ └── table-dialog.js │ │ │ └── test-plugin │ │ │ │ └── test-plugin.js │ │ ├── scss │ │ │ ├── editormd.codemirror.scss │ │ │ ├── editormd.dialog.scss │ │ │ ├── editormd.form.scss │ │ │ ├── editormd.grid.scss │ │ │ ├── editormd.logo.scss │ │ │ ├── editormd.menu.scss │ │ │ ├── editormd.preview.scss │ │ │ ├── editormd.preview.themes.scss │ │ │ ├── editormd.scss │ │ │ ├── editormd.tab.scss │ │ │ ├── editormd.themes.scss │ │ │ ├── font-awesome.scss │ │ │ ├── github-markdown.scss │ │ │ ├── lib │ │ │ │ ├── prefixes.scss │ │ │ │ └── variables.scss │ │ │ └── prettify.scss │ │ └── src │ │ │ └── editormd.js │ │ ├── fontawesome-free │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── brands.css │ │ │ ├── brands.min.css │ │ │ ├── fontawesome.css │ │ │ ├── fontawesome.min.css │ │ │ ├── regular.css │ │ │ ├── regular.min.css │ │ │ ├── solid.css │ │ │ ├── solid.min.css │ │ │ ├── svg-with-js.css │ │ │ ├── svg-with-js.min.css │ │ │ ├── v4-shims.css │ │ │ └── v4-shims.min.css │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ │ ├── jquery │ │ ├── core.js │ │ ├── jquery.form.js │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── jquery.serialize.js │ │ ├── jquery.slim.js │ │ ├── jquery.slim.min.js │ │ ├── jquery.slim.min.map │ │ └── jquery.steps.js │ │ ├── layer │ │ ├── layer.full.js │ │ ├── layer.js │ │ └── skin │ │ │ └── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── layer.css │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ │ ├── typeahead │ │ ├── bootstrap3-typeahead.js │ │ └── bootstrap3-typeahead.min.js │ │ └── zTree_v3 │ │ ├── css │ │ ├── awesomeStyle │ │ │ ├── awesome.css │ │ │ ├── awesome.less │ │ │ ├── fa.less │ │ │ └── img │ │ │ │ └── loading.gif │ │ ├── metroStyle │ │ │ ├── img │ │ │ │ ├── line_conn.png │ │ │ │ ├── loading.gif │ │ │ │ ├── metro.gif │ │ │ │ └── metro.png │ │ │ └── metroStyle.css │ │ └── zTreeStyle │ │ │ ├── img │ │ │ ├── diy │ │ │ │ ├── 1_close.png │ │ │ │ ├── 1_open.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ ├── line_conn.gif │ │ │ ├── loading.gif │ │ │ ├── zTreeStandard.gif │ │ │ └── zTreeStandard.png │ │ │ └── zTreeStyle.css │ │ └── js │ │ ├── jquery-1.4.4.min.js │ │ ├── jquery.ztree.all.js │ │ ├── jquery.ztree.all.min.js │ │ ├── jquery.ztree.core.js │ │ ├── jquery.ztree.core.min.js │ │ ├── jquery.ztree.excheck.js │ │ ├── jquery.ztree.excheck.min.js │ │ ├── jquery.ztree.exedit.js │ │ ├── jquery.ztree.exedit.min.js │ │ ├── jquery.ztree.exhide.js │ │ └── jquery.ztree.exhide.min.js │ ├── templates │ ├── admin │ │ ├── apis.html │ │ ├── category │ │ │ ├── children.html │ │ │ ├── create.html │ │ │ ├── list.html │ │ │ ├── thumb.html │ │ │ └── view.html │ │ ├── druid.html │ │ ├── inc │ │ │ ├── aside.html │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ └── page.html │ │ ├── index.html │ │ ├── link │ │ │ ├── list.html │ │ │ └── view.html │ │ ├── log │ │ │ └── list.html │ │ ├── post │ │ │ ├── actives.html │ │ │ ├── create.html │ │ │ ├── draft.html │ │ │ ├── list.html │ │ │ ├── publish.html │ │ │ ├── thumb.html │ │ │ └── view.html │ │ ├── schedule │ │ │ ├── create.html │ │ │ ├── list.html │ │ │ └── view.html │ │ ├── setting │ │ │ ├── general.html │ │ │ ├── gitalk.html │ │ │ └── qiniu.html │ │ ├── tag │ │ │ ├── list.html │ │ │ └── view.html │ │ ├── theme │ │ │ ├── editor.html │ │ │ ├── list.html │ │ │ └── upload.html │ │ └── user │ │ │ ├── categories.html │ │ │ ├── create.html │ │ │ ├── list.html │ │ │ ├── profile-pwd.html │ │ │ ├── profile.html │ │ │ ├── pwd.html │ │ │ └── view.html │ ├── initialize.html │ └── login.html │ └── theme │ └── default │ ├── 404.html │ ├── about.html │ ├── archive.html │ ├── archives.html │ ├── css │ ├── adminlte.css │ ├── alt │ │ ├── adminlte.components.css │ │ ├── adminlte.components.css.map │ │ ├── adminlte.components.min.css │ │ ├── adminlte.components.min.css.map │ │ ├── adminlte.core.css │ │ ├── adminlte.core.css.map │ │ ├── adminlte.core.min.css │ │ ├── adminlte.core.min.css.map │ │ ├── adminlte.extra-components.css │ │ ├── adminlte.extra-components.css.map │ │ ├── adminlte.extra-components.min.css │ │ ├── adminlte.extra-components.min.css.map │ │ ├── adminlte.pages.css │ │ ├── adminlte.pages.css.map │ │ ├── adminlte.pages.min.css │ │ ├── adminlte.pages.min.css.map │ │ ├── adminlte.plugins.css │ │ ├── adminlte.plugins.css.map │ │ ├── adminlte.plugins.min.css │ │ └── adminlte.plugins.min.css.map │ ├── font-awesome.css │ ├── ionicons.css │ ├── md-preview.css │ └── unaboot.css │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── ionicons.eot │ ├── ionicons.svg │ ├── ionicons.ttf │ ├── ionicons.woff │ ├── material-icon │ │ ├── css │ │ │ ├── material-design-iconic-font.css │ │ │ └── material-design-iconic-font.min.css │ │ └── fonts │ │ │ ├── Material-Design-Iconic-Font.eot │ │ │ ├── Material-Design-Iconic-Font.svg │ │ │ ├── Material-Design-Iconic-Font.ttf │ │ │ ├── Material-Design-Iconic-Font.woff │ │ │ └── Material-Design-Iconic-Font.woff2 │ ├── montserrat │ │ ├── Montserrat-Bold.ttf │ │ ├── Montserrat-BoldItalic.ttf │ │ ├── Montserrat-ExtraLight.ttf │ │ ├── Montserrat-ExtraLightItalic.ttf │ │ ├── Montserrat-Italic.ttf │ │ ├── Montserrat-Light.ttf │ │ ├── Montserrat-Medium.ttf │ │ ├── Montserrat-Regular.ttf │ │ ├── Montserrat-SemiBold.ttf │ │ ├── OFL.txt │ │ ├── montserrat-v12-latin-900.eot │ │ ├── montserrat-v12-latin-900.svg │ │ ├── montserrat-v12-latin-900.ttf │ │ ├── montserrat-v12-latin-900.woff │ │ └── montserrat-v12-latin-900.woff2 │ ├── muli │ │ ├── Muli-Black.ttf │ │ ├── Muli-BlackItalic.ttf │ │ ├── Muli-Bold.ttf │ │ ├── Muli-BoldItalic.ttf │ │ ├── Muli-ExtraBold.ttf │ │ ├── Muli-ExtraBoldItalic.ttf │ │ ├── Muli-ExtraLight.ttf │ │ ├── Muli-ExtraLightItalic.ttf │ │ ├── Muli-Italic.ttf │ │ ├── Muli-Light.ttf │ │ ├── Muli-LightItalic.ttf │ │ ├── Muli-Regular.ttf │ │ ├── Muli-SemiBold.ttf │ │ ├── Muli-SemiBoldItalic.ttf │ │ └── OFL.txt │ └── poppins │ │ ├── poppins-v5-latin-300.eot │ │ ├── poppins-v5-latin-300.svg │ │ ├── poppins-v5-latin-300.ttf │ │ ├── poppins-v5-latin-300.woff │ │ ├── poppins-v5-latin-300.woff2 │ │ ├── poppins-v5-latin-300italic.eot │ │ ├── poppins-v5-latin-300italic.svg │ │ ├── poppins-v5-latin-300italic.ttf │ │ ├── poppins-v5-latin-300italic.woff │ │ ├── poppins-v5-latin-300italic.woff2 │ │ ├── poppins-v5-latin-500.eot │ │ ├── poppins-v5-latin-500.svg │ │ ├── poppins-v5-latin-500.ttf │ │ ├── poppins-v5-latin-500.woff │ │ ├── poppins-v5-latin-500.woff2 │ │ ├── poppins-v5-latin-500italic.eot │ │ ├── poppins-v5-latin-500italic.svg │ │ ├── poppins-v5-latin-500italic.ttf │ │ ├── poppins-v5-latin-500italic.woff │ │ ├── poppins-v5-latin-500italic.woff2 │ │ ├── poppins-v5-latin-600.eot │ │ ├── poppins-v5-latin-600.svg │ │ ├── poppins-v5-latin-600.ttf │ │ ├── poppins-v5-latin-600.woff │ │ ├── poppins-v5-latin-600.woff2 │ │ ├── poppins-v5-latin-700.eot │ │ ├── poppins-v5-latin-700.svg │ │ ├── poppins-v5-latin-700.ttf │ │ ├── poppins-v5-latin-700.woff │ │ ├── poppins-v5-latin-700.woff2 │ │ ├── poppins-v5-latin-700italic.eot │ │ ├── poppins-v5-latin-700italic.svg │ │ ├── poppins-v5-latin-700italic.ttf │ │ ├── poppins-v5-latin-700italic.woff │ │ ├── poppins-v5-latin-700italic.woff2 │ │ ├── poppins-v5-latin-800.eot │ │ ├── poppins-v5-latin-800.svg │ │ ├── poppins-v5-latin-800.ttf │ │ ├── poppins-v5-latin-800.woff │ │ ├── poppins-v5-latin-800.woff2 │ │ ├── poppins-v5-latin-800italic.eot │ │ ├── poppins-v5-latin-800italic.svg │ │ ├── poppins-v5-latin-800italic.ttf │ │ ├── poppins-v5-latin-800italic.woff │ │ ├── poppins-v5-latin-800italic.woff2 │ │ ├── poppins-v5-latin-900.eot │ │ ├── poppins-v5-latin-900.svg │ │ ├── poppins-v5-latin-900.ttf │ │ ├── poppins-v5-latin-900.woff │ │ ├── poppins-v5-latin-900.woff2 │ │ ├── poppins-v5-latin-italic.eot │ │ ├── poppins-v5-latin-italic.svg │ │ ├── poppins-v5-latin-italic.ttf │ │ ├── poppins-v5-latin-italic.woff │ │ ├── poppins-v5-latin-italic.woff2 │ │ ├── poppins-v5-latin-regular.eot │ │ ├── poppins-v5-latin-regular.svg │ │ ├── poppins-v5-latin-regular.ttf │ │ ├── poppins-v5-latin-regular.woff │ │ ├── poppins-v5-latin-regular.woff2 │ │ ├── roboto-condensed-v16-latin-700.eot │ │ ├── roboto-condensed-v16-latin-700.svg │ │ ├── roboto-condensed-v16-latin-700.ttf │ │ ├── roboto-condensed-v16-latin-700.woff │ │ ├── roboto-condensed-v16-latin-700.woff2 │ │ ├── roboto-condensed-v16-latin-700italic.eot │ │ ├── roboto-condensed-v16-latin-700italic.svg │ │ ├── roboto-condensed-v16-latin-700italic.ttf │ │ ├── roboto-condensed-v16-latin-700italic.woff │ │ ├── roboto-condensed-v16-latin-700italic.woff2 │ │ ├── roboto-condensed-v16-latin-italic.eot │ │ ├── roboto-condensed-v16-latin-italic.svg │ │ ├── roboto-condensed-v16-latin-italic.ttf │ │ ├── roboto-condensed-v16-latin-italic.woff │ │ ├── roboto-condensed-v16-latin-italic.woff2 │ │ ├── roboto-condensed-v16-latin-regular.eot │ │ ├── roboto-condensed-v16-latin-regular.svg │ │ ├── roboto-condensed-v16-latin-regular.ttf │ │ ├── roboto-condensed-v16-latin-regular.woff │ │ └── roboto-condensed-v16-latin-regular.woff2 │ ├── img │ ├── logo.png │ ├── qq.png │ ├── thumb.png │ ├── una-logo-max.png │ └── wechat.png │ ├── index.html │ ├── js │ ├── adminlte.js │ ├── adminlte.js.map │ ├── adminlte.min.js │ ├── adminlte.min.js.map │ ├── bootstrap │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ ├── highlight.pack.js │ └── jquery │ │ ├── core.js │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── jquery.slim.js │ │ ├── jquery.slim.min.js │ │ ├── jquery.slim.min.map │ │ └── jquery.steps.js │ ├── left.html │ ├── links.html │ ├── nav.html │ ├── post.html │ ├── posts.html │ ├── tag.html │ └── tags.html └── test └── java └── com └── ramostear └── unaboot └── UnaBootApplicationTests.java /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=java 2 | *.html linguist-language=java 3 | *.json linguist-language=java 4 | *.class linguist-language=java 5 | *.jar linguist-language=java 6 | *.htm linguist-language=java 7 | *.php linguist-language=java 8 | *.xml linguist-language=java 9 | *.md linguist-language=java -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip 2 | wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar 3 | -------------------------------------------------------------------------------- /.unaboot/themes/default/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |Hello World!
9 | 10 | -------------------------------------------------------------------------------- /src/main/java/com/ramostear/unaboot/common/ContentType.java: -------------------------------------------------------------------------------- 1 | package com.ramostear.unaboot.common; 2 | 3 | /** 4 | * @author : ramostear/树下魅狐 5 | * @version : Una-Boot-1.3.0 6 | *This java file was created by ramostear in 2020/6/4 0004 16:09. 7 | * The following is the description information about this file:
8 | *description:
9 | */ 10 | public interface ContentType { 11 | 12 | public static final int POST = 0; 13 | public static final int DOC = 1; 14 | 15 | } 16 | -------------------------------------------------------------------------------- /src/main/java/com/ramostear/unaboot/common/DataBase.java: -------------------------------------------------------------------------------- 1 | package com.ramostear.unaboot.common; 2 | 3 | /** 4 | * @author : ramostear/树下魅狐 5 | * @version : Una-Boot-1.3.0 6 | *This java file was created by ramostear in 2020/5/25 0025 3:08. 7 | * The following is the description information about this file:
8 | *description:
9 | */ 10 | public enum DataBase { 11 | MYSQL,H2,SQL_SERVER,ORACLE 12 | } 13 | -------------------------------------------------------------------------------- /src/main/java/com/ramostear/unaboot/common/ExportConvert.java: -------------------------------------------------------------------------------- 1 | package com.ramostear.unaboot.common; 2 | 3 | import com.ramostear.unaboot.util.BeanUtils; 4 | 5 | /** 6 | * @author : ramostear/树下魅狐 7 | * @version : Una-Boot-1.3.0 8 | *This java file was created by ramostear in 2020/5/25 0025 4:50. 9 | * The following is the description information about this file:
10 | *Object export converter
11 | */ 12 | public interface ExportConvertThis java file was created by ramostear in 2020/6/13 0013 0:20. 7 | * The following is the description information about this file:
8 | *description:
9 | */ 10 | public enum Locked { 11 | YES(-1),NO(0); 12 | 13 | private int code; 14 | 15 | Locked(int code){ 16 | this.code = code; 17 | } 18 | 19 | public int getCode(){ 20 | return code; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/main/java/com/ramostear/unaboot/common/ObjectType.java: -------------------------------------------------------------------------------- 1 | package com.ramostear.unaboot.common; 2 | 3 | /** 4 | * @author : ramostear/树下魅狐 5 | * @version : Una-Boot-1.3.0 6 | *This java file was created by ramostear in 2020/6/1 0001 1:03. 7 | * The following is the description information about this file:
8 | *description:
9 | */ 10 | public enum ObjectType { 11 | 12 | ROLE,USER 13 | } 14 | -------------------------------------------------------------------------------- /src/main/java/com/ramostear/unaboot/common/PostStatus.java: -------------------------------------------------------------------------------- 1 | package com.ramostear.unaboot.common; 2 | 3 | /** 4 | * @author : ramostear/树下魅狐 5 | * @version : Una-Boot-1.3.0 6 | *This java file was created by ramostear in 2020/6/4 0004 2:29. 7 | * The following is the description information about this file:
8 | *description:
9 | */ 10 | public interface PostStatus { 11 | int DRAFT = -1; //草稿 12 | int WAIT = 0; //等待审核 13 | int ACTIVE = 1; //已发布 14 | int SCHEDULE = 2;//发布中 15 | } 16 | -------------------------------------------------------------------------------- /src/main/java/com/ramostear/unaboot/common/SortType.java: -------------------------------------------------------------------------------- 1 | package com.ramostear.unaboot.common; 2 | 3 | /** 4 | * @author : ramostear/树下魅狐 5 | * @version : Una-Boot-1.3.0 6 | *This java file was created by ramostear in 2020/5/29 0029 19:05. 7 | * The following is the description information about this file:
8 | *description:
9 | */ 10 | public enum SortType { 11 | ASC,DESC; 12 | } 13 | -------------------------------------------------------------------------------- /src/main/java/com/ramostear/unaboot/common/aspect/lang/UnaLog.java: -------------------------------------------------------------------------------- 1 | package com.ramostear.unaboot.common.aspect.lang; 2 | 3 | import java.lang.annotation.*; 4 | 5 | /** 6 | * @author : ramostear/树下魅狐 7 | * @version : Una-Boot-1.3.0 8 | *This java file was created by ramostear in 2020/7/22 0022 12:13. 9 | * The following is the description information about this file:
10 | *description:
11 | */ 12 | @Documented 13 | @Retention(RetentionPolicy.RUNTIME) 14 | @Target({ElementType.PARAMETER,ElementType.METHOD}) 15 | public @interface UnaLog { 16 | 17 | String title() default ""; 18 | 19 | LogType type() default LogType.OTHER; 20 | 21 | } 22 | -------------------------------------------------------------------------------- /src/main/java/com/ramostear/unaboot/config/support/H2Property.java: -------------------------------------------------------------------------------- 1 | package com.ramostear.unaboot.config.support; 2 | 3 | /** 4 | * @author : ramostear/树下魅狐 5 | * @version : Una-Boot-1.3.0 6 | *This java file was created by ramostear in 2020/5/28 0028 16:41. 7 | * The following is the description information about this file:
8 | *description:
9 | */ 10 | public class H2Property { 11 | private H2Property(){} 12 | public static String url = "jdbc:h2:mem:test_db"; 13 | public static String username = "sa"; 14 | public static String password = "unaboot123456"; 15 | public static String driverClassName = "org.h2.Driver"; 16 | } 17 | -------------------------------------------------------------------------------- /src/main/java/com/ramostear/unaboot/domain/dto/CategoryFullDto.java: -------------------------------------------------------------------------------- 1 | package com.ramostear.unaboot.domain.dto; 2 | 3 | import lombok.Data; 4 | import lombok.EqualsAndHashCode; 5 | import lombok.ToString; 6 | 7 | /** 8 | * @author : ramostear/树下魅狐 9 | * @version : Una-Boot-1.3.0 10 | *This java file was created by ramostear in 2020/6/4 0004 13:56. 11 | * The following is the description information about this file:
12 | *description:
13 | */ 14 | @Data 15 | @ToString(callSuper = true) 16 | @EqualsAndHashCode(callSuper = true) 17 | public class CategoryFullDto extends CategoryDto { 18 | private Long postSize; 19 | } 20 | -------------------------------------------------------------------------------- /src/main/java/com/ramostear/unaboot/domain/vo/ArchiveVo.java: -------------------------------------------------------------------------------- 1 | package com.ramostear.unaboot.domain.vo; 2 | 3 | import lombok.Data; 4 | 5 | /** 6 | * @author : ramostear/树下魅狐 7 | * @version : Una-Boot-1.3.0 8 | *This java file was created by ramostear in 2020/6/30 0030 3:08. 9 | * The following is the description information about this file:
10 | *description:
11 | */ 12 | @Data 13 | public class ArchiveVo { 14 | 15 | private String name; 16 | 17 | private Long counts; 18 | } 19 | -------------------------------------------------------------------------------- /src/main/java/com/ramostear/unaboot/domain/vo/ThemeFolder.java: -------------------------------------------------------------------------------- 1 | package com.ramostear.unaboot.domain.vo; 2 | 3 | import lombok.Data; 4 | 5 | import java.util.Date; 6 | 7 | /** 8 | * @author : ramostear/树下魅狐 9 | * @version : Una-Boot-1.3.0 10 | *This java file was created by ramostear in 2020/6/1 0001 18:48. 11 | * The following is the description information about this file:
12 | *description:
13 | */ 14 | @Data 15 | public class ThemeFolder { 16 | private String id; 17 | private String pid; 18 | private String name; 19 | private String size; 20 | private boolean folder; 21 | private Date modifyDate; 22 | } 23 | -------------------------------------------------------------------------------- /src/main/java/com/ramostear/unaboot/repository/LinkRepository.java: -------------------------------------------------------------------------------- 1 | package com.ramostear.unaboot.repository; 2 | 3 | import com.ramostear.unaboot.domain.entity.Link; 4 | 5 | /** 6 | * @author : ramostear/树下魅狐 7 | * @version : Una-Boot-1.3.0 8 | *This java file was created by ramostear in 2020/6/3 0003 19:44. 9 | * The following is the description information about this file:
10 | *description:
11 | */ 12 | public interface LinkRepository extends BaseRepository { 13 | } 14 | -------------------------------------------------------------------------------- /src/main/java/com/ramostear/unaboot/repository/OperLogRepository.java: -------------------------------------------------------------------------------- 1 | package com.ramostear.unaboot.repository; 2 | 3 | import com.ramostear.unaboot.domain.entity.OperLog; 4 | 5 | /** 6 | * @author : ramostear/树下魅狐 7 | * @version : Una-Boot-1.3.0 8 | *This java file was created by ramostear in 2020/7/22 0022 13:12. 9 | * The following is the description information about this file:
10 | *description:
11 | */ 12 | public interface OperLogRepository extends BaseRepositoryThis java file was created by ramostear in 2020/6/3 0003 13:26. 10 | * The following is the description information about this file:
11 | *description:
12 | */ 13 | public interface SettingRepository extends BaseRepositoryThis java file was created by ramostear in 2020/6/2 0002 14:22. 9 | * The following is the description information about this file:
10 | *description:
11 | */ 12 | public interface TagRepository extends BaseRepositoryThis java file was created by ramostear in 2020/6/1 0001 18:43. 9 | * The following is the description information about this file:
10 | *description:
11 | */ 12 | public interface ThemeRepository extends BaseRepositoryThis java file was created by ramostear in 2020/6/30 0030 3:07. 12 | * The following is the description information about this file:
13 | *description:
14 | */ 15 | public interface ArchiveService { 16 | ListThis java file was created by ramostear in 2020/6/3 0003 19:45. 9 | * The following is the description information about this file:
10 | *description:
11 | */ 12 | public interface LinkService extends BaseService { 13 | } 14 | -------------------------------------------------------------------------------- /src/main/java/com/ramostear/unaboot/service/OperLogService.java: -------------------------------------------------------------------------------- 1 | package com.ramostear.unaboot.service; 2 | 3 | import com.ramostear.unaboot.domain.entity.OperLog; 4 | 5 | /** 6 | * @author : ramostear/树下魅狐 7 | * @version : Una-Boot-1.3.0 8 | *This java file was created by ramostear in 2020/7/22 0022 13:13. 9 | * The following is the description information about this file:
10 | *description:
11 | */ 12 | public interface OperLogService extends BaseServiceThis java file was created by ramostear in 2020/6/2 0002 14:23. 9 | * The following is the description information about this file:
10 | *description:
11 | */ 12 | public interface TagService extends BaseServiceThis java file was created by ramostear in 2020/6/2 0002 15:16. 7 | * The following is the description information about this file:
8 | *description:
9 | */ 10 | public interface TaskService { 11 | 12 | void publishPost(String params); 13 | 14 | void refreshIndex(String params); 15 | 16 | void removeCache(String params); 17 | } 18 | -------------------------------------------------------------------------------- /src/main/resources/cdn.properties: -------------------------------------------------------------------------------- 1 | qiniu.domain=https://cdn.ramostear.com/ 2 | qiniu.secretKey=wDfG0HitwySBSzxO4tkk2bSEXqUf3hFoKzWfZ4T0 3 | qiniu.accessKey=QX_odtXusLWxjFdN9EK_XIfIWfD0km39ZT-AUEUl 4 | qiniu.bucket=rt-store-img 5 | qiniu.enabled=true 6 | qiniu.zone=z0 -------------------------------------------------------------------------------- /src/main/resources/mysql.properties: -------------------------------------------------------------------------------- 1 | #url=jdbc:mysql://localhost:3306/db_unaboot?useUnicode=true&useSSL=false&characterEncoding=utf8 2 | #username=root 3 | #password=root 4 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/ionicons.eot -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/ionicons.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/ionicons.woff -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/material-icon/fonts/Material-Design-Iconic-Font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/material-icon/fonts/Material-Design-Iconic-Font.eot -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/material-icon/fonts/Material-Design-Iconic-Font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/material-icon/fonts/Material-Design-Iconic-Font.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/material-icon/fonts/Material-Design-Iconic-Font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/material-icon/fonts/Material-Design-Iconic-Font.woff -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/material-icon/fonts/Material-Design-Iconic-Font.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/material-icon/fonts/Material-Design-Iconic-Font.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/montserrat/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/montserrat/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/montserrat/Montserrat-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/montserrat/Montserrat-BoldItalic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/montserrat/Montserrat-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/montserrat/Montserrat-ExtraLight.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/montserrat/Montserrat-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/montserrat/Montserrat-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/montserrat/Montserrat-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/montserrat/Montserrat-Italic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/montserrat/Montserrat-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/montserrat/Montserrat-Light.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/montserrat/Montserrat-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/montserrat/Montserrat-Medium.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/montserrat/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/montserrat/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/montserrat/Montserrat-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/montserrat/Montserrat-SemiBold.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/montserrat/montserrat-v12-latin-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/montserrat/montserrat-v12-latin-900.eot -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/montserrat/montserrat-v12-latin-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/montserrat/montserrat-v12-latin-900.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/montserrat/montserrat-v12-latin-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/montserrat/montserrat-v12-latin-900.woff -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/montserrat/montserrat-v12-latin-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/montserrat/montserrat-v12-latin-900.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/muli/Muli-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/muli/Muli-Black.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/muli/Muli-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/muli/Muli-BlackItalic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/muli/Muli-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/muli/Muli-Bold.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/muli/Muli-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/muli/Muli-BoldItalic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/muli/Muli-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/muli/Muli-ExtraBold.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/muli/Muli-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/muli/Muli-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/muli/Muli-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/muli/Muli-ExtraLight.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/muli/Muli-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/muli/Muli-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/muli/Muli-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/muli/Muli-Italic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/muli/Muli-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/muli/Muli-Light.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/muli/Muli-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/muli/Muli-LightItalic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/muli/Muli-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/muli/Muli-Regular.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/muli/Muli-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/muli/Muli-SemiBold.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/muli/Muli-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/muli/Muli-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-300.eot -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-300.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-300.woff -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-300.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-300italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-300italic.eot -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-300italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-300italic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-300italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-300italic.woff -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-300italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-300italic.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-500.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-500.eot -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-500.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-500.woff -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-500.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-500italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-500italic.eot -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-500italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-500italic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-500italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-500italic.woff -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-500italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-500italic.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-600.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-600.eot -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-600.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-600.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-600.woff -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-600.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-700.eot -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-700.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-700.woff -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-700.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-700italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-700italic.eot -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-700italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-700italic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-700italic.woff -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-700italic.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-800.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-800.eot -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-800.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-800.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-800.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-800.woff -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-800.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-800italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-800italic.eot -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-800italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-800italic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-800italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-800italic.woff -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-800italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-800italic.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-900.eot -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-900.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-900.woff -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-900.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-italic.eot -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-italic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-italic.woff -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-italic.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-regular.eot -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-regular.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-regular.woff -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/poppins-v5-latin-regular.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-700.eot -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-700.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-700.woff -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-700.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-700italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-700italic.eot -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-700italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-700italic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-700italic.woff -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-700italic.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-italic.eot -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-italic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-italic.woff -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-italic.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-regular.eot -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-regular.ttf -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-regular.woff -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/fonts/poppins/roboto-condensed-v16-latin-regular.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/img/UnaBoot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/img/UnaBoot.gif -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/img/avatar-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/img/avatar-128x128.png -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/img/avatar-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/img/avatar-32x32.png -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/img/avatar-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/img/avatar-64x64.png -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/img/favicon.png -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/img/gitalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/img/gitalk.png -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/img/qiniu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/img/qiniu.png -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/img/thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/img/thumb.jpg -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/img/una-logo-max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramostear/UnaBoot/83dd172cd67c715311086be58c799659930e2bc0/src/main/resources/static/ub-admin/img/una-logo-max.png -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/js/main.js: -------------------------------------------------------------------------------- 1 | eval(function(p,a,c,k,e,d){e=function(c){return(c35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)d[e(c)]=k[c]||e(c);k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1;};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p;}('$(j(){8 c=$("<3 1=\\"2\\">\\0"+" k - f\\0"+" 3>");$("g").h(c)});',21,21,'n|class|copyright|div|fa|com|https|target|const|href||ramostear||www|_0|UnaBoot|body|append||function|2020'.split('|'),0,{})) 2 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/ext-error_marker.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/ext/error_marker"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/mode-text.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/mode/text"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/abap.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/abap",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "abap"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/abap"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/ada.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/ada",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "ada"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/ada"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/apache_conf.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/apache_conf",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "apache_conf"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/apache_conf"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/apex.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/apex",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "apex"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/apex"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/applescript.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/applescript",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "applescript"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/applescript"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/aql.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/aql",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "aql"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/aql"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/asciidoc.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/asciidoc",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "asciidoc"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/asciidoc"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/asl.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/asl",["require","exports","module"], function (require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "asl"; 6 | }); (function() { 7 | window.require(["ace/snippets/asl"], function(m) { 8 | if (typeof module == "object" && typeof exports == "object" && module) { 9 | module.exports = m; 10 | } 11 | }); 12 | })(); 13 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/assembly_x86.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/assembly_x86",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "assembly_x86"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/assembly_x86"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/autohotkey.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/autohotkey",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "autohotkey"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/autohotkey"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/batchfile.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/batchfile",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "batchfile"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/batchfile"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/bro.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/bro",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = ""; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/bro"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/c9search.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/c9search",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "c9search"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/c9search"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/cirru.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/cirru",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "cirru"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/cirru"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/cobol.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/cobol",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "cobol"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/cobol"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/coldfusion.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/coldfusion",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "coldfusion"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/coldfusion"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/crystal.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/crystal",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "crystal"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/crystal"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/csharp.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/csharp",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "csharp"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/csharp"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/csound_score.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/csound_score",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "csound_score"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/csound_score"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/csp.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/csp",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = ""; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/csp"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/curly.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/curly",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "curly"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/curly"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/d.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/d",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "d"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/d"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/dockerfile.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/dockerfile",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "dockerfile"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/dockerfile"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/dot.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/dot",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "dot"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/dot"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/eiffel.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/eiffel",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "eiffel"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/eiffel"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/ejs.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/ejs",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "ejs"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/ejs"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/elixir.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/elixir",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = ""; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/elixir"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/elm.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/elm",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "elm"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/elm"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/forth.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/forth",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "forth"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/forth"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/fortran.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/fortran",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "fortran"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/fortran"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/fsharp.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/fsharp",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "fsharp"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/fsharp"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/fsl.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/fsl",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = ""; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/fsl"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/ftl.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/ftl",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "ftl"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/ftl"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/gcode.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/gcode",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "gcode"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/gcode"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/gherkin.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/gherkin",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "gherkin"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/gherkin"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/gitignore.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/gitignore",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "gitignore"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/gitignore"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/glsl.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/glsl",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "glsl"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/glsl"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/golang.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/golang",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "golang"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/golang"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/groovy.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/groovy",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "groovy"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/groovy"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/handlebars.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/handlebars",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "handlebars"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/handlebars"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/haskell_cabal.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/haskell_cabal",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "haskell_cabal"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/haskell_cabal"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/haxe.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/haxe",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "haxe"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/haxe"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/hjson.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/hjson",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = ""; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/hjson"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/html_elixir.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/html_elixir",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "html_elixir"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/html_elixir"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/html_ruby.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/html_ruby",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "html_ruby"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/html_ruby"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/ini.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/ini",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "ini"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/ini"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/jack.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/jack",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "jack"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/jack"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/jade.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/jade",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "jade"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/jade"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/json.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/json",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "json"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/json"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/json5.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/json5",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "json5"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/json5"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/jssm.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/jssm",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = ""; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/jssm"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/jsx.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/jsx",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "jsx"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/jsx"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/julia.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/julia",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "julia"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/julia"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/kotlin.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/kotlin",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = ""; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/kotlin"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/latex.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/latex",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "latex"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/latex"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/less.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/less",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "less"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/less"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/lisp.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/lisp",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "lisp"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/lisp"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/livescript.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/livescript",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "livescript"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/livescript"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/logiql.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/logiql",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "logiql"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/logiql"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/logtalk.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/logtalk",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "logtalk"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/logtalk"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/luapage.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/luapage",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "luapage"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/luapage"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/lucene.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/lucene",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "lucene"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/lucene"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/mask.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/mask",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "mask"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/mask"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/matlab.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/matlab",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "matlab"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/matlab"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/mel.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/mel",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "mel"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/mel"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/mixal.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/mixal",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "mixal"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/mixal"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/mushcode.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/mushcode",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "mushcode"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/mushcode"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/mysql.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/mysql",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "mysql"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/mysql"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/nginx.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/nginx",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "nginx"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/nginx"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/nim.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/nim",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "nim"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/nim"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/nix.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/nix",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "nix"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/nix"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/nsis.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/nsis",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = ""; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/nsis"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/nunjucks.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/nunjucks",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "nunjucks"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/nunjucks"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/objectivec.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/objectivec",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "objectivec"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/objectivec"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/ocaml.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/ocaml",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "ocaml"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/ocaml"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/pascal.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/pascal",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "pascal"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/pascal"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/perl6.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/perl6",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "perl6"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/perl6"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/pgsql.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/pgsql",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "pgsql"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/pgsql"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/php_laravel_blade.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/php_laravel_blade",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "php"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/php_laravel_blade"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/pig.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/pig",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "pig"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/pig"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/plain_text.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/plain_text",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "plain_text"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/plain_text"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/powershell.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/powershell",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "powershell"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/powershell"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/praat.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/praat",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "praat"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/praat"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/prolog.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/prolog",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "prolog"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/prolog"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/properties.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/properties",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "properties"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/properties"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/protobuf.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/protobuf",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText = ""; 5 | exports.scope = "protobuf"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/protobuf"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/puppet.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/puppet",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "puppet"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/puppet"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/razor.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/razor",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText = "snippet if\n\ 5 | (${1} == ${2}) {\n\ 6 | ${3}\n\ 7 | }"; 8 | exports.scope = "razor"; 9 | 10 | }); (function() { 11 | window.require(["ace/snippets/razor"], function(m) { 12 | if (typeof module == "object" && typeof exports == "object" && module) { 13 | module.exports = m; 14 | } 15 | }); 16 | })(); 17 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/rdoc.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/rdoc",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "rdoc"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/rdoc"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/red.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/red",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText = " "; 5 | exports.scope = "red"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/red"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/redshift.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/redshift",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "redshift"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/redshift"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/rhtml.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/rhtml",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "rhtml"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/rhtml"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/rust.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/rust",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "rust"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/rust"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/sass.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/sass",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "sass"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/sass"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/scad.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/scad",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "scad"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/scad"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/scala.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/scala",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "scala"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/scala"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/scheme.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/scheme",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "scheme"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/scheme"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/scss.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/scss",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "scss"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/scss"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/sjs.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/sjs",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "sjs"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/sjs"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/slim.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/slim",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "slim"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/slim"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/smarty.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/smarty",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "smarty"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/smarty"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/soy_template.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/soy_template",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "soy_template"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/soy_template"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/space.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/space",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "space"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/space"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/sparql.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/sparql",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = ""; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/sparql"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/stylus.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/stylus",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "stylus"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/stylus"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/svg.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/svg",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "svg"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/svg"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/swift.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/swift",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "swift"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/swift"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/terraform.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/terraform",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "terraform"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/terraform"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/text.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/text",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "text"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/text"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/toml.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/toml",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "toml"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/toml"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/tsx.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/tsx",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "tsx"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/tsx"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/turtle.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/turtle",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = ""; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/turtle"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/twig.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/twig",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "twig"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/twig"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/typescript.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/typescript",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "typescript"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/typescript"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/vbscript.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/vbscript",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "vbscript"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/vbscript"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/verilog.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/verilog",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "verilog"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/verilog"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/vhdl.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/vhdl",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "vhdl"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/vhdl"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/visualforce.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/visualforce",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "visualforce"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/visualforce"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/xml.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/xml",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "xml"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/xml"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/yaml.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/yaml",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = "yaml"; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/yaml"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ace-1.4.8/snippets/zeek.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/zeek",["require","exports","module"], function(require, exports, module) { 2 | "use strict"; 3 | 4 | exports.snippetText =undefined; 5 | exports.scope = ""; 6 | 7 | }); (function() { 8 | window.require(["ace/snippets/zeek"], function(m) { 9 | if (typeof module == "object" && typeof exports == "object" && module) { 10 | module.exports = m; 11 | } 12 | }); 13 | })(); 14 | -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ckeditor5/translations/bg.js: -------------------------------------------------------------------------------- 1 | (function(d){ const l = d['bg'] = d['bg'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Block quote":"Цитат",Bold:"Удебелен",Cancel:"Отказ","Choose heading":"",Code:"",Heading:"","Heading 1":"","Heading 2":"","Heading 3":"","Heading 4":"","Heading 5":"","Heading 6":"",Italic:"Курсив",Paragraph:"Параграф","Remove color":"",Save:"Запазване",Strikethrough:"",Underline:""} );l.getPluralForm=function(n){return (n != 1);;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ckeditor5/translations/gu.js: -------------------------------------------------------------------------------- 1 | (function(d){ const l = d['gu'] = d['gu'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Block quote":" વિચાર ટાંકો",Bold:"ઘાટુ - બોલ્ડ્","Cannot upload file:":"ફાઇલ અપલોડ ન થઇ શકી",Code:"",Italic:"ત્રાંસુ - ઇટલિક્",Strikethrough:"",Underline:"નીચે લિટી - અન્ડરલાઇન્"} );l.getPluralForm=function(n){return (n != 1);;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ckeditor5/translations/ms.js: -------------------------------------------------------------------------------- 1 | (function(d){ const l = d['ms'] = d['ms'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {"Cannot upload file:":"Gagal memuat naik fail"} );l.getPluralForm=function(n){return 0;;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ckeditor5/translations/oc.js: -------------------------------------------------------------------------------- 1 | (function(d){ const l = d['oc'] = d['oc'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {Bold:"Gras",Cancel:"Anullar",Code:"",Italic:"Italica","Remove color":"",Save:"Enregistrar",Strikethrough:"",Underline:""} );l.getPluralForm=function(n){return (n > 1);;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/ckeditor5/translations/tt.js: -------------------------------------------------------------------------------- 1 | (function(d){ const l = d['tt'] = d['tt'] || {}; l.dictionary=Object.assign( l.dictionary||{}, {Bold:"Калын",Cancel:"",Code:"Код",Italic:"",Redo:"Кабатла","Remove color":"",Save:"Сакла",Strikethrough:"",Underline:"",Undo:""} );l.getPluralForm=function(n){return 0;;};})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/resources/static/ub-admin/plugin/editormd/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "editor.md", 3 | "version": "1.5.0", 4 | "homepage": "https://github.com/pandao/editor.md", 5 | "authors": [ 6 | "Pandao