From 8c5922af7d6e8df316a6b1a3186954e85a88665b Mon Sep 17 00:00:00 2001 From: windy <1374721899@qq.com> Date: Tue, 10 Sep 2019 17:05:16 +0800 Subject: [PATCH] Frist Commit --- .idea/ant.xml | 6 + .idea/compiler.xml | 16 + .idea/encodings.xml | 6 + .idea/libraries/BI5_1_spider_jar_jdk1.xml | 13 + .idea/misc.xml | 13 + .idea/modules.xml | 8 + .idea/uiDesigner.xml | 124 ++ .idea/vcs.xml | 6 + .idea/workspace.xml | 1201 +++++++++++++++++ build.xml | 152 +++ fr-plugin-specific_dashboard_style-1.0.0.jar | Bin 0 -> 134524 bytes ...-plugin-specific_dashboard_style-1.0.0.jar | Bin 0 -> 134524 bytes .../plugin.xml | 20 + lib/report/.gitkeep | 0 plugin-specific-dashboard-style.iml | 15 + plugin.xml | 20 + pom.xml | 20 + readme.md | 3 + .../SpecificDashboardStyleComponent.java | 30 + .../plugin/SpecificDashboardStylePreview.java | 22 + .../plugin/SpecificDashboardStyleProcess.java | 22 + .../SpecificDashboardStyleLocaleFinder.java | 9 + .../com/finebi/plugin/web/font/body.ttf | Bin 0 -> 154328 bytes .../com/finebi/plugin/web/font/header.ttf | Bin 0 -> 130496 bytes .../plugin/web/i18n/user_guide.properties | 32 + .../web/i18n/user_guide_en_US.properties | 32 + .../web/i18n/user_guide_ja_JP.properties | 32 + .../web/i18n/user_guide_ko_KR.properties | 32 + .../web/i18n/user_guide_zh_CN.properties | 32 + .../web/i18n/user_guide_zh_TW.properties | 32 + .../com/finebi/plugin/web/scripts/entry.js | 35 + .../com/finebi/plugin/web/specific_style.css | 13 + .../com/finebi/plugin/web/specific_style.js | 35 + .../com/finebi/plugin/web/styles/entry.css | 13 + 34 files changed, 1994 insertions(+) create mode 100644 .idea/ant.xml create mode 100644 .idea/compiler.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/libraries/BI5_1_spider_jar_jdk1.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/uiDesigner.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml create mode 100644 build.xml create mode 100644 fr-plugin-specific_dashboard_style-1.0.0.jar create mode 100644 fr-plugin-specific_dashboard_style-1.0.0/fr-plugin-specific_dashboard_style-1.0.0.jar create mode 100644 fr-plugin-specific_dashboard_style-1.0.0/plugin.xml create mode 100644 lib/report/.gitkeep create mode 100644 plugin-specific-dashboard-style.iml create mode 100644 plugin.xml create mode 100644 pom.xml create mode 100644 readme.md create mode 100644 src/main/java/com/finebi/plugin/SpecificDashboardStyleComponent.java create mode 100644 src/main/java/com/finebi/plugin/SpecificDashboardStylePreview.java create mode 100644 src/main/java/com/finebi/plugin/SpecificDashboardStyleProcess.java create mode 100644 src/main/java/com/finebi/plugin/locale/SpecificDashboardStyleLocaleFinder.java create mode 100644 src/main/resources/com/finebi/plugin/web/font/body.ttf create mode 100644 src/main/resources/com/finebi/plugin/web/font/header.ttf create mode 100644 src/main/resources/com/finebi/plugin/web/i18n/user_guide.properties create mode 100644 src/main/resources/com/finebi/plugin/web/i18n/user_guide_en_US.properties create mode 100644 src/main/resources/com/finebi/plugin/web/i18n/user_guide_ja_JP.properties create mode 100644 src/main/resources/com/finebi/plugin/web/i18n/user_guide_ko_KR.properties create mode 100644 src/main/resources/com/finebi/plugin/web/i18n/user_guide_zh_CN.properties create mode 100644 src/main/resources/com/finebi/plugin/web/i18n/user_guide_zh_TW.properties create mode 100644 src/main/resources/com/finebi/plugin/web/scripts/entry.js create mode 100644 src/main/resources/com/finebi/plugin/web/specific_style.css create mode 100644 src/main/resources/com/finebi/plugin/web/specific_style.js create mode 100644 src/main/resources/com/finebi/plugin/web/styles/entry.css diff --git a/.idea/ant.xml b/.idea/ant.xml new file mode 100644 index 0000000..a2a4769 --- /dev/null +++ b/.idea/ant.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..0dce9ba --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..083d874 --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/libraries/BI5_1_spider_jar_jdk1.xml b/.idea/libraries/BI5_1_spider_jar_jdk1.xml new file mode 100644 index 0000000..5912bab --- /dev/null +++ b/.idea/libraries/BI5_1_spider_jar_jdk1.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..9524945 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,13 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..1d138ce --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml new file mode 100644 index 0000000..e96534f --- /dev/null +++ b/.idea/uiDesigner.xml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..8cb9abc --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,1201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + concat + UserGuideComponent + Plugin + bi.user_guide_widget + concat_css + e7c1 + iconfont.eot iconfont.svg iconfont.ttf iconfont.woff iconfont.woff2 + user-guide-font + tipBubble + showGuideEntryTip + createWelcomeGuide + ${css-path} + css-path + BI-User_Guide_Need_Go_Into_User_Guide_Again + BI.Cache. + BI-User_Guide_Exit + user-guide-warning-title + userguide + 新手引导 + user_guide + ad.ttf + header.ttf + + + BI + + + + + + + + + + + true + DEFINITION_ORDER + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +