Showing 16 open source projects for "delphi code formatter"

View related business solutions
  • Achieve perfect load balancing with a flexible Open Source Load Balancer Icon
    Achieve perfect load balancing with a flexible Open Source Load Balancer

    Take advantage of Open Source Load Balancer to elevate your business security and IT infrastructure with a custom ADC Solution.

    Boost application security and continuity with SKUDONET ADC, our Open Source Load Balancer, that maximizes IT infrastructure flexibility. Additionally, save up to $470 K per incident with AI and SKUDONET solutions, further enhancing your organization’s risk management and cost-efficiency strategies.
  • Vivantio IT Service Management Icon
    Vivantio IT Service Management

    Your service operation isn’t one-size-fits all, so your IT service management solution shouldn’t be either

    The Vivantio Platform allows you to focus on the IT service management tools that make sense for your organization’s unique service model: from incident, problem and change requests, to service requests, client knowledge and asset management
  • 1
    ktlint

    ktlint

    An anti-bikeshedding Kotlin linter with built-in formatter

    No configuration, which means no decisions to make, nothing to argue about and no special files to manage. While this might sound extreme, keep in mind that ktlint tries to capture (reflect) official code style from kotlinlang.org and Android Kotlin Style Guide (+ we respect your .editorconfig and support additional ruleset|s). Built-in formatter. So that you wouldn't have to fix all style violations by hand. Customizable output. plain (+ plain?group_by_file), JSON, HTML and check style...
    Downloads: 5 This Week
    Last Update:
    See Project
  • 2
    google-java-format

    google-java-format

    Reformats Java source code to comply with Google Java Style

    google-java-format is a program that reformats Java source code to comply with Google Java Style. The formatter can act on whole files, on limited lines, on specific offsets, passing through to standard-out (default) or altered in-place. There is no configurability as to the formatter's algorithm for formatting. This is a deliberate design decision to unify our code formatting on a single format. The formatter can be used in software that generates java to output more legible java code. Just...
    Downloads: 3 This Week
    Last Update:
    See Project
  • 3
    Alcinoe

    Alcinoe

    Alcinoe Component Library For Delphi

    Alcinoe is a library of visual and non-visual components for Delphi. These components can be used in commercial, shareware, freeware, and open-source projects at no cost. Alcinoe is compatible with Delphi Alexandria 11.3 (Patch #1). If you find this project useful, please consider giving it a 'star' on GitHub. It doesn't cost anything, but it helps to promote the code. To set up Alcinoe, first execute CompileAll.bat. This batch file handles a series of tasks: it retrieves and patches...
    Downloads: 2 This Week
    Last Update:
    See Project
  • 4
    PasDoc

    PasDoc

    Documentation tool for ObjectPascal (Free Pascal, Lazarus, Delphi)

    PasDoc is a documentation tool for Pascal and Object Pascal source code. Documentation is generated from comments found in the source code or from external files. Many formatting @-tags are supported. Many output formats are supported, including HTML and LaTeX.
    Downloads: 3 This Week
    Last Update:
    See Project
  • SysAid multi-layered ITSM solution Icon
    SysAid multi-layered ITSM solution

    For organizations spanning all industries and sizes from SMBs to Fortune 500 corporations

    SysAid is an ITSM, Service Desk and Help Desk software solution that integrates all of the essential IT tools into one product. Its rich set of features include a powerful Help Desk, IT Asset Management, and other easy-to-use tools for analyzing and optimizing IT performance.
  • 5
    TeXiFy-IDEA

    TeXiFy-IDEA

    LaTeX support for the IntelliJ platform by JetBrains

    LaTeX support for the IntelliJ Platform by JetBrains. Create the most beautiful LaTeX documents with the user-friendliness of the IntelliJ platform. This plugin adds the tools to make creating LaTeX documents a breeze. We are currently doing our best to develop the plugin.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 6
    Joker

    Joker

    Small Clojure interpreter, linter and formatter

    ... the script is (successfully) executed. (Note use of --file, in this case, to ensure <filename> is not treated as a <socket> specification for the reply.) Our goal is to be suitable for scripting (lightweight, fast startup). This is something that Clojure is not good at and my personal itch I am trying to scratch. Also, to provide some tooling for Clojure and its dialects. Joker has linter mode which can be used for linting Joker, Clojure and ClojureScript code.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 7
    miniblink49

    miniblink49

    Lighter, faster browser kernel of blink to integrate HTML UI in apps

    miniblink is an open source, one file, small browser widget based on chromium. By using C interface, you can create a browser with just some line code. miniblink is an open source, single-file, and currently the smallest known chromium-based browser control. Through its exported pure C interface, a browser control can be created in a few lines of code. C++, C#, Delphi and other language calls (support C++, C#, Delphi language to call). Embedded Nodejs, support electron (with Nodejs, can run...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 8
    Bitwarden Web

    Bitwarden Web

    The website vault

    The Bitwarden web project is an Angular application that powers the web vault.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 9
    HTMLViewer
    HTML Viewer Components for Delphi, Lazarus and C++Builder The HtmlViewer component set consists of the THtmlViewer, TFrameViewer, and TFrameBrowser components. All three are HTML document display components: THtmlViewer * The basic component. * THtmlViewer displays single (non-frame) documents. * It also forms the basis for the other two components. TFrameViewer * Displays both frame and single HTML documents. * TFrameViewer is oriented more for local file system use...
    Leader badge
    Downloads: 123 This Week
    Last Update:
    See Project
  • Case Management Software for Social Services Icon
    Case Management Software for Social Services

    For human services organizations looking for case management software

    Collaborate is customizable case management software for non-profits and social services agencies with teams of 5+ staff.
  • 10
    PUMA Repository

    PUMA Repository

    Pascal Units for Medical Applications

    The PUMA Repository is a collection of Pascal units for medical informatics. It contains reusable source code for a wide field of health-care application development. The code includes a support engine for the European Data Format (EDF and EDF+), converting functions for units of measurement and an HL7 engine. PUMA is compatible with Lazarus and Free Pascal. Some of the units also support other Pascal implementations including Delphi, winsoft Pocket Studio and other compilers.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 11

    HTML XHTML Parser + XPath

    Delphi HTML XHTML Parser +XPath

    Delphi HTML Parser This module lets you work with HTML documents as DOM tree and use XPath for searching tags. It is very simple way to parse HTML. This tested with version Delphi XE5,6 Usage Add in Uses parser.pas; begin HtmlTxt:= ''; //here your html NodeList:= TNodeList.Create; ValueList:= TStringList.Create; DomTree:= TDomTree.Create; DomTreeNode:= DomTree.RootNode; If DomTreeNode.RunParse(HtmlTxt) then begin {your code example...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 12
    WFM Reader

    WFM Reader

    WFM file reader and exporter

    ====== DISCLAIMER ====== Since 2018 WFM reader is out of date. Thanks for using it for several years :) Please use official WFM-file format description (pdf) located at: http://download.tek.com/manual/001137803web_0.pdf ====== DISCLAIMER ====== ====== OBSOLETED DESCRIPTION ====== WFM reader and exporter is the simple application to read WFM file that produced by Tektronix/Rigol oscilloscopes. In the version 2.0: - Recovered the tabbed interface - Added Zooming/Scrolling -...
    Leader badge
    Downloads: 121 This Week
    Last Update:
    See Project
  • 13
    Programa de formatação de código Delphi (Object Pascal) para Html para postar códigos em Blogs em especial para o Blogspot. Program code formatting Delphi (Object Pascal) to Html codes to post in Blogs in particular for Blogspot. Vídeo de Demonstração Demo video http://www.youtube.com/watch?v=7LbdhOzDxwA
    Downloads: 0 This Week
    Last Update:
    See Project
  • 14

    DocTo

    Command line converter for Word Documents

    Convert word documents into any other supported document format. Code available on http://Github.com/tobya/
    Downloads: 0 This Week
    Last Update:
    See Project
  • 15
    sqlCodeFormatter

    sqlCodeFormatter

    SQL code formatter

    Free tool to parse and format SQL code for sybase, oracle, db2, and mysql servers. Keyword uppercase highlighting and tab indentation conditional on paranthetical count.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 16
    TeleFlow-VXML provides a means to generate VoiceXML (or VXML) applications from TeleFlow Tap/Tam files created with TeleFlow Designer and related tools.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Previous
  • You're on page 1
  • Next