Гаджет Jira в проблеме с конфигурацией Confluence

У меня есть гаджет Jira, о котором я написал, что я хотел бы использовать его из слияния. У меня есть Jira и Confluence, работающие локально на моей машине. У меня есть гаджет, установленный в моем экземпляре jira, и оба экземпляра связаны с полным доверием как ссылки на приложения. Я установил свой гаджет в слиянии в разделе «Внешние гаджеты» в админке. Затем я создал простую страницу и добавил свой гаджет с помощью макроса выбора. Когда я нажимаю на свой гаджет, у меня возникают проблемы с отображением экрана конфигурации. Кажется, что отсутствует мой ресурс i18n, потому что я вижу это для метки gadget.common.project.label. Кроме того, iframe не расширяется, чтобы содержать все мои конфигурации.

Вот как выглядит мой гаджет в confluence:

введите здесь описание изображения

Вот главный раздел моих гаджетов gadget.xml:

<?xml version="1.0" encoding="UTF-8" ?>
<Module>
<ModulePrefs title="__MSG_gadget.title__" 
             directory_title="__MSG_gadget.title__"
             description="__MSG_gadget.description__"
             author="__MSG_gadget.author__"
             thumbnail='#staticResourceUrl("TechnicalDebtTracker:TechnicalDebtTracker-resources", "thumbnail.png")'>
    <Optional feature="gadget-directory">
        <Param name="categories">
            . JIRA
        </Param>
    </Optional>
    <Optional feature="atlassian.util"/>
    <Optional feature="auth-refresh"/>
    <Require feature="setprefs" />
    <Require feature="dynamic-height"/>
    <Require feature="settitle"/>
    <Require feature="views"/>
    <Require feature="oauthpopup"/>
    #oauth
    #supportedLocales("gadget.common,gadget.user.activity")
    <Locale messages="__ATLASSIAN_BASE_URL__/download/resources/TechnicalDebtTracker/i18n/ALL_ALL.xml"/>
</ModulePrefs>
<UserPref name="isConfigured" datatype="hidden" default_value="false" />
<UserPref name="project" datatype="hidden" required="true" />
<UserPref name="methodology_type" datatype="hidden" required="true" default_value="scrum" />
<UserPref name="warning_threshold" datatype="hidden" required="true" default_value="10" />
<UserPref name="critical_threshold" datatype="hidden" required="true" default_value="20" />
<UserPref name="paid_down_period" datatype="hidden" required="true" default_value="90" />
<UserPref name="normal_color" datatype="hidden" required="true" default_value="#61F553" />
<UserPref name="warning_color" datatype="hidden" required="true" default_value="#FFFA66" />
<UserPref name="critical_color" datatype="hidden" required="true" default_value="#FF7A66" />
<UserPref name="refresh" datatype="hidden" default_value="false" />
<Content type="html">
    <![CDATA[
        #requireResource("com.atlassian.gadgets.publisher:ajs-gadgets")
        #requireResource("com.atlassian.jira.gadgets:g-filter-results")
        #requireResource("TechnicalDebtTracker:TechnicalDebtTracker-resources")
        #includeResources()

(function () 
        {       
        var gadget = AJS.Gadget({
            baseUrl: "__ATLASSIAN_BASE_URL__",
            useOauth: "/rest/gadget/1.0/currentUser",
            config: {
                descriptor: function(args) {
                    var gadget = this;

                    var projectPicker = AJS.gadget.fields.projectPicker(gadget, "project", args.projectOptions);
                    return {
                        fields: [
                            projectPicker,
                            {
                                id: "methodology_type-id",
                                userpref: "methodology_type",
                                label: "__MSG_gadget.config.SetMethodology__",
                                description: "",
                                type: "select",
                                selected: gadget.getPref("methodology_type"),
                                options: [
                                            {
                                                label:"Scrum",
                                                value:"scrum"
                                            },
                                            {
                                                label:"Kanban",
                                                value:"kanban"
                                            }
                                         ]
                            },
                            {
                                id: "warning_threshold-id",
                                userpref: "warning_threshold",
                                label: "__MSG_gadget.config.SetWarning__",
                                description: "__MSG_gadget.config.InStoryPoints__",
                                type: "text",
                                value: gadget.getPref("warning_threshold")
                            },
                            {
                                id: "critical_threshold-id",
                                userpref: "critical_threshold",
                                label: "__MSG_gadget.config.SetCritical__",
                                description: "__MSG_gadget.config.InStoryPoints__",
                                type: "text",
                                value: gadget.getPref("critical_threshold")
                            },
                            {
                                id: "paid_down_period-id",
                                userpref: "paid_down_period",
                                label: "__MSG_gadget.config.SetPaidDownPeriod__",
                                description: "__MSG_gadget.config.InDays__",
                                type: "text",
                                value: gadget.getPref("paid_down_period")
                            },
                            {
                                id: "normal_color-id",
                                userpref: "normal_color",
                                label: "__MSG_gadget.config.SetNormalColor__",
                                description: "__MSG_gadget.config.HexCode__",
                                type: "text",
                                value: gadget.getPref("normal_color")
                            },
                            {
                                id: "warning_color-id",
                                userpref: "warning_color",
                                label: "__MSG_gadget.config.SetWarningColor__",
                                description: "__MSG_gadget.config.HexCode__",
                                type: "text",
                                value: gadget.getPref("warning_color")
                            },
                            {
                                id: "critical_color-id",
                                userpref: "critical_color",
                                label: "__MSG_gadget.config.SetCriticalColor__",
                                description: "__MSG_gadget.config.HexCode__",
                                type: "text",
                                value: gadget.getPref("critical_color")
                            },
                            AJS.gadget.fields.nowConfigured()
                        ]
                    };
                },
                args: function()
                {
                    return [
                        {
                            key: "projectOptions",
                            ajaxOptions:  "/rest/gadget/1.0/filtersAndProjects?showFilters=false"
                        },
                    ];
                }()
            },

person Tyler Wright    schedule 22.04.2013    source источник
comment
Я не вижу, как выглядит гаджет в слиянии, я думаю, вы могли случайно пропустить ссылку.   -  person MNRSullivan    schedule 24.04.2013
comment
i.stack.imgur.com/pZw8w.png   -  person Tyler Wright    schedule 24.04.2013


Ответы (1)


Посмотрите на мой "projectPicker". Я думаю, что это может быть полезно:

AJS.$.extend(true, {}, AJS.gadget.fields.projectPicker(gadget, "project", args.projectOptions),
    {description: "select a project", 
     label: "Project"}
)

Там вы можете добавить свои сообщения следующим образом:

AJS.$.extend(true, {}, AJS.gadget.fields.projectPicker(gadget, "project", args.projectOptions),
    {description: "__MSG_gadget.common.project.label__", 
     label: "__MSG_gadget.common.project.description__"}
) 
person Roman Bubyakin    schedule 07.05.2013