Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

193
LINES

< > BotCompany Repo | #1034288 // G22DatabasesPanel

JavaX fragment (include) [tags: (select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select( @@iO6b5 @@OorNT archive6cnbp6u6 archivenBtfvvLK use-pretranspiled]

Uses 2164K of libraries. Click here for Pure Java version (70035L/371K).

srecord noeq G22DatabasesPanel(G22Utils g22utils) {
  delegate GazelleDB to G22Utils.
  delegate masterStuff to g22utils.
  
  JObjectTable<GazelleDB> table;
  FileWatchService dirWatcher;
  ReliableSingleThread rstUpdate = new(r _updateTable);
  
  cachedVisualize {
    table = swing(-> new JObjectTable);
    table.defaultAction(runnableToIVF1(rThread openDB));
    table.itemToMap = db -> {
      IG22LoadedDB loaded = db.loadedDB();
      ret litorderedmap(
        "Name" := db.name,
        "Directory" := f2s(db.dir),
        "Loaded" := loaded == null ? "No"
          : (loaded.hidden() ? "Yes (hidden)" : "Yes");      };

    var tbl = table.visualize();
    bindToComponent(tbl, -> {
      dirWatcher = new FileWatchService;
      dirWatcher.addNonRecursiveListener(g22utils.databasesMotherDir(), file -> {
        //print("G22DatabasesPanel File change: " + file);
        rstUpdate!;
      });
      masterStuff().onLoadedDBsChange(rstUpdate);
      rstUpdate!;
    }, -> {
      masterStuff().removeLoadedDBsChangeListener(rstUpdate);
      dispose dirWatcher;
    });

    ret withTopAndBottomMargin(jCenteredRaisedSection("Gazelle projects on this computer",
      northAndCenterWithMargins(
        jline(
          toolTip("Create a new Gazelle project", jbutton("New project...", rThread newDatabase))
        ),
        centerAndEastWithMargin(
          tbl,
          jscroll_vertical_borderless(vstackWithSpacing_fixed(
            // BUTTONS defined here
            
            DefaultButtonBorder(toolTip("Open selected project, keep other projects open too",
              tableDependentButton(table.table, "Open project", rThread openDB))),
            toolTip("Open selected project in hidden mode [without a window]",
              tableDependentButton(table.table, "Open hidden", rThread openDBHidden)),
            toolTip("Open selected project, close all other projects",
              tableDependentButton(table.table, "Switch to project", rThread switchToDB)),
            tableDependentButton(table.table, "Close project", rThread closeDB),
            tableDependentButton(table.table, "Rename project", rThread renameDB),
            tableDependentButton(table.table, "Delete project...", rThread deleteDB),
            tableDependentButton(table.table, "Browse files", rThread browse),
            tableDependentButton(table.table, "Export project as zip...", rThread exportAsZip),
            jThreadedButton("Import project from zip...", rThread importZip),
            jThreadedButton("Download project from Gaz.AI...", rThread downloadProject),
          )))));
  }
  
  void newDatabase {
    temp g22utils.enter();
    
    var tf = jtextfield();
    var lblDir = jlabel(" ");
    var lblStatus = jlabel(" ");
    var button = jThreadedButton("Create project", -> {
      temp g22utils.enter();
      
      S name = trim(tf.getText());
      File dir = newFile(g22utils.databasesMotherDir(), name);
      createEmptyConceptsFileInDir(dir);
      disposeFrame(tf);
      
      masterStuff().openDatabase(dir);
    });
    disableButton(button);
    onEnter(tf, button);
    
    onChange(tf, r {
      S name = trim(tf.getText());
      bool ok;
      S status = " ", path = " ";
      if (isValidFileName(name)) {
        File dir = newFile(g22utils.databasesMotherDir(), name);
        path = f2s(dir);
        if (dirExists(dir))
          status = "A project with that name exists";
        else
          ok = true;
      } else if (!empty(name))
        status = "Project name must be a valid file name";
      setEnabled(button, ok);
      setText(lblStatus, status);
      setText(lblDir, path);
    });
    
    showForm_makeFrame("New Gazelle Project",
      vstackWithSpacing(
        withLabel("Name for new project", tf),
        lblDir,
        lblStatus,
        button);
  }

  void _updateTable { table.setData_force(g22utils.gazelleDBs()); }
  
  void browse { desktopOpen(table.selected().dir); }
  void openDB { masterStuff().openDatabase(table.selected().dir); }
  void openDBHidden { masterStuff().openDatabase(table.selected().dir, true); }
  void switchToDB { masterStuff().switchToDatabase(table.selected().dir); }
  void closeDB { masterStuff().closeDatabase(table.selected().dir); }
  
  void deleteDB {
    var db = table.selected();
    if (db == null) ret;
    
    var dir = db.dir();
    if (g22utils.isConceptsDir(dir))
      ret with messageBox("Can't delete current project");
      
    // First, close the databse
    masterStuff().closeDatabase(dir);
    new DeleteFilesDialog("Delete Gazelle project " + db.name())
      .wholeDirectory(dir).show();
  }
  
  void exportAsZip {
    // Get project directory to export
    File projectDir = table.selected().dir;
    
    // Make up a zip name + place and let user decide where to actually put it
    
    new JFileChooser fileChooser;
    fileChooser.setDialogTitle("Export project as zip");
    fileChooser.setSelectedFile(javaxBackupDir(projectDir.getName() + "-" + ymdMinusHMS() + ".zip"));
    var cbSubdirs = jcheckbox("Include subdirectories", true);
    fileChooser.setAccessory(withLeftMargin(cbSubdirs));

    // Show dialog    
    if (fileChooser.showSaveDialog(visualize()) != JFileChooser.APPROVE_OPTION) ret;
    
    // User has confirmed, proceed with export
    File zip = fileChooser.getSelectedFile();
    S prefix = projectDir.getName() + "/";
    if (isChecked(cbSubdirs))
      dir2zip_recurse(projectDir, zip, prefix);
    else
      dir2zip(projectDir, zip, prefix);
    
    // Show note
    fileSavedInfoBox(zip);
    
    // Try to open in file manager
    desktopOpen(dirOfFile(zip));
  }
  
  void importZip { pcall-messagebox {
    new JFileChooser fc;
    fc.setDialogTitle("Import project from zip");
    fc.setCurrentDirectory(javaxBackupDir());
    if (fc.showOpenDialog(visualize()) == JFileChooser.APPROVE_OPTION) {
      File zip = fc.getSelectedFile();
      g22utils.importProjectFromZip(zip);
    }
  }}
  
  void downloadProject {
    if (gazAICredentialsFromJavaXSecret() == null)
      ret with messageBox("Please enter Gaz.AI credentials first");
      
    inputText("Project to download", projectName -> { pcall-messagebox {
      var zip = g22utils.downloadProjectFromGazAI(gazAICredentialsFromJavaXSecret(), projectName);
      if (swingConfirm("Install downloaded project?"))
        g22utils.importProjectFromZip(zip);
    }});
  }
  
  void renameDB {
    File dir = table.selected().dir;
    
    inputText("New name", fileName(dir), newName -> {
      assertValidFileName(newName);
      if (!eq(newName, fileName(dir))) {
        bool open = masterStuff().isConceptDirLoaded(dir);
        if (open)
          masterStuff().closeDatabase(dir);
        renameFileVerbose(dir, newName);
        if (open)
          masterStuff().openDatabase(dir);
      }
    });
  }
}

download  show line numbers  debug dex  old transpilations   

Relations

Travelled to 4 computer(s): bhatertpkbcr, ekrmjmnbrukm, mowyntqkapby, mqqgnosmbjvj

Comments [hide]

ID Author/Program Comment Date
1716 ubataecj 555 2024-04-06 17:29:03
1715 ubataecj 555 2024-04-06 17:29:03
1714 ubataecj 555 2024-04-06 17:29:03
1713 ubataecj 555 2024-04-06 17:29:01
1712 ubataecj 555 2024-04-06 17:28:58
1710 ubataecj 555 2024-04-06 17:28:54
1709 ubataecj 555 2024-04-06 17:28:52
1708 ubataecj 555 2024-04-06 17:28:42
1707 ubataecj 555 2024-04-06 17:28:36
1706 ubataecj 555 2024-04-06 17:28:31
1705 ubataecj 555 2024-04-06 17:28:21
1704 ubataecj 555 2024-04-06 17:28:19
1701 ubataecj 555 2024-04-06 17:28:05
1691 ubataecj 555 2024-04-06 17:28:00
1687 ubataecj 555 2024-04-06 17:27:57
1684 ubataecj @@rHaoY 2024-04-06 17:27:54
1682 ubataecj 555????%2527%2522\'\" 2024-04-06 17:27:54
1681 ubataecj 555'" 2024-04-06 17:27:54
1680 ubataecj 555'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||' 2024-04-06 17:27:54
1677 ubataecj 555*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15) 2024-04-06 17:27:52
1674 ubataecj 555lOW42cX0')) OR 907=(SELECT 907 FROM PG_SLEEP(15))-- 2024-04-06 17:27:49
1671 ubataecj 555taY8iV8C') OR 910=(SELECT 910 FROM PG_SLEEP(15))-- 2024-04-06 17:27:45
1668 ubataecj 555FM3VQnWW' OR 635=(SELECT 635 FROM PG_SLEEP(15))-- 2024-04-06 17:27:43
1665 ubataecj 555-1)) OR 260=(SELECT 260 FROM PG_SLEEP(15))-- 2024-04-06 17:27:40
1662 ubataecj 555-1) OR 22=(SELECT 22 FROM PG_SLEEP(15))-- 2024-04-06 17:27:36
1659 ubataecj 555-1 OR 532=(SELECT 532 FROM PG_SLEEP(15))-- 2024-04-06 17:27:34
1656 ubataecj 555Jr9WBJQk'; waitfor delay '0:0:15' -- 2024-04-06 17:27:31
1653 ubataecj 555-1 waitfor delay '0:0:15' -- 2024-04-06 17:27:29
1650 ubataecj 555-1); waitfor delay '0:0:15' -- 2024-04-06 17:27:26
1648 ubataecj 555-1; waitfor delay '0:0:15' -- 2024-04-06 17:27:23
1645 ubataecj (select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/ 2024-04-06 17:27:21
1642 ubataecj 5550"XOR(555*if(now()=sysdate(),sleep(15),0))XOR"Z 2024-04-06 17:27:18
1634 ubataecj 5550'XOR(555*if(now()=sysdate(),sleep(15),0))XOR'Z 2024-04-06 17:27:13
1629 ubataecj 555*if(now()=sysdate(),sleep(15),0) 2024-04-06 17:27:11
1618 ubataecj -1" OR 2+689-689-1=0+0+0+1 -- 2024-04-06 17:27:08
1616 ubataecj -1' OR 2+538-538-1=0+0+0+1 or 'P4C5laao'=' 2024-04-06 17:27:08
1615 ubataecj -1' OR 2+130-130-1=0+0+0+1 -- 2024-04-06 17:27:07
1614 ubataecj -1 OR 2+628-628-1=0+0+0+1 2024-04-06 17:27:06
1613 ubataecj -1 OR 2+798-798-1=0+0+0+1 -- 2024-04-06 17:27:06
1612 ubataecj 555 2024-04-06 17:27:06
1605 ubataecj 555 2024-04-06 17:27:03
1601 ubataecj 555 2024-04-06 17:27:01
1600 ubataecj 555 2024-04-06 17:27:01
1599 ubataecj 555 2024-04-06 17:27:01
1595 ubataecj 555 2024-04-06 17:26:58
1583 ubataecj 555 2024-04-06 17:26:51
1579 ubataecj 555 2024-04-06 17:26:48
1575 ubataecj 555 2024-04-06 17:26:45
1571 ubataecj 555 2024-04-06 17:26:43
1562 ubataecj 555 2024-04-06 17:26:40
1558 ubataecj 555 2024-04-06 17:26:39
1557 ubataecj 555 2024-04-06 17:26:36
1554 ubataecj 555 2024-04-06 17:26:35
1551 ubataecj 555 2024-04-06 17:26:32
1530 ubataecj 555 2024-04-06 17:26:20
1519 ubataecj 555 2024-04-06 17:26:17
1513 ubataecj 555 2024-04-06 17:26:13
1510 ubataecj @@MfG45 2024-04-06 17:26:11
1509 ubataecj 555????%2527%2522\'\" 2024-04-06 17:26:11
1508 ubataecj 555'" 2024-04-06 17:26:10
1507 ubataecj 555'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||' 2024-04-06 17:26:10
1504 ubataecj 555*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15) 2024-04-06 17:26:07
1501 ubataecj 5555QRtEGz4')) OR 578=(SELECT 578 FROM PG_SLEEP(15))-- 2024-04-06 17:26:05
1498 ubataecj 555WuRo3hjz') OR 526=(SELECT 526 FROM PG_SLEEP(15))-- 2024-04-06 17:26:02
1495 ubataecj 555y1xPrY8S' OR 457=(SELECT 457 FROM PG_SLEEP(15))-- 2024-04-06 17:25:58
1492 ubataecj 555-1)) OR 94=(SELECT 94 FROM PG_SLEEP(15))-- 2024-04-06 17:25:53
1489 ubataecj 555-1) OR 503=(SELECT 503 FROM PG_SLEEP(15))-- 2024-04-06 17:25:47
1486 ubataecj 555-1 OR 896=(SELECT 896 FROM PG_SLEEP(15))-- 2024-04-06 17:25:39
1483 ubataecj 555QPdWgJic'; waitfor delay '0:0:15' -- 2024-04-06 17:25:33
1480 ubataecj 555-1 waitfor delay '0:0:15' -- 2024-04-06 17:25:25
1477 ubataecj 555-1); waitfor delay '0:0:15' -- 2024-04-06 17:25:19
1474 ubataecj 555-1; waitfor delay '0:0:15' -- 2024-04-06 17:25:12
1471 ubataecj (select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/ 2024-04-06 17:25:09
1468 ubataecj 5550"XOR(555*if(now()=sysdate(),sleep(15),0))XOR"Z 2024-04-06 17:25:06
1460 ubataecj 5550'XOR(555*if(now()=sysdate(),sleep(15),0))XOR'Z 2024-04-06 17:25:00
1452 ubataecj 555*if(now()=sysdate(),sleep(15),0) 2024-04-06 17:24:42
1449 ubataecj -1" OR 2+695-695-1=0+0+0+1 -- 2024-04-06 17:24:25
1447 ubataecj -1' OR 2+818-818-1=0+0+0+1 or 'glo0hq0U'=' 2024-04-06 17:24:22
1445 ubataecj -1' OR 2+201-201-1=0+0+0+1 -- 2024-04-06 17:24:19
1443 ubataecj -1 OR 2+449-449-1=0+0+0+1 2024-04-06 17:24:19
1442 ubataecj -1 OR 2+987-987-1=0+0+0+1 -- 2024-04-06 17:24:17
1441 ubataecj 555 2024-04-06 17:24:17
1439 ubataecj 555 2024-04-06 17:24:06
1436 ubataecj 555 2024-04-06 17:24:01
1435 ubataecj 555 2024-04-06 17:24:01
1434 ubataecj 555 2024-04-06 17:24:01
1433 ubataecj 555 2024-04-06 17:24:01
1431 ubataecj 555 2024-04-06 17:23:58
1429 ubataecj 555 2024-04-06 17:23:54
1427 ubataecj 555 2024-04-06 17:23:51
1425 ubataecj 555 2024-04-06 17:23:48
1423 ubataecj 555 2024-04-06 17:23:45
1421 ubataecj 555 2024-04-06 17:23:42
1419 ubataecj 555 2024-04-06 17:23:40
1417 ubataecj 555 2024-04-06 17:23:37
1415 ubataecj 555 2024-04-06 17:23:33
1413 ubataecj 555 2024-04-06 17:23:31
1412 ubataecj 555 2024-04-06 17:23:31
1411 ubataecj 555 2024-04-06 17:23:31
1410 ubataecj 555 2024-04-06 17:23:31
1409 ubataecj 555 2024-04-06 17:23:30
1408 ubataecj 555 2024-04-06 17:23:30
1406 ubataecj 555 2024-04-06 17:23:27

add comment

Snippet ID: #1034288
Snippet name: G22DatabasesPanel
Eternal ID of this version: #1034288/93
Text MD5: 0401533e34f18c86f38648b737aaba11
Transpilation MD5: 3b9c8da579a7004e705d3ddf5e1152bc
Author: stefan
Category: javax / gazelle v
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2024-04-06 01:14:11
Source code size: 7049 bytes / 193 lines
Pitched / IR pitched: No / No
Views / Downloads: 567 / 1183
Version history: 92 change(s)
Referenced in: #809 - G22DatabasesPanel
#816 - G22DatabasesPanel
#820 - G22DatabasesPanel
#830 - G22DatabasesPanel
#853 - G22DatabasesPanel
#855 - G22DatabasesPanel
#862 - G22DatabasesPanel
#866 - G22DatabasesPanel
#867 - G22DatabasesPanel
#868 - G22DatabasesPanel
#869 - G22DatabasesPanel
#870 - G22DatabasesPanel
#871 - G22DatabasesPanel
#875 - G22DatabasesPanel
#890 - G22DatabasesPanel
#900 - G22DatabasesPanel
#905 - G22DatabasesPanel
#915 - G22DatabasesPanel
#920 - G22DatabasesPanel
#925 - G22DatabasesPanel
#930 - G22DatabasesPanel
#935 - G22DatabasesPanel
#940 - G22DatabasesPanel
#941 - G22DatabasesPanel
#942 - G22DatabasesPanel
#943 - G22DatabasesPanel
#948 - G22DatabasesPanel
#956 - G22DatabasesPanel
#964 - G22DatabasesPanel
#969 - G22DatabasesPanel
#1007 - G22DatabasesPanel
#1012 - G22DatabasesPanel
#1035 - G22DatabasesPanel
#1040 - G22DatabasesPanel
#1041 - G22DatabasesPanel
#1042 - G22DatabasesPanel
#1052 - G22DatabasesPanel
#1060 - G22DatabasesPanel
#1065 - G22DatabasesPanel5w3Ws7CW
#1070 - G22DatabasesPanel
#1071 - -1 OR 2+281-281-1=0+0+0+1 --
#1072 - -1 OR 2+708-708-1=0+0+0+1
#1073 - -1' OR 2+923-923-1=0+0+0+1 --
#1074 - -1' OR 2+826-826-1=0+0+0+1 or 'kXm7P3hg'='
#1075 - -1" OR 2+619-619-1=0+0+0+1 --
#1080 - if(now()=sysdate(),sleep(15),0)
#1090 - G22DatabasesPanel0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z
#1095 - G22DatabasesPanel0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z
#1103 - (select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/
#1111 - G22DatabasesPanel-1 waitfor delay '0:0:15' --
#1116 - G22DatabasesPanelw8uwmYuP'; waitfor delay '0:0:15' --
#1124 - G22DatabasesPanel5NGJ1d5z' OR 935=(SELECT 935 FROM PG_SLEEP(15))--
#1133 - G22DatabasesPanelC5jkV9WG') OR 395=(SELECT 395 FROM PG_SLEEP(15))--
#1138 - G22DatabasesPanelzZjhEnsA')) OR 486=(SELECT 486 FROM PG_SLEEP(15))--
#1142 - G22DatabasesPanel'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'
#1143 - G22DatabasesPanel'"
#1144 - G22DatabasesPanel
#1145 - @@NI08K
#1154 - G22DatabasesPanel
#1161 - G22DatabasesPanel
#1165 - G22DatabasesPanel
#1169 - G22DatabasesPanel
#1173 - G22DatabasesPanel
#1177 - G22DatabasesPanel
#1181 - G22DatabasesPanel
#1188 - G22DatabasesPanel
#1193 - G22DatabasesPanel
#1198 - G22DatabasesPanel
#1206 - G22DatabasesPanel
#1216 - G22DatabasesPanel
#1221 - G22DatabasesPanel
#1226 - G22DatabasesPanel
#1231 - G22DatabasesPanel
#1236 - G22DatabasesPanel
#1241 - G22DatabasesPanel
#1246 - G22DatabasesPanel
#1251 - G22DatabasesPanel
#1255 - G22DatabasesPanel
#1256 - G22DatabasesPanel
#1257 - G22DatabasesPanel
#1258 - G22DatabasesPanel
#1263 - G22DatabasesPanel
#1274 - G22DatabasesPanel
#1283 - G22DatabasesPanel
#1323 - G22DatabasesPanel
#1325 - G22DatabasesPanel
#1328 - G22DatabasesPanel
#1331 - G22DatabasesPanel
#1332 - G22DatabasesPanel
#1333 - G22DatabasesPanel
#1334 - G22DatabasesPanel
#1335 - G22DatabasesPanel
#1336 - G22DatabasesPanel
#1339 - G22DatabasesPanel
#1347 - G22DatabasesPanel
#1350 - G22DatabasesPanel
#1356 - G22DatabasesPanel
#1360 - G22DatabasesPanel
#1364 - G22DatabasesPanel
#1368 - G22DatabasesPanel
#1381 - G22DatabasesPanel
#1387 - G22DatabasesPanel
#1392 - G22DatabasesPanel
#1393 - G22DatabasesPanel
#1395 - G22DatabasesPanel
#1396 - G22DatabasesPanel
#1406 - G22DatabasesPanel
#1414 - G22DatabasesPanel
#1419 - G22DatabasesPanel
#1424 - G22DatabasesPanel
#1425 - G22DatabasesPanel
#1426 - G22DatabasesPanel
#1427 - G22DatabasesPanel
#1428 - G22DatabasesPanel
#1429 - G22DatabasesPanel
#1434 - G22DatabasesPanel
#1444 - G22DatabasesPanel
#1449 - G22DatabasesPanel
#1457 - G22DatabasesPanel
#1462 - G22DatabasesPanel
#1467 - G22DatabasesPanel
#1472 - G22DatabasesPanel
#1482 - G22DatabasesPanel
#1487 - G22DatabasesPanel
#1495 - G22DatabasesPanel
#1500 - G22DatabasesPanel
#1505 - G22DatabasesPanel
#1513 - G22DatabasesPanel
#1519 - G22DatabasesPanel
#1527 - G22DatabasesPanel
#1532 - G22DatabasesPanel
#1533 - G22DatabasesPanel
#1534 - G22DatabasesPanel
#1535 - G22DatabasesPanel
#1545 - G22DatabasesPanel
#1553 - G22DatabasesPanel
#1558 - G22DatabasesPanel
#1563 - G22DatabasesPanel
#1564 - G22DatabasesPanel
#1566 - G22DatabasesPanel
#1567 - G22DatabasesPanel
#1568 - G22DatabasesPanel
#1569 - G22DatabasesPanel
#1574 - G22DatabasesPanel
#1584 - G22DatabasesPanel
#1589 - G22DatabasesPanel
#1597 - G22DatabasesPanel
#1602 - G22DatabasesPanel
#1607 - G22DatabasesPanel
#1612 - G22DatabasesPanel
#1621 - G22DatabasesPanel
#1626 - G22DatabasesPanel
#1633 - G22DatabasesPanel
#1638 - G22DatabasesPanel
#1642 - G22DatabasesPanel
#1649 - G22DatabasesPanel
#1653 - G22DatabasesPanel
#1657 - G22DatabasesPanel
#1661 - G22DatabasesPanel
#1662 - G22DatabasesPanel
#1664 - G22DatabasesPanel
#1665 - G22DatabasesPanel
#1674 - G22DatabasesPanel
#1681 - G22DatabasesPanel
#1685 - G22DatabasesPanel
#1689 - G22DatabasesPanel
#1690 - G22DatabasesPanel
#1691 - G22DatabasesPanel
#1692 - G22DatabasesPanel
#1693 - G22DatabasesPanel
#1694 - G22DatabasesPanel
#1698 - G22DatabasesPanel
#1707 - G22DatabasesPanel
#1711 - G22DatabasesPanel
#1718 - G22DatabasesPanel
#1721 - G22DatabasesPanel
#1724 - G22DatabasesPanel
#1727 - G22DatabasesPanel
#1730 - G22DatabasesPanel
#1733 - G22DatabasesPanel
#1736 - G22DatabasesPanel
#1739 - G22DatabasesPanel
#1742 - G22DatabasesPanel
#1748 - G22DatabasesPanel
#1750 - G22DatabasesPanel
#1752 - G22DatabasesPanel
#1754 - G22DatabasesPanel
#1755 - G22DatabasesPanel
#1756 - G22DatabasesPanel
#1758 - G22DatabasesPanel
#1766 - G22DatabasesPanel
#1003674 - Standard Classes + Interfaces (LIVE continued in #1034167)
#1034641 - G22ScriptsFromAllDBsPanel
#1034679 - G22DBFileBrowser
#1037557 - G22DatabasesPanel
#1037560 - G22DatabasesPanel
#1037561 - G22DatabasesPanel
#1037562 - G22DatabasesPanel
#1037563 - G22DatabasesPanel
#1037564 - G22DatabasesPanel
#1037568 - G22DatabasesPanel
#1037579 - G22DatabasesPanel
#1037582 - G22DatabasesPanel
#1037585 - G22DatabasesPanel
#1037589 - G22DatabasesPanel
#1037596 - G22DatabasesPanel
#1037604 - G22DatabasesPanel
#1037613 - G22DatabasesPanel
#1037618 - G22DatabasesPanel
#1037624 - G22DatabasesPanel
#1037625 - G22DatabasesPanel
#1037627 - G22DatabasesPanel
#1037628 - G22DatabasesPanel