• R/O
  • HTTP
  • SSH
  • HTTPS

Résumé du dépôt

Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

A D package containing my single-file modules


Commits Récents RSS

Révision l'heure Auteur Message:
a534673 2023-12-31 08:45:47 mio trunk search_params: small fix
04175af 2023-12-03 10:40:18 mio search_params-2023.12.03 search_params-2023.12.03
225cb7a 2023-11-11 12:11:59 mio configparser-0.5.2 configparser-0.5.2
6d94de8 2023-11-11 12:10:59 mio configparser: Fix for D versions < 2.098 D 2.098 changed...
ad071cd 2023-11-05 14:25:06 mio configparser-0.5.1 configparser 0.5.1
b491e6c 2023-11-05 14:23:28 mio configparser: add ConfigParserException
7e41651 2023-11-02 11:21:35 nemophila configparser-0.5 configparser: 0.5
f6479bc 2023-11-02 11:20:24 nemophila configparser: improve documentation
74b9155 2023-11-02 10:21:07 nemophila configparser: add readString
a74177c 2023-11-02 10:08:25 nemophila configparser: reformat and add attributes

Tags récemment modifiées

Nom Révision l'heure Auteur
search_params-2023.12.03 04175af 2023-12-03 10:40:46 mio
configparser-0.5.2 225cb7a 2023-11-11 12:12:22 mio
configparser-0.5.1 ad071cd 2023-11-05 14:25:28 mio
configparser-0.5 7e41651 2023-11-02 11:22:24 nemophila
directories-0.3.0 c781f90 2023-07-13 12:19:47 nemophila
trash-0.3.0 1bfc929 2023-04-06 11:09:38 nemophila
directories-0.2.0 8f1f7e3 2023-03-26 09:58:06 nemophila

Branches

Nom Révision l'heure Auteur Message:
trunk a534673 2023-12-31 08:45:47 mio search_params: small fix

README

... a collection of personal modules for the D Programming Language.

This file was last updated 13. July 2023

There files here are just the ones that I'm commonly copying from one of my
projects to another.  The purpose is more to provide a central location that
I can keep the files updated while making it easier for myself to update them
in my various projects.



	CONFIGPARSER

The configparser module will simply parse a INI-like file and provide a 
simple API to access the various settings within the parsed file.  The
API isn't complete yet.



	CNI

The replacement of CONFIGPARSER that has been used in the medialist-cli project.
While very similar in concept to an INI file, CNI has a defined specification,
https://github.com/libuconf/cni.



	DIRECTORIES

Contains a simple API for retrieving the "common directories" for your operating
system.  For example, on Linux (and most other POSIX systems) DIRECTORIES will
use the XDG Base Directory Specification.


	TRASH

While this could be an extension on to DIRECTORIES, I chose to keep it separate
since the specifications they follow are different enough.  In short, this
module will utilise your operating systems "Recycle Bin" concept rather than
simple purging the file from existance.

* This module only compiles under 'Posix' as defined by the D compiler.