This file is indexed.

/usr/share/aqbanking/backends/aqofxconnect/dialogs/dlg_newuser.dlg is in libaqbanking-data 5.3.5beta-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?xml version="1.0" encoding="utf-8"?>

<!--
/***************************************************************************
 copyright   : (C) 2010 by Martin Preuss
 email       : martin@aqbanking.de

 ***************************************************************************
 * This file is part of the project "AqBanking".                           *
 * Please see toplevel file COPYING of that project for license details.   *
 ***************************************************************************/
-->

<dialog type="dialog" name="ao_newuser" i18n="aqbanking"
        flags="decorShrinkable decorStretchable decorMaximize decorMinimize decorClose decorMenu" >
  <widget type="vlayout" flags="fillX fillY" >

    <!-- wizard pages -->
    <widget type="widgetStack" name="wiz_stack" flags="fillX fillY" >
      <!-- intro page -->
      <widget type="vlayout" flags="fillX fillY" >
        <widget type="label" name="wiz_begin_label" flags="fillX fillY justifyLeft" />
      </widget>

      <!-- bank settings page -->
      <widget type="vlayout" flags="fillX fillY" >
        <widget type="label" name="wiz_bank_label" flags="fillX fillY justifyLeft" />
        <widget type="hLine" flags="fillX" />
        <widget type="gridLayout" columns="2" flags="fillX" >

          <widget type="label" text="Bank Name" />
          <widget type="hlayout" flags="fillX" >
            <widget type="lineEdit" name="wiz_bankname_edit" columns="40" flags="fillX" />
            <widget type="pushButton" text="Select" name="wiz_bank_button" />
          </widget>
          
          <widget type="label" text="Broker Id" />
          <widget type="lineEdit" name="wiz_brokerid_edit" columns="40" flags="fillX" />

          <widget type="label" text="FID" />
          <widget type="lineEdit" name="wiz_fid_edit" columns="40" flags="fillX" />

          <widget type="label" text="ORG" />
          <widget type="lineEdit" name="wiz_org_edit" columns="40" flags="fillX" />

          <widget type="label" text="Server URL" />
          <widget type="lineEdit" name="wiz_url_edit" columns="40" flags="fillX" />

        </widget>
  
      </widget>

      <!-- user page -->
      <widget type="vlayout" flags="fillX fillY" >
        <widget type="label" name="wiz_user_label" flags="fillX fillY justifyLeft" />
        <widget type="hLine" flags="fillX" />
        <widget type="gridLayout" columns="2" flags="fillX" >

          <widget type="label" text="User Name" />
          <widget type="lineEdit" name="wiz_username_edit" columns="40" flags="fillX" />

          <widget type="label" text="User Id" />
          <widget type="lineEdit" name="wiz_userid_edit" columns="40" flags="fillX" />

          <widget type="label" text="Client UID" />
          <widget type="lineEdit" name="wiz_clientuid_edit" columns="40" flags="fillX" />

        </widget>
  
      </widget>

      <!-- app page -->
      <widget type="vlayout" flags="fillX fillY" >
        <widget type="label" name="wiz_app_label" flags="fillX fillY justifyLeft" />
        <widget type="hLine" flags="fillX" />
        <widget type="gridLayout" columns="2" flags="fillX" >

          <widget type="label" text="Emulated Application" flags="justifyLeft" />
          <widget type="comboBox" name="wiz_app_combo" flags="fillX readOnly" />

          <widget type="label" text="Application ID" flags="justifyLeft" />
          <widget type="lineEdit" name="wiz_appid_edit" flags="fillX" />

          <widget type="label" text="Application Version" flags="justifyLeft" />
          <widget type="lineEdit" name="wiz_appver_edit" flags="fillX" />

          <widget type="label" text="Header Version" flags="justifyLeft" />
          <widget type="lineEdit" name="wiz_headerver_edit" flags="fillX" />

        </widget>
  
      </widget>

      <!-- action page -->
      <widget type="vlayout" flags="fillX fillY" >
        <widget type="label" name="wiz_create_label" flags="fillX fillY justifyLeft" />
        <widget type="pushButton" text="Special Settings" name="wiz_special_button" />
      </widget>

      <!-- extro page -->
      <widget type="vlayout" flags="fillX fillY" >
        <widget type="label" name="wiz_end_label" flags="fillX fillY justifyLeft" />
        <widget type="pushButton" text="Retrieve Account List" name="wiz_getaccounts_button" />
      </widget>

    </widget>

    <!-- wizard controls -->
    <widget type="hLine" flags="fillX" />
    <widget type="hlayout" flags="fillX equalWidth" >
      <widget type="pushButton" text="Help"     name="wiz_help_button" />
      <widget type="hspacer" flags="fillX" />
      <widget type="pushButton" text="Previous" name="wiz_prev_button" />
      <widget type="pushButton" text="Next"     name="wiz_next_button" flags="default" />
      <widget type="pushButton" text="Abort"    name="wiz_abort_button" />
    </widget>

  </widget>

</dialog>