aboutsummaryrefslogtreecommitdiff
path: root/src/namestore
Commit message (Collapse)AuthorAge
* BUILD: Remove --disable-testing. Issue #7033Martin Schanzenbach2021-10-11
|
* -remove (invalid) testing zone keys !tarballMartin Schanzenbach2021-08-29
|
* -fix nptr issuesMartin Schanzenbach2021-08-08
|
* -fix spellingChristian Grothoff2021-05-20
|
* -add forgotten NULL valuesAlessio Vanni2021-05-16
|
* [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.
* - fix misc typosChristian Grothoff2021-04-28
|
* -fix many more typosChristian Grothoff2021-04-26
|
* -Fix several incorrect uses of `i.e.'Alessio Vanni2021-04-24
| | | | With some other changes to sentences here and there as I found appropriate.
* -fixing memleaks and nptr derefsMartin Schanzenbach2021-03-26
|
* -more coverityMartin Schanzenbach2021-03-26
|
* more identity-linker fixesChristian Grothoff2020-12-29
|
* -fix postgres test connection stringMartin Schanzenbach2020-11-13
|
* -fix testsMartin Schanzenbach2020-11-10
|
* -more gnsrecord APIMartin Schanzenbach2020-10-22
|
* -fixMartin Schanzenbach2020-10-15
|
* - more dep fixesMartin Schanzenbach2020-10-15
|
* - better wire format for rrblocksMartin Schanzenbach2020-10-15
|
* - towards crypto agility; wipMartin Schanzenbach2020-10-15
|
* postgres: drop use of 'WITH OIDS'Daniel Golle2020-10-05
| | | | | | | | | | | | | | | | | | | | | | PostgreSQL since version 12 no longer supports 'WITH OIDS': Previously, a normally-invisible oid column could be specified during table creation using WITH OIDS; that ability has been removed. Columns can still be explicitly declared as type oid. Operations on tables that have columns created using WITH OIDS will need adjustment. The system catalogs that previously had hidden oid columns now have ordinary oid columns. Hence, SELECT * will now output those columns, whereas previously they would be displayed only if selected explicitly. Drop 'WITH OIDS' as it was stated even on tables for plugins which didn't make any use of the then exposed 'oid' column. In the case of datacache and datastore the 'oid' column is used, so replace the 'WITH OIDS' statement with an explicit 'oid' column having 'OID' type and a corresponding sequence. No measures are taken to still work with PostgreSQL before version 12. Users should update PostgreSQL to version 12 or newer. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* fix: GNUNET_is_zero(ptr) should return enum GNUNET_GenericReturnValue. Fixes ↵Martin Schanzenbach2020-08-12
| | | | #6475.
* -improve request cleanup handlingMartin Schanzenbach2020-08-06
|
* -fix rest plugin issuesMartin Schanzenbach2020-08-06
|
* -fix various bugsMartin Schanzenbach2020-08-06
|
* rest: fix #6462Martin Schanzenbach2020-08-04
|
* merge flags into enum for GNUNET_DISK_pipe() API, fixing #6188Christian Grothoff2020-07-18
|
* fix: namestore rest testMartin Schanzenbach2020-07-06
|
* -fix: actually add namestore keysMartin Schanzenbach2020-07-06
|
* -fix: namestore test keysMartin Schanzenbach2020-07-06
|
* GNUNET_free_non_null -> GNUNET_freeChristian Grothoff2020-07-05
|
* -actually shutdownMartin Schanzenbach2020-06-28
|
* Prevent user from storing records which belong in a BOXMartin Schanzenbach2020-06-28
|
* deps are now required, no need for definesMartin Schanzenbach2020-05-17
|
* fix single label getMartin Schanzenbach2020-05-10
|
* only include result set of not empty after filteringMartin Schanzenbach2020-05-10
|
* add response headers, add replace api to namestoreSchanzenbach, Martin2020-05-09
|
* add filtering and modify deletion APISchanzenbach, Martin2020-05-09
|
* deprecate ill-defined set_nick APISchanzenbach, Martin2020-05-06
|
* introduce have_rest; fix warningsSchanzenbach, Martin2020-05-06
|
* make GNUNET_freez default, have GNUNET_free_nz for cases where that does not ↵Christian Grothoff2020-04-21
| | | | work
* fixing #6149Christian Grothoff2020-04-11
|
* adapt code to work with latest MHD APIChristian Grothoff2020-04-09
|
* Make gnunet-namestore honour expiration dates when importing an URIAlessio Vanni2020-03-21
|
* add concept of supplemental recordsSchanzenbach, Martin2020-02-13
|
* fix duplicate NICK in recordSchanzenbach, Martin2020-02-12
|
* modify GNUNET_PQ_connect_with_cfg to enable flexible loading of .sql filesChristian Grothoff2020-01-24
|
* better put -u lastChristian Grothoff2019-12-18
|
* set expriation to 1 year for URLs added via QR codeChristian Grothoff2019-12-18
|
* nice log messageChristian Grothoff2019-12-17
|
* enhance gnunet-qr to support passing arguments beyond just the URI to commandsChristian Grothoff2019-12-16
|