]> git.proxmox.com Git - libgit2.git/history - src/config.c
Merge pull request #223 from carlosmn/valgrind
[libgit2.git] / src / config.c
2011-05-23 Jakob Pfenderconfig.c: Fix format string error
2011-05-23 Vicent Marticonfig: Cleanup
2011-05-20 Vicent Marticonfig: Cleanup & renaming of the external API
2011-05-19 Vicent MartiRewrite `git_config_open_global`
2011-05-19 Vicent MartíMerge pull request #193 from carlosmn/config
2011-05-18 Vicent MartíMerge pull request #195 from RomainMuller/master
2011-05-17 Jakob PfenderMerge branch 'development' into unmerged
2011-05-17 Carlos Martín NietoImplement git_config_open_global
2011-05-17 Vicent Martiutils: Move git__str[n]tolower
2011-05-17 Vicent MartíMerge pull request #116 from carlosmn/test-naming
2011-05-17 Vicent MartíMerge pull request #110 from carlosmn/config
2011-05-17 Carlos Martín NietoMove config to the new error methods
2011-05-17 Carlos Martín NietoMerge upstream/development
2011-05-10 Carlos Martín NietoMove config to a backend structure
2011-05-05 Carlos Martín NietoMerge remote-tracking branch 'upstream/development...
2011-05-05 Carlos Martín Nietoconfig: store the section name separately
2011-04-27 Carlos Martín NietoFix git__strntolower
2011-04-19 Carlos Martín NietoFix const char ** warning
2011-04-19 Carlos Martín Nietoconfig: allow uppercase number suffixes
2011-04-11 Carlos Martín NietoUse internal strtol
2011-04-11 Carlos Martín NietoFix number suffix detection
2011-04-11 Carlos Martín NietoMerge upstream/development
2011-04-07 Carlos Martín NietoAdd getting and setting of long int variables
2011-04-07 Carlos Martín NietoSimplify error path in config_set
2011-04-07 Carlos Martín Nietoconfig: make cvar_free behave more like other free...
2011-04-07 Carlos Martín Nietoconfig: use and implement list macros
2011-04-06 Carlos Martín Nietoconfig: use snprintf instead of sprintf
2011-04-06 Carlos Martín Nietoconfig: free the file buffer earlier
2011-04-06 Carlos Martín NietoMerge remote-tracking branch 'upstream/development...
2011-04-06 Carlos Martín Nietoconfig: move str(n)tolower to the git__ namespace
2011-04-06 Carlos Martín Nietoconfig: coding style fixes
2011-04-06 Carlos Martín Nietoconfig: really compare the variable name case-insensitively
2011-04-04 Carlos Martín Nietoconfig: variable name on its own means true
2011-04-04 Carlos Martín Nietoconfig: check for EOF before newline
2011-04-04 Carlos Martín Nietoconfig: support multiline values
2011-04-04 Carlos Martín Nietoconfig: don't mix buffer reading methods
2011-04-04 Carlos Martín Nietoconfig: also free the file buffer on error
2011-04-04 Carlos Martín Nietoconfig: Fix typo and remove debug statement
2011-03-31 Carlos Martín NietoMerge upstream/development
2011-03-31 Carlos Martín NietoAdd support for subsections
2011-03-31 Carlos Martín Nietomove build_varname above parse_section
2011-03-31 Carlos Martín Nietobuild_varname: lowercase the variable name
2011-03-31 Carlos Martín Nietoconfig_parse: no need to check if current_section is...
2011-03-31 Carlos Martín NietoAdd strtolower and strntolower functions
2011-03-31 Carlos Martín Nietoconfig_set: really replace the value on overwrite
2011-03-30 Carlos Martín Nietogit_config_set_int: use the right buffer
2011-03-30 Carlos Martín Nietoconfig: use a singly-linked list instead of a hash...
2011-03-30 Carlos Martín NietoStore the parsed variables
2011-03-30 Carlos Martín NietoInitialise the config reader in config_parse
2011-03-30 Carlos Martín NietoDetermine variable type at runtime
2011-03-30 Carlos Martín Nietobuild_varname: allocate memory
2011-03-29 Carlos Martín NietoExpose config API for setters, getters and foreach
2011-03-29 Carlos Martín NietoAdd build_varname to make a full var name
2011-03-29 Carlos Martín Nietocvar_free: also free the config var's name
2011-03-29 Carlos Martín NietoFree the config var hash contents in git_config_free
2011-03-29 Carlos Martín NietoDon't leak if config parsing fails
2011-03-29 Carlos Martín NietoMove config to support the new hash code
2011-03-28 Carlos Martín NietoCorrectly parse the section header
2011-03-28 Carlos Martín Nietoparse_section_header: save the name where it belongs
2011-03-28 Carlos Martín NietoRead and parse the confguration when openingt the confi...
2011-03-28 Carlos Martín NietoConvert config.c to LF
2011-03-28 Carlos Martín NietoMove the struct declaration outside config.c
2011-03-05 Vicent MartiFirst version - WIP