Skip to content

Milestones

List view

  • No due date
    0/4 issues closed
  • No due date
    0/3 issues closed
  • - support sub tabs on edit screen - drop down on generate to organize code - language support: [1] python [2] java [] php [] ruby [] perl [] Typescript [] C# [] kotlin --- add java as another programming language and make sure that this is shown in the language tab in app.html - order tabs alpha by language and add in the export dropdown in generator.html show all programming languages list. Currently we export to JavaScript and Python - add now Java language options. Create options to convert and export to Java as a named variable assigned an array of dictionaries or maps or named objects. Options to output numbers as quoted/unquoted (like JSON output). Option to export as anonymous objects (map/dictionary/ language equivalent), configure the named variable the array/list is assigned to, set object name (if not anonymous) options: add the pretty print options - delimiter, with custom delimiter feature quote numbers checkbox "Number Convert" collection type: array, list assign to variable (configure assigned name) anonymous objects or instantiated objects (assign name) update the documentation pages to have a new page for the programming language and a page for the export options e.g. see docs-src/docs/030-data-formats/python And update the blog post 2026-04-28-more-programming-language-exports.md to describe the addition of this language anything else we should consider for this export language feature? --- code - php collection ``` <?php $items=[ [ "full_name" => "first surname", "number" => 1439869 ], [ "full_name" => "next name", "number" => 99767 ] ]; ``` ruby collection ``` items=[ { full_name: "bob duration", number: 872853 }, { full_name: "tim here", number: 504895 } ]; ``` python array(list) of dictionaries ``` items = [ { "full_name": "george bobson", "number": 6734 }, { "full_name": "Andy Major", "number": 62995 } ] ``` array of objects ``` user_list = [ User("Alice", 1), User("Bob", 2) ] ``` perl collection ``` @perl=( { full_name: "Fad Hatman", number: 51981 }, { full_name: "Book Reader", number: 5563 } ); ``` Others:

    No due date
    3/4 issues closed
  • No due date
    0/1 issues closed