@proofkit/cli 1.0.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +120 -0
- package/LICENSE.md +21 -0
- package/README.md +19 -0
- package/dist/acorn-AKFTBDM6.js +15 -0
- package/dist/angular-BOQ6FHSU.js +2 -0
- package/dist/babel-ZTOORN7K.js +15 -0
- package/dist/chunk-4LISTI44.js +1 -0
- package/dist/estree-KOJPX4S6.js +36 -0
- package/dist/flow-RCI44GYZ.js +19 -0
- package/dist/glimmer-GV5EF5E4.js +30 -0
- package/dist/graphql-YXQNPQWM.js +29 -0
- package/dist/html-ZAJTRROK.js +22 -0
- package/dist/index.js +300 -0
- package/dist/markdown-Q75DTQI7.js +63 -0
- package/dist/meriyah-32K7GBV5.js +4 -0
- package/dist/postcss-WWYO4PGL.js +54 -0
- package/dist/typescript-M6N7JDNQ.js +20 -0
- package/dist/yaml-LY7PNAYV.js +161 -0
- package/index.d.ts +19 -0
- package/package.json +122 -0
- package/template/extras/_cursor/conditional-rules/nextjs-framework.mdc +51 -0
- package/template/extras/_cursor/conditional-rules/npm.mdc +60 -0
- package/template/extras/_cursor/conditional-rules/pnpm.mdc +65 -0
- package/template/extras/_cursor/conditional-rules/yarn.mdc +60 -0
- package/template/extras/_cursor/rules/cursor-rules.mdc +88 -0
- package/template/extras/_cursor/rules/filemaker-api.mdc +176 -0
- package/template/extras/_cursor/rules/troubleshooting-patterns.mdc +240 -0
- package/template/extras/_cursor/rules/ui-components.mdc +57 -0
- package/template/extras/config/_eslint.js +27 -0
- package/template/extras/config/_prettier.config.js +6 -0
- package/template/extras/config/drizzle-config-mysql.ts +12 -0
- package/template/extras/config/drizzle-config-postgres.ts +12 -0
- package/template/extras/config/drizzle-config-sqlite.ts +12 -0
- package/template/extras/config/fmschema.config.mjs +9 -0
- package/template/extras/config/get-query-client.ts +6 -0
- package/template/extras/config/postcss.config.cjs +7 -0
- package/template/extras/config/query-provider-vite.tsx +19 -0
- package/template/extras/config/query-provider.tsx +21 -0
- package/template/extras/emailProviders/none/email.tsx +24 -0
- package/template/extras/emailProviders/plunk/email.tsx +26 -0
- package/template/extras/emailProviders/plunk/service.ts +4 -0
- package/template/extras/emailProviders/resend/email.tsx +23 -0
- package/template/extras/emailProviders/resend/service.ts +4 -0
- package/template/extras/fmaddon-auth/app/(main)/auth/profile/actions.ts +93 -0
- package/template/extras/fmaddon-auth/app/(main)/auth/profile/page.tsx +27 -0
- package/template/extras/fmaddon-auth/app/(main)/auth/profile/profile-form.tsx +56 -0
- package/template/extras/fmaddon-auth/app/(main)/auth/profile/reset-password-form.tsx +110 -0
- package/template/extras/fmaddon-auth/app/(main)/auth/profile/schema.ts +19 -0
- package/template/extras/fmaddon-auth/app/auth/forgot-password/actions.ts +37 -0
- package/template/extras/fmaddon-auth/app/auth/forgot-password/forgot-form.tsx +41 -0
- package/template/extras/fmaddon-auth/app/auth/forgot-password/page.tsx +21 -0
- package/template/extras/fmaddon-auth/app/auth/forgot-password/schema.ts +5 -0
- package/template/extras/fmaddon-auth/app/auth/login/actions.ts +34 -0
- package/template/extras/fmaddon-auth/app/auth/login/login-form.tsx +64 -0
- package/template/extras/fmaddon-auth/app/auth/login/page.tsx +26 -0
- package/template/extras/fmaddon-auth/app/auth/login/schema.ts +6 -0
- package/template/extras/fmaddon-auth/app/auth/reset-password/actions.ts +50 -0
- package/template/extras/fmaddon-auth/app/auth/reset-password/page.tsx +32 -0
- package/template/extras/fmaddon-auth/app/auth/reset-password/reset-password-form.tsx +59 -0
- package/template/extras/fmaddon-auth/app/auth/reset-password/schema.ts +14 -0
- package/template/extras/fmaddon-auth/app/auth/reset-password/verify-email/actions.ts +45 -0
- package/template/extras/fmaddon-auth/app/auth/reset-password/verify-email/page.tsx +32 -0
- package/template/extras/fmaddon-auth/app/auth/reset-password/verify-email/schema.ts +5 -0
- package/template/extras/fmaddon-auth/app/auth/reset-password/verify-email/verify-email-form.tsx +48 -0
- package/template/extras/fmaddon-auth/app/auth/signup/actions.ts +49 -0
- package/template/extras/fmaddon-auth/app/auth/signup/page.tsx +26 -0
- package/template/extras/fmaddon-auth/app/auth/signup/schema.ts +12 -0
- package/template/extras/fmaddon-auth/app/auth/signup/signup-form.tsx +67 -0
- package/template/extras/fmaddon-auth/app/auth/verify-email/actions.ts +110 -0
- package/template/extras/fmaddon-auth/app/auth/verify-email/email-verification-form.tsx +45 -0
- package/template/extras/fmaddon-auth/app/auth/verify-email/page.tsx +38 -0
- package/template/extras/fmaddon-auth/app/auth/verify-email/resend-button.tsx +35 -0
- package/template/extras/fmaddon-auth/app/auth/verify-email/schema.ts +5 -0
- package/template/extras/fmaddon-auth/components/auth/actions.ts +16 -0
- package/template/extras/fmaddon-auth/components/auth/protect.tsx +17 -0
- package/template/extras/fmaddon-auth/components/auth/redirect.tsx +26 -0
- package/template/extras/fmaddon-auth/components/auth/use-user.ts +59 -0
- package/template/extras/fmaddon-auth/components/auth/user-menu.tsx +51 -0
- package/template/extras/fmaddon-auth/emails/auth-code.tsx +156 -0
- package/template/extras/fmaddon-auth/middleware.ts +45 -0
- package/template/extras/fmaddon-auth/server/auth/utils/email-verification.ts +136 -0
- package/template/extras/fmaddon-auth/server/auth/utils/encryption.ts +51 -0
- package/template/extras/fmaddon-auth/server/auth/utils/index.ts +16 -0
- package/template/extras/fmaddon-auth/server/auth/utils/password-reset.ts +152 -0
- package/template/extras/fmaddon-auth/server/auth/utils/password.ts +67 -0
- package/template/extras/fmaddon-auth/server/auth/utils/redirect.ts +8 -0
- package/template/extras/fmaddon-auth/server/auth/utils/session.ts +192 -0
- package/template/extras/fmaddon-auth/server/auth/utils/user.ts +147 -0
- package/template/extras/prisma/schema/base-planetscale.prisma +24 -0
- package/template/extras/prisma/schema/base.prisma +20 -0
- package/template/extras/prisma/schema/with-auth-planetscale.prisma +77 -0
- package/template/extras/prisma/schema/with-auth.prisma +74 -0
- package/template/extras/src/app/_components/post-tw.tsx +50 -0
- package/template/extras/src/app/_components/post.tsx +54 -0
- package/template/extras/src/app/api/auth/[...nextauth]/route.ts +4 -0
- package/template/extras/src/app/api/trpc/[trpc]/route.ts +34 -0
- package/template/extras/src/app/clerk-auth/layout.tsx +10 -0
- package/template/extras/src/app/clerk-auth/signin/[[...sign-in]]/page.tsx +5 -0
- package/template/extras/src/app/clerk-auth/signup/[[...sign-up]]/page.tsx +5 -0
- package/template/extras/src/app/layout/base.tsx +34 -0
- package/template/extras/src/app/layout/main-shell.tsx +37 -0
- package/template/extras/src/app/layout/with-trpc-tw.tsx +24 -0
- package/template/extras/src/app/layout/with-trpc.tsx +24 -0
- package/template/extras/src/app/layout/with-tw.tsx +20 -0
- package/template/extras/src/app/next-auth/layout.tsx +22 -0
- package/template/extras/src/app/next-auth/signin/page.tsx +82 -0
- package/template/extras/src/app/next-auth/signup/action.ts +24 -0
- package/template/extras/src/app/next-auth/signup/page.tsx +40 -0
- package/template/extras/src/app/next-auth/signup/validation.ts +12 -0
- package/template/extras/src/app/page/base.tsx +6 -0
- package/template/extras/src/app/page/with-auth-trpc-tw.tsx +67 -0
- package/template/extras/src/app/page/with-auth-trpc.tsx +68 -0
- package/template/extras/src/app/page/with-trpc-tw.tsx +53 -0
- package/template/extras/src/app/page/with-trpc.tsx +54 -0
- package/template/extras/src/app/page/with-tw.tsx +37 -0
- package/template/extras/src/components/clerk-auth/clerk-provider.tsx +18 -0
- package/template/extras/src/components/clerk-auth/user-menu-mobile.tsx +36 -0
- package/template/extras/src/components/clerk-auth/user-menu.tsx +24 -0
- package/template/extras/src/components/next-auth/next-auth-provider.tsx +14 -0
- package/template/extras/src/components/next-auth/user-menu-mobile.tsx +31 -0
- package/template/extras/src/components/next-auth/user-menu.tsx +38 -0
- package/template/extras/src/env/with-auth.ts +31 -0
- package/template/extras/src/env/with-clerk.ts +20 -0
- package/template/extras/src/index.module.css +177 -0
- package/template/extras/src/middleware/clerk.ts +20 -0
- package/template/extras/src/middleware/next-auth.ts +5 -0
- package/template/extras/src/pages/_app/base.tsx +14 -0
- package/template/extras/src/pages/_app/with-auth-trpc-tw.tsx +23 -0
- package/template/extras/src/pages/_app/with-auth-trpc.tsx +23 -0
- package/template/extras/src/pages/_app/with-auth-tw.tsx +21 -0
- package/template/extras/src/pages/_app/with-auth.tsx +21 -0
- package/template/extras/src/pages/_app/with-trpc-tw.tsx +16 -0
- package/template/extras/src/pages/_app/with-trpc.tsx +16 -0
- package/template/extras/src/pages/_app/with-tw.tsx +14 -0
- package/template/extras/src/pages/api/auth/[...nextauth].ts +5 -0
- package/template/extras/src/pages/api/trpc/[trpc].ts +19 -0
- package/template/extras/src/pages/index/base.tsx +47 -0
- package/template/extras/src/pages/index/with-auth-trpc-tw.tsx +80 -0
- package/template/extras/src/pages/index/with-auth-trpc.tsx +81 -0
- package/template/extras/src/pages/index/with-trpc-tw.tsx +52 -0
- package/template/extras/src/pages/index/with-trpc.tsx +53 -0
- package/template/extras/src/pages/index/with-tw.tsx +45 -0
- package/template/extras/src/server/api/root.ts +23 -0
- package/template/extras/src/server/api/routers/post/base.ts +40 -0
- package/template/extras/src/server/api/routers/post/with-auth-drizzle.ts +39 -0
- package/template/extras/src/server/api/routers/post/with-auth-prisma.ts +41 -0
- package/template/extras/src/server/api/routers/post/with-auth.ts +37 -0
- package/template/extras/src/server/api/routers/post/with-drizzle.ts +30 -0
- package/template/extras/src/server/api/routers/post/with-prisma.ts +31 -0
- package/template/extras/src/server/api/trpc-app/base.ts +103 -0
- package/template/extras/src/server/api/trpc-app/with-auth-db.ts +133 -0
- package/template/extras/src/server/api/trpc-app/with-auth.ts +130 -0
- package/template/extras/src/server/api/trpc-app/with-db.ts +106 -0
- package/template/extras/src/server/api/trpc-pages/base.ts +122 -0
- package/template/extras/src/server/api/trpc-pages/with-auth-db.ts +160 -0
- package/template/extras/src/server/api/trpc-pages/with-auth.ts +158 -0
- package/template/extras/src/server/api/trpc-pages/with-db.ts +125 -0
- package/template/extras/src/server/data/users.ts +23 -0
- package/template/extras/src/server/db/db-prisma-planetscale.ts +22 -0
- package/template/extras/src/server/db/db-prisma.ts +17 -0
- package/template/extras/src/server/db/index-drizzle/with-mysql.ts +18 -0
- package/template/extras/src/server/db/index-drizzle/with-planetscale.ts +7 -0
- package/template/extras/src/server/db/index-drizzle/with-postgres.ts +18 -0
- package/template/extras/src/server/db/index-drizzle/with-sqlite.ts +19 -0
- package/template/extras/src/server/db/schema-drizzle/base-mysql.ts +34 -0
- package/template/extras/src/server/db/schema-drizzle/base-planetscale.ts +34 -0
- package/template/extras/src/server/db/schema-drizzle/base-postgres.ts +36 -0
- package/template/extras/src/server/db/schema-drizzle/base-sqlite.ts +30 -0
- package/template/extras/src/server/db/schema-drizzle/with-auth-mysql.ts +123 -0
- package/template/extras/src/server/db/schema-drizzle/with-auth-planetscale.ts +117 -0
- package/template/extras/src/server/db/schema-drizzle/with-auth-postgres.ts +130 -0
- package/template/extras/src/server/db/schema-drizzle/with-auth-sqlite.ts +116 -0
- package/template/extras/src/server/next-auth/base.ts +111 -0
- package/template/extras/src/server/next-auth/password.ts +13 -0
- package/template/extras/src/server/next-auth/with-drizzle.ts +83 -0
- package/template/extras/src/server/next-auth/with-prisma.ts +72 -0
- package/template/extras/src/trpc/query-client.ts +25 -0
- package/template/extras/src/trpc/react.tsx +76 -0
- package/template/extras/src/trpc/server.ts +30 -0
- package/template/extras/src/utils/api.ts +68 -0
- package/template/extras/start-database/mysql.sh +54 -0
- package/template/extras/start-database/postgres.sh +55 -0
- package/template/fm-addon/ProofKitAuth/de.xml +518 -0
- package/template/fm-addon/ProofKitAuth/en.xml +518 -0
- package/template/fm-addon/ProofKitAuth/es.xml +518 -0
- package/template/fm-addon/ProofKitAuth/fr.xml +518 -0
- package/template/fm-addon/ProofKitAuth/icon.png +0 -0
- package/template/fm-addon/ProofKitAuth/icon@2x.png +0 -0
- package/template/fm-addon/ProofKitAuth/info.json +11 -0
- package/template/fm-addon/ProofKitAuth/info_de.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_en.json +8 -0
- package/template/fm-addon/ProofKitAuth/info_es.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_fr.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_it.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_ja.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_ko.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_nl.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_pt.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_sv.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_zh.json +18 -0
- package/template/fm-addon/ProofKitAuth/it.xml +518 -0
- package/template/fm-addon/ProofKitAuth/ja.xml +518 -0
- package/template/fm-addon/ProofKitAuth/ko.xml +518 -0
- package/template/fm-addon/ProofKitAuth/nl.xml +518 -0
- package/template/fm-addon/ProofKitAuth/preview.png +0 -0
- package/template/fm-addon/ProofKitAuth/pt.xml +518 -0
- package/template/fm-addon/ProofKitAuth/sv.xml +518 -0
- package/template/fm-addon/ProofKitAuth/template.xml +0 -0
- package/template/fm-addon/ProofKitAuth/zh.xml +518 -0
- package/template/fm-addon/ProofKitWV/de.xml +896 -0
- package/template/fm-addon/ProofKitWV/en.xml +896 -0
- package/template/fm-addon/ProofKitWV/es.xml +896 -0
- package/template/fm-addon/ProofKitWV/fr.xml +896 -0
- package/template/fm-addon/ProofKitWV/icon.png +0 -0
- package/template/fm-addon/ProofKitWV/icon@2x.png +0 -0
- package/template/fm-addon/ProofKitWV/info.json +11 -0
- package/template/fm-addon/ProofKitWV/info_de.json +18 -0
- package/template/fm-addon/ProofKitWV/info_en.json +11 -0
- package/template/fm-addon/ProofKitWV/info_es.json +18 -0
- package/template/fm-addon/ProofKitWV/info_fr.json +18 -0
- package/template/fm-addon/ProofKitWV/info_it.json +18 -0
- package/template/fm-addon/ProofKitWV/info_ja.json +18 -0
- package/template/fm-addon/ProofKitWV/info_ko.json +18 -0
- package/template/fm-addon/ProofKitWV/info_nl.json +18 -0
- package/template/fm-addon/ProofKitWV/info_pt.json +18 -0
- package/template/fm-addon/ProofKitWV/info_sv.json +18 -0
- package/template/fm-addon/ProofKitWV/info_zh.json +18 -0
- package/template/fm-addon/ProofKitWV/it.xml +896 -0
- package/template/fm-addon/ProofKitWV/ja.xml +896 -0
- package/template/fm-addon/ProofKitWV/ko.xml +896 -0
- package/template/fm-addon/ProofKitWV/nl.xml +896 -0
- package/template/fm-addon/ProofKitWV/preview.png +0 -0
- package/template/fm-addon/ProofKitWV/pt.xml +896 -0
- package/template/fm-addon/ProofKitWV/records_de.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_en.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_es.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_fr.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_it.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_ja.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_ko.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_nl.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_pt.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_sv.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_zh.xml +0 -0
- package/template/fm-addon/ProofKitWV/sv.xml +896 -0
- package/template/fm-addon/ProofKitWV/template.xml +0 -0
- package/template/fm-addon/ProofKitWV/zh.xml +896 -0
- package/template/nextjs/README.md +27 -0
- package/template/nextjs/_gitignore +37 -0
- package/template/nextjs/next.config.ts +12 -0
- package/template/nextjs/package.json +50 -0
- package/template/nextjs/postcss.config.cjs +14 -0
- package/template/nextjs/proofkit.json +1 -0
- package/template/nextjs/public/favicon.ico +0 -0
- package/template/nextjs/public/proofkit.png +0 -0
- package/template/nextjs/src/app/(main)/layout.tsx +6 -0
- package/template/nextjs/src/app/(main)/page.tsx +90 -0
- package/template/nextjs/src/app/layout.tsx +39 -0
- package/template/nextjs/src/app/navigation.tsx +12 -0
- package/template/nextjs/src/components/AppLogo.tsx +6 -0
- package/template/nextjs/src/components/AppShell/internal/AppShell.tsx +21 -0
- package/template/nextjs/src/components/AppShell/internal/Header.module.css +40 -0
- package/template/nextjs/src/components/AppShell/internal/Header.tsx +34 -0
- package/template/nextjs/src/components/AppShell/internal/HeaderMobileMenu.tsx +27 -0
- package/template/nextjs/src/components/AppShell/internal/HeaderNavLink.tsx +31 -0
- package/template/nextjs/src/components/AppShell/internal/config.ts +1 -0
- package/template/nextjs/src/components/AppShell/slot-header-center.tsx +13 -0
- package/template/nextjs/src/components/AppShell/slot-header-left.tsx +23 -0
- package/template/nextjs/src/components/AppShell/slot-header-mobile-content.tsx +43 -0
- package/template/nextjs/src/components/AppShell/slot-header-right.tsx +26 -0
- package/template/nextjs/src/config/env.ts +13 -0
- package/template/nextjs/src/config/theme/globals.css +1 -0
- package/template/nextjs/src/config/theme/mantine-theme.ts +22 -0
- package/template/nextjs/src/server/safe-action.ts +3 -0
- package/template/nextjs/src/utils/notification-helpers.ts +32 -0
- package/template/nextjs/tsconfig.json +40 -0
- package/template/pages/nextjs/blank/page.tsx +5 -0
- package/template/pages/nextjs/table/page.tsx +17 -0
- package/template/pages/nextjs/table/table.tsx +18 -0
- package/template/pages/nextjs/table-edit/actions.ts +23 -0
- package/template/pages/nextjs/table-edit/page.tsx +28 -0
- package/template/pages/nextjs/table-edit/schema.ts +4 -0
- package/template/pages/nextjs/table-edit/table.tsx +43 -0
- package/template/pages/nextjs/table-infinite/actions.ts +62 -0
- package/template/pages/nextjs/table-infinite/page.tsx +11 -0
- package/template/pages/nextjs/table-infinite/query.ts +44 -0
- package/template/pages/nextjs/table-infinite/table.tsx +107 -0
- package/template/pages/nextjs/table-infinite-edit/actions.ts +84 -0
- package/template/pages/nextjs/table-infinite-edit/page.tsx +23 -0
- package/template/pages/nextjs/table-infinite-edit/query.ts +81 -0
- package/template/pages/nextjs/table-infinite-edit/schema.ts +4 -0
- package/template/pages/nextjs/table-infinite-edit/table.tsx +130 -0
- package/template/pages/vite-wv/blank/index.tsx +0 -0
- package/template/pages/vite-wv/table/index.tsx +34 -0
- package/template/pages/vite-wv/table-edit/index.tsx +72 -0
- package/template/vite-wv/.vscode/settings.json +11 -0
- package/template/vite-wv/_gitignore +18 -0
- package/template/vite-wv/index.html +13 -0
- package/template/vite-wv/package.json +52 -0
- package/template/vite-wv/pnpm-lock.yaml +2294 -0
- package/template/vite-wv/postcss.config.cjs +14 -0
- package/template/vite-wv/proofkit.json +1 -0
- package/template/vite-wv/scripts/launch-fm.sh +3 -0
- package/template/vite-wv/scripts/upload.js +21 -0
- package/template/vite-wv/src/components/AppLogo.tsx +5 -0
- package/template/vite-wv/src/components/full-screen-loader.tsx +9 -0
- package/template/vite-wv/src/config/env.ts +16 -0
- package/template/vite-wv/src/config/theme/globals.css +1 -0
- package/template/vite-wv/src/config/theme/mantine-theme.ts +22 -0
- package/template/vite-wv/src/main.tsx +42 -0
- package/template/vite-wv/src/routeTree.gen.ts +111 -0
- package/template/vite-wv/src/routes/__root.tsx +21 -0
- package/template/vite-wv/src/routes/index.tsx +63 -0
- package/template/vite-wv/src/routes/secondary.tsx +28 -0
- package/template/vite-wv/src/utils/notification-helpers.ts +32 -0
- package/template/vite-wv/tsconfig.json +14 -0
- package/template/vite-wv/vite.config.ts +18 -0
|
@@ -0,0 +1,896 @@
|
|
|
1
|
+
|
|
2
|
+
<DynamicTemplateString>
|
|
3
|
+
<StringID>com.fmi.basetable.CBCA67C2335A3818A3C9727057706207</StringID>
|
|
4
|
+
<SourceText>ProofKitWV</SourceText>
|
|
5
|
+
<TargetText>ProofKitWV</TargetText>
|
|
6
|
+
<Comment>com.fmi.basetable.ProofKitWV</Comment>
|
|
7
|
+
</DynamicTemplateString>
|
|
8
|
+
|
|
9
|
+
<DynamicTemplateString>
|
|
10
|
+
<StringID>com.fmi.basetable.field.ProofKitWV::CEF66026AC6A040A2A2F2DCC712C456B</StringID>
|
|
11
|
+
<SourceText>HTML</SourceText>
|
|
12
|
+
<TargetText>HTML</TargetText>
|
|
13
|
+
<Comment>com.fmi.basetable.field.ProofKitWV::HTML</Comment>
|
|
14
|
+
</DynamicTemplateString>
|
|
15
|
+
|
|
16
|
+
<DynamicTemplateString>
|
|
17
|
+
<StringID>com.fmi.calculation.text.01F213BC707E4F9F60B5E7C27F11947E</StringID>
|
|
18
|
+
<SourceText>fn</SourceText>
|
|
19
|
+
<TargetText>fn</TargetText>
|
|
20
|
+
<Comment>com.fmi.calculation.text.fn</Comment>
|
|
21
|
+
</DynamicTemplateString>
|
|
22
|
+
|
|
23
|
+
<DynamicTemplateString>
|
|
24
|
+
<StringID>com.fmi.calculation.text.03E36891B1790CAB1C9D28969AFDBB14</StringID>
|
|
25
|
+
<SourceText>file:///#</SourceText>
|
|
26
|
+
<TargetText>file:///#</TargetText>
|
|
27
|
+
<Comment>com.fmi.calculation.text.file:///#</Comment>
|
|
28
|
+
</DynamicTemplateString>
|
|
29
|
+
|
|
30
|
+
<DynamicTemplateString>
|
|
31
|
+
<StringID>com.fmi.calculation.text.03FD2C4D5BAC1120105C1A664E398946</StringID>
|
|
32
|
+
<SourceText>callback</SourceText>
|
|
33
|
+
<TargetText>callback</TargetText>
|
|
34
|
+
<Comment>com.fmi.calculation.text.callback</Comment>
|
|
35
|
+
</DynamicTemplateString>
|
|
36
|
+
|
|
37
|
+
<DynamicTemplateString>
|
|
38
|
+
<StringID>com.fmi.calculation.text.07FD75C35AEB713C3F6922A0FB81FD01</StringID>
|
|
39
|
+
<SourceText>Server</SourceText>
|
|
40
|
+
<TargetText>Server</TargetText>
|
|
41
|
+
<Comment>com.fmi.calculation.text.Server</Comment>
|
|
42
|
+
</DynamicTemplateString>
|
|
43
|
+
|
|
44
|
+
<DynamicTemplateString>
|
|
45
|
+
<StringID>com.fmi.calculation.text.10A2FCEF94DEADE2D286DDA6EF3ED2DE</StringID>
|
|
46
|
+
<SourceText> style=\"margin:0;position:fixed;top:0;bottom:0,right:0;left:0;width:100%;height:100%;overflow:hidden;\" </SourceText>
|
|
47
|
+
<TargetText> style=\"margin:0;position:fixed;top:0;bottom:0,right:0;left:0;width:100%;height:100%;overflow:hidden;\" </TargetText>
|
|
48
|
+
<Comment>com.fmi.calculation.text. style=\"margin:0;position:fixed;top:0;bottom:0,right:0;left:0;width:100%;height:100%;overflow:hidden;\"</Comment>
|
|
49
|
+
</DynamicTemplateString>
|
|
50
|
+
|
|
51
|
+
<DynamicTemplateString>
|
|
52
|
+
<StringID>com.fmi.calculation.text.1B759226EB6991D1214E639EA673D087</StringID>
|
|
53
|
+
<SourceText>?</SourceText>
|
|
54
|
+
<TargetText>?</TargetText>
|
|
55
|
+
<Comment>com.fmi.calculation.text.?</Comment>
|
|
56
|
+
</DynamicTemplateString>
|
|
57
|
+
|
|
58
|
+
<DynamicTemplateString>
|
|
59
|
+
<StringID>com.fmi.calculation.text.218F38C07108BC07C8C0F9240A5C664B</StringID>
|
|
60
|
+
<SourceText> }</SourceText>
|
|
61
|
+
<TargetText> }</TargetText>
|
|
62
|
+
<Comment>com.fmi.calculation.text. }</Comment>
|
|
63
|
+
</DynamicTemplateString>
|
|
64
|
+
|
|
65
|
+
<DynamicTemplateString>
|
|
66
|
+
<StringID>com.fmi.calculation.text.22FB870EE7AB348C700B68C887AFCC25</StringID>
|
|
67
|
+
<SourceText>{}</SourceText>
|
|
68
|
+
<TargetText>{}</TargetText>
|
|
69
|
+
<Comment>com.fmi.calculation.text.{}</Comment>
|
|
70
|
+
</DynamicTemplateString>
|
|
71
|
+
|
|
72
|
+
<DynamicTemplateString>
|
|
73
|
+
<StringID>com.fmi.calculation.text.233002B9D9961C9125B509A245B9589B</StringID>
|
|
74
|
+
<SourceText> \"message\",</SourceText>
|
|
75
|
+
<TargetText> \"message\",</TargetText>
|
|
76
|
+
<Comment>com.fmi.calculation.text. \"message\",</Comment>
|
|
77
|
+
</DynamicTemplateString>
|
|
78
|
+
|
|
79
|
+
<DynamicTemplateString>
|
|
80
|
+
<StringID>com.fmi.calculation.text.2776CB5D7B6FBD0FD4C6A6AA444A2981</StringID>
|
|
81
|
+
<SourceText> <script></SourceText>
|
|
82
|
+
<TargetText> <script></TargetText>
|
|
83
|
+
<Comment>com.fmi.calculation.text. <script></Comment>
|
|
84
|
+
</DynamicTemplateString>
|
|
85
|
+
|
|
86
|
+
<DynamicTemplateString>
|
|
87
|
+
<StringID>com.fmi.calculation.text.291E43F0C7C648CC5F9F71BB3194C971</StringID>
|
|
88
|
+
<SourceText>web</SourceText>
|
|
89
|
+
<TargetText>web</TargetText>
|
|
90
|
+
<Comment>com.fmi.calculation.text.web</Comment>
|
|
91
|
+
</DynamicTemplateString>
|
|
92
|
+
|
|
93
|
+
<DynamicTemplateString>
|
|
94
|
+
<StringID>com.fmi.calculation.text.2AC373EA360A4D50ED76C2759130555D</StringID>
|
|
95
|
+
<SourceText> <body style=\"padding: 0px; overflow: hidden\"></SourceText>
|
|
96
|
+
<TargetText> <body style=\"padding: 0px; overflow: hidden\"></TargetText>
|
|
97
|
+
<Comment>com.fmi.calculation.text. <body style=\"padding: 0px; overflow: hidden\"></Comment>
|
|
98
|
+
</DynamicTemplateString>
|
|
99
|
+
|
|
100
|
+
<DynamicTemplateString>
|
|
101
|
+
<StringID>com.fmi.calculation.text.2B0F8A29B6D9BC16986F31701A77F93F</StringID>
|
|
102
|
+
<SourceText> if (typeof params === \"string\") {</SourceText>
|
|
103
|
+
<TargetText> if (typeof params === \"string\") {</TargetText>
|
|
104
|
+
<Comment>com.fmi.calculation.text. if (typeof params === \"string\") {</Comment>
|
|
105
|
+
</DynamicTemplateString>
|
|
106
|
+
|
|
107
|
+
<DynamicTemplateString>
|
|
108
|
+
<StringID>com.fmi.calculation.text.3027BC59CD646F09A354171AA2FC5140</StringID>
|
|
109
|
+
<SourceText> function (e) {</SourceText>
|
|
110
|
+
<TargetText> function (e) {</TargetText>
|
|
111
|
+
<Comment>com.fmi.calculation.text. function (e) {</Comment>
|
|
112
|
+
</DynamicTemplateString>
|
|
113
|
+
|
|
114
|
+
<DynamicTemplateString>
|
|
115
|
+
<StringID>com.fmi.calculation.text.30C04A9C55F1B1A63999CFA98C2112FF</StringID>
|
|
116
|
+
<SourceText> };</SourceText>
|
|
117
|
+
<TargetText> };</TargetText>
|
|
118
|
+
<Comment>com.fmi.calculation.text. };</Comment>
|
|
119
|
+
</DynamicTemplateString>
|
|
120
|
+
|
|
121
|
+
<DynamicTemplateString>
|
|
122
|
+
<StringID>com.fmi.calculation.text.3A4BEA1DEFD16FE6EB3D2A6C9093EAE2</StringID>
|
|
123
|
+
<SourceText> </script></SourceText>
|
|
124
|
+
<TargetText> </script></TargetText>
|
|
125
|
+
<Comment>com.fmi.calculation.text. </script></Comment>
|
|
126
|
+
</DynamicTemplateString>
|
|
127
|
+
|
|
128
|
+
<DynamicTemplateString>
|
|
129
|
+
<StringID>com.fmi.calculation.text.46231D675DCF08EA094EBC95E558C9D1</StringID>
|
|
130
|
+
<SourceText> params = JSON.parse(params);</SourceText>
|
|
131
|
+
<TargetText> params = JSON.parse(params);</TargetText>
|
|
132
|
+
<Comment>com.fmi.calculation.text. params = JSON.parse(params);</Comment>
|
|
133
|
+
</DynamicTemplateString>
|
|
134
|
+
|
|
135
|
+
<DynamicTemplateString>
|
|
136
|
+
<StringID>com.fmi.calculation.text.47B3593A183A448A90437004BC646571</StringID>
|
|
137
|
+
<SourceText>You are about to upload a new verison of the inlined HTML to this Addon. Do you want to continue?</SourceText>
|
|
138
|
+
<TargetText>You are about to upload a new verison of the inlined HTML to this Addon. Do you want to continue?</TargetText>
|
|
139
|
+
<Comment>com.fmi.calculation.text.You are about to upload a new verison of the inlined HTML to this Addon. Do you want to continue?</Comment>
|
|
140
|
+
</DynamicTemplateString>
|
|
141
|
+
|
|
142
|
+
<DynamicTemplateString>
|
|
143
|
+
<StringID>com.fmi.calculation.text.481AEB25AD72DC7585BBBC2E4288AA6A</StringID>
|
|
144
|
+
<SourceText> \"</SourceText>
|
|
145
|
+
<TargetText> \"</TargetText>
|
|
146
|
+
<Comment>com.fmi.calculation.text. \"</Comment>
|
|
147
|
+
</DynamicTemplateString>
|
|
148
|
+
|
|
149
|
+
<DynamicTemplateString>
|
|
150
|
+
<StringID>com.fmi.calculation.text.4AC6BA8868A9D055FCCC851659679C46</StringID>
|
|
151
|
+
<SourceText> );</SourceText>
|
|
152
|
+
<TargetText> );</TargetText>
|
|
153
|
+
<Comment>com.fmi.calculation.text. );</Comment>
|
|
154
|
+
</DynamicTemplateString>
|
|
155
|
+
|
|
156
|
+
<DynamicTemplateString>
|
|
157
|
+
<StringID>com.fmi.calculation.text.50B195ED2E968D0C63A2D6C9B1204487</StringID>
|
|
158
|
+
<SourceText> data: data,</SourceText>
|
|
159
|
+
<TargetText> data: data,</TargetText>
|
|
160
|
+
<Comment>com.fmi.calculation.text. data: data,</Comment>
|
|
161
|
+
</DynamicTemplateString>
|
|
162
|
+
|
|
163
|
+
<DynamicTemplateString>
|
|
164
|
+
<StringID>com.fmi.calculation.text.52C3DFF69657FB45C9E0A2BC11F34373</StringID>
|
|
165
|
+
<SourceText> return;</SourceText>
|
|
166
|
+
<TargetText> return;</TargetText>
|
|
167
|
+
<Comment>com.fmi.calculation.text. return;</Comment>
|
|
168
|
+
</DynamicTemplateString>
|
|
169
|
+
|
|
170
|
+
<DynamicTemplateString>
|
|
171
|
+
<StringID>com.fmi.calculation.text.5327FDB566A4B82BC52735114CEB4BCB</StringID>
|
|
172
|
+
<SourceText> ></iframe></SourceText>
|
|
173
|
+
<TargetText> ></iframe></TargetText>
|
|
174
|
+
<Comment>com.fmi.calculation.text. ></iframe></Comment>
|
|
175
|
+
</DynamicTemplateString>
|
|
176
|
+
|
|
177
|
+
<DynamicTemplateString>
|
|
178
|
+
<StringID>com.fmi.calculation.text.5C1699ACAFF841AF287498489285A20B</StringID>
|
|
179
|
+
<SourceText> } catch (e) {</SourceText>
|
|
180
|
+
<TargetText> } catch (e) {</TargetText>
|
|
181
|
+
<Comment>com.fmi.calculation.text. } catch (e) {</Comment>
|
|
182
|
+
</DynamicTemplateString>
|
|
183
|
+
|
|
184
|
+
<DynamicTemplateString>
|
|
185
|
+
<StringID>com.fmi.calculation.text.5D9C9F30268BF1BA6DA9EDAD76536C93</StringID>
|
|
186
|
+
<SourceText> id=\"app_iframe\" </SourceText>
|
|
187
|
+
<TargetText> id=\"app_iframe\" </TargetText>
|
|
188
|
+
<Comment>com.fmi.calculation.text. id=\"app_iframe\"</Comment>
|
|
189
|
+
</DynamicTemplateString>
|
|
190
|
+
|
|
191
|
+
<DynamicTemplateString>
|
|
192
|
+
<StringID>com.fmi.calculation.text.684F95A306F44B0537585BEA86979FEB</StringID>
|
|
193
|
+
<SourceText>/secondary</SourceText>
|
|
194
|
+
<TargetText>/secondary</TargetText>
|
|
195
|
+
<Comment>com.fmi.calculation.text./secondary</Comment>
|
|
196
|
+
</DynamicTemplateString>
|
|
197
|
+
|
|
198
|
+
<DynamicTemplateString>
|
|
199
|
+
<StringID>com.fmi.calculation.text.69D96751330C40C4E438780FF86F2615</StringID>
|
|
200
|
+
<SourceText> var target = document.getElementById(\"app_iframe\");</SourceText>
|
|
201
|
+
<TargetText> var target = document.getElementById(\"app_iframe\");</TargetText>
|
|
202
|
+
<Comment>com.fmi.calculation.text. var target = document.getElementById(\"app_iframe\");</Comment>
|
|
203
|
+
</DynamicTemplateString>
|
|
204
|
+
|
|
205
|
+
<DynamicTemplateString>
|
|
206
|
+
<StringID>com.fmi.calculation.text.729D67BCA45FB5FAE50567FE17377BE6</StringID>
|
|
207
|
+
<SourceText>data:text/html;charset=UTF-8,</SourceText>
|
|
208
|
+
<TargetText>data:text/html;charset=UTF-8,</TargetText>
|
|
209
|
+
<Comment>com.fmi.calculation.text.data:text/html;charset=UTF-8,</Comment>
|
|
210
|
+
</DynamicTemplateString>
|
|
211
|
+
|
|
212
|
+
<DynamicTemplateString>
|
|
213
|
+
<StringID>com.fmi.calculation.text.7939AE436E09B3990F24176D655909BB</StringID>
|
|
214
|
+
<SourceText><html></SourceText>
|
|
215
|
+
<TargetText><html></TargetText>
|
|
216
|
+
<Comment>com.fmi.calculation.text.<html></Comment>
|
|
217
|
+
</DynamicTemplateString>
|
|
218
|
+
|
|
219
|
+
<DynamicTemplateString>
|
|
220
|
+
<StringID>com.fmi.calculation.text.7AAFF5F311B69E3E224DDA3C8D2F606F</StringID>
|
|
221
|
+
<SourceText> try {</SourceText>
|
|
222
|
+
<TargetText> try {</TargetText>
|
|
223
|
+
<Comment>com.fmi.calculation.text. try {</Comment>
|
|
224
|
+
</DynamicTemplateString>
|
|
225
|
+
|
|
226
|
+
<DynamicTemplateString>
|
|
227
|
+
<StringID>com.fmi.calculation.text.7CAAAB98E591AB463EDBB77E292450C9</StringID>
|
|
228
|
+
<SourceText></html></SourceText>
|
|
229
|
+
<TargetText></html></TargetText>
|
|
230
|
+
<Comment>com.fmi.calculation.text.</html></Comment>
|
|
231
|
+
</DynamicTemplateString>
|
|
232
|
+
|
|
233
|
+
<DynamicTemplateString>
|
|
234
|
+
<StringID>com.fmi.calculation.text.821D7341CD938C0470F50650524AB3F4</StringID>
|
|
235
|
+
<SourceText> src=\"</SourceText>
|
|
236
|
+
<TargetText> src=\"</TargetText>
|
|
237
|
+
<Comment>com.fmi.calculation.text. src=\"</Comment>
|
|
238
|
+
</DynamicTemplateString>
|
|
239
|
+
|
|
240
|
+
<DynamicTemplateString>
|
|
241
|
+
<StringID>com.fmi.calculation.text.87DA46E8399540912B99DA91F9AF6AA0</StringID>
|
|
242
|
+
<SourceText> target.contentWindow.postMessage(</SourceText>
|
|
243
|
+
<TargetText> target.contentWindow.postMessage(</TargetText>
|
|
244
|
+
<Comment>com.fmi.calculation.text. target.contentWindow.postMessage(</Comment>
|
|
245
|
+
</DynamicTemplateString>
|
|
246
|
+
|
|
247
|
+
<DynamicTemplateString>
|
|
248
|
+
<StringID>com.fmi.calculation.text.889D001E7116D30178B1966E155DBAC6</StringID>
|
|
249
|
+
<SourceText>The new version was uploaded.</SourceText>
|
|
250
|
+
<TargetText>The new version was uploaded.</TargetText>
|
|
251
|
+
<Comment>com.fmi.calculation.text.The new version was uploaded.</Comment>
|
|
252
|
+
</DynamicTemplateString>
|
|
253
|
+
|
|
254
|
+
<DynamicTemplateString>
|
|
255
|
+
<StringID>com.fmi.calculation.text.8941760420115B72B31334BA82F15A8B</StringID>
|
|
256
|
+
<SourceText> otherwise, load the HTML from the field<CR/></SourceText>
|
|
257
|
+
<TargetText> otherwise, load the HTML from the field<CR/></TargetText>
|
|
258
|
+
<Comment>com.fmi.calculation.text. otherwise, load the HTML from the field_CR/_</Comment>
|
|
259
|
+
</DynamicTemplateString>
|
|
260
|
+
|
|
261
|
+
<DynamicTemplateString>
|
|
262
|
+
<StringID>com.fmi.calculation.text.8C487FA0558ABEF4B27C8E95726D4A03</StringID>
|
|
263
|
+
<SourceText>http://localhost:5175/#</SourceText>
|
|
264
|
+
<TargetText>http://localhost:5175/#</TargetText>
|
|
265
|
+
<Comment>com.fmi.calculation.text.http://localhost:5175/#</Comment>
|
|
266
|
+
</DynamicTemplateString>
|
|
267
|
+
|
|
268
|
+
<DynamicTemplateString>
|
|
269
|
+
<StringID>com.fmi.calculation.text.919523ABFEC76214004FCD3B43FCD75F</StringID>
|
|
270
|
+
<SourceText> try {</SourceText>
|
|
271
|
+
<TargetText> try {</TargetText>
|
|
272
|
+
<Comment>com.fmi.calculation.text. try {</Comment>
|
|
273
|
+
</DynamicTemplateString>
|
|
274
|
+
|
|
275
|
+
<DynamicTemplateString>
|
|
276
|
+
<StringID>com.fmi.calculation.text.9286618FE0B2C104A3FBBEC4C6CD20A4</StringID>
|
|
277
|
+
<SourceText> </SourceText>
|
|
278
|
+
<TargetText> </TargetText>
|
|
279
|
+
<Comment>com.fmi.calculation.text.</Comment>
|
|
280
|
+
</DynamicTemplateString>
|
|
281
|
+
|
|
282
|
+
<DynamicTemplateString>
|
|
283
|
+
<StringID>com.fmi.calculation.text.92888813B9BBF2454691E3BD3E39EFE3</StringID>
|
|
284
|
+
<SourceText>New version uploaded</SourceText>
|
|
285
|
+
<TargetText>New version uploaded</TargetText>
|
|
286
|
+
<Comment>com.fmi.calculation.text.New version uploaded</Comment>
|
|
287
|
+
</DynamicTemplateString>
|
|
288
|
+
|
|
289
|
+
<DynamicTemplateString>
|
|
290
|
+
<StringID>com.fmi.calculation.text.95715311B52CDD7A417B0223E5B0100F</StringID>
|
|
291
|
+
<SourceText> </body></SourceText>
|
|
292
|
+
<TargetText> </body></TargetText>
|
|
293
|
+
<Comment>com.fmi.calculation.text. </body></Comment>
|
|
294
|
+
</DynamicTemplateString>
|
|
295
|
+
|
|
296
|
+
<DynamicTemplateString>
|
|
297
|
+
<StringID>com.fmi.calculation.text.9C6D318B6298E73CE7F9D36D01656757</StringID>
|
|
298
|
+
<SourceText> // if this a string parse it, if not, use it as is</SourceText>
|
|
299
|
+
<TargetText> // if this a string parse it, if not, use it as is</TargetText>
|
|
300
|
+
<Comment>com.fmi.calculation.text. // if this a string parse it, if not, use it as is</Comment>
|
|
301
|
+
</DynamicTemplateString>
|
|
302
|
+
|
|
303
|
+
<DynamicTemplateString>
|
|
304
|
+
<StringID>com.fmi.calculation.text.9DB0F0B8A4045E59AB42B2497C32D41D</StringID>
|
|
305
|
+
<SourceText> }</SourceText>
|
|
306
|
+
<TargetText> }</TargetText>
|
|
307
|
+
<Comment>com.fmi.calculation.text. }</Comment>
|
|
308
|
+
</DynamicTemplateString>
|
|
309
|
+
|
|
310
|
+
<DynamicTemplateString>
|
|
311
|
+
<StringID>com.fmi.calculation.text.9DF8FCE4C5DEA8984C365A0B8361A856</StringID>
|
|
312
|
+
<SourceText> <iframe</SourceText>
|
|
313
|
+
<TargetText> <iframe</TargetText>
|
|
314
|
+
<Comment>com.fmi.calculation.text. <iframe</Comment>
|
|
315
|
+
</DynamicTemplateString>
|
|
316
|
+
|
|
317
|
+
<DynamicTemplateString>
|
|
318
|
+
<StringID>com.fmi.calculation.text.9FEC8133ADD65209C6115C2AAD70B8C4</StringID>
|
|
319
|
+
<SourceText> functionName: fnName,</SourceText>
|
|
320
|
+
<TargetText> functionName: fnName,</TargetText>
|
|
321
|
+
<Comment>com.fmi.calculation.text. functionName: fnName,</Comment>
|
|
322
|
+
</DynamicTemplateString>
|
|
323
|
+
|
|
324
|
+
<DynamicTemplateString>
|
|
325
|
+
<StringID>com.fmi.calculation.text.A009BCCF13CA2631D3982CD37FBDCD8B</StringID>
|
|
326
|
+
<SourceText>hello</SourceText>
|
|
327
|
+
<TargetText>hello</TargetText>
|
|
328
|
+
<Comment>com.fmi.calculation.text.hello</Comment>
|
|
329
|
+
</DynamicTemplateString>
|
|
330
|
+
|
|
331
|
+
<DynamicTemplateString>
|
|
332
|
+
<StringID>com.fmi.calculation.text.A23FA8E5B8EAD4001D5CA05DD4534E62</StringID>
|
|
333
|
+
<SourceText> fetchId: fetchId,</SourceText>
|
|
334
|
+
<TargetText> fetchId: fetchId,</TargetText>
|
|
335
|
+
<Comment>com.fmi.calculation.text. fetchId: fetchId,</Comment>
|
|
336
|
+
</DynamicTemplateString>
|
|
337
|
+
|
|
338
|
+
<DynamicTemplateString>
|
|
339
|
+
<StringID>com.fmi.calculation.text.A262D3A8CCAD06012DDEDFD393B622DB</StringID>
|
|
340
|
+
<SourceText> params = params;</SourceText>
|
|
341
|
+
<TargetText> params = params;</TargetText>
|
|
342
|
+
<Comment>com.fmi.calculation.text. params = params;</Comment>
|
|
343
|
+
</DynamicTemplateString>
|
|
344
|
+
|
|
345
|
+
<DynamicTemplateString>
|
|
346
|
+
<StringID>com.fmi.calculation.text.A2BD7D3FFE632D8458623034627F039A</StringID>
|
|
347
|
+
<SourceText> window.addEventListener(</SourceText>
|
|
348
|
+
<TargetText> window.addEventListener(</TargetText>
|
|
349
|
+
<Comment>com.fmi.calculation.text. window.addEventListener(</Comment>
|
|
350
|
+
</DynamicTemplateString>
|
|
351
|
+
|
|
352
|
+
<DynamicTemplateString>
|
|
353
|
+
<StringID>com.fmi.calculation.text.A46699D96860EE56B35816EB92EB5BCB</StringID>
|
|
354
|
+
<SourceText> }</SourceText>
|
|
355
|
+
<TargetText> }</TargetText>
|
|
356
|
+
<Comment>com.fmi.calculation.text. }</Comment>
|
|
357
|
+
</DynamicTemplateString>
|
|
358
|
+
|
|
359
|
+
<DynamicTemplateString>
|
|
360
|
+
<StringID>com.fmi.calculation.text.A4BD007639F211BE8C2368ED49440F3C</StringID>
|
|
361
|
+
<SourceText>fetchId</SourceText>
|
|
362
|
+
<TargetText>fetchId</TargetText>
|
|
363
|
+
<Comment>com.fmi.calculation.text.fetchId</Comment>
|
|
364
|
+
</DynamicTemplateString>
|
|
365
|
+
|
|
366
|
+
<DynamicTemplateString>
|
|
367
|
+
<StringID>com.fmi.calculation.text.A8EC3F7E5DB92687357FB5D8F267299D</StringID>
|
|
368
|
+
<SourceText>Uploading Inlined HTML</SourceText>
|
|
369
|
+
<TargetText>Uploading Inlined HTML</TargetText>
|
|
370
|
+
<Comment>com.fmi.calculation.text.Uploading Inlined HTML</Comment>
|
|
371
|
+
</DynamicTemplateString>
|
|
372
|
+
|
|
373
|
+
<DynamicTemplateString>
|
|
374
|
+
<StringID>com.fmi.calculation.text.AD433063E863626B9E7515977206C11E</StringID>
|
|
375
|
+
<SourceText>\" </SourceText>
|
|
376
|
+
<TargetText>\" </TargetText>
|
|
377
|
+
<Comment>com.fmi.calculation.text.\"</Comment>
|
|
378
|
+
</DynamicTemplateString>
|
|
379
|
+
|
|
380
|
+
<DynamicTemplateString>
|
|
381
|
+
<StringID>com.fmi.calculation.text.ADED719D62CE7F8C994BEAC680EA5CBB</StringID>
|
|
382
|
+
<SourceText> );</SourceText>
|
|
383
|
+
<TargetText> );</TargetText>
|
|
384
|
+
<Comment>com.fmi.calculation.text. );</Comment>
|
|
385
|
+
</DynamicTemplateString>
|
|
386
|
+
|
|
387
|
+
<DynamicTemplateString>
|
|
388
|
+
<StringID>com.fmi.calculation.text.B179E61F4E5F755432BFB89AE4688765</StringID>
|
|
389
|
+
<SourceText>?useWrapper=1\" </SourceText>
|
|
390
|
+
<TargetText>?useWrapper=1\" </TargetText>
|
|
391
|
+
<Comment>com.fmi.calculation.text.?useWrapper=1\"</Comment>
|
|
392
|
+
</DynamicTemplateString>
|
|
393
|
+
|
|
394
|
+
<DynamicTemplateString>
|
|
395
|
+
<StringID>com.fmi.calculation.text.B1954CB690053A9748E0AA605BBA8806</StringID>
|
|
396
|
+
<SourceText>data:text/html, </SourceText>
|
|
397
|
+
<TargetText>data:text/html, </TargetText>
|
|
398
|
+
<Comment>com.fmi.calculation.text.data:text/html,</Comment>
|
|
399
|
+
</DynamicTemplateString>
|
|
400
|
+
|
|
401
|
+
<DynamicTemplateString>
|
|
402
|
+
<StringID>com.fmi.calculation.text.BC1CEEA5C56513848510635337E717C6</StringID>
|
|
403
|
+
<SourceText> FileMaker.PerformScript(params.script, params.data, params.options);</SourceText>
|
|
404
|
+
<TargetText> FileMaker.PerformScript(params.script, params.data, params.options);</TargetText>
|
|
405
|
+
<Comment>com.fmi.calculation.text. FileMaker.PerformScript(params.script, params.data, params.options);</Comment>
|
|
406
|
+
</DynamicTemplateString>
|
|
407
|
+
|
|
408
|
+
<DynamicTemplateString>
|
|
409
|
+
<StringID>com.fmi.calculation.text.BC60F87E4D78046DC14562853A562493</StringID>
|
|
410
|
+
<SourceText> wrap everything in the WebViewer compatible iFrame (only takes effect in WebDirect)<CR/></SourceText>
|
|
411
|
+
<TargetText> wrap everything in the WebViewer compatible iFrame (only takes effect in WebDirect)<CR/></TargetText>
|
|
412
|
+
<Comment>com.fmi.calculation.text. wrap everything in the WebViewer compatible iFrame (only takes effect in WebDirect)_CR/_</Comment>
|
|
413
|
+
</DynamicTemplateString>
|
|
414
|
+
|
|
415
|
+
<DynamicTemplateString>
|
|
416
|
+
<StringID>com.fmi.calculation.text.BF260A0069D595A9F6A99BF63FE49CBA</StringID>
|
|
417
|
+
<SourceText>webViewerName</SourceText>
|
|
418
|
+
<TargetText>webViewerName</TargetText>
|
|
419
|
+
<Comment>com.fmi.calculation.text.webViewerName</Comment>
|
|
420
|
+
</DynamicTemplateString>
|
|
421
|
+
|
|
422
|
+
<DynamicTemplateString>
|
|
423
|
+
<StringID>com.fmi.calculation.text.BF27CA10BA6CC8943349796AD49F4166</StringID>
|
|
424
|
+
<SourceText>result</SourceText>
|
|
425
|
+
<TargetText>result</TargetText>
|
|
426
|
+
<Comment>com.fmi.calculation.text.result</Comment>
|
|
427
|
+
</DynamicTemplateString>
|
|
428
|
+
|
|
429
|
+
<DynamicTemplateString>
|
|
430
|
+
<StringID>com.fmi.calculation.text.C46BC5CA12F543589842A0706FCFE2E6</StringID>
|
|
431
|
+
<SourceText>world</SourceText>
|
|
432
|
+
<TargetText>world</TargetText>
|
|
433
|
+
<Comment>com.fmi.calculation.text.world</Comment>
|
|
434
|
+
</DynamicTemplateString>
|
|
435
|
+
|
|
436
|
+
<DynamicTemplateString>
|
|
437
|
+
<StringID>com.fmi.calculation.text.C5937366DE87E3BE8DFFC600BCAF1C52</StringID>
|
|
438
|
+
<SourceText>http://localhost:5175</SourceText>
|
|
439
|
+
<TargetText>http://localhost:5175</TargetText>
|
|
440
|
+
<Comment>com.fmi.calculation.text.http://localhost:5175</Comment>
|
|
441
|
+
</DynamicTemplateString>
|
|
442
|
+
|
|
443
|
+
<DynamicTemplateString>
|
|
444
|
+
<StringID>com.fmi.calculation.text.CBCA67C2335A3818A3C9727057706207</StringID>
|
|
445
|
+
<SourceText>ProofKitWV</SourceText>
|
|
446
|
+
<TargetText>ProofKitWV</TargetText>
|
|
447
|
+
<Comment>com.fmi.calculation.text.ProofKitWV</Comment>
|
|
448
|
+
</DynamicTemplateString>
|
|
449
|
+
|
|
450
|
+
<DynamicTemplateString>
|
|
451
|
+
<StringID>com.fmi.calculation.text.CCE22DB8E3AE0D08AF6060241C26A527</StringID>
|
|
452
|
+
<SourceText> frameborder=\"0\" </SourceText>
|
|
453
|
+
<TargetText> frameborder=\"0\" </TargetText>
|
|
454
|
+
<Comment>com.fmi.calculation.text. frameborder=\"0\"</Comment>
|
|
455
|
+
</DynamicTemplateString>
|
|
456
|
+
|
|
457
|
+
<DynamicTemplateString>
|
|
458
|
+
<StringID>com.fmi.calculation.text.D36D520AC81E0A72AE7416332519D6BA</StringID>
|
|
459
|
+
<SourceText> console.log(\"posting to wrapper error\", e);</SourceText>
|
|
460
|
+
<TargetText> console.log(\"posting to wrapper error\", e);</TargetText>
|
|
461
|
+
<Comment>com.fmi.calculation.text. console.log(\"posting to wrapper error\", e);</Comment>
|
|
462
|
+
</DynamicTemplateString>
|
|
463
|
+
|
|
464
|
+
<DynamicTemplateString>
|
|
465
|
+
<StringID>com.fmi.calculation.text.D51A8CFF27F08805EF9EF825D4D19627</StringID>
|
|
466
|
+
<SourceText> }</SourceText>
|
|
467
|
+
<TargetText> }</TargetText>
|
|
468
|
+
<Comment>com.fmi.calculation.text. }</Comment>
|
|
469
|
+
</DynamicTemplateString>
|
|
470
|
+
|
|
471
|
+
<DynamicTemplateString>
|
|
472
|
+
<StringID>com.fmi.calculation.text.D84A2645225C2EE655990CC01D1AFB69</StringID>
|
|
473
|
+
<SourceText>callIntoIFrame</SourceText>
|
|
474
|
+
<TargetText>callIntoIFrame</TargetText>
|
|
475
|
+
<Comment>com.fmi.calculation.text.callIntoIFrame</Comment>
|
|
476
|
+
</DynamicTemplateString>
|
|
477
|
+
|
|
478
|
+
<DynamicTemplateString>
|
|
479
|
+
<StringID>com.fmi.calculation.text.D8C555C07E9A709F2A6840605C548F0D</StringID>
|
|
480
|
+
<SourceText> console.log(`bridging parameter incorrect: ${params}`);</SourceText>
|
|
481
|
+
<TargetText> console.log(`bridging parameter incorrect: ${params}`);</TargetText>
|
|
482
|
+
<Comment>com.fmi.calculation.text. console.log(`bridging parameter incorrect: ${params}`);</Comment>
|
|
483
|
+
</DynamicTemplateString>
|
|
484
|
+
|
|
485
|
+
<DynamicTemplateString>
|
|
486
|
+
<StringID>com.fmi.calculation.text.DA6A6365DCE98B906B857DD8EA6C3F93</StringID>
|
|
487
|
+
<SourceText>data</SourceText>
|
|
488
|
+
<TargetText>data</TargetText>
|
|
489
|
+
<Comment>com.fmi.calculation.text.data</Comment>
|
|
490
|
+
</DynamicTemplateString>
|
|
491
|
+
|
|
492
|
+
<DynamicTemplateString>
|
|
493
|
+
<StringID>com.fmi.calculation.text.DCDF1E9F27F0708E782858CEC973DA89</StringID>
|
|
494
|
+
<SourceText> } catch (e) {</SourceText>
|
|
495
|
+
<TargetText> } catch (e) {</TargetText>
|
|
496
|
+
<Comment>com.fmi.calculation.text. } catch (e) {</Comment>
|
|
497
|
+
</DynamicTemplateString>
|
|
498
|
+
|
|
499
|
+
<DynamicTemplateString>
|
|
500
|
+
<StringID>com.fmi.calculation.text.E20887F7B6D94D2747941C5DBDE31282</StringID>
|
|
501
|
+
<SourceText> },</SourceText>
|
|
502
|
+
<TargetText> },</TargetText>
|
|
503
|
+
<Comment>com.fmi.calculation.text. },</Comment>
|
|
504
|
+
</DynamicTemplateString>
|
|
505
|
+
|
|
506
|
+
<DynamicTemplateString>
|
|
507
|
+
<StringID>com.fmi.calculation.text.E378E40E115D4E177936A4D9EA3AC626</StringID>
|
|
508
|
+
<SourceText> false</SourceText>
|
|
509
|
+
<TargetText> false</TargetText>
|
|
510
|
+
<Comment>com.fmi.calculation.text. false</Comment>
|
|
511
|
+
</DynamicTemplateString>
|
|
512
|
+
|
|
513
|
+
<DynamicTemplateString>
|
|
514
|
+
<StringID>com.fmi.calculation.text.EC0879E1C77B7C2D0102C5AE125B83AD</StringID>
|
|
515
|
+
<SourceText><!DOCTYPE html></SourceText>
|
|
516
|
+
<TargetText><!DOCTYPE html></TargetText>
|
|
517
|
+
<Comment>com.fmi.calculation.text.<!DOCTYPE html></Comment>
|
|
518
|
+
</DynamicTemplateString>
|
|
519
|
+
|
|
520
|
+
<DynamicTemplateString>
|
|
521
|
+
<StringID>com.fmi.calculation.text.EFCCEB1C6E8BDB197EA2B6A8A9B07288</StringID>
|
|
522
|
+
<SourceText> let params = e.data;</SourceText>
|
|
523
|
+
<TargetText> let params = e.data;</TargetText>
|
|
524
|
+
<Comment>com.fmi.calculation.text. let params = e.data;</Comment>
|
|
525
|
+
</DynamicTemplateString>
|
|
526
|
+
|
|
527
|
+
<DynamicTemplateString>
|
|
528
|
+
<StringID>com.fmi.calculation.text.EFE4D1CABD13E7E24F1B636BCE597CD9</StringID>
|
|
529
|
+
<SourceText> if (params.forFM) {</SourceText>
|
|
530
|
+
<TargetText> if (params.forFM) {</TargetText>
|
|
531
|
+
<Comment>com.fmi.calculation.text. if (params.forFM) {</Comment>
|
|
532
|
+
</DynamicTemplateString>
|
|
533
|
+
|
|
534
|
+
<DynamicTemplateString>
|
|
535
|
+
<StringID>com.fmi.calculation.text.F0C67B2F92DBF5CA2CF838C833FD952D</StringID>
|
|
536
|
+
<SourceText> const params = {</SourceText>
|
|
537
|
+
<TargetText> const params = {</TargetText>
|
|
538
|
+
<Comment>com.fmi.calculation.text. const params = {</Comment>
|
|
539
|
+
</DynamicTemplateString>
|
|
540
|
+
|
|
541
|
+
<DynamicTemplateString>
|
|
542
|
+
<StringID>com.fmi.calculation.text.F874F96732933F16898A065A6DC760A3</StringID>
|
|
543
|
+
<SourceText> params,</SourceText>
|
|
544
|
+
<TargetText> params,</TargetText>
|
|
545
|
+
<Comment>com.fmi.calculation.text. params,</Comment>
|
|
546
|
+
</DynamicTemplateString>
|
|
547
|
+
|
|
548
|
+
<DynamicTemplateString>
|
|
549
|
+
<StringID>com.fmi.calculation.text.FB21805207B804DDE591F825C88797A3</StringID>
|
|
550
|
+
<SourceText> } else {</SourceText>
|
|
551
|
+
<TargetText> } else {</TargetText>
|
|
552
|
+
<Comment>com.fmi.calculation.text. } else {</Comment>
|
|
553
|
+
</DynamicTemplateString>
|
|
554
|
+
|
|
555
|
+
<DynamicTemplateString>
|
|
556
|
+
<StringID>com.fmi.calculation.text.FEBA1CAF0ACFE35666E2420EFA48E0DE</StringID>
|
|
557
|
+
<SourceText> If this var is true, we want to see the changes from our dev server<CR/></SourceText>
|
|
558
|
+
<TargetText> If this var is true, we want to see the changes from our dev server<CR/></TargetText>
|
|
559
|
+
<Comment>com.fmi.calculation.text. If this var is true, we want to see the changes from our dev server_CR/_</Comment>
|
|
560
|
+
</DynamicTemplateString>
|
|
561
|
+
|
|
562
|
+
<DynamicTemplateString>
|
|
563
|
+
<StringID>com.fmi.calculation.text.FFAC7088652C1EF5FC31B52690768F79</StringID>
|
|
564
|
+
<SourceText> function callIntoIFrame(fnName, data, fetchId) {</SourceText>
|
|
565
|
+
<TargetText> function callIntoIFrame(fnName, data, fetchId) {</TargetText>
|
|
566
|
+
<Comment>com.fmi.calculation.text. function callIntoIFrame(fnName, data, fetchId) {</Comment>
|
|
567
|
+
</DynamicTemplateString>
|
|
568
|
+
|
|
569
|
+
<DynamicTemplateString>
|
|
570
|
+
<StringID>com.fmi.layout.4F16BD3C5BF01CBD7F533942E68FD14A</StringID>
|
|
571
|
+
<SourceText>ProofKitWV_Internal</SourceText>
|
|
572
|
+
<TargetText>ProofKitWV_Internal</TargetText>
|
|
573
|
+
<Comment>com.fmi.layout.ProofKitWV_Internal</Comment>
|
|
574
|
+
</DynamicTemplateString>
|
|
575
|
+
|
|
576
|
+
<DynamicTemplateString>
|
|
577
|
+
<StringID>com.fmi.layout.CBCA67C2335A3818A3C9727057706207</StringID>
|
|
578
|
+
<SourceText>ProofKitWV</SourceText>
|
|
579
|
+
<TargetText>ProofKitWV</TargetText>
|
|
580
|
+
<Comment>com.fmi.layout.ProofKitWV</Comment>
|
|
581
|
+
</DynamicTemplateString>
|
|
582
|
+
|
|
583
|
+
<DynamicTemplateString>
|
|
584
|
+
<StringID>com.fmi.layoutobject.291E43F0C7C648CC5F9F71BB3194C971</StringID>
|
|
585
|
+
<SourceText>web</SourceText>
|
|
586
|
+
<TargetText>web</TargetText>
|
|
587
|
+
<Comment>com.fmi.layoutobject.web</Comment>
|
|
588
|
+
</DynamicTemplateString>
|
|
589
|
+
|
|
590
|
+
<DynamicTemplateString>
|
|
591
|
+
<StringID>com.fmi.script.2731467863E20F0E70D999E1F9C8D428</StringID>
|
|
592
|
+
<SourceText>Refresh Webviewer Widget</SourceText>
|
|
593
|
+
<TargetText>Refresh Webviewer Widget</TargetText>
|
|
594
|
+
<Comment>com.fmi.script.Refresh Webviewer Widget</Comment>
|
|
595
|
+
</DynamicTemplateString>
|
|
596
|
+
|
|
597
|
+
<DynamicTemplateString>
|
|
598
|
+
<StringID>com.fmi.script.5544B2E96E3F871113036A2A0F959B83</StringID>
|
|
599
|
+
<SourceText>FETCH CALLBACK TEMPLATE</SourceText>
|
|
600
|
+
<TargetText>FETCH CALLBACK TEMPLATE</TargetText>
|
|
601
|
+
<Comment>com.fmi.script.FETCH CALLBACK TEMPLATE</Comment>
|
|
602
|
+
</DynamicTemplateString>
|
|
603
|
+
|
|
604
|
+
<DynamicTemplateString>
|
|
605
|
+
<StringID>com.fmi.script.58E94BD3BB2D0ACEDA33387EB3813B27</StringID>
|
|
606
|
+
<SourceText>SendCallBack</SourceText>
|
|
607
|
+
<TargetText>SendCallBack</TargetText>
|
|
608
|
+
<Comment>com.fmi.script.SendCallBack</Comment>
|
|
609
|
+
</DynamicTemplateString>
|
|
610
|
+
|
|
611
|
+
<DynamicTemplateString>
|
|
612
|
+
<StringID>com.fmi.script.9EB7DF46B90E85D20A5C138216E9610A</StringID>
|
|
613
|
+
<SourceText>Disable WebDev Mode</SourceText>
|
|
614
|
+
<TargetText>Disable WebDev Mode</TargetText>
|
|
615
|
+
<Comment>com.fmi.script.Disable WebDev Mode</Comment>
|
|
616
|
+
</DynamicTemplateString>
|
|
617
|
+
|
|
618
|
+
<DynamicTemplateString>
|
|
619
|
+
<StringID>com.fmi.script.9EFEF284E38F4F6C39884A6253DE7586</StringID>
|
|
620
|
+
<SourceText>UploadWebviewerWidget</SourceText>
|
|
621
|
+
<TargetText>UploadWebviewerWidget</TargetText>
|
|
622
|
+
<Comment>com.fmi.script.UploadWebviewerWidget</Comment>
|
|
623
|
+
</DynamicTemplateString>
|
|
624
|
+
|
|
625
|
+
<DynamicTemplateString>
|
|
626
|
+
<StringID>com.fmi.script.B23EB3051DFD0902F2C16AC08CDBEF9E</StringID>
|
|
627
|
+
<SourceText>Launch Web Viewer for Dev</SourceText>
|
|
628
|
+
<TargetText>Launch Web Viewer for Dev</TargetText>
|
|
629
|
+
<Comment>com.fmi.script.Launch Web Viewer for Dev</Comment>
|
|
630
|
+
</DynamicTemplateString>
|
|
631
|
+
|
|
632
|
+
<DynamicTemplateString>
|
|
633
|
+
<StringID>com.fmi.script.BBAD42748576DDB1A4D0E96A448D64DC</StringID>
|
|
634
|
+
<SourceText>EXAMPLE: Navigation</SourceText>
|
|
635
|
+
<TargetText>EXAMPLE: Navigation</TargetText>
|
|
636
|
+
<Comment>com.fmi.script.EXAMPLE: Navigation</Comment>
|
|
637
|
+
</DynamicTemplateString>
|
|
638
|
+
|
|
639
|
+
<DynamicTemplateString>
|
|
640
|
+
<StringID>com.fmi.script.E684EC5DAE0FC476921FE0FF357DD35F</StringID>
|
|
641
|
+
<SourceText>Enable WebDev Mode</SourceText>
|
|
642
|
+
<TargetText>Enable WebDev Mode</TargetText>
|
|
643
|
+
<Comment>com.fmi.script.Enable WebDev Mode</Comment>
|
|
644
|
+
</DynamicTemplateString>
|
|
645
|
+
|
|
646
|
+
<DynamicTemplateString>
|
|
647
|
+
<StringID>com.fmi.script.F7662E70CB310C44167F9730EE7B494C</StringID>
|
|
648
|
+
<SourceText>ExecuteDataApi</SourceText>
|
|
649
|
+
<TargetText>ExecuteDataApi</TargetText>
|
|
650
|
+
<Comment>com.fmi.script.ExecuteDataApi</Comment>
|
|
651
|
+
</DynamicTemplateString>
|
|
652
|
+
|
|
653
|
+
<DynamicTemplateString>
|
|
654
|
+
<StringID>com.fmi.script.folder.2D02A6E046E57E03ADE2FE67E50B2DB2</StringID>
|
|
655
|
+
<SourceText>ProofKit Web Viewer</SourceText>
|
|
656
|
+
<TargetText>ProofKit Web Viewer</TargetText>
|
|
657
|
+
<Comment>com.fmi.script.folder.ProofKit Web Viewer</Comment>
|
|
658
|
+
</DynamicTemplateString>
|
|
659
|
+
|
|
660
|
+
<DynamicTemplateString>
|
|
661
|
+
<StringID>com.fmi.script.folder.54041CFCFFF324E78E4E511B61A7B27D</StringID>
|
|
662
|
+
<SourceText>EXAMPLES</SourceText>
|
|
663
|
+
<TargetText>EXAMPLES</TargetText>
|
|
664
|
+
<Comment>com.fmi.script.folder.EXAMPLES</Comment>
|
|
665
|
+
</DynamicTemplateString>
|
|
666
|
+
|
|
667
|
+
<DynamicTemplateString>
|
|
668
|
+
<StringID>com.fmi.script.folder.CAB285360B0FD342DB052A977FC4FF21</StringID>
|
|
669
|
+
<SourceText>Private</SourceText>
|
|
670
|
+
<TargetText>Private</TargetText>
|
|
671
|
+
<Comment>com.fmi.script.folder.Private</Comment>
|
|
672
|
+
</DynamicTemplateString>
|
|
673
|
+
|
|
674
|
+
<DynamicTemplateString>
|
|
675
|
+
<StringID>com.fmi.script.folder.E5957734D733284A6D5077C5E5A0B4B7</StringID>
|
|
676
|
+
<SourceText>fm-webviewer-fetch</SourceText>
|
|
677
|
+
<TargetText>fm-webviewer-fetch</TargetText>
|
|
678
|
+
<Comment>com.fmi.script.folder.fm-webviewer-fetch</Comment>
|
|
679
|
+
</DynamicTemplateString>
|
|
680
|
+
|
|
681
|
+
<DynamicTemplateString>
|
|
682
|
+
<StringID>com.fmi.scriptstep.text.0856E4B6E62830AA9310D82D0CFB6B2A</StringID>
|
|
683
|
+
<SourceText> It is never used by the users of an application using this addon</SourceText>
|
|
684
|
+
<TargetText> It is never used by the users of an application using this addon</TargetText>
|
|
685
|
+
<Comment>com.fmi.scriptstep.text. It is never used by the users of an application using this addon</Comment>
|
|
686
|
+
</DynamicTemplateString>
|
|
687
|
+
|
|
688
|
+
<DynamicTemplateString>
|
|
689
|
+
<StringID>com.fmi.scriptstep.text.10DFE7629893BAA57E72B50BFE96BFCD</StringID>
|
|
690
|
+
<SourceText>This script is conly called from script receiving requests from WebViewers</SourceText>
|
|
691
|
+
<TargetText>This script is conly called from script receiving requests from WebViewers</TargetText>
|
|
692
|
+
<Comment>com.fmi.scriptstep.text.This script is conly called from script receiving requests from WebViewers</Comment>
|
|
693
|
+
</DynamicTemplateString>
|
|
694
|
+
|
|
695
|
+
<DynamicTemplateString>
|
|
696
|
+
<StringID>com.fmi.scriptstep.text.217674D9B26944151416FE172BB744EF</StringID>
|
|
697
|
+
<SourceText>optional Properties</SourceText>
|
|
698
|
+
<TargetText>optional Properties</TargetText>
|
|
699
|
+
<Comment>com.fmi.scriptstep.text.optional Properties</Comment>
|
|
700
|
+
</DynamicTemplateString>
|
|
701
|
+
|
|
702
|
+
<DynamicTemplateString>
|
|
703
|
+
<StringID>com.fmi.scriptstep.text.23C3FED490F01563FABBC2C4EA425D4C</StringID>
|
|
704
|
+
<SourceText>On server, we'll return the callback value which will be picked up by the callback script</SourceText>
|
|
705
|
+
<TargetText>On server, we'll return the callback value which will be picked up by the callback script</TargetText>
|
|
706
|
+
<Comment>com.fmi.scriptstep.text.On server, we'll return the callback value which will be picked up by the callback script</Comment>
|
|
707
|
+
</DynamicTemplateString>
|
|
708
|
+
|
|
709
|
+
<DynamicTemplateString>
|
|
710
|
+
<StringID>com.fmi.scriptstep.text.2482056B7619644EA967036F8675E46E</StringID>
|
|
711
|
+
<SourceText>@param {string} callback.fn the name of the function that will be used</SourceText>
|
|
712
|
+
<TargetText>@param {string} callback.fn the name of the function that will be used</TargetText>
|
|
713
|
+
<Comment>com.fmi.scriptstep.text.@param {string} callback.fn the name of the function that will be used</Comment>
|
|
714
|
+
</DynamicTemplateString>
|
|
715
|
+
|
|
716
|
+
<DynamicTemplateString>
|
|
717
|
+
<StringID>com.fmi.scriptstep.text.310923E005347F529661D9884A470D04</StringID>
|
|
718
|
+
<SourceText>Any way you know how that doesn't leave the layout (unless you're running this script on server)</SourceText>
|
|
719
|
+
<TargetText>Any way you know how that doesn't leave the layout (unless you're running this script on server)</TargetText>
|
|
720
|
+
<Comment>com.fmi.scriptstep.text.Any way you know how that doesn't leave the layout (unless you're running this script on server)</Comment>
|
|
721
|
+
</DynamicTemplateString>
|
|
722
|
+
|
|
723
|
+
<DynamicTemplateString>
|
|
724
|
+
<StringID>com.fmi.scriptstep.text.3CA1E7C24356583F32850B619A6EBCDD</StringID>
|
|
725
|
+
<SourceText>use this script to copy to your own file</SourceText>
|
|
726
|
+
<TargetText>use this script to copy to your own file</TargetText>
|
|
727
|
+
<Comment>com.fmi.scriptstep.text.use this script to copy to your own file</Comment>
|
|
728
|
+
</DynamicTemplateString>
|
|
729
|
+
|
|
730
|
+
<DynamicTemplateString>
|
|
731
|
+
<StringID>com.fmi.scriptstep.text.3D43D095B6DBB2074FD200CC00EA2449</StringID>
|
|
732
|
+
<SourceText>/##</SourceText>
|
|
733
|
+
<TargetText>/##</TargetText>
|
|
734
|
+
<Comment>com.fmi.scriptstep.text./##</Comment>
|
|
735
|
+
</DynamicTemplateString>
|
|
736
|
+
|
|
737
|
+
<DynamicTemplateString>
|
|
738
|
+
<StringID>com.fmi.scriptstep.text.3EE491551E342EF3376EB68BB36FD433</StringID>
|
|
739
|
+
<SourceText>Required properties</SourceText>
|
|
740
|
+
<TargetText>Required properties</TargetText>
|
|
741
|
+
<Comment>com.fmi.scriptstep.text.Required properties</Comment>
|
|
742
|
+
</DynamicTemplateString>
|
|
743
|
+
|
|
744
|
+
<DynamicTemplateString>
|
|
745
|
+
<StringID>com.fmi.scriptstep.text.3F504E0E87B3A79711C3DD43A9858D1B</StringID>
|
|
746
|
+
<SourceText>Any way you know how that doesn't leave the layout.</SourceText>
|
|
747
|
+
<TargetText>Any way you know how that doesn't leave the layout.</TargetText>
|
|
748
|
+
<Comment>com.fmi.scriptstep.text.Any way you know how that doesn't leave the layout.</Comment>
|
|
749
|
+
</DynamicTemplateString>
|
|
750
|
+
|
|
751
|
+
<DynamicTemplateString>
|
|
752
|
+
<StringID>com.fmi.scriptstep.text.436FEF45C8565289839D7334DDAB413E</StringID>
|
|
753
|
+
<SourceText>-------------------- UPDATE INFO HERE -------------------</SourceText>
|
|
754
|
+
<TargetText>-------------------- UPDATE INFO HERE -------------------</TargetText>
|
|
755
|
+
<Comment>com.fmi.scriptstep.text.-------------------- UPDATE INFO HERE -------------------</Comment>
|
|
756
|
+
</DynamicTemplateString>
|
|
757
|
+
|
|
758
|
+
<DynamicTemplateString>
|
|
759
|
+
<StringID>com.fmi.scriptstep.text.43F8E1BF6E80CA0F3B3975E839289130</StringID>
|
|
760
|
+
<SourceText>get a result in any way you know how!</SourceText>
|
|
761
|
+
<TargetText>get a result in any way you know how!</TargetText>
|
|
762
|
+
<Comment>com.fmi.scriptstep.text.get a result in any way you know how!</Comment>
|
|
763
|
+
</DynamicTemplateString>
|
|
764
|
+
|
|
765
|
+
<DynamicTemplateString>
|
|
766
|
+
<StringID>com.fmi.scriptstep.text.53412D1C9296389206C3A134AAD6C133</StringID>
|
|
767
|
+
<SourceText>@param {string} callback.fetchID the request in the proper api request format</SourceText>
|
|
768
|
+
<TargetText>@param {string} callback.fetchID the request in the proper api request format</TargetText>
|
|
769
|
+
<Comment>com.fmi.scriptstep.text.@param {string} callback.fetchID the request in the proper api request format</Comment>
|
|
770
|
+
</DynamicTemplateString>
|
|
771
|
+
|
|
772
|
+
<DynamicTemplateString>
|
|
773
|
+
<StringID>com.fmi.scriptstep.text.539DD5EA4BA637EF5979D41348EB6FB4</StringID>
|
|
774
|
+
<SourceText>-------------------- ↓ UPDATE INFO HERE ↓ -------------------</SourceText>
|
|
775
|
+
<TargetText>-------------------- ↓ UPDATE INFO HERE ↓ -------------------</TargetText>
|
|
776
|
+
<Comment>com.fmi.scriptstep.text.-------------------- ↓ UPDATE INFO HERE ↓ -------------------</Comment>
|
|
777
|
+
</DynamicTemplateString>
|
|
778
|
+
|
|
779
|
+
<DynamicTemplateString>
|
|
780
|
+
<StringID>com.fmi.scriptstep.text.602B6391A8C8ACF21D775403D8DB46E8</StringID>
|
|
781
|
+
<SourceText>This ensures this script will always run on server (if the file is hosted)</SourceText>
|
|
782
|
+
<TargetText>This ensures this script will always run on server (if the file is hosted)</TargetText>
|
|
783
|
+
<Comment>com.fmi.scriptstep.text.This ensures this script will always run on server (if the file is hosted)</Comment>
|
|
784
|
+
</DynamicTemplateString>
|
|
785
|
+
|
|
786
|
+
<DynamicTemplateString>
|
|
787
|
+
<StringID>com.fmi.scriptstep.text.6DCF8C508DFDFCE8788EE2A120040404</StringID>
|
|
788
|
+
<SourceText>$result must be an object.</SourceText>
|
|
789
|
+
<TargetText>$result must be an object.</TargetText>
|
|
790
|
+
<Comment>com.fmi.scriptstep.text.$result must be an object.</Comment>
|
|
791
|
+
</DynamicTemplateString>
|
|
792
|
+
|
|
793
|
+
<DynamicTemplateString>
|
|
794
|
+
<StringID>com.fmi.scriptstep.text.91DD624E3BA0CAD077A8990C590C154C</StringID>
|
|
795
|
+
<SourceText>@param {object} json.result the data to send back to the WebViwer</SourceText>
|
|
796
|
+
<TargetText>@param {object} json.result the data to send back to the WebViwer</TargetText>
|
|
797
|
+
<Comment>com.fmi.scriptstep.text.@param {object} json.result the data to send back to the WebViwer</Comment>
|
|
798
|
+
</DynamicTemplateString>
|
|
799
|
+
|
|
800
|
+
<DynamicTemplateString>
|
|
801
|
+
<StringID>com.fmi.scriptstep.text.99F2DDEA1476D167071C5604C5E3B795</StringID>
|
|
802
|
+
<SourceText>@param {string} callback.webViewerName the name of the webViewer</SourceText>
|
|
803
|
+
<TargetText>@param {string} callback.webViewerName the name of the webViewer</TargetText>
|
|
804
|
+
<Comment>com.fmi.scriptstep.text.@param {string} callback.webViewerName the name of the webViewer</Comment>
|
|
805
|
+
</DynamicTemplateString>
|
|
806
|
+
|
|
807
|
+
<DynamicTemplateString>
|
|
808
|
+
<StringID>com.fmi.scriptstep.text.ABDB20FE60943D5012DB4C153D2E3E25</StringID>
|
|
809
|
+
<SourceText>We're not on server, send the data directly back to the webviewer</SourceText>
|
|
810
|
+
<TargetText>We're not on server, send the data directly back to the webviewer</TargetText>
|
|
811
|
+
<Comment>com.fmi.scriptstep.text.We're not on server, send the data directly back to the webviewer</Comment>
|
|
812
|
+
</DynamicTemplateString>
|
|
813
|
+
|
|
814
|
+
<DynamicTemplateString>
|
|
815
|
+
<StringID>com.fmi.scriptstep.text.ADA99C72F369DA4434F8B9EAB407EA59</StringID>
|
|
816
|
+
<SourceText> This script is only used when developing webviewer widgets</SourceText>
|
|
817
|
+
<TargetText> This script is only used when developing webviewer widgets</TargetText>
|
|
818
|
+
<Comment>com.fmi.scriptstep.text. This script is only used when developing webviewer widgets</Comment>
|
|
819
|
+
</DynamicTemplateString>
|
|
820
|
+
|
|
821
|
+
<DynamicTemplateString>
|
|
822
|
+
<StringID>com.fmi.scriptstep.text.B24D1A82B2420607AD27965854A09EA4</StringID>
|
|
823
|
+
<SourceText>#### Remove this block if you don't want to run the fetch on server</SourceText>
|
|
824
|
+
<TargetText>#### Remove this block if you don't want to run the fetch on server</TargetText>
|
|
825
|
+
<Comment>com.fmi.scriptstep.text.#### Remove this block if you don't want to run the fetch on server</Comment>
|
|
826
|
+
</DynamicTemplateString>
|
|
827
|
+
|
|
828
|
+
<DynamicTemplateString>
|
|
829
|
+
<StringID>com.fmi.scriptstep.text.B27574B1C459943F6BD5404637E8EADA</StringID>
|
|
830
|
+
<SourceText>You will never need to edit this script</SourceText>
|
|
831
|
+
<TargetText>You will never need to edit this script</TargetText>
|
|
832
|
+
<Comment>com.fmi.scriptstep.text.You will never need to edit this script</Comment>
|
|
833
|
+
</DynamicTemplateString>
|
|
834
|
+
|
|
835
|
+
<DynamicTemplateString>
|
|
836
|
+
<StringID>com.fmi.scriptstep.text.BAAD60E8350FC01BBD0EE47A932724BA</StringID>
|
|
837
|
+
<SourceText> uploads the html code into the right location</SourceText>
|
|
838
|
+
<TargetText> uploads the html code into the right location</TargetText>
|
|
839
|
+
<Comment>com.fmi.scriptstep.text. uploads the html code into the right location</Comment>
|
|
840
|
+
</DynamicTemplateString>
|
|
841
|
+
|
|
842
|
+
<DynamicTemplateString>
|
|
843
|
+
<StringID>com.fmi.scriptstep.text.CCA79BCCE089A932DE2F6BD5B6B89C43</StringID>
|
|
844
|
+
<SourceText>@param {object} callback</SourceText>
|
|
845
|
+
<TargetText>@param {object} callback</TargetText>
|
|
846
|
+
<Comment>com.fmi.scriptstep.text.@param {object} callback</Comment>
|
|
847
|
+
</DynamicTemplateString>
|
|
848
|
+
|
|
849
|
+
<DynamicTemplateString>
|
|
850
|
+
<StringID>com.fmi.scriptstep.text.D13014675DFC35477384592FD97832E0</StringID>
|
|
851
|
+
<SourceText>#/</SourceText>
|
|
852
|
+
<TargetText>#/</TargetText>
|
|
853
|
+
<Comment>com.fmi.scriptstep.text.#/</Comment>
|
|
854
|
+
</DynamicTemplateString>
|
|
855
|
+
|
|
856
|
+
<DynamicTemplateString>
|
|
857
|
+
<StringID>com.fmi.scriptstep.text.D5244507E679E5BF60C5AF5B92D220DA</StringID>
|
|
858
|
+
<SourceText>only if running in webdirect</SourceText>
|
|
859
|
+
<TargetText>only if running in webdirect</TargetText>
|
|
860
|
+
<Comment>com.fmi.scriptstep.text.only if running in webdirect</Comment>
|
|
861
|
+
</DynamicTemplateString>
|
|
862
|
+
|
|
863
|
+
<DynamicTemplateString>
|
|
864
|
+
<StringID>com.fmi.scriptstep.text.D71139CD0F3751336C2AFB84F329620E</StringID>
|
|
865
|
+
<SourceText>-------------------- ↑ UPDATE INFO HERE ↑ -------------------</SourceText>
|
|
866
|
+
<TargetText>-------------------- ↑ UPDATE INFO HERE ↑ -------------------</TargetText>
|
|
867
|
+
<Comment>com.fmi.scriptstep.text.-------------------- ↑ UPDATE INFO HERE ↑ -------------------</Comment>
|
|
868
|
+
</DynamicTemplateString>
|
|
869
|
+
|
|
870
|
+
<DynamicTemplateString>
|
|
871
|
+
<StringID>com.fmi.scriptstep.text.E0BE07C2519E4D0DFE50BE557EAE632D</StringID>
|
|
872
|
+
<SourceText>#######################</SourceText>
|
|
873
|
+
<TargetText>#######################</TargetText>
|
|
874
|
+
<Comment>com.fmi.scriptstep.text.#######################</Comment>
|
|
875
|
+
</DynamicTemplateString>
|
|
876
|
+
|
|
877
|
+
<DynamicTemplateString>
|
|
878
|
+
<StringID>com.fmi.tableoccurrence.CBCA67C2335A3818A3C9727057706207</StringID>
|
|
879
|
+
<SourceText>ProofKitWV</SourceText>
|
|
880
|
+
<TargetText>ProofKitWV</TargetText>
|
|
881
|
+
<Comment>com.fmi.tableoccurrence.ProofKitWV</Comment>
|
|
882
|
+
</DynamicTemplateString>
|
|
883
|
+
|
|
884
|
+
<DynamicTemplateString>
|
|
885
|
+
<StringID>com.fmi.tableoccurrence.field.ProofKitWV::8C0EC245B43DB2131C17BF7825C4CCAF</StringID>
|
|
886
|
+
<SourceText>ProofKitWV::HTML</SourceText>
|
|
887
|
+
<TargetText>ProofKitWV::HTML</TargetText>
|
|
888
|
+
<Comment>com.fmi.tableoccurrence.field.ProofKitWV::ProofKitWV::HTML</Comment>
|
|
889
|
+
</DynamicTemplateString>
|
|
890
|
+
|
|
891
|
+
<DynamicTemplateString>
|
|
892
|
+
<StringID>com.fmi.tableoccurrence.field.ProofKitWV::CEF66026AC6A040A2A2F2DCC712C456B</StringID>
|
|
893
|
+
<SourceText>HTML</SourceText>
|
|
894
|
+
<TargetText>HTML</TargetText>
|
|
895
|
+
<Comment>com.fmi.tableoccurrence.field.ProofKitWV::HTML</Comment>
|
|
896
|
+
</DynamicTemplateString>
|