Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ugc
AgeCommit message (Collapse)Author
2019-09-09Review fixes.Maxim Pimenov
2019-07-17[indexer] Style fixes for the DataHeader.Maxim Pimenov
2019-05-21[base] [coding] Moved file_name_utils.{c,h}pp from coding/ to base/.Maxim Pimenov
2019-05-15Fixed some warnings.Maxim Pimenov
2019-05-06Build fixgmoryes
2019-04-20[ugc] GCC 6.1 build fix.tatiana-yan
2019-04-19[ugc] Check UGC ratings in constructor.tatiana-yan
2019-04-19[generator] Add ratings section.tatiana-yan
2019-04-18[indexer] enum feature::EGeomType is changed to enum class feature::GeomTypeArsentiy Milchakov
2019-04-15Several explicit constructors per the Cppcheck report.Maxim Pimenov
2019-04-12[std] Use new include style for coding, fixes.tatiana-yan
2019-03-01gcc build fixArsentiy Milchakov
2019-03-01[ugc][statistics] check for zombie reviewsArsentiy Milchakov
2019-03-01[ugc] save ugc file index immediately + tests.Arsentiy Milchakov
2019-03-01[ugc] Stability improvment + statisticsArsentiy Milchakov
2019-01-29Refactored thead poolsMaksim Andrianov
2018-12-04[lightweight] review fixesArsentiy Milchakov
2018-12-04[lightweight] "Get" methods are renamedArsentiy Milchakov
2018-11-30[base] Renamed CHECK_SWITCH to UNREACHABLE.Maxim Pimenov
2018-11-23[coding] Moved functions that encode points to one common file.Maxim Pimenov
2018-11-19[notifications] review fixesArsentiy Milchakov
2018-11-14[index] Make IsEatChecker consistent with new eat category.tatiana-yan
2018-11-14[notifications] review fixesArsentiy Milchakov
2018-11-13[ugc] review fixesArsentiy Milchakov
2018-11-13[ugc] HasUGCForPlace method is addedArsentiy Milchakov
2018-09-18[base] Replaced the namespace my with base.Maxim Pimenov
2018-09-14[base] Unified stl_add and stl_helpers.Maxim Pimenov
2018-09-06[ugc][core] Ugc without ratings is allowed, incorrect rating is changed to 0.0fArsentiy Milchakov
2018-08-07[ugc] Fixed migration issuesVladiMihaylenko
2018-07-30Fixed linux buildVladiMihaylenko
2018-07-30[indexer] Convert LoaderBase methods to const, do not store FeatureType * in ↵tatiana-yan
shared feature loader. Remove mutable from FeatureType. Remove methods which use uninitialized FeatureType * LoaderBase::m_pFt from FeatureBase. Remove FeatureBase because noone else uses it.
2018-07-30[ugc] Added test for empty index file and additional error logging.VladiMihaylenko
2018-07-09[generator] Set mwm bounds rect to rect around region borders, not features ↵tatiana-yan
which cross region border.
2018-06-28[indexer] Move FeaturesLoaderGuard out of DataSourcetatiana-yan
2018-06-28Correct path to ugc migration files in assetsVladiMihaylenko
2018-06-27[index] Classes for Frozen and Editable DataSourcestatiana-yan
2018-06-27[indexer] DataSource unique_ptr<FeatureSourceFactory> -> ↵tatiana-yan
FeatureSourceFactory const &
2018-06-27[indexer] DataSource refactoringtatiana-yan
2018-06-25Merge pull request #8930 from maksimandrianov/mrpropperMaksim Andrianov
[generator] Fixed all warnings (GCC 7.3.0)
2018-06-25Review fixesMaksim Andrianov
2018-06-25After mergeMaksim Andrianov
2018-06-25Rename variables and methods (index to DataSource)Sergey Yershov
2018-06-22Moved ugc migration files option to ugc_tests CMakeList.VladiMihaylenko
2018-06-22Index migration testVladiMihaylenko
2018-06-22Added migration tables validationVladiMihaylenko
2018-06-22UGC migration.VladiMihaylenko
2018-06-22[indexer][editor] Refactor Index into DataSourceSergey Yershov
Remove namespace datasource
2018-06-21[coding] Default cache params in FileReader's constructor.Maxim Pimenov
Now that we know all the places that depended on the implicit params, fall back to the simple constructor. The main problem here was that there used to be a component in generator/intermediate_data.hpp where the same field could be used both as a reader and as a writer via template metaprogramming. This effectively forced the constructors of FileReader and FileWriter to have the same parameter list. Three default parameters in FileReader's constructor that could be implicitly cast to one another only complicated the matters, so once we have removed the |withException| param an extra check was needed that all the constructors are now used as intended.
2018-06-21[coding] FileReader now always throws exception on an out-of-bounds access.Maxim Pimenov
2018-06-15[cmake] Add precompiled headers supportgreshilov