aboutsummaryrefslogtreecommitdiff
path: root/src/namestore/Makefile.am
Commit message (Collapse)AuthorAge
* BUILD: Move namestore to serviceMartin Schanzenbach2023-10-19
|
* BUILD: Move namecache to serviceMartin Schanzenbach2023-10-19
|
* BUILD: more more components into new structure; ftbfs fixMartin Schanzenbach2023-10-18
|
* BUILD: Move identity/rest components to service/rest-pluginMartin Schanzenbach2023-10-18
|
* BUILD: Move testing to libMartin Schanzenbach2023-10-18
|
* BUILD: Move pq/sq to libMartin Schanzenbach2023-10-18
|
* BUILD: Move json to libMartin Schanzenbach2023-10-18
|
* NEWS: Refactoring components under src/ into lib/, plugin/, cli/ and service/Martin Schanzenbach2023-10-18
| | | | | This also includes a necessary API refactoring of crypto from IDENTITY to UTIL.
* modernize namecache postgres implementationChristian Grothoff2022-11-22
|
* modernize namestore postgres plugin, a bitChristian Grothoff2022-11-21
|
* - add test; update manpageMartin Schanzenbach2022-11-20
|
* IDENTITYMartin Schanzenbach2022-10-29
| | | | | | | This commit is a major rework of the unclean GNUNET_IDENTITY_*Key structures and its use in serialized objects (e.g. RPC messages). The structures are now no longer to be used directly but instead through their serialization helper functions whenever needed.
* -more rest API fixes, test fixMartin Schanzenbach2022-10-23
|
* -more linker issuesChristian Grothoff2022-10-19
|
* Merge branch 'master' of git+ssh://git.gnunet.org/gnunetMartin Schanzenbach2022-10-20
|\
| * -fix linker issueChristian Grothoff2022-10-19
| |
* | -fix tests; add zonefile testMartin Schanzenbach2022-10-20
|/
* NAMESTORE: Start parser for DNS zonefilesMartin Schanzenbach2022-10-19
|
* -theses are also not namestore tests, but GNS testsMartin Schanzenbach2022-10-04
|
* -theses are not namestore tests, but GNS testsMartin Schanzenbach2022-10-04
|
* NAMESTORE: Add performance tests for bulk import/txMartin Schanzenbach2022-10-03
|
* NAMESTORE: Add DB setup utility with SQlite support; PQ brokenMartin Schanzenbach2022-09-30
|
* -changelog housekeeping; various build cleanupsv0.17.6Martin Schanzenbach2022-09-26
|
* NAMESTORE: Towards proper transactional locksMartin Schanzenbach2022-09-23
|
* NAMESTORE: Add select ... for update / edit records APIsMartin Schanzenbach2022-09-23
|
* NAMESTORE: Add tx API for postgresMartin Schanzenbach2022-09-23
|
* NAMESTORE: Remove head based databaseMartin Schanzenbach2022-09-23
| | | | | | The "flat" file (heap based) storage is not compatible with a transactional API. A new file-based storage has to be written if required in the future.
* NAMESTORE: Add begin, commit and rollback API messagesMartin Schanzenbach2022-09-23
| | | | | Namestore service can now handle begin commit and rollback. A test for rollback exists and works for sqlite.
* NAMESTORE: Towards new transaction-based APIMartin Schanzenbach2022-03-21
|
* NAMESTORE: Add record set blocking APIMartin Schanzenbach2022-03-16
| | | | | | | New API that allows the caller to reserve the mofification of a record set under a label. The record set cannot be modified by other clients until released.
* BUILD: Remove --disable-testing. Issue #7033Martin Schanzenbach2021-10-11
|
* -remove (invalid) testing zone keys !tarballMartin Schanzenbach2021-08-29
|
* [FCFSD] Provide a better user experienceAlessio Vanni2021-05-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The motivations behind these changes are as following. To begin with, at the most superficial level, the form is given a better appearance, instead of some plain XHTML. Additionally, the served pages can be substituted with something else by using an entry in the configuration value, altough with some limitations. The page listing all the registered zones has been removed in favour of a search function. A configuration entry could've been used to let service operators choose between showing the full listing or not, but at the same time, being presented with a (possibly) giant list of names is not that great from a usability point of view. Having a search function is, at the very least, faster than having to wait for the full list to be displayed before being able to use the user agent's page search feature. Other than the above, people registering names with the service might not want to be known by everyone. Even though checking if a certain name or key was registered already can be known simply by querying the service, it's not straightforward to associate a name with a specific key (or viceversa). Last but not least, the service was restructured to be more "route-oriented" instead of the traditional (X)HTML document format. The main purpose of this change is to decouple usage of the service from the tools used to access it. With a traditional document, users are pretty much forced to use a web browsers as data submission is carried through the standard HTML form handling. Now, it is possible to access the service using any tool capable of speaking HTTP, regardless of wether it's a web browser, cURL or even a custom tool specific for this service. Another advantage of this approach is that it allows adding "layers" to the service, for example an authentication check before letting users register a name. As long as the layer immediately on top of the service is able to send some JSON using HTTP, there is no need to have users access the service itself: just put a "proxy" inbetween and run the service locally, while the proxy handles other administrative tasks before a name can be registered. By using layers, the service can keep being small feature-wise (i.e. provide only searching and registering), while everything else is provided by other applications, including access through protocols other than HTTP.
* more identity-linker fixesChristian Grothoff2020-12-29
|
* -fixMartin Schanzenbach2020-10-15
|
* - more dep fixesMartin Schanzenbach2020-10-15
|
* -fix: namestore test keysMartin Schanzenbach2020-07-06
|
* deps are now required, no need for definesMartin Schanzenbach2020-05-17
|
* introduce have_rest; fix warningsSchanzenbach, Martin2020-05-06
|
* follow-up to win32 removal.ng02019-10-25
|
* add namestore rest testsSchanzenbach, Martin2019-10-11
|
* remove CYGWIN codeblocks, drop vendored Windows openvpn, drop win32 specific ↵ng02019-09-10
| | | | | | | | | files. configures and builds okay. testsuite wasn't checked, will be checked. diff including the plibc removal is now around 14370 lines of code less.
* Use pkg-config to check for MHDDavid Barksdale2019-08-27
|
* use mmap() instead of malloc, rename heap->flat as database is persisted in ↵Christian Grothoff2019-06-29
| | | | flat file
* move namestore pluginSchanzenbach, Martin2019-03-12
|
* avoid failing hard if 'gnunetcheck' db does not existChristian Grothoff2019-02-24
| | | | (or plugins cannot be loaded for other reasons)
* fixing #5439Christian Grothoff2018-11-21
|
* NAMESTORE: rename flat plugin to heapSchanzenbach, Martin2018-10-15
|
* fix build; move rest plugins to separate folderSchanzenbach, Martin2018-08-13
|
* fix makefilesPhil2018-08-01
|