├── .travis.yml ├── LICENSE ├── NuGet ├── .gitignore ├── Revenj.AspNetCore │ └── Revenj.AspNetCore.nuspec ├── Revenj.Client │ └── Revenj.Client.nuspec ├── Revenj.Oracle32 │ └── Revenj.Oracle32.nuspec ├── Revenj.Oracle64 │ └── Revenj.Oracle64.nuspec └── Revenj │ └── Revenj.nuspec ├── README.md ├── csharp ├── .gitignore ├── Client │ ├── ClientTest │ │ ├── ClientTest.csproj │ │ ├── Common.cs │ │ ├── CountTests.cs │ │ ├── CrudTests.cs │ │ ├── DSL │ │ │ ├── Billing.dsl │ │ │ ├── Finance.dsl │ │ │ ├── Img.dsl │ │ │ ├── Scraping.dsl │ │ │ ├── Store.dsl │ │ │ ├── Struct.dsl │ │ │ └── Test.dsl │ │ ├── LocatorTests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ReportingTests.cs │ │ ├── SearchTests.cs │ │ ├── StandardTests.cs │ │ └── SubmitTests.cs │ ├── LitS3 │ │ ├── AccessControl.cs │ │ ├── AddObject.cs │ │ ├── AssemblyInfo.cs │ │ ├── Bucket.cs │ │ ├── BucketAccess.cs │ │ ├── CopyObject.cs │ │ ├── CreateBucket.cs │ │ ├── DeleteBucket.cs │ │ ├── DeleteObject.cs │ │ ├── GetAllBuckets.cs │ │ ├── GetBucketLocation.cs │ │ ├── GetObject.cs │ │ ├── HMACSHA1.cs │ │ ├── Identity.cs │ │ ├── ListEntries.cs │ │ ├── ListObjects.cs │ │ ├── LitS3.csproj │ │ ├── LitS3.sln │ │ ├── LitS3.vsmdi │ │ ├── LitS3Portable.csproj │ │ ├── Local.testsettings │ │ ├── ObjectTransfer.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Readme.md │ │ ├── RequestUtils.cs │ │ ├── S3Authorizer.cs │ │ ├── S3ErrorCode.cs │ │ ├── S3Exception.cs │ │ ├── S3Headers.cs │ │ ├── S3Request.cs │ │ ├── S3Response.cs │ │ ├── S3Service.cs │ │ └── TraceAndTestImpact.testsettings │ ├── PhoneTests │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ApplicationIcon.png │ │ ├── Background.png │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── PhoneTests.csproj │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── SplashScreenImage.jpg │ │ └── Tests │ │ │ └── TestClass.cs │ ├── Revenj.Client.DotNet │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Revenj.Client.DotNet.csproj │ ├── Revenj.Client.DotNetStandard │ │ └── Revenj.Client.DotNetStandard.csproj │ ├── Revenj.Client.Interface │ │ ├── Patterns │ │ │ ├── DomainEvent.cs │ │ │ ├── DomainObjects.cs │ │ │ ├── History.cs │ │ │ ├── Reporting.cs │ │ │ ├── Repositories.cs │ │ │ ├── ServiceProvider.cs │ │ │ ├── Specification.cs │ │ │ ├── Templater.cs │ │ │ └── Tracking.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Revenj.Client.Interface.csproj │ │ ├── Server │ │ │ ├── IApplicationProxy.cs │ │ │ ├── ICrudProxy.cs │ │ │ ├── IDomainProxy.cs │ │ │ ├── IReportingProxy.cs │ │ │ └── IStandardProxy.cs │ │ └── Storage │ │ │ └── IS3Repository.cs │ ├── Revenj.Client.Portable │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RequestUtils.cs │ │ ├── Revenj.Client.Portable.csproj │ │ ├── StreamUtils.cs │ │ └── Task.cs │ ├── Revenj.Client │ │ ├── Configuration.cs │ │ ├── Patterns │ │ │ ├── ClientDomainStore.cs │ │ │ ├── ClientPersistableRepository.cs │ │ │ ├── ClientRepository.cs │ │ │ ├── ClientSearchableRepository.cs │ │ │ ├── ClientTemplaterService.cs │ │ │ ├── DictionaryServiceLocator.cs │ │ │ ├── History.cs │ │ │ └── Search │ │ │ │ ├── ExpressionSpecification.cs │ │ │ │ ├── GenericSearchFilter.cs │ │ │ │ ├── GenericSpecification.cs │ │ │ │ └── SearchBuilder.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Revenj.Client.csproj │ │ ├── Serialization │ │ │ ├── ProtoMemoryStream.cs │ │ │ └── ProtobufSerialization.cs │ │ ├── Server │ │ │ ├── ApplicationProxy.cs │ │ │ ├── CrudProxy.cs │ │ │ ├── DomainProxy.cs │ │ │ ├── HttpClient.cs │ │ │ ├── ProxyHelper.cs │ │ │ ├── ReportingProxy.cs │ │ │ └── StandardProxy.cs │ │ ├── Startup.cs │ │ ├── StaticLocator.cs │ │ ├── Storage │ │ │ └── S3 │ │ │ │ ├── LitS3Repository.cs │ │ │ │ └── S3.cs │ │ └── Stream │ │ │ └── ChunkedMemoryStream.cs │ └── lib │ │ └── ClientModel.dll ├── CodeAnalysisDictionary.xml ├── Core │ ├── Revenj.Core.Interface │ │ ├── Common │ │ │ ├── CollectionExtensions.cs │ │ │ ├── FrameworkException.cs │ │ │ └── StringExtensions.cs │ │ ├── Database │ │ │ ├── IDatabaseQuery.cs │ │ │ └── IDatabaseQueryManager.cs │ │ ├── DomainPatterns │ │ │ ├── Cache.cs │ │ │ ├── DataContext.cs │ │ │ ├── DomainModel.cs │ │ │ ├── DomainObjects.cs │ │ │ ├── Events.cs │ │ │ ├── History.cs │ │ │ ├── Notification.cs │ │ │ ├── Reporting.cs │ │ │ ├── Repository.cs │ │ │ ├── ServiceLocator.cs │ │ │ ├── Specification.cs │ │ │ ├── SystemStartup.cs │ │ │ ├── Tracking.cs │ │ │ └── Validation.cs │ │ ├── Extensibility │ │ │ ├── Aspects │ │ │ │ ├── IDslAspect.cs │ │ │ │ └── ISystemAspect.cs │ │ │ ├── Attributes │ │ │ │ ├── PluginAttribute.cs │ │ │ │ └── ServiceAttribute.cs │ │ │ ├── IAspectRegistrator.cs │ │ │ ├── IExtensibilityProvider.cs │ │ │ ├── IMixinProvider.cs │ │ │ ├── IObjectFactory.cs │ │ │ ├── IObjectFactoryBuilder.cs │ │ │ ├── IPluginRepository.cs │ │ │ ├── ISystemState.cs │ │ │ └── ITypeResolver.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Revenj.Core.Interface.NetStandard.csproj │ │ ├── Revenj.Core.Interface.csproj │ │ ├── Security │ │ │ ├── IAuthentication.cs │ │ │ ├── IPermissionManager.cs │ │ │ ├── IPrincipalFactory.cs │ │ │ └── Roles.cs │ │ ├── Serialization │ │ │ ├── ISerialization.cs │ │ │ └── IWireSerialization.cs │ │ └── Utility │ │ │ └── Exceptions.cs │ ├── Revenj.Core │ │ ├── Core.cs │ │ ├── DatabasePersistence │ │ │ ├── Postgres │ │ │ │ ├── Attributes │ │ │ │ │ ├── DatabaseFunctionAttribute.cs │ │ │ │ │ ├── RepositoryAttribute.cs │ │ │ │ │ └── SqlSourceAttribute.cs │ │ │ │ ├── BulkRead.cs │ │ │ │ ├── ConnectionInfo.cs │ │ │ │ ├── Converters │ │ │ │ │ ├── ArrayTuple.cs │ │ │ │ │ ├── BoolConverter.cs │ │ │ │ │ ├── ByteaConverter.cs │ │ │ │ │ ├── DateConverter.cs │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ ├── DrawingConverter.cs │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ ├── FloatConverter.cs │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ ├── HstoreConverter.cs │ │ │ │ │ ├── IPostgresTypeConverter.cs │ │ │ │ │ ├── ImageConverter.cs │ │ │ │ │ ├── IntConverter.cs │ │ │ │ │ ├── LongConverter.cs │ │ │ │ │ ├── NumberConverter.cs │ │ │ │ │ ├── PostgresTuple.cs │ │ │ │ │ ├── RecordTuple.cs │ │ │ │ │ ├── S3Converter.cs │ │ │ │ │ ├── SecretConverter.cs │ │ │ │ │ ├── ShortConverter.cs │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ ├── TimestampConverter.cs │ │ │ │ │ ├── ValueTuple.cs │ │ │ │ │ └── XmlConverter.cs │ │ │ │ ├── Npgsql │ │ │ │ │ ├── ByteBuffer.cs │ │ │ │ │ ├── Cache.cs │ │ │ │ │ ├── Copy │ │ │ │ │ │ ├── NpgsqlCopyFormat.cs │ │ │ │ │ │ ├── NpgsqlCopyIn.cs │ │ │ │ │ │ ├── NpgsqlCopyInStream.cs │ │ │ │ │ │ ├── NpgsqlCopyOut.cs │ │ │ │ │ │ ├── NpgsqlCopyOutStream.cs │ │ │ │ │ │ └── NpgsqlCopySerializer.cs │ │ │ │ │ ├── LargeMemoryStream.cs │ │ │ │ │ ├── Message │ │ │ │ │ │ ├── ClientMessage.cs │ │ │ │ │ │ ├── NpgsqlBind.cs │ │ │ │ │ │ ├── NpgsqlCancelRequest.cs │ │ │ │ │ │ ├── NpgsqlDescribe.cs │ │ │ │ │ │ ├── NpgsqlExecute.cs │ │ │ │ │ │ ├── NpgsqlFlush.cs │ │ │ │ │ │ ├── NpgsqlMessageTypes.cs │ │ │ │ │ │ ├── NpgsqlParse.cs │ │ │ │ │ │ ├── NpgsqlPasswordPacket.cs │ │ │ │ │ │ ├── NpgsqlQuery.cs │ │ │ │ │ │ ├── NpgsqlStartupPacket.cs │ │ │ │ │ │ └── NpgsqlSync.cs │ │ │ │ │ ├── NpgsqlAsciiRow.cs │ │ │ │ │ ├── NpgsqlBackEndKeyData.cs │ │ │ │ │ ├── NpgsqlBufferedStream.cs │ │ │ │ │ ├── NpgsqlCommand.cs │ │ │ │ │ ├── NpgsqlCommandBuilder.cs │ │ │ │ │ ├── NpgsqlConnection.cs │ │ │ │ │ ├── NpgsqlConnectionStringBuilder.cs │ │ │ │ │ ├── NpgsqlConnector.cs │ │ │ │ │ ├── NpgsqlConnectorPool.cs │ │ │ │ │ ├── NpgsqlDataAdapter.cs │ │ │ │ │ ├── NpgsqlDataReader.cs │ │ │ │ │ ├── NpgsqlError.cs │ │ │ │ │ ├── NpgsqlException.cs │ │ │ │ │ ├── NpgsqlFactory.cs │ │ │ │ │ ├── NpgsqlMediator.cs │ │ │ │ │ ├── NpgsqlMetaData.xml │ │ │ │ │ ├── NpgsqlNotificationEventArgs.cs │ │ │ │ │ ├── NpgsqlPromotableSinglePhaseNotification.cs │ │ │ │ │ ├── NpgsqlResourceManager.cs │ │ │ │ │ ├── NpgsqlRow.cs │ │ │ │ │ ├── NpgsqlRowDescription.cs │ │ │ │ │ ├── NpgsqlSchema.cs │ │ │ │ │ ├── NpgsqlTransaction.cs │ │ │ │ │ ├── NpgsqlTransactionCallbacks.cs │ │ │ │ │ ├── PGUtil.cs │ │ │ │ │ ├── Parameter │ │ │ │ │ │ ├── NpgsqlParameter.cs │ │ │ │ │ │ ├── NpgsqlParameterCollection.cs │ │ │ │ │ │ └── NpgsqlParameterStatus.cs │ │ │ │ │ ├── SCRAM.cs │ │ │ │ │ ├── Security │ │ │ │ │ │ ├── HashAlgorithm.cs │ │ │ │ │ │ ├── MD5.cs │ │ │ │ │ │ ├── MD5CryptoServiceProvider.cs │ │ │ │ │ │ └── SSPIHandler.cs │ │ │ │ │ └── State │ │ │ │ │ │ ├── NpgsqlClosedState.cs │ │ │ │ │ │ ├── NpgsqlConnectedState.cs │ │ │ │ │ │ ├── NpgsqlCopyInState.cs │ │ │ │ │ │ ├── NpgsqlCopyOutState.cs │ │ │ │ │ │ ├── NpgsqlReadyState.cs │ │ │ │ │ │ ├── NpgsqlStartupState.cs │ │ │ │ │ │ └── NpgsqlState.cs │ │ │ │ ├── NpgsqlTypes │ │ │ │ │ ├── ArrayHandling.cs │ │ │ │ │ ├── BitString.cs │ │ │ │ │ ├── DateDatatypes.cs │ │ │ │ │ ├── FastPath.cs │ │ │ │ │ ├── FastPathArg.cs │ │ │ │ │ ├── LargeObject.cs │ │ │ │ │ ├── LargeObjectManager.cs │ │ │ │ │ ├── NpgsqlDbType.cs │ │ │ │ │ ├── NpgsqlTypeConverters.cs │ │ │ │ │ ├── NpgsqlTypes.cs │ │ │ │ │ ├── NpgsqlTypesHelper.cs │ │ │ │ │ └── TypeConverter.cs │ │ │ │ ├── PostgresConnectionPool.cs │ │ │ │ ├── PostgresDatabaseNotification.cs │ │ │ │ ├── PostgresDatabaseQuery.cs │ │ │ │ ├── PostgresException.cs │ │ │ │ ├── PostgresObjectFactory.cs │ │ │ │ ├── PostgresOlapCubeQuery.cs │ │ │ │ ├── PostgresQueryManager.cs │ │ │ │ ├── PostgresRecordConverter.cs │ │ │ │ ├── PostgresSequence.cs │ │ │ │ ├── PostgresTypedArray.cs │ │ │ │ ├── PostgresVersionInfo.cs │ │ │ │ ├── QueryGeneration │ │ │ │ │ ├── Plugins │ │ │ │ │ │ ├── ExpressionSupport │ │ │ │ │ │ │ ├── ArrayMethods.cs │ │ │ │ │ │ │ ├── DatabaseSpecificationFunctions.cs │ │ │ │ │ │ │ ├── DateTimeMethods.cs │ │ │ │ │ │ │ ├── DecimalMethods.cs │ │ │ │ │ │ │ ├── DictionaryMethods.cs │ │ │ │ │ │ │ ├── ExpressionShortCircuiting.cs │ │ │ │ │ │ │ ├── LikeStringComparison.cs │ │ │ │ │ │ │ ├── LinqMethods.cs │ │ │ │ │ │ │ ├── MathMethods.cs │ │ │ │ │ │ │ ├── NullValuesImpedanceMismatch.cs │ │ │ │ │ │ │ ├── SetMethods.cs │ │ │ │ │ │ │ ├── StringMethods.cs │ │ │ │ │ │ │ └── TreeMethods.cs │ │ │ │ │ │ ├── MemberSupport │ │ │ │ │ │ │ ├── CommonMembers.cs │ │ │ │ │ │ │ ├── DateTimeMembers.cs │ │ │ │ │ │ │ ├── DictionaryMembers.cs │ │ │ │ │ │ │ └── EnumerableMembers.cs │ │ │ │ │ │ ├── ProjectionSimplifications │ │ │ │ │ │ │ ├── CountProjection.cs │ │ │ │ │ │ │ └── SumProjection.cs │ │ │ │ │ │ ├── QuerySimplifications │ │ │ │ │ │ │ ├── ArraySizeSubquery.cs │ │ │ │ │ │ │ ├── ContainsSubquery.cs │ │ │ │ │ │ │ ├── ExistsSubquery.cs │ │ │ │ │ │ │ ├── FastCountWithoutPredicate.cs │ │ │ │ │ │ │ └── InverseExistsSubquery.cs │ │ │ │ │ │ └── Utility.cs │ │ │ │ │ ├── QueryComposition │ │ │ │ │ │ ├── IQuerySimplification.cs │ │ │ │ │ │ ├── MainQueryParts.cs │ │ │ │ │ │ ├── QueryContext.cs │ │ │ │ │ │ ├── QueryParts.cs │ │ │ │ │ │ └── SubqueryParts.cs │ │ │ │ │ ├── QueryExecutor.cs │ │ │ │ │ ├── QuerySourceConverterFactory.cs │ │ │ │ │ ├── Queryable.cs │ │ │ │ │ ├── ResultObjectMapping.cs │ │ │ │ │ ├── SelectSubqueryData.cs │ │ │ │ │ ├── SqlCommandData.cs │ │ │ │ │ ├── TypeUtility.cs │ │ │ │ │ └── Visitors │ │ │ │ │ │ ├── IExpressionMatcher.cs │ │ │ │ │ │ ├── IMemberMatcher.cs │ │ │ │ │ │ ├── IProjectionMatcher.cs │ │ │ │ │ │ ├── ProjectorBuildingExpressionTreeVisitor.cs │ │ │ │ │ │ ├── SelectExpressionTreeVisitor.cs │ │ │ │ │ │ ├── SqlGeneratorExpressionTreeVisitor.cs │ │ │ │ │ │ ├── SqlGeneratorQueryModelVisitor.cs │ │ │ │ │ │ ├── SubqueryGeneratorQueryModelVisitor.cs │ │ │ │ │ │ └── SubquerySelectExpressionTreeVisitor.cs │ │ │ │ └── Setup.cs │ │ │ └── Relinq │ │ │ │ ├── Clauses │ │ │ │ ├── AdditionalFromClause.cs │ │ │ │ ├── CloneContext.cs │ │ │ │ ├── ExpressionTreeVisitors │ │ │ │ │ ├── AccessorFindingExpressionTreeVisitor.cs │ │ │ │ │ ├── CloningExpressionTreeVisitor.cs │ │ │ │ │ ├── FormattingExpressionTreeVisitor.cs │ │ │ │ │ ├── ReferenceReplacingExpressionTreeVisitor.cs │ │ │ │ │ └── ReverseResolvingExpressionTreeVisitor.cs │ │ │ │ ├── Expressions │ │ │ │ │ ├── ExtensionExpression.cs │ │ │ │ │ ├── IPartialEvaluationExceptionExpressionVisitor.cs │ │ │ │ │ ├── IVBSpecificExpressionVisitor.cs │ │ │ │ │ ├── PartialEvaluationExceptionExpression.cs │ │ │ │ │ ├── QuerySourceReferenceExpression.cs │ │ │ │ │ ├── SubQueryExpression.cs │ │ │ │ │ └── VBStringComparisonExpression.cs │ │ │ │ ├── FromClauseBase.cs │ │ │ │ ├── GroupJoinClause.cs │ │ │ │ ├── IBodyClause.cs │ │ │ │ ├── IClause.cs │ │ │ │ ├── IQuerySource.cs │ │ │ │ ├── JoinClause.cs │ │ │ │ ├── MainFromClause.cs │ │ │ │ ├── OrderByClause.cs │ │ │ │ ├── Ordering.cs │ │ │ │ ├── OrderingDirection.cs │ │ │ │ ├── QuerySourceMapping.cs │ │ │ │ ├── ResultOperatorBase.cs │ │ │ │ ├── ResultOperators │ │ │ │ │ ├── AggregateFromSeedResultOperator.cs │ │ │ │ │ ├── AggregateResultOperator.cs │ │ │ │ │ ├── AllResultOperator.cs │ │ │ │ │ ├── AnyResultOperator.cs │ │ │ │ │ ├── AverageResultOperator.cs │ │ │ │ │ ├── CastResultOperator.cs │ │ │ │ │ ├── ChoiceResultOperatorBase.cs │ │ │ │ │ ├── ConcatResultOperator.cs │ │ │ │ │ ├── ContainsResultOperator.cs │ │ │ │ │ ├── CountResultOperator.cs │ │ │ │ │ ├── DefaultIfEmptyResultOperator.cs │ │ │ │ │ ├── DistinctResultOperator.cs │ │ │ │ │ ├── ExceptResultOperator.cs │ │ │ │ │ ├── FirstResultOperator.cs │ │ │ │ │ ├── GroupResultOperator.cs │ │ │ │ │ ├── IntersectResultOperator.cs │ │ │ │ │ ├── LastResultOperator.cs │ │ │ │ │ ├── LongCountResultOperator.cs │ │ │ │ │ ├── MaxResultOperator.cs │ │ │ │ │ ├── MinResultOperator.cs │ │ │ │ │ ├── OfTypeResultOperator.cs │ │ │ │ │ ├── ReverseResultOperator.cs │ │ │ │ │ ├── SequenceFromSequenceResultOperatorBase.cs │ │ │ │ │ ├── SequenceTypePreservingResultOperatorBase.cs │ │ │ │ │ ├── SingleResultOperator.cs │ │ │ │ │ ├── SkipResultOperator.cs │ │ │ │ │ ├── SumResultOperator.cs │ │ │ │ │ ├── TakeResultOperator.cs │ │ │ │ │ ├── UnionResultOperator.cs │ │ │ │ │ └── ValueFromSequenceResultOperatorBase.cs │ │ │ │ ├── SelectClause.cs │ │ │ │ ├── StreamedData │ │ │ │ │ ├── IStreamedData.cs │ │ │ │ │ ├── IStreamedDataInfo.cs │ │ │ │ │ ├── StreamedScalarValueInfo.cs │ │ │ │ │ ├── StreamedSequence.cs │ │ │ │ │ ├── StreamedSequenceInfo.cs │ │ │ │ │ ├── StreamedSingleValueInfo.cs │ │ │ │ │ ├── StreamedValue.cs │ │ │ │ │ └── StreamedValueInfo.cs │ │ │ │ └── WhereClause.cs │ │ │ │ ├── Collections │ │ │ │ ├── ChangeResistantObservableCollectionEnumerator.cs │ │ │ │ ├── IndexValuePair.cs │ │ │ │ ├── MultiDictionaryExtensions.cs │ │ │ │ ├── ObservableCollectionChangedEventArgs.cs │ │ │ │ └── ObservableCollectionExtensions.cs │ │ │ │ ├── DefaultQueryProvider.cs │ │ │ │ ├── IQueryExecutor.cs │ │ │ │ ├── IQueryModelVisitor.cs │ │ │ │ ├── Parsing │ │ │ │ ├── ExpressionTreeVisitor.cs │ │ │ │ ├── ExpressionTreeVisitors │ │ │ │ │ ├── MemberBindings │ │ │ │ │ │ ├── FieldInfoBinding.cs │ │ │ │ │ │ ├── MemberBinding.cs │ │ │ │ │ │ ├── MethodInfoBinding.cs │ │ │ │ │ │ └── PropertyInfoBinding.cs │ │ │ │ │ ├── MultiReplacingExpressionTreeVisitor.cs │ │ │ │ │ ├── PartialEvaluatingExpressionTreeVisitor.cs │ │ │ │ │ ├── ReplacingExpressionTreeVisitor.cs │ │ │ │ │ ├── SubQueryFindingExpressionTreeVisitor.cs │ │ │ │ │ ├── Transformation │ │ │ │ │ │ ├── ExpressionTransformation.cs │ │ │ │ │ │ ├── ExpressionTransformerRegistry.cs │ │ │ │ │ │ ├── IExpressionTranformationProvider.cs │ │ │ │ │ │ ├── IExpressionTransformer.cs │ │ │ │ │ │ └── PredefinedTransformations │ │ │ │ │ │ │ ├── AttributeEvaluatingExpressionTransformer.cs │ │ │ │ │ │ │ ├── DictionaryEntryNewExpressionTransformer.cs │ │ │ │ │ │ │ ├── InvocationOfLambdaExpressionTransformer.cs │ │ │ │ │ │ │ ├── KeyValuePairNewExpressionTransformer.cs │ │ │ │ │ │ │ ├── MemberAddingNewExpressionTransformerBase.cs │ │ │ │ │ │ │ ├── MethodCallExpressionTransformerAttribute.cs │ │ │ │ │ │ │ ├── NullableValueTransformer.cs │ │ │ │ │ │ │ ├── TupleNewExpressionTransformer.cs │ │ │ │ │ │ │ ├── VBCompareStringExpressionTransformer.cs │ │ │ │ │ │ │ └── VBInformationIsNothingExpressionTransformer.cs │ │ │ │ │ ├── TransformingExpressionTreeVisitor.cs │ │ │ │ │ ├── TransparentIdentifierRemovingExpressionTreeVisitor.cs │ │ │ │ │ └── TreeEvaluation │ │ │ │ │ │ ├── EvaluatableTreeFindingExpressionTreeVisitor.cs │ │ │ │ │ │ └── PartialEvaluationInfo.cs │ │ │ │ ├── Structure │ │ │ │ │ ├── ExpressionTreeParser.cs │ │ │ │ │ ├── ExpressionTreeProcessors │ │ │ │ │ │ ├── CompoundExpressionTreeProcessor.cs │ │ │ │ │ │ ├── NullExpressionTreeProcessor.cs │ │ │ │ │ │ ├── PartialEvaluatingExpressionTreeProcessor.cs │ │ │ │ │ │ └── TransformingExpressionTreeProcessor.cs │ │ │ │ │ ├── IExpressionTreeProcessor.cs │ │ │ │ │ ├── INodeTypeProvider.cs │ │ │ │ │ ├── IQueryParser.cs │ │ │ │ │ ├── IntermediateModel │ │ │ │ │ │ ├── AggregateExpressionNode.cs │ │ │ │ │ │ ├── AggregateFromSeedExpressionNode.cs │ │ │ │ │ │ ├── AllExpressionNode.cs │ │ │ │ │ │ ├── AnyExpressionNode.cs │ │ │ │ │ │ ├── AverageExpressionNode.cs │ │ │ │ │ │ ├── CastExpressionNode.cs │ │ │ │ │ │ ├── ClauseGenerationContext.cs │ │ │ │ │ │ ├── ConcatExpressionNode.cs │ │ │ │ │ │ ├── ContainsExpressionNode.cs │ │ │ │ │ │ ├── CountExpressionNode.cs │ │ │ │ │ │ ├── DefaultIfEmptyExpressionNode.cs │ │ │ │ │ │ ├── DistinctExpressionNode.cs │ │ │ │ │ │ ├── ExceptExpressionNode.cs │ │ │ │ │ │ ├── ExpressionNodeInstantiationException.cs │ │ │ │ │ │ ├── ExpressionResolver.cs │ │ │ │ │ │ ├── FirstExpressionNode.cs │ │ │ │ │ │ ├── GroupByExpressionNode.cs │ │ │ │ │ │ ├── GroupByWithResultSelectorExpressionNode.cs │ │ │ │ │ │ ├── GroupJoinExpressionNode.cs │ │ │ │ │ │ ├── IExpressionNode.cs │ │ │ │ │ │ ├── IExpressionNodeParseInfo.cs │ │ │ │ │ │ ├── IQuerySourceExpressionNode.cs │ │ │ │ │ │ ├── IntersectExpressionNode.cs │ │ │ │ │ │ ├── JoinExpressionNode.cs │ │ │ │ │ │ ├── LastExpressionNode.cs │ │ │ │ │ │ ├── LongCountExpressionNode.cs │ │ │ │ │ │ ├── MainSourceExpressionNode.cs │ │ │ │ │ │ ├── MaxExpressionNode.cs │ │ │ │ │ │ ├── MethodCallExpressionNodeBase.cs │ │ │ │ │ │ ├── MethodCallExpressionNodeFactory.cs │ │ │ │ │ │ ├── MinExpressionNode.cs │ │ │ │ │ │ ├── OfTypeExpressionNode.cs │ │ │ │ │ │ ├── OrderByDescendingExpressionNode.cs │ │ │ │ │ │ ├── OrderByExpressionNode.cs │ │ │ │ │ │ ├── QuerySourceExpressionNodeUtility.cs │ │ │ │ │ │ ├── QuerySourceSetOperationExpressionNodeBase.cs │ │ │ │ │ │ ├── ResolvedExpressionCache.cs │ │ │ │ │ │ ├── ResultOperatorExpressionNodeBase.cs │ │ │ │ │ │ ├── ReverseExpressionNode.cs │ │ │ │ │ │ ├── SelectExpressionNode.cs │ │ │ │ │ │ ├── SelectManyExpressionNode.cs │ │ │ │ │ │ ├── SingleExpressionNode.cs │ │ │ │ │ │ ├── SkipExpressionNode.cs │ │ │ │ │ │ ├── SumExpressionNode.cs │ │ │ │ │ │ ├── TakeExpressionNode.cs │ │ │ │ │ │ ├── ThenByDescendingExpressionNode.cs │ │ │ │ │ │ ├── ThenByExpressionNode.cs │ │ │ │ │ │ ├── UnionExpressionNode.cs │ │ │ │ │ │ └── WhereExpressionNode.cs │ │ │ │ │ ├── MethodCallExpressionParser.cs │ │ │ │ │ ├── NodeTypeProviders │ │ │ │ │ │ ├── CompoundNodeTypeProvider.cs │ │ │ │ │ │ ├── MethodInfoBasedNodeTypeRegistry.cs │ │ │ │ │ │ ├── MethodNameBasedNodeTypeRegistry.cs │ │ │ │ │ │ └── NameBasedRegistrationInfo.cs │ │ │ │ │ └── QueryParser.cs │ │ │ │ ├── ThrowingExpressionTreeVisitor.cs │ │ │ │ └── TupleExpressionBuilder.cs │ │ │ │ ├── QueryModel.cs │ │ │ │ ├── QueryModelBuilder.cs │ │ │ │ ├── QueryModelVisitorBase.cs │ │ │ │ ├── QueryProviderBase.cs │ │ │ │ ├── QueryableBase.cs │ │ │ │ ├── Transformations │ │ │ │ └── SubQueryFromClauseFlattener.cs │ │ │ │ ├── UniqueIdentifierGenerator.cs │ │ │ │ └── Utilities │ │ │ │ └── ReflectionUtility.cs │ │ ├── DomainPatterns │ │ │ ├── Aspects │ │ │ │ ├── HandlerAspect.cs │ │ │ │ └── SystemStartupAspect.cs │ │ │ ├── Cache │ │ │ │ ├── EagerCache.cs │ │ │ │ ├── LazyCache.cs │ │ │ │ ├── LookupCache.cs │ │ │ │ └── WeakCache.cs │ │ │ ├── ChangeNotifications.cs │ │ │ ├── Commands.cs │ │ │ ├── DataContext.cs │ │ │ ├── DocumentReport.cs │ │ │ ├── DomainModel.cs │ │ │ ├── DomainTypeResolver.cs │ │ │ ├── EventSource.cs │ │ │ ├── EventStore.cs │ │ │ ├── GlobalEventStore.cs │ │ │ ├── History.cs │ │ │ ├── Signature │ │ │ │ ├── DomainEvent.cs │ │ │ │ └── DomainObjects.cs │ │ │ ├── SingleDomainEventSource.cs │ │ │ ├── Specifications │ │ │ │ ├── SpecificationByExpression.cs │ │ │ │ └── SpecificationByUri.cs │ │ │ └── Validation.cs │ │ ├── Extensibility │ │ │ ├── Aspects │ │ │ │ ├── AspectConfiguration.cs │ │ │ │ ├── AspectRepository.cs │ │ │ │ └── IAspectComposer.cs │ │ │ ├── Attributes │ │ │ │ ├── PluginAspect.cs │ │ │ │ └── ServiceAspect.cs │ │ │ ├── Autofac │ │ │ │ ├── Builder │ │ │ │ │ ├── ConcreteReflectionActivatorData.cs │ │ │ │ │ ├── ContainerBuildOptions.cs │ │ │ │ │ ├── DynamicRegistrationStyle.cs │ │ │ │ │ ├── IConcreteActivatorData.cs │ │ │ │ │ ├── IHideObjectMembers.cs │ │ │ │ │ ├── IRegistrationBuilder.cs │ │ │ │ │ ├── MetadataConfiguration.cs │ │ │ │ │ ├── MetadataKeys.cs │ │ │ │ │ ├── ReflectionActivatorData.cs │ │ │ │ │ ├── RegistrationBuilder.cs │ │ │ │ │ ├── RegistrationBuilderOfTLAR.cs │ │ │ │ │ ├── RegistrationData.cs │ │ │ │ │ ├── RegistrationExtensions.cs │ │ │ │ │ ├── RegistrationOrderExtensions.cs │ │ │ │ │ ├── SimpleActivatorData.cs │ │ │ │ │ └── SingleRegistrationStyle.cs │ │ │ │ ├── Configuration │ │ │ │ │ ├── AssemblyElement.cs │ │ │ │ │ ├── AssemblyElementCollection.cs │ │ │ │ │ ├── ComponentElement.cs │ │ │ │ │ ├── ComponentElementCollection.cs │ │ │ │ │ ├── ConfigurationElementCollection.cs │ │ │ │ │ ├── ConfigurationSettingsReader.cs │ │ │ │ │ ├── DictionaryElementCollection.cs │ │ │ │ │ ├── FileElement.cs │ │ │ │ │ ├── FileElementCollection.cs │ │ │ │ │ ├── ListElementCollection.cs │ │ │ │ │ ├── ListItemElement.cs │ │ │ │ │ ├── MetadataElement.cs │ │ │ │ │ ├── MetadataElementCollection.cs │ │ │ │ │ ├── ModuleElement.cs │ │ │ │ │ ├── ModuleElementCollection.cs │ │ │ │ │ ├── NamedConfigurationElementCollection.cs │ │ │ │ │ ├── ParameterElement.cs │ │ │ │ │ ├── ParameterElementCollection.cs │ │ │ │ │ ├── PropertyElement.cs │ │ │ │ │ ├── PropertyElementCollection.cs │ │ │ │ │ ├── SectionHandler.cs │ │ │ │ │ ├── ServiceElement.cs │ │ │ │ │ ├── ServiceElementCollection.cs │ │ │ │ │ ├── TypeManipulation.cs │ │ │ │ │ └── Util │ │ │ │ │ │ ├── Enforce.cs │ │ │ │ │ │ └── ReflectionExtensions.cs │ │ │ │ ├── ContainerBuilder.cs │ │ │ │ ├── Core │ │ │ │ │ ├── ActivatedEventArgs.cs │ │ │ │ │ ├── ActivatingEventArgs.cs │ │ │ │ │ ├── Activators │ │ │ │ │ │ ├── Delegate │ │ │ │ │ │ │ └── DelegateActivator.cs │ │ │ │ │ │ ├── InstanceActivator.cs │ │ │ │ │ │ ├── ProvidedInstance │ │ │ │ │ │ │ └── ProvidedInstanceActivator.cs │ │ │ │ │ │ └── Reflection │ │ │ │ │ │ │ ├── AutowiringParameter.cs │ │ │ │ │ │ │ ├── AutowiringPropertyInjector.cs │ │ │ │ │ │ │ ├── BindingFlagsConstructorFinder.cs │ │ │ │ │ │ │ ├── ConstructorParameterBinding.cs │ │ │ │ │ │ │ ├── DefaultValueParameter.cs │ │ │ │ │ │ │ ├── IConstructorFinder.cs │ │ │ │ │ │ │ ├── IConstructorSelector.cs │ │ │ │ │ │ │ ├── MatchingSignatureConstructorSelector.cs │ │ │ │ │ │ │ ├── MostParametersConstructorSelector.cs │ │ │ │ │ │ │ └── ReflectionActivator.cs │ │ │ │ │ ├── ComponentRegisteredEventArgs.cs │ │ │ │ │ ├── ConstantParameter.cs │ │ │ │ │ ├── Container.cs │ │ │ │ │ ├── DependencyResolutionException.cs │ │ │ │ │ ├── Diagnostics │ │ │ │ │ │ └── IContainerAwareComponent.cs │ │ │ │ │ ├── Disposer.cs │ │ │ │ │ ├── IActivatedEventArgs.cs │ │ │ │ │ ├── IActivatingEventArgs.cs │ │ │ │ │ ├── IComponentLifetime.cs │ │ │ │ │ ├── IComponentRegistration.cs │ │ │ │ │ ├── IComponentRegistry.cs │ │ │ │ │ ├── IDisposer.cs │ │ │ │ │ ├── IInstanceActivator.cs │ │ │ │ │ ├── IModule.cs │ │ │ │ │ ├── IRegistrationSource.cs │ │ │ │ │ ├── IServiceWithType.cs │ │ │ │ │ ├── ISharingLifetimeScope.cs │ │ │ │ │ ├── InstanceOwnership.cs │ │ │ │ │ ├── InstanceSharing.cs │ │ │ │ │ ├── KeyedService.cs │ │ │ │ │ ├── Lifetime │ │ │ │ │ │ ├── CurrentScopeLifetime.cs │ │ │ │ │ │ ├── LifetimeScope.cs │ │ │ │ │ │ ├── LifetimeScopeBeginningEventArgs.cs │ │ │ │ │ │ ├── LifetimeScopeEndingEventArgs.cs │ │ │ │ │ │ ├── MatchingScopeLifetime.cs │ │ │ │ │ │ └── RootScopeLifetime.cs │ │ │ │ │ ├── NamedPropertyParameter.cs │ │ │ │ │ ├── Parameter.cs │ │ │ │ │ ├── PreparingEventArgs.cs │ │ │ │ │ ├── Registration │ │ │ │ │ │ ├── AdaptationSandbox.cs │ │ │ │ │ │ ├── ComponentNotRegisteredException.cs │ │ │ │ │ │ ├── ComponentRegistration.cs │ │ │ │ │ │ ├── ComponentRegistrationExtensions.cs │ │ │ │ │ │ ├── ComponentRegistrationLifetimeDecorator.cs │ │ │ │ │ │ ├── ComponentRegistry.cs │ │ │ │ │ │ ├── CopyOnWriteRegistry.cs │ │ │ │ │ │ ├── ExternalRegistrySource.cs │ │ │ │ │ │ ├── ScopeRestrictedRegistry.cs │ │ │ │ │ │ └── ServiceRegistrationInfo.cs │ │ │ │ │ ├── RegistrationSourceAddedEventArgs.cs │ │ │ │ │ ├── ResolvedParameter.cs │ │ │ │ │ ├── Resolving │ │ │ │ │ │ ├── IInstanceLookup.cs │ │ │ │ │ │ ├── InstanceLookup.cs │ │ │ │ │ │ ├── InstanceLookupBeginningEventArgs.cs │ │ │ │ │ │ ├── InstanceLookupCompletionBeginningEventArgs.cs │ │ │ │ │ │ ├── InstanceLookupCompletionEndingEventArgs.cs │ │ │ │ │ │ └── InstanceLookupEndingEventArgs.cs │ │ │ │ │ ├── Service.cs │ │ │ │ │ ├── TypedService.cs │ │ │ │ │ └── UniqueService.cs │ │ │ │ ├── Features │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── CollectionRegistrationExtensions.cs │ │ │ │ │ │ └── CollectionRegistrationSource.cs │ │ │ │ │ ├── GeneratedFactories │ │ │ │ │ │ ├── FactoryGenerator.cs │ │ │ │ │ │ ├── GeneratedFactoryActivatorData.cs │ │ │ │ │ │ ├── GeneratedFactoryRegistrationExtensions.cs │ │ │ │ │ │ ├── GeneratedFactoryRegistrationSource.cs │ │ │ │ │ │ └── ParameterMapping.cs │ │ │ │ │ ├── Indexed │ │ │ │ │ │ ├── IIndex.cs │ │ │ │ │ │ └── KeyedServiceIndex.cs │ │ │ │ │ ├── LazyDependencies │ │ │ │ │ │ ├── LazyRegistrationSource.cs │ │ │ │ │ │ └── LazyWithMetadataRegistrationSource.cs │ │ │ │ │ ├── LightweightAdapters │ │ │ │ │ │ ├── LightweightAdapterActivatorData.cs │ │ │ │ │ │ ├── LightweightAdapterRegistrationExtensions.cs │ │ │ │ │ │ └── LightweightAdapterRegistrationSource.cs │ │ │ │ │ ├── Metadata │ │ │ │ │ │ ├── Meta.cs │ │ │ │ │ │ ├── MetaRegistrationSource.cs │ │ │ │ │ │ ├── StronglyTypedMeta.cs │ │ │ │ │ │ └── StronglyTypedMetaRegistrationSource.cs │ │ │ │ │ ├── OpenGenerics │ │ │ │ │ │ ├── OpenGenericDecoratorActivatorData.cs │ │ │ │ │ │ ├── OpenGenericDecoratorRegistrationSource.cs │ │ │ │ │ │ ├── OpenGenericRegistrationExtensions.cs │ │ │ │ │ │ ├── OpenGenericRegistrationSource.cs │ │ │ │ │ │ └── OpenGenericServiceBinder.cs │ │ │ │ │ ├── OwnedInstances │ │ │ │ │ │ ├── Owned.cs │ │ │ │ │ │ └── OwnedInstanceRegistrationSource.cs │ │ │ │ │ ├── ResolveAnything │ │ │ │ │ │ └── AnyConcreteTypeNotAlreadyRegisteredSource.cs │ │ │ │ │ ├── Scanning │ │ │ │ │ │ ├── ScanningActivatorData.cs │ │ │ │ │ │ └── ScanningRegistrationExtensions.cs │ │ │ │ │ └── Variance │ │ │ │ │ │ └── ContravariantRegistrationSource.cs │ │ │ │ ├── IComponentContext.cs │ │ │ │ ├── IContainer.cs │ │ │ │ ├── ILifetimeScope.cs │ │ │ │ ├── IStartable.cs │ │ │ │ ├── Integration │ │ │ │ │ └── Mef │ │ │ │ │ │ ├── ContractBasedService.cs │ │ │ │ │ │ ├── ExportConfigurationBuilder.cs │ │ │ │ │ │ └── RegistrationExtensions.cs │ │ │ │ ├── Module.cs │ │ │ │ ├── NamedParameter.cs │ │ │ │ ├── ParameterExtensions.cs │ │ │ │ ├── PositionalParameter.cs │ │ │ │ ├── PropertyWiringFlags.cs │ │ │ │ ├── RegistrationExtensions.cs │ │ │ │ ├── ResolutionExtensions.cs │ │ │ │ ├── TypeExtensions.cs │ │ │ │ ├── TypedParameter.cs │ │ │ │ └── Util │ │ │ │ │ ├── Disposable.cs │ │ │ │ │ ├── Enforce.cs │ │ │ │ │ ├── ReflectionExtensions.cs │ │ │ │ │ ├── ReleaseAction.cs │ │ │ │ │ ├── SequenceExtensions.cs │ │ │ │ │ ├── SequenceGenerator.cs │ │ │ │ │ ├── Silverlight │ │ │ │ │ ├── AllowPartiallyTrustedCallerAttribute.cs │ │ │ │ │ └── SerializableAttribute.cs │ │ │ │ │ ├── Traverse.cs │ │ │ │ │ ├── TypeExtensions.cs │ │ │ │ │ └── WindowsPhone │ │ │ │ │ ├── Wp7Extensions.cs │ │ │ │ │ └── Wp7FactoryGenerator.cs │ │ │ ├── Container │ │ │ │ └── AutofacObjectFactory.cs │ │ │ ├── DynamicProxy │ │ │ │ ├── CastleDynamicProxyProvider.cs │ │ │ │ ├── CastleInterceptor.cs │ │ │ │ ├── CastleSelector.cs │ │ │ │ ├── IDynamicProxyProvider.cs │ │ │ │ └── IInterceptorRegistrator.cs │ │ │ ├── Plugins │ │ │ │ ├── AutofacMefProvider.cs │ │ │ │ ├── PluginRepository.cs │ │ │ │ ├── PluginsConfiguration.cs │ │ │ │ └── PluginsProvider.cs │ │ │ ├── Setup.cs │ │ │ └── SystemInitialization.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Revenj.Core.NetStandard.csproj │ │ ├── Revenj.Core.csproj │ │ ├── Security │ │ │ ├── DSL │ │ │ │ └── Security.dsl │ │ │ ├── IGlobalPermission.cs │ │ │ ├── IRolePermission.cs │ │ │ ├── IUser.cs │ │ │ ├── IUserRoles.cs │ │ │ ├── Mono.Security │ │ │ │ ├── Mono.Math.Prime.Generator │ │ │ │ │ ├── NextPrimeFinder.cs │ │ │ │ │ ├── PrimeGeneratorBase.cs │ │ │ │ │ └── SequentialSearchPrimeGeneratorBase.cs │ │ │ │ ├── Mono.Math.Prime │ │ │ │ │ ├── ConfidenceFactor.cs │ │ │ │ │ └── PrimalityTests.cs │ │ │ │ ├── Mono.Math │ │ │ │ │ └── BigInteger.cs │ │ │ │ ├── Mono.Security.Authenticode │ │ │ │ │ ├── AuthenticodeBase.cs │ │ │ │ │ ├── AuthenticodeDeformatter.cs │ │ │ │ │ ├── AuthenticodeFormatter.cs │ │ │ │ │ ├── PrivateKey.cs │ │ │ │ │ └── SoftwarePublisherCertificate.cs │ │ │ │ ├── Mono.Security.Cryptography │ │ │ │ │ ├── ARC4Managed.cs │ │ │ │ │ ├── CryptoConvert.cs │ │ │ │ │ ├── CryptoTools.cs │ │ │ │ │ ├── DHKeyGeneration.cs │ │ │ │ │ ├── DHParameters.cs │ │ │ │ │ ├── DiffieHellman.cs │ │ │ │ │ ├── DiffieHellmanManaged.cs │ │ │ │ │ ├── KeyPairPersistence.cs │ │ │ │ │ ├── MD2.cs │ │ │ │ │ ├── MD2Managed.cs │ │ │ │ │ ├── MD4.cs │ │ │ │ │ ├── MD4Managed.cs │ │ │ │ │ ├── MD5SHA1.cs │ │ │ │ │ ├── Null.cs │ │ │ │ │ ├── PKCS1.cs │ │ │ │ │ ├── PKCS8.cs │ │ │ │ │ ├── RC4.cs │ │ │ │ │ ├── RSAManaged.cs │ │ │ │ │ ├── SHA224.cs │ │ │ │ │ ├── SHA224Managed.cs │ │ │ │ │ ├── SymmetricTransform.cs │ │ │ │ │ └── TlsHMAC.cs │ │ │ │ ├── Mono.Security.Interface │ │ │ │ │ ├── Alert.cs │ │ │ │ │ ├── CertificateValidationHelper.cs │ │ │ │ │ ├── CipherAlgorithmType.cs │ │ │ │ │ ├── CipherSuiteCode.cs │ │ │ │ │ ├── ExchangeAlgorithmType.cs │ │ │ │ │ ├── HashAlgorithmType.cs │ │ │ │ │ ├── IMonoSslStream.cs │ │ │ │ │ ├── MonoTlsConnectionInfo.cs │ │ │ │ │ ├── MonoTlsProvider.cs │ │ │ │ │ ├── MonoTlsProviderFactory.cs │ │ │ │ │ ├── MonoTlsSettings.cs │ │ │ │ │ ├── README.md │ │ │ │ │ ├── TlsException.cs │ │ │ │ │ ├── TlsProtocolCode.cs │ │ │ │ │ └── TlsProtocols.cs │ │ │ │ ├── Mono.Security.Protocol.Ntlm │ │ │ │ │ ├── ChallengeResponse.cs │ │ │ │ │ ├── ChallengeResponse2.cs │ │ │ │ │ ├── MessageBase.cs │ │ │ │ │ ├── NtlmAuthLevel.cs │ │ │ │ │ ├── NtlmFlags.cs │ │ │ │ │ ├── NtlmSettings.cs │ │ │ │ │ ├── Type1Message.cs │ │ │ │ │ ├── Type2Message.cs │ │ │ │ │ └── Type3Message.cs │ │ │ │ ├── Mono.Security.Protocol.Tls.Handshake.Client │ │ │ │ │ ├── TlsClientCertificate.cs │ │ │ │ │ ├── TlsClientCertificateVerify.cs │ │ │ │ │ ├── TlsClientFinished.cs │ │ │ │ │ ├── TlsClientHello.cs │ │ │ │ │ ├── TlsClientKeyExchange.cs │ │ │ │ │ ├── TlsServerCertificate.cs │ │ │ │ │ ├── TlsServerCertificateRequest.cs │ │ │ │ │ ├── TlsServerFinished.cs │ │ │ │ │ ├── TlsServerHello.cs │ │ │ │ │ ├── TlsServerHelloDone.cs │ │ │ │ │ └── TlsServerKeyExchange.cs │ │ │ │ ├── Mono.Security.Protocol.Tls.Handshake.Server │ │ │ │ │ ├── TlsClientCertificate.cs │ │ │ │ │ ├── TlsClientCertificateVerify.cs │ │ │ │ │ ├── TlsClientFinished.cs │ │ │ │ │ ├── TlsClientHello.cs │ │ │ │ │ ├── TlsClientKeyExchange.cs │ │ │ │ │ ├── TlsServerCertificate.cs │ │ │ │ │ ├── TlsServerCertificateRequest.cs │ │ │ │ │ ├── TlsServerFinished.cs │ │ │ │ │ ├── TlsServerHello.cs │ │ │ │ │ ├── TlsServerHelloDone.cs │ │ │ │ │ └── TlsServerKeyExchange.cs │ │ │ │ ├── Mono.Security.Protocol.Tls.Handshake │ │ │ │ │ ├── ClientCertificateType.cs │ │ │ │ │ ├── HandshakeMessage.cs │ │ │ │ │ └── HandshakeType.cs │ │ │ │ ├── Mono.Security.Protocol.Tls │ │ │ │ │ ├── Alert.cs │ │ │ │ │ ├── CipherAlgorithmType.cs │ │ │ │ │ ├── CipherSuite.cs │ │ │ │ │ ├── CipherSuiteCollection.cs │ │ │ │ │ ├── CipherSuiteFactory.cs │ │ │ │ │ ├── ClientContext.cs │ │ │ │ │ ├── ClientRecordProtocol.cs │ │ │ │ │ ├── ClientSessionCache.cs │ │ │ │ │ ├── ContentType.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── DebugHelper.cs │ │ │ │ │ ├── ExchangeAlgorithmType.cs │ │ │ │ │ ├── HandshakeState.cs │ │ │ │ │ ├── HashAlgorithmType.cs │ │ │ │ │ ├── RSASslSignatureDeformatter.cs │ │ │ │ │ ├── RSASslSignatureFormatter.cs │ │ │ │ │ ├── RecordProtocol.cs │ │ │ │ │ ├── SecurityCompressionType.cs │ │ │ │ │ ├── SecurityParameters.cs │ │ │ │ │ ├── SecurityProtocolType.cs │ │ │ │ │ ├── ServerContext.cs │ │ │ │ │ ├── ServerRecordProtocol.cs │ │ │ │ │ ├── SslCipherSuite.cs │ │ │ │ │ ├── SslClientStream.cs │ │ │ │ │ ├── SslHandshakeHash.cs │ │ │ │ │ ├── SslServerStream.cs │ │ │ │ │ ├── SslStreamBase.cs │ │ │ │ │ ├── TlsCipherSuite.cs │ │ │ │ │ ├── TlsClientSettings.cs │ │ │ │ │ ├── TlsException.cs │ │ │ │ │ ├── TlsServerSettings.cs │ │ │ │ │ └── TlsStream.cs │ │ │ │ ├── Mono.Security.X509.Extensions │ │ │ │ │ ├── AuthorityKeyIdentifierExtension.cs │ │ │ │ │ ├── BasicConstraintsExtension.cs │ │ │ │ │ ├── CRLDistributionPointsExtension.cs │ │ │ │ │ ├── CertificatePoliciesExtension.cs │ │ │ │ │ ├── ExtendedKeyUsageExtension.cs │ │ │ │ │ ├── GeneralNames.cs │ │ │ │ │ ├── KeyAttributesExtension.cs │ │ │ │ │ ├── KeyUsageExtension.cs │ │ │ │ │ ├── NetscapeCertTypeExtension.cs │ │ │ │ │ ├── PrivateKeyUsagePeriodExtension.cs │ │ │ │ │ ├── SubjectAltNameExtension.cs │ │ │ │ │ └── SubjectKeyIdentifierExtension.cs │ │ │ │ ├── Mono.Security.X509.Stores │ │ │ │ │ ├── FileCertificateStore.cs │ │ │ │ │ └── ICertificateStore.cs │ │ │ │ ├── Mono.Security.X509 │ │ │ │ │ ├── ITrustAnchors.cs │ │ │ │ │ ├── PKCS12.cs │ │ │ │ │ ├── TrustAnchors.cs │ │ │ │ │ ├── X501Name.cs │ │ │ │ │ ├── X509Builder.cs │ │ │ │ │ ├── X509CRL.cs │ │ │ │ │ ├── X509Certificate.cs │ │ │ │ │ ├── X509CertificateBuilder.cs │ │ │ │ │ ├── X509CertificateCollection.cs │ │ │ │ │ ├── X509Chain.cs │ │ │ │ │ ├── X509ChainStatusFlags.cs │ │ │ │ │ ├── X509Extension.cs │ │ │ │ │ ├── X509Extensions.cs │ │ │ │ │ ├── X509Store.cs │ │ │ │ │ ├── X509StoreManager.cs │ │ │ │ │ ├── X509Stores.cs │ │ │ │ │ └── X520Attributes.cs │ │ │ │ ├── Mono.Security │ │ │ │ │ ├── ASN1.cs │ │ │ │ │ ├── ASN1Convert.cs │ │ │ │ │ ├── BitConverterLE.cs │ │ │ │ │ ├── PKCS7.cs │ │ │ │ │ └── StrongName.cs │ │ │ │ ├── Mono.Xml │ │ │ │ │ ├── MiniParser.cs │ │ │ │ │ └── SecurityParser.cs │ │ │ │ ├── NoReflectionHelper.cs │ │ │ │ └── StrongNameManager.cs │ │ │ ├── PermissionManager.cs │ │ │ ├── RepositoryAuthentication.cs │ │ │ ├── RepositoryPrincipalFactory.cs │ │ │ └── UserPrincipal.cs │ │ ├── Serialization │ │ │ ├── BinarySerialization.cs │ │ │ ├── GenericDataContractResolver.cs │ │ │ ├── GenericDeserializationBinder.cs │ │ │ ├── Json │ │ │ │ ├── Converters │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ ├── BoolConverter.cs │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ ├── DictionaryConverter.cs │ │ │ │ │ ├── DrawingConverter.cs │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ ├── NetConverter.cs │ │ │ │ │ ├── NumberConverter.cs │ │ │ │ │ ├── PointConverter.cs │ │ │ │ │ ├── SecretConverter.cs │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ ├── TreePathConverter.cs │ │ │ │ │ └── XmlConverter.cs │ │ │ │ ├── IJsonObject.cs │ │ │ │ ├── JsonSerialization.cs │ │ │ │ ├── TextReaderConverter.cs │ │ │ │ └── TreePathConverter.cs │ │ │ ├── PassThroughSerialization.cs │ │ │ ├── Protobuf │ │ │ │ ├── Converters │ │ │ │ │ ├── ProtoMemoryStream.cs │ │ │ │ │ └── ProtoStream.cs │ │ │ │ └── ProtobufSerialization.cs │ │ │ ├── WireSerialization.cs │ │ │ └── XmlSerialization.cs │ │ ├── SystemState.cs │ │ ├── UnitOfWork.cs │ │ └── Utility │ │ │ ├── ConfigurationErrorsException.cs │ │ │ ├── DynamicOrderBy.cs │ │ │ ├── ExpandoHelper.cs │ │ │ ├── PdfConverter.cs │ │ │ ├── Plugins.cs │ │ │ ├── Reflection │ │ │ ├── AssemblyScanner.cs │ │ │ └── TypeUtility.cs │ │ │ ├── StableHashCode.cs │ │ │ ├── Streams │ │ │ ├── BufferedTextReader.cs │ │ │ └── ChunkedMemoryStream.cs │ │ │ ├── StringCache.cs │ │ │ ├── TemporaryResources.cs │ │ │ ├── TopologicalSort.cs │ │ │ └── TreePath.cs │ ├── Revenj.DatabasePersistence.Oracle │ │ ├── Attributes │ │ │ ├── DatabaseFunctionAttribute.cs │ │ │ ├── RepositoryAttribute.cs │ │ │ └── SqlSourceAttribute.cs │ │ ├── ConnectionInfo.cs │ │ ├── Converters │ │ │ ├── BinaryArrayConverter.cs │ │ │ ├── BoolArrayConverter.cs │ │ │ ├── DateArrayConverter.cs │ │ │ ├── DecimalArrayConverter.cs │ │ │ ├── DoubleArrayConverter.cs │ │ │ ├── FloatArrayConverter.cs │ │ │ ├── GuidArrayConverter.cs │ │ │ ├── IOracleTypeConverter.cs │ │ │ ├── IPAddressArrayConverter.cs │ │ │ ├── IntegerArrayConverter.cs │ │ │ ├── LongArrayConverter.cs │ │ │ ├── LongSetConverter.cs │ │ │ ├── OracleNotifyInfoConverter.cs │ │ │ ├── ShortArrayConverter.cs │ │ │ ├── StringArrayConverter.cs │ │ │ ├── TextArrayConverter.cs │ │ │ ├── TimestampArrayConverter.cs │ │ │ ├── TreePathArrayConverter.cs │ │ │ ├── UriArrayConverter.cs │ │ │ ├── UriSetConverter.cs │ │ │ └── UrlArrayConverter.cs │ │ ├── IOracleDto.cs │ │ ├── IOracleReader.cs │ │ ├── OracleAdvancedQueueNotification.cs │ │ ├── OracleDatabaseQuery.cs │ │ ├── OracleObjectFactory.cs │ │ ├── OracleOlapCubeQuery.cs │ │ ├── OracleQueryManager.cs │ │ ├── OracleSequence.cs │ │ ├── OracleUriConverter.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── QueryGeneration │ │ │ ├── ParameterAggregator.cs │ │ │ ├── Plugins │ │ │ │ ├── ExpressionSupport │ │ │ │ │ ├── LikeStringComparison.cs │ │ │ │ │ ├── LinqMethods.cs │ │ │ │ │ └── StringMethods.cs │ │ │ │ └── MemberSupport │ │ │ │ │ ├── CommonMembers.cs │ │ │ │ │ ├── DateTimeMembers.cs │ │ │ │ │ └── EnumerableMembers.cs │ │ │ ├── QueryComposition │ │ │ │ ├── IQuerySimplification.cs │ │ │ │ ├── MainQueryParts.cs │ │ │ │ ├── QueryContext.cs │ │ │ │ ├── QueryParts.cs │ │ │ │ └── SubqueryParts.cs │ │ │ ├── QueryExecutor.cs │ │ │ ├── QuerySourceConverterFactory.cs │ │ │ ├── Queryable.cs │ │ │ ├── ResultObjectMapping.cs │ │ │ ├── SelectSubqueryData.cs │ │ │ ├── SqlCommandData.cs │ │ │ ├── TypeUtility.cs │ │ │ └── Visitors │ │ │ │ ├── IExpressionMatcher.cs │ │ │ │ ├── IMemberMatcher.cs │ │ │ │ ├── IProjectionMatcher.cs │ │ │ │ ├── ProjectorBuildingExpressionTreeVisitor.cs │ │ │ │ ├── SelectExpressionTreeVisitor.cs │ │ │ │ ├── SqlGeneratorExpressionTreeVisitor.cs │ │ │ │ ├── SqlGeneratorQueryModelVisitor.cs │ │ │ │ ├── SubqueryGeneratorQueryModelVisitor.cs │ │ │ │ └── SubquerySelectExpressionTreeVisitor.cs │ │ ├── Revenj.Oracle64.csproj │ │ └── Setup.cs │ └── Revenj.Oracle32 │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── Revenj.Oracle32.csproj ├── Dependencies │ ├── Autofac │ │ └── Autofac License.txt │ ├── Castle │ │ ├── ASL - Apache Software Foundation License.txt │ │ ├── Castle.Core.dll │ │ └── Castle.Core.xml │ ├── Json.NET │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── LitS3 │ │ ├── LitS3.XML │ │ └── LitS3.dll │ ├── Npgsql │ │ └── Npgsql-License.txt │ ├── Nuget │ │ └── System.ComponentModel.Composition │ │ │ └── System.ComponentModel.Composition.4.5.0-preview2-26225-02.nupkg │ ├── Oracle32 │ │ └── Oracle.DataAccess.dll │ ├── Oracle64 │ │ └── Oracle.DataAccess.dll │ ├── PdfConverter │ │ └── PdfConverter.exe.config │ ├── Portable │ │ ├── protobuf-net.dll │ │ └── protobuf-net.xml │ ├── Protobuf │ │ ├── Licence.txt │ │ ├── README.txt │ │ ├── protobuf-net.dll │ │ └── protobuf-net.xml │ ├── ReactiveExtensions │ │ ├── License.rtf │ │ ├── Redist.txt │ │ ├── System.Reactive.Core.dll │ │ ├── System.Reactive.Core.xml │ │ ├── System.Reactive.Interfaces.XML │ │ ├── System.Reactive.Interfaces.dll │ │ ├── System.Reactive.Linq.dll │ │ └── System.Reactive.Linq.xml │ ├── Remotion │ │ ├── Apache-2.0.txt │ │ └── README.txt │ ├── Serialize.Linq │ │ ├── README.txt │ │ └── Serialize.Linq.dll │ ├── SignalR │ │ ├── Microsoft.AspNet.SignalR.Client.dll │ │ ├── Microsoft.AspNet.SignalR.Core.dll │ │ ├── Microsoft.AspNet.SignalR.Core.xml │ │ ├── Microsoft.AspNet.SignalR.Owin.dll │ │ ├── Microsoft.AspNet.SignalR.Owin.xml │ │ ├── Microsoft.AspNet.SignalR.SystemWeb.dll │ │ ├── Microsoft.AspNet.SignalR.SystemWeb.xml │ │ ├── Microsoft.Owin.Host.SystemWeb.dll │ │ ├── Microsoft.Owin.Host.SystemWeb.xml │ │ ├── Microsoft.Web.Infrastructure.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.xml │ │ └── Owin.dll │ ├── SignalR2 │ │ ├── Microsoft.AspNet.SignalR.Core.dll │ │ ├── Microsoft.AspNet.SignalR.Core.xml │ │ ├── Microsoft.Owin.Diagnostics.XML │ │ ├── Microsoft.Owin.Diagnostics.dll │ │ ├── Microsoft.Owin.Host.HttpListener.dll │ │ ├── Microsoft.Owin.Host.HttpListener.xml │ │ ├── Microsoft.Owin.Hosting.XML │ │ ├── Microsoft.Owin.Hosting.dll │ │ ├── Microsoft.Owin.Security.XML │ │ ├── Microsoft.Owin.Security.dll │ │ ├── Microsoft.Owin.XML │ │ ├── Microsoft.Owin.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.xml │ │ ├── Owin.dll │ │ └── System.Web.Cors.dll │ └── Templater │ │ ├── NGS.Templater-License.html │ │ ├── NGS.Templater.dll │ │ └── NGS.Templater.xml ├── Features │ ├── Revenj.Features.Mailer │ │ ├── App.config │ │ ├── Compiled │ │ │ ├── Model.Mailer.dll │ │ │ └── Model.Mono.Mailer.dll │ │ ├── DSL │ │ │ ├── Mailer.Mono.dsl │ │ │ └── Mailer.dsl │ │ ├── IMailMessage.cs │ │ ├── IMailService.cs │ │ ├── MailService.cs │ │ ├── NotSentSpecification.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── QueueProcessor.cs │ │ ├── QueueService.Designer.cs │ │ ├── QueueService.cs │ │ ├── QueueService.resx │ │ ├── Revenj.Features.Mailer.csproj │ │ └── Serialization │ │ │ ├── SerializableAlternateView.cs │ │ │ ├── SerializableAttachment.cs │ │ │ ├── SerializableCollection.cs │ │ │ ├── SerializableContentDisposition.cs │ │ │ ├── SerializableContentType.cs │ │ │ ├── SerializableLinkedResource.cs │ │ │ ├── SerializableMailAddress.cs │ │ │ └── SerializableMailMessage.cs │ ├── Revenj.Features.RestCache │ │ ├── CachingCrudCommands.cs │ │ ├── CachingDomainCommands.cs │ │ ├── CachingService.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Revenj.Features.RestCache.csproj │ └── Revenj.Features.Storage │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Revenj.Features.Storage.csproj │ │ └── S3 │ │ ├── IS3Repository.cs │ │ ├── LitS3Repository.cs │ │ ├── S3.cs │ │ └── S3Repository.cs ├── Plugins │ ├── Revenj.Plugins.AspNetCore.Commands │ │ ├── MessageFormat.cs │ │ ├── Middleware │ │ │ ├── CommandsMiddleware.cs │ │ │ ├── CrudMiddleware.cs │ │ │ ├── DomainMiddleware.cs │ │ │ ├── ReportingMiddleware.cs │ │ │ └── RestMiddleware.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Revenj.Plugins.AspNetCore.Commands.csproj │ │ ├── RevenjBuilderExtension.cs │ │ ├── Try.cs │ │ └── Utility.cs │ ├── Revenj.Plugins.Aspects │ │ ├── Commands │ │ │ ├── Configuration.cs │ │ │ ├── ProcessingCommandsIntercepter.cs │ │ │ └── RestCommandsIntercepter.cs │ │ ├── DatabaseTrace │ │ │ ├── Configuration.cs │ │ │ └── QueryInterceptor.cs │ │ ├── MethodCalls │ │ │ ├── Configuration.cs │ │ │ └── LoggingInterceptor.cs │ │ ├── PerformanceTrace │ │ │ ├── Configuration.cs │ │ │ └── PerformanceInterceptor.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Revenj.Plugins.Aspects.NetStandard.csproj │ │ └── Revenj.Plugins.Aspects.csproj │ ├── Revenj.Plugins.Rest.Commands │ │ ├── CrudCommands.cs │ │ ├── DomainCommands.cs │ │ ├── Either.cs │ │ ├── ICrudCommands.cs │ │ ├── IDomainCommands.cs │ │ ├── IReportingCommands.cs │ │ ├── IStandardCommands.cs │ │ ├── MessageFormat.cs │ │ ├── PassThroughSerialization.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ReportingCommands.cs │ │ ├── Revenj.Plugins.Rest.Commands.csproj │ │ ├── SpecificationFromNode.cs │ │ ├── StandardCommands.cs │ │ └── Utility.cs │ └── Revenj.Plugins.Server.Commands │ │ ├── CRUD │ │ ├── Create.cs │ │ ├── Delete.cs │ │ ├── Read.cs │ │ └── Update.cs │ │ ├── CommandResult.cs │ │ ├── ExecuteService.cs │ │ ├── PersistAggregateRoot.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── QueueAggregateEvent.cs │ │ ├── QueueEvent.cs │ │ ├── Reporting │ │ ├── AnalyzeOlapCube.cs │ │ ├── CreateReport.cs │ │ ├── EvaluateQuery.cs │ │ ├── FindInvalidData.cs │ │ ├── GetRootHistory.cs │ │ ├── OlapCubeReport.cs │ │ ├── PopulateReport.cs │ │ └── TemplaterProcessDocument.cs │ │ ├── Revenj.Plugins.Server.Commands.NetStandard.csproj │ │ ├── Revenj.Plugins.Server.Commands.csproj │ │ ├── Search │ │ ├── CheckDomainObject.cs │ │ ├── CountDomainObject.cs │ │ ├── DomainObjectExists.cs │ │ ├── GenericSearchFilter.cs │ │ ├── GenericSpecification.cs │ │ ├── GetDomainObject.cs │ │ └── SearchDomainObject.cs │ │ ├── SubmitAggregateEvent.cs │ │ ├── SubmitEvent.cs │ │ └── Utility.cs ├── Revenj.Client.sln ├── Revenj.VS2015.sln ├── Revenj.sln ├── Revenj.snk ├── RevenjNetCore.sln ├── RevenjNetStandard.sln ├── Server │ ├── Revenj.Api.Interface │ │ ├── IRequestContext.cs │ │ ├── IResponseContext.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Rest │ │ │ ├── ICommandConverter.cs │ │ │ └── IRestApplication.cs │ │ ├── Revenj.Api.Interface.csproj │ │ ├── Soap │ │ │ ├── ISoapApplication.cs │ │ │ ├── SoapCommandDescription.cs │ │ │ ├── SoapCommandResultDescription.cs │ │ │ └── SoapResultDescription.cs │ │ └── ThreadContext.cs │ ├── Revenj.AspNetCore │ │ ├── AdditionalCommand.cs │ │ ├── AspNetContainer.cs │ │ ├── CommandConverter.cs │ │ ├── Descriptions │ │ │ ├── JsonCommandDescription.cs │ │ │ ├── ObjectCommandDescription.cs │ │ │ ├── ProtobufCommandDescription.cs │ │ │ └── XmlCommandDescription.cs │ │ ├── PassThroughSerialization.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RestApplication.cs │ │ ├── Revenj.AspNetCore.csproj │ │ ├── RevenjConfig.cs │ │ ├── RevenjWebHostBuilderExtension.cs │ │ └── Utility.cs │ ├── Revenj.Http │ │ ├── App.config │ │ ├── Attributes.cs │ │ ├── HttpAuth.cs │ │ ├── HttpListenerContex.cs │ │ ├── HttpListenerServer.cs │ │ ├── HttpService.Designer.cs │ │ ├── HttpService.cs │ │ ├── HttpSocketContext.cs │ │ ├── HttpSocketServer.cs │ │ ├── IHtmlView.cs │ │ ├── NoAuth.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Revenj.Http.csproj │ │ ├── RouteHandler.cs │ │ ├── RouteMatch.cs │ │ ├── Routes.cs │ │ ├── UriPattern.cs │ │ └── cache │ │ │ └── GeneratedModel.dll │ ├── Revenj.Processing.Interface │ │ ├── ICommandResult.cs │ │ ├── ICommandResultDescription.cs │ │ ├── IProcessingEngine.cs │ │ ├── IProcessingResult.cs │ │ ├── IServerCommand.cs │ │ ├── IServerCommandDescription.cs │ │ ├── IServerService.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Revenj.Processing.Interface.NetStandard.csproj │ │ └── Revenj.Processing.Interface.csproj │ ├── Revenj.Processing │ │ ├── Aspects │ │ │ └── ServerServiceAspect.cs │ │ ├── CommandResultDescription.cs │ │ ├── ProcessingContext.cs │ │ ├── ProcessingEngine.cs │ │ ├── ProcessingResult.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Revenj.Processing.NetStandard.csproj │ │ ├── Revenj.Processing.csproj │ │ ├── ScopePool.cs │ │ └── Setup.cs │ ├── Revenj.SignalR2SelfHost │ │ ├── App.config │ │ ├── NotifyHub.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Revenj.SignalR2SelfHost.csproj │ │ └── cache │ │ │ └── GeneratedModel.dll │ ├── Revenj.SignalRWeb │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── NotifyHub.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Revenj.SignalRWeb.csproj │ │ ├── Scripts │ │ │ ├── jquery-1.6.4-vsdoc.js │ │ │ ├── jquery-1.6.4.js │ │ │ ├── jquery-1.6.4.min.js │ │ │ ├── jquery.signalR-1.1.3.js │ │ │ └── jquery.signalR-1.1.3.min.js │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ └── cache │ │ │ └── Revenj.ServerModel.dll │ ├── Revenj.Wcf │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── GlobalErrorHandler.cs │ │ ├── NoPermissions.cs │ │ ├── PdfConverter │ │ │ ├── PdfConverter.exe │ │ │ └── PdfConverter.exe.config │ │ ├── Platform.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ResponseUtility.cs │ │ ├── Rest │ │ │ ├── CommandConverter.cs │ │ │ ├── JsonCommandDescription.cs │ │ │ ├── ObjectCommandDescription.cs │ │ │ ├── ProtobufCommandDescription.cs │ │ │ ├── RawFormatMapper.cs │ │ │ ├── RestApplication.cs │ │ │ └── XmlCommandDescription.cs │ │ ├── Revenj.Wcf.csproj │ │ ├── ServerState.cs │ │ ├── Soap │ │ │ ├── SoapApplication.cs │ │ │ └── SoapCommandDescription.cs │ │ ├── StandardAuthorizationPolicy.cs │ │ ├── StandardLoginValidator.cs │ │ ├── StandardModule.cs │ │ ├── Wcf │ │ │ ├── ContainerWcfHost.cs │ │ │ ├── WcfRequest.cs │ │ │ └── WcfResponse.cs │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ └── cache │ │ │ └── GeneratedModel.dll │ └── Revenj.WindowsService │ │ ├── App.config │ │ ├── HostService.Designer.cs │ │ ├── HostService.cs │ │ ├── HostService.resx │ │ ├── Program.cs │ │ ├── ProjectInstaller.Designer.cs │ │ ├── ProjectInstaller.cs │ │ ├── ProjectInstaller.resx │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── Revenj.WindowsService.csproj └── SharedAssemblyInfo.cs ├── java ├── .gitignore ├── pom.xml ├── revenj-core │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ ├── postgresql │ │ │ │ └── core │ │ │ │ │ └── v3 │ │ │ │ │ └── ConnectionFactoryRevenj.java │ │ │ │ └── revenj │ │ │ │ ├── ChangeNotification.java │ │ │ │ ├── GlobalEventStore.java │ │ │ │ ├── Guards.java │ │ │ │ ├── LocatorDataContext.java │ │ │ │ ├── PostgresBulkReader.java │ │ │ │ ├── PostgresDatabaseNotification.java │ │ │ │ ├── Revenj.java │ │ │ │ ├── RevenjPermissionManager.java │ │ │ │ ├── RevenjSystemState.java │ │ │ │ ├── ServicesPluginLoader.java │ │ │ │ ├── SimpleContainer.java │ │ │ │ ├── TreePath.java │ │ │ │ ├── Utils.java │ │ │ │ ├── database │ │ │ │ └── postgres │ │ │ │ │ ├── BulkReaderQuery.java │ │ │ │ │ ├── BulkRepository.java │ │ │ │ │ ├── ObjectConverter.java │ │ │ │ │ ├── PostgresBuffer.java │ │ │ │ │ ├── PostgresOlapCubeQuery.java │ │ │ │ │ ├── PostgresReader.java │ │ │ │ │ ├── PostgresWriter.java │ │ │ │ │ ├── QueryProvider.java │ │ │ │ │ ├── converters │ │ │ │ │ ├── ArrayTuple.java │ │ │ │ │ ├── BoolConverter.java │ │ │ │ │ ├── ByteaConverter.java │ │ │ │ │ ├── DateConverter.java │ │ │ │ │ ├── DecimalConverter.java │ │ │ │ │ ├── DoubleConverter.java │ │ │ │ │ ├── EnumConverter.java │ │ │ │ │ ├── FloatConverter.java │ │ │ │ │ ├── HstoreConverter.java │ │ │ │ │ ├── InetConverter.java │ │ │ │ │ ├── IntConverter.java │ │ │ │ │ ├── JsonConverter.java │ │ │ │ │ ├── LongConverter.java │ │ │ │ │ ├── NumberConverter.java │ │ │ │ │ ├── PointConverter.java │ │ │ │ │ ├── PostgresTuple.java │ │ │ │ │ ├── RecordTuple.java │ │ │ │ │ ├── ShortConverter.java │ │ │ │ │ ├── StringConverter.java │ │ │ │ │ ├── TimestampConverter.java │ │ │ │ │ ├── TreePathConverter.java │ │ │ │ │ ├── UrlConverter.java │ │ │ │ │ ├── UuidConverter.java │ │ │ │ │ ├── ValueTuple.java │ │ │ │ │ └── XmlConverter.java │ │ │ │ │ └── jinq │ │ │ │ │ ├── JINQ-LICENSE │ │ │ │ │ ├── JinqMetaModel.java │ │ │ │ │ ├── RevenjQuery.java │ │ │ │ │ ├── RevenjQueryComposer.java │ │ │ │ │ ├── RevenjQueryComposerCache.java │ │ │ │ │ ├── RevenjQueryProvider.java │ │ │ │ │ ├── jpqlquery │ │ │ │ │ ├── AggregateFunctionExpression.java │ │ │ │ │ ├── BinaryExpression.java │ │ │ │ │ ├── CaseWhenExpression.java │ │ │ │ │ ├── ColumnExpressions.java │ │ │ │ │ ├── ConstantExpression.java │ │ │ │ │ ├── Expression.java │ │ │ │ │ ├── ExpressionVisitor.java │ │ │ │ │ ├── From.java │ │ │ │ │ ├── FromAliasExpression.java │ │ │ │ │ ├── FunctionExpression.java │ │ │ │ │ ├── GeneratedQueryParameter.java │ │ │ │ │ ├── GetterExpression.java │ │ │ │ │ ├── GroupedSelectFromWhere.java │ │ │ │ │ ├── JinqPostgresFragment.java │ │ │ │ │ ├── JinqPostgresQuery.java │ │ │ │ │ ├── OperatorPrecedenceLevel.java │ │ │ │ │ ├── ParameterAsQuery.java │ │ │ │ │ ├── ParameterExpression.java │ │ │ │ │ ├── ParameterFieldExpression.java │ │ │ │ │ ├── QueryGenerationState.java │ │ │ │ │ ├── ReadFieldExpression.java │ │ │ │ │ ├── RecursiveExpressionVisitor.java │ │ │ │ │ ├── RowReader.java │ │ │ │ │ ├── SelectFromWhere.java │ │ │ │ │ ├── SelectOnly.java │ │ │ │ │ ├── SimpleRowReader.java │ │ │ │ │ ├── SqlPredicateExpression.java │ │ │ │ │ ├── SubqueryExpression.java │ │ │ │ │ ├── TupleRowReader.java │ │ │ │ │ └── UnaryExpression.java │ │ │ │ │ └── transform │ │ │ │ │ ├── AggregateStreamLambdaArgumentHandler.java │ │ │ │ │ ├── AggregateTransform.java │ │ │ │ │ ├── CountTransform.java │ │ │ │ │ ├── DistinctTransform.java │ │ │ │ │ ├── GroupingLambdasArgumentHandler.java │ │ │ │ │ ├── GroupingTransform.java │ │ │ │ │ ├── JoinFetchTransform.java │ │ │ │ │ ├── JoinTransform.java │ │ │ │ │ ├── LambdaAnalysis.java │ │ │ │ │ ├── LambdaInfo.java │ │ │ │ │ ├── LambdaParameterArgumentHandler.java │ │ │ │ │ ├── LimitSkipTransform.java │ │ │ │ │ ├── MetamodelUtil.java │ │ │ │ │ ├── MethodChecker.java │ │ │ │ │ ├── MethodHandlerStatic.java │ │ │ │ │ ├── MethodHandlerVirtual.java │ │ │ │ │ ├── MultiAggregateTransform.java │ │ │ │ │ ├── OuterJoinTransform.java │ │ │ │ │ ├── QueryTransformException.java │ │ │ │ │ ├── RevenjGroupingMultiLambdaQueryTransform.java │ │ │ │ │ ├── RevenjMultiLambdaQueryTransform.java │ │ │ │ │ ├── RevenjNoLambdaQueryTransform.java │ │ │ │ │ ├── RevenjOneLambdaQueryTransform.java │ │ │ │ │ ├── RevenjQueryTransform.java │ │ │ │ │ ├── RevenjQueryTransformConfiguration.java │ │ │ │ │ ├── SelectFromWhereLambdaArgumentHandler.java │ │ │ │ │ ├── SelectTransform.java │ │ │ │ │ ├── SortingTransform.java │ │ │ │ │ ├── SymbExArgumentHandler.java │ │ │ │ │ ├── SymbExPassDown.java │ │ │ │ │ ├── SymbExToColumns.java │ │ │ │ │ ├── SymbExToSubQuery.java │ │ │ │ │ ├── WhereTransform.java │ │ │ │ │ └── handlers │ │ │ │ │ ├── AbsInstanceHandler.java │ │ │ │ │ ├── AbsStaticHandler.java │ │ │ │ │ ├── CollectionToStreamHandler.java │ │ │ │ │ ├── DateAfterHandler.java │ │ │ │ │ ├── DateBeforeHandler.java │ │ │ │ │ ├── DateNowHandler.java │ │ │ │ │ ├── DateTimeCompareHandler.java │ │ │ │ │ ├── IntegerValueOfHandler.java │ │ │ │ │ ├── LengthHandler.java │ │ │ │ │ ├── LocalDateCompareHandler.java │ │ │ │ │ ├── LongValueOfHandler.java │ │ │ │ │ ├── MathSqrtHandler.java │ │ │ │ │ ├── ObjectEqualsHandler.java │ │ │ │ │ ├── PrincipalGetName.java │ │ │ │ │ ├── StringBuilderAppendHandler.java │ │ │ │ │ ├── StringIndexOfHandler.java │ │ │ │ │ ├── StringLikeHandler.java │ │ │ │ │ ├── StringValueOfHandler.java │ │ │ │ │ ├── SubstringHandler.java │ │ │ │ │ ├── ToLowerHandler.java │ │ │ │ │ ├── ToStringHandler.java │ │ │ │ │ ├── ToUpperHandler.java │ │ │ │ │ ├── TreePathAncestorHandler.java │ │ │ │ │ ├── TreePathCreateHandler.java │ │ │ │ │ ├── TreePathDescendantHandler.java │ │ │ │ │ ├── TrimHandler.java │ │ │ │ │ └── UuidParseHandler.java │ │ │ │ ├── extensibility │ │ │ │ ├── Container.java │ │ │ │ ├── InstanceScope.java │ │ │ │ ├── PluginLoader.java │ │ │ │ ├── SystemAspect.java │ │ │ │ └── SystemState.java │ │ │ │ ├── patterns │ │ │ │ ├── AggregateRoot.java │ │ │ │ ├── DataChangeNotification.java │ │ │ │ ├── DataContext.java │ │ │ │ ├── DataSource.java │ │ │ │ ├── DomainEvent.java │ │ │ │ ├── DomainEventHandler.java │ │ │ │ ├── DomainEventStore.java │ │ │ │ ├── DomainModel.java │ │ │ │ ├── EagerNotification.java │ │ │ │ ├── EventHandler.java │ │ │ │ ├── Generic.java │ │ │ │ ├── History.java │ │ │ │ ├── Identifiable.java │ │ │ │ ├── ObjectHistory.java │ │ │ │ ├── OlapCubeQuery.java │ │ │ │ ├── PersistableRepository.java │ │ │ │ ├── Query.java │ │ │ │ ├── Report.java │ │ │ │ ├── Repository.java │ │ │ │ ├── RepositoryBulkReader.java │ │ │ │ ├── SearchableRepository.java │ │ │ │ ├── ServiceLocator.java │ │ │ │ ├── Snapshot.java │ │ │ │ ├── Specification.java │ │ │ │ └── UnitOfWork.java │ │ │ │ ├── processor │ │ │ │ └── RevenjProcessor.java │ │ │ │ ├── security │ │ │ │ ├── GlobalPermission.java │ │ │ │ ├── PermissionManager.java │ │ │ │ ├── RolePermission.java │ │ │ │ └── UserPrincipal.java │ │ │ │ └── serialization │ │ │ │ ├── Serialization.java │ │ │ │ ├── json │ │ │ │ ├── DslJsonSerialization.java │ │ │ │ └── TreePathConverter.java │ │ │ │ └── xml │ │ │ │ ├── BoolXML.java │ │ │ │ ├── DateXML.java │ │ │ │ ├── DecimalXML.java │ │ │ │ ├── DoubleXML.java │ │ │ │ ├── ElementAdapter.java │ │ │ │ ├── FloatXML.java │ │ │ │ ├── IntegerXML.java │ │ │ │ ├── JaxbConfiguration.java │ │ │ │ ├── LongXML.java │ │ │ │ ├── MapAdapter.java │ │ │ │ ├── PointDoubleXML.java │ │ │ │ ├── PointIntXML.java │ │ │ │ ├── ShortXML.java │ │ │ │ ├── StringXML.java │ │ │ │ ├── TimestampXML.java │ │ │ │ ├── TreePathXML.java │ │ │ │ ├── UrlXML.java │ │ │ │ ├── UuidXML.java │ │ │ │ └── XmlJaxbSerialization.java │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ ├── javax.annotation.processing.Processor │ │ │ ├── org.revenj.database.postgres.jinq.transform.MethodHandlerStatic │ │ │ └── org.revenj.database.postgres.jinq.transform.MethodHandlerVirtual │ │ └── test │ │ └── java │ │ └── org │ │ └── revenj │ │ ├── TestCommon.java │ │ ├── TestContainer.java │ │ ├── TestJson.java │ │ ├── TestPostgres.java │ │ ├── TestReflection.java │ │ ├── TestSecurity.java │ │ ├── TestXml.java │ │ └── processor │ │ ├── AbstractAnnotationProcessorTest.java │ │ ├── NonPublicClass.java │ │ ├── ValidationTest.java │ │ └── models │ │ ├── GenericArgument.java │ │ ├── GenericClass.java │ │ ├── GenericNonPublicArgument.java │ │ ├── InvalidEventHandler.java │ │ ├── NonPublicArgument.java │ │ ├── SimpleEvent.java │ │ └── ValidEventHandler.java ├── revenj-servlet │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── revenj │ │ │ │ ├── serialization │ │ │ │ └── WireSerialization.java │ │ │ │ └── server │ │ │ │ ├── CommandResult.java │ │ │ │ ├── CommandResultDescription.java │ │ │ │ ├── ProcessingEngine.java │ │ │ │ ├── ProcessingResult.java │ │ │ │ ├── ReadOnlyServerCommand.java │ │ │ │ ├── ServerCommand.java │ │ │ │ ├── ServerCommandDescription.java │ │ │ │ ├── ServerService.java │ │ │ │ ├── commands │ │ │ │ ├── ExecuteService.java │ │ │ │ ├── PersistAggregateRoot.java │ │ │ │ ├── QueueEvent.java │ │ │ │ ├── SubmitEvent.java │ │ │ │ ├── crud │ │ │ │ │ ├── Create.java │ │ │ │ │ ├── Delete.java │ │ │ │ │ ├── Read.java │ │ │ │ │ └── Update.java │ │ │ │ ├── reporting │ │ │ │ │ ├── AnalyzeOlapCube.java │ │ │ │ │ └── PopulateReport.java │ │ │ │ └── search │ │ │ │ │ ├── CheckDomainObject.java │ │ │ │ │ ├── CountDomainObject.java │ │ │ │ │ ├── DomainObjectExists.java │ │ │ │ │ ├── GetDomainObject.java │ │ │ │ │ └── SearchDomainObject.java │ │ │ │ └── servlet │ │ │ │ ├── Application.java │ │ │ │ ├── CrudServlet.java │ │ │ │ ├── DomainServlet.java │ │ │ │ ├── JacksonSerialization.java │ │ │ │ ├── PassThroughSerialization.java │ │ │ │ ├── ReportingServlet.java │ │ │ │ ├── RevenjSerialization.java │ │ │ │ ├── RpcServlet.java │ │ │ │ ├── StandardServlet.java │ │ │ │ └── Utility.java │ │ ├── resources │ │ │ └── META-INF │ │ │ │ └── services │ │ │ │ └── org.revenj.server.ServerCommand │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ │ └── test │ │ └── java │ │ └── org │ │ └── revenj │ │ └── server │ │ ├── TestProcessingEngine.java │ │ └── servlet │ │ ├── JsonTest.java │ │ └── ServiceTest.java ├── revenj-spring │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── revenj │ │ └── spring │ │ ├── DslJsonMessageConverter.java │ │ ├── DslJsonSetup.java │ │ ├── JacksonSetup.java │ │ ├── JinqQueryProvider.java │ │ └── RevenjStartup.java ├── revenj-storage │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── revenj │ │ │ ├── AmazonS3Repository.java │ │ │ ├── Storage.java │ │ │ ├── database │ │ │ └── postgres │ │ │ │ └── converters │ │ │ │ └── S3Converter.java │ │ │ ├── serialization │ │ │ └── json │ │ │ │ └── StorageConverter.java │ │ │ └── storage │ │ │ ├── S3.java │ │ │ └── S3Repository.java │ │ └── test │ │ └── java │ │ └── org │ │ └── revenj │ │ └── database │ │ └── postgres │ │ └── converters │ │ └── TestPostgres.java └── test │ ├── pom.xml │ └── src │ └── test │ ├── java │ └── org │ │ └── revenj │ │ ├── Setup.java │ │ ├── TestContainer.java │ │ ├── TestDataContext.java │ │ ├── TestDslJson.java │ │ ├── TestNotifications.java │ │ ├── TestQuery.java │ │ ├── TestReport.java │ │ ├── TestRepository.java │ │ ├── TestSecurity.java │ │ ├── TestServiceLocator.java │ │ ├── handlers │ │ └── ClickedCollectionEventHandler.java │ │ └── server │ │ └── TestProcessingEngine.java │ └── resources │ └── model.dsl ├── scala ├── .gitignore ├── README.md ├── build.sbt ├── project │ ├── build.properties │ ├── build.sbt │ └── plugins.sbt ├── revenj-akka │ └── src │ │ └── main │ │ ├── resources │ │ └── META-INF │ │ │ └── services │ │ │ ├── net.revenj.extensibility.SystemAspect │ │ │ ├── net.revenj.server.ServerCommand │ │ │ └── net.revenj.server.handlers.RequestBinding │ │ └── scala │ │ └── net │ │ └── revenj │ │ └── server │ │ ├── CommandResult.scala │ │ ├── CommandResultDescription.scala │ │ ├── ProcessingEngine.scala │ │ ├── ProcessingResult.scala │ │ ├── ServerCommand.scala │ │ ├── ServerCommandDescription.scala │ │ ├── ServerSystemSetup.scala │ │ ├── WebServer.scala │ │ ├── commands │ │ ├── PersistAggregateRoot.scala │ │ ├── SubmitAggregateEvent.scala │ │ ├── SubmitEvent.scala │ │ ├── Utils.scala │ │ ├── crud │ │ │ ├── Create.scala │ │ │ ├── Delete.scala │ │ │ ├── Read.scala │ │ │ └── Update.scala │ │ ├── reporting │ │ │ └── PopulateReport.scala │ │ └── search │ │ │ ├── CheckDomainObject.scala │ │ │ ├── CountDomainObject.scala │ │ │ ├── DomainObjectExists.scala │ │ │ ├── GetDomainObject.scala │ │ │ └── SearchDomainObject.scala │ │ └── handlers │ │ ├── CrudHandler.scala │ │ ├── DomainHandler.scala │ │ ├── RequestBinding.scala │ │ └── RpcHandler.scala ├── revenj-core │ └── src │ │ ├── main │ │ ├── java │ │ │ ├── com │ │ │ │ └── dslplatform │ │ │ │ │ └── json │ │ │ │ │ ├── ConfigureJodaTime.java │ │ │ │ │ └── JodaTimeConverter.java │ │ │ └── org │ │ │ │ └── postgresql │ │ │ │ └── core │ │ │ │ └── v3 │ │ │ │ └── ConnectionFactoryRevenj.java │ │ └── scala │ │ │ └── net │ │ │ └── revenj │ │ │ ├── ChangeNotification.scala │ │ │ ├── Guards.scala │ │ │ ├── LocatorDataContext.scala │ │ │ ├── PostgresDatabaseNotification.scala │ │ │ ├── Revenj.scala │ │ │ ├── RevenjPermissionManager.scala │ │ │ ├── RevenjSerialization.scala │ │ │ ├── RevenjSystemState.scala │ │ │ ├── ServicesPluginLoader.scala │ │ │ ├── SimpleContainer.scala │ │ │ ├── TreePath.scala │ │ │ ├── Utils.scala │ │ │ ├── cache │ │ │ ├── EagerDataCache.scala │ │ │ └── WeakDataCache.scala │ │ │ ├── database │ │ │ └── postgres │ │ │ │ ├── ColumnInfo.scala │ │ │ │ ├── DatabaseNotificationQueue.scala │ │ │ │ ├── PostgresBuffer.scala │ │ │ │ ├── PostgresOlapCubeQuery.scala │ │ │ │ ├── PostgresReader.scala │ │ │ │ ├── PostgresWriter.scala │ │ │ │ └── converters │ │ │ │ ├── ArrayTuple.scala │ │ │ │ ├── BoolConverter.scala │ │ │ │ ├── ByteaConverter.scala │ │ │ │ ├── Converter.scala │ │ │ │ ├── DateConverter.scala │ │ │ │ ├── DecimalConverter.scala │ │ │ │ ├── DoubleConverter.scala │ │ │ │ ├── EnumTuple.scala │ │ │ │ ├── FloatConverter.scala │ │ │ │ ├── HstoreConverter.scala │ │ │ │ ├── InetConverter.scala │ │ │ │ ├── IntConverter.scala │ │ │ │ ├── JodaDateConverter.scala │ │ │ │ ├── JodaTimestampConverter.scala │ │ │ │ ├── JsonConverter.scala │ │ │ │ ├── LocationConverter.scala │ │ │ │ ├── LongConverter.scala │ │ │ │ ├── NumberConverter.scala │ │ │ │ ├── PointConverter.scala │ │ │ │ ├── PostgresTuple.scala │ │ │ │ ├── RecordTuple.scala │ │ │ │ ├── ShortConverter.scala │ │ │ │ ├── StringConverter.scala │ │ │ │ ├── TimestampConverter.scala │ │ │ │ ├── TreePathConverter.scala │ │ │ │ ├── UrlConverter.scala │ │ │ │ ├── UuidConverter.scala │ │ │ │ ├── ValueTuple.scala │ │ │ │ └── XmlConverter.scala │ │ │ ├── extensibility │ │ │ ├── Container.scala │ │ │ ├── InstanceScope.scala │ │ │ ├── PluginLoader.scala │ │ │ ├── SystemAspect.scala │ │ │ └── SystemState.scala │ │ │ ├── patterns │ │ │ ├── Cache.scala │ │ │ ├── DataChangeNotification.scala │ │ │ ├── DataContext.scala │ │ │ ├── DomainModel.scala │ │ │ ├── DomainObjects.scala │ │ │ ├── EagerNotification.scala │ │ │ ├── Equality.scala │ │ │ ├── Events.scala │ │ │ ├── History.scala │ │ │ ├── ObjectHistory.scala │ │ │ ├── OlapCubeQuery.scala │ │ │ ├── PersistableRepository.scala │ │ │ ├── Report.scala │ │ │ ├── Repository.scala │ │ │ ├── SearchableRepository.scala │ │ │ ├── ServiceLocator.scala │ │ │ ├── Specification.scala │ │ │ ├── Tracking.scala │ │ │ ├── UnitOfWork.scala │ │ │ └── Validations.scala │ │ │ ├── security │ │ │ ├── PermissionManager.scala │ │ │ ├── Permissions.scala │ │ │ └── UserPrincipal.scala │ │ │ └── serialization │ │ │ ├── DslJsonSerialization.scala │ │ │ ├── JacksonSerialization.scala │ │ │ ├── Queries.scala │ │ │ ├── Serialization.scala │ │ │ └── WireSerialization.scala │ │ └── test │ │ ├── resources │ │ └── META-INF │ │ │ └── services │ │ │ ├── net.revenj.extensibility.SystemAspect │ │ │ ├── net.revenj.patterns.AggregateDomainEventHandler%3Cnet.revenj.Agg%2Cnet.revenj.AggEvent%3E │ │ │ ├── net.revenj.patterns.DomainEventHandler%3Cnet.revenj.Single%3E │ │ │ ├── net.revenj.patterns.DomainEventHandler%3Cnet.revenj.TestMe%3E │ │ │ ├── net.revenj.patterns.DomainEventHandler%3Cnet.revenj.TestMe%5B%5D%3E │ │ │ ├── net.revenj.patterns.DomainEventHandler%3Cscala.Function0%3Cnet.revenj.Single%3E%3E │ │ │ ├── net.revenj.patterns.EventStoreAspect%3Cnet.revenj.TestMe%3E │ │ │ ├── net.revenj.patterns.ReportAspect%3Cnet.revenj.ReportMe%24Result%2Cnet.revenj.ReportMe%3E │ │ │ ├── net.revenj.server.ServerCommand │ │ │ └── net.revenj.server.handlers.RequestBinding │ │ └── scala │ │ └── net │ │ └── revenj │ │ ├── AspectCheck.scala │ │ ├── ContainerCheck.scala │ │ ├── EventClassAspect.scala │ │ ├── EventHandlerCheck.scala │ │ ├── PermissionCheck.scala │ │ ├── ReportClassAspect.scala │ │ ├── ReportMe.scala │ │ ├── TestMe.scala │ │ ├── TestMeArrayHandler.scala │ │ ├── TestMeHandler.scala │ │ └── database │ │ └── postgres │ │ └── converters │ │ └── ConverterCheck.scala ├── revenj-storage │ └── src │ │ ├── main │ │ └── scala │ │ │ └── net │ │ │ └── revenj │ │ │ ├── AmazonS3Repository.scala │ │ │ ├── database │ │ │ └── postgres │ │ │ │ └── converters │ │ │ │ └── S3Converter.scala │ │ │ └── storage │ │ │ ├── S3.scala │ │ │ └── S3Repository.scala │ │ └── test │ │ └── scala │ │ └── net │ │ └── revenj │ │ └── storage │ │ └── S3Check.scala └── tests │ └── src │ └── test │ ├── resources │ ├── META-INF │ │ └── services │ │ │ ├── net.revenj.extensibility.SystemAspect │ │ │ ├── net.revenj.patterns.DomainEventHandler%3Cexample.test.TestMe%3E │ │ │ ├── net.revenj.patterns.DomainEventHandler%3Cexample.test.TestMe%5B%5D%3E │ │ │ ├── net.revenj.patterns.DomainEventHandler%3Cscala.Function0%3Cexample.test.TestMe%3E%3E │ │ │ ├── net.revenj.patterns.DomainEventHandler%3Cscala.Function0%3Cexample.test.TestMe%5B%5D%3E%3E │ │ │ ├── net.revenj.server.ServerCommand │ │ │ └── net.revenj.server.handlers.RequestBinding │ ├── logback-test.xml │ └── model.dsl │ └── scala │ └── net │ └── revenj │ ├── database │ └── postgres │ │ └── DbCheck.scala │ └── serialization │ └── JsonCheck.scala ├── tutorials ├── AspNetCore │ ├── .gitignore │ ├── AspNetTutorial.csproj │ ├── AspNetTutorial.sln │ ├── CustomException.cs │ ├── Customers │ │ ├── CustomerService.cs │ │ ├── Handlers │ │ │ ├── ModifyCustomerHandler.cs │ │ │ └── ViewCustomerHandler.cs │ │ └── Validate.cs │ ├── DSL │ │ └── model.dsl │ ├── Middleware │ │ └── RevenjMiddleware.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── SQL │ │ └── 01 - initial.sql │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── lib │ │ └── Model.dll ├── examples │ └── SpringBoot.zip ├── pictures │ ├── aggregate-events-postgres.png │ ├── aspnet-configuration.png │ ├── aspnet-diff.png │ ├── aspnet-migration.png │ ├── boot-database.png │ ├── compile-dsl.png │ ├── configure-config.png │ ├── convert-solution.png │ ├── create-command-linux.png │ ├── create-command.png │ ├── crud-commands-linux.png │ ├── crud-commands.png │ ├── cube-filter.png │ ├── dal-bench.png │ ├── destructive-migration.png │ ├── detail-sql-aggregate.png │ ├── downvote-and-sync.png │ ├── entity-in-aggregate.png │ ├── event-customer-sanitized.png │ ├── event-handler-implementation.png │ ├── event-instance-fiddler.png │ ├── event-return-instance-handler.png │ ├── event-store-signature.png │ ├── event-tables-simple.png │ ├── fiddler-spring-domain-search.png │ ├── fiddler-spring-get.png │ ├── fiddler-spring-post.png │ ├── first-fiddler.png │ ├── first-response.png │ ├── hooking-up-events.png │ ├── idea-maven.png │ ├── init-sql-script.png │ ├── initial-confirmation.png │ ├── initial-pg-admin.png │ ├── interface-property.png │ ├── json-bench.png │ ├── lazy-load-function-postgres.png │ ├── login-to-dsl.png │ ├── migration-int-guid.png │ ├── model-dll-linux.png │ ├── model-dll.png │ ├── mssql-multi-query.png │ ├── new-project.png │ ├── pgadmin-aggregate-events.png │ ├── postgres-lazy-load-uri.png │ ├── postgres-mixin-property.png │ ├── postgres-model.png │ ├── postgres-notify.png │ ├── reactive-bulk-processing.png │ ├── revenj-core.png │ ├── sln-changes.png │ ├── snowflake-no-lazy-load.png │ ├── snowflake-schema.png │ ├── spring-boot-run.png │ ├── start-external.png │ ├── techempower-single-13.png │ ├── techempower-update-13.png │ ├── techempower-update-15.png │ ├── test-project-events.png │ ├── testing-aggregate-events.png │ ├── unprocessed-events.png │ └── up-to-date-database-event.png ├── revenj-tutorial-aggregate-events.md ├── revenj-tutorial-aspnetcore.md ├── revenj-tutorial-bulk-reading.md ├── revenj-tutorial-dependency-injection.md ├── revenj-tutorial-event-sourcing.md ├── revenj-tutorial-handling-events.md ├── revenj-tutorial-jinq-basics.md ├── revenj-tutorial-linq-basics.md ├── revenj-tutorial-mono.md ├── revenj-tutorial-nosql-documents.md ├── revenj-tutorial-notifications.md ├── revenj-tutorial-olap-basics.md ├── revenj-tutorial-raw-sql.md ├── revenj-tutorial-sbt.md ├── revenj-tutorial-security-basics.md ├── revenj-tutorial-servlet.md ├── revenj-tutorial-setup.md ├── revenj-tutorial-spring-boot.md ├── sbt │ ├── build.sbt │ ├── dsl │ │ └── cms.dsl │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ └── src │ │ └── main │ │ ├── resources │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── net.revenj.extensibility.SystemAspect │ │ └── application.conf │ │ └── scala │ │ └── Startup.scala └── services │ ├── Crud.svc.md │ ├── Domain.svc.md │ ├── Reporting.svc.md │ └── Standard.svc.md └── typescript-react ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .prettierrc ├── .travis.yml ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── example ├── README.md ├── api │ ├── export │ │ └── dummy.xlsx │ ├── index.ts │ ├── model │ │ └── domain.ts │ └── tsconfig.json ├── config-overrides.js ├── dsl │ └── demo.dsl ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── scripts │ └── dsl-clc.jar ├── src │ ├── App.test.tsx │ ├── App.tsx │ ├── components │ │ ├── Auth.tsx │ │ ├── Fields.module.css │ │ ├── Fields.tsx │ │ ├── Layout.tsx │ │ ├── Loading.module.css │ │ └── Loading.tsx │ ├── index.css │ ├── index.tsx │ ├── pages │ │ └── Package │ │ │ ├── Create.tsx │ │ │ ├── List.tsx │ │ │ └── ViewEdit.tsx │ ├── react-app-env.d.ts │ ├── setupTests.ts │ └── util │ │ ├── Api.tsx │ │ ├── notify.ts │ │ └── validators.ts ├── tsconfig.json └── yarn.lock ├── package.json ├── scripts └── postinstall.js ├── src ├── .eslintrc ├── ResultSet │ └── ResultSet.ts ├── components │ ├── Api │ │ └── ApiContext.tsx │ ├── Buttons │ │ ├── ButtonMenu.module.css │ │ ├── ButtonMenu.tsx │ │ ├── Buttons.module.css │ │ ├── Buttons.tsx │ │ └── interfaces.ts │ ├── Charts │ │ ├── Charts.module.css │ │ ├── Charts.story.tsx │ │ ├── Charts.tsx │ │ ├── Theme.ts │ │ ├── __tests__ │ │ │ └── helpers.spec.ts │ │ ├── helpers.ts │ │ └── types.ts │ ├── Description │ │ ├── Description.module.css │ │ └── Description.tsx │ ├── DslApplication │ │ └── DslApplication.tsx │ ├── FieldRegistry │ │ ├── FieldRegistryContext.ts │ │ └── WithOverrides.tsx │ ├── Form │ │ ├── Context.ts │ │ ├── Error.module.css │ │ ├── Form.module.css │ │ ├── Form.tsx │ │ ├── FormField.module.css │ │ ├── FormField.tsx │ │ ├── FormSection.module.css │ │ ├── FormSection.tsx │ │ ├── GlobalFormError.tsx │ │ ├── Group.tsx │ │ ├── Layout │ │ │ └── FormError │ │ │ │ ├── FormError.module.css │ │ │ │ ├── FormError.story.tsx │ │ │ │ └── FormError.tsx │ │ └── interfaces.ts │ ├── Header │ │ ├── Header.module.css │ │ └── Header.tsx │ ├── I18n │ │ ├── I18n.tsx │ │ └── service.ts │ ├── Input │ │ └── Input.tsx │ ├── Label │ │ └── Label.tsx │ ├── Loader │ │ └── Loader.tsx │ ├── Navigation │ │ └── NavigationContext.tsx │ ├── Notification │ │ └── NotificationContext.tsx │ ├── Presenters │ │ ├── Actions.tsx │ │ ├── CreatePresenter.tsx │ │ ├── ListPresenter.tsx │ │ ├── Presenter.module.css │ │ ├── Presenter.tsx │ │ ├── ReportPresenter.tsx │ │ └── ViewEditPresenter.tsx │ ├── Status │ │ ├── Status.module.css │ │ └── Status.tsx │ ├── Table │ │ ├── Cell │ │ │ ├── ActionsCell.tsx │ │ │ ├── BooleanCell.tsx │ │ │ ├── Cells.module.css │ │ │ ├── CurrencyCell.tsx │ │ │ ├── CustomCell.tsx │ │ │ ├── DateTimeCell.tsx │ │ │ ├── DecimalCell.tsx │ │ │ ├── FieldCell.tsx │ │ │ ├── IntegerCell.tsx │ │ │ ├── LinkCell.tsx │ │ │ ├── PlaceholderValue.tsx │ │ │ ├── S3FileCell.tsx │ │ │ ├── ShortCell.tsx │ │ │ ├── StatusCell.tsx │ │ │ ├── TextCell.tsx │ │ │ ├── TooltipCell.tsx │ │ │ └── index.ts │ │ ├── DetailRow │ │ │ ├── DetailRow.module.css │ │ │ ├── DetailRow.tsx │ │ │ ├── FoldedColumns.module.css │ │ │ └── FoldedColumns.tsx │ │ ├── Expander.module.css │ │ ├── Expander.tsx │ │ ├── Footer │ │ │ ├── AggregateFooter.tsx │ │ │ ├── LabelFooter.tsx │ │ │ └── index.ts │ │ ├── NoData │ │ │ ├── NoData.module.css │ │ │ └── NoData.tsx │ │ ├── Pagination │ │ │ ├── Pagination.module.css │ │ │ └── Pagination.tsx │ │ ├── Table.css │ │ ├── Table.story.tsx │ │ ├── Table.tsx │ │ ├── __fixture__ │ │ │ └── combinedSheet.fixture.json │ │ ├── __tests__ │ │ │ └── config.spec.tsx │ │ ├── config.tsx │ │ ├── constants.ts │ │ ├── interfaces.ts │ │ └── requirements.md │ ├── Tooltip │ │ ├── Tooltip.module.css │ │ ├── Tooltip.story.tsx │ │ └── Tooltip.tsx │ ├── View │ │ ├── FastFilter.tsx │ │ ├── FiltersForm.tsx │ │ ├── Form.module.css │ │ ├── Grid.module.css │ │ ├── Grid.tsx │ │ ├── PresenterForm.tsx │ │ └── helpers.ts │ ├── decorators │ │ ├── FormField.module.css │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── formField.spec.tsx.snap │ │ │ └── formField.spec.tsx │ │ └── formField.tsx │ ├── index.ts │ └── validation │ │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── collection.spec.ts.snap │ │ │ ├── conditional.spec.ts.snap │ │ │ ├── date.spec.ts.snap │ │ │ ├── equality.spec.ts.snap │ │ │ ├── numeric.spec.ts.snap │ │ │ ├── operators.spec.ts.snap │ │ │ ├── ordinal.spec.ts.snap │ │ │ ├── type.spec.ts.snap │ │ │ └── validationFactoryCreator.spec.ts.snap │ │ ├── collection.spec.ts │ │ ├── conditional.spec.ts │ │ ├── date.spec.ts │ │ ├── equality.spec.ts │ │ ├── numeric.spec.ts │ │ ├── operators.spec.ts │ │ ├── ordinal.spec.ts │ │ ├── required.spec.ts │ │ ├── text.spec.ts │ │ ├── type.spec.ts │ │ ├── utils.spec.ts │ │ └── validationFactoryCreator.spec.ts │ │ ├── collection.ts │ │ ├── conditional.ts │ │ ├── date.ts │ │ ├── equality.ts │ │ ├── index.ts │ │ ├── interfaces.ts │ │ ├── numeric.ts │ │ ├── operators.ts │ │ ├── ordinal.ts │ │ ├── required.ts │ │ ├── text.ts │ │ ├── type.ts │ │ ├── utils.ts │ │ └── validatorCreatorFactory.ts ├── configuration │ └── ApplicationConfiguration.ts ├── constants.ts ├── index.ts ├── marshalling │ ├── Marshaller.ts │ ├── MarshallingError.ts │ ├── __mocks__ │ │ └── mocks.ts │ ├── __tests__ │ │ ├── Marshaller.spec.ts │ │ ├── __snapshots__ │ │ │ ├── Marshaller.spec.ts.snap │ │ │ ├── assert.spec.ts.snap │ │ │ └── boot.spec.ts.snap │ │ ├── assert.spec.ts │ │ └── boot.spec.ts │ ├── assert.ts │ ├── boot.ts │ ├── index.ts │ └── utils.ts ├── react-app-env.d.ts ├── types │ └── global.d.ts ├── typings.d.ts └── util │ ├── AsyncUtils │ └── AsyncUtils.ts │ ├── CryptoUtils │ ├── CryptoUtils.ts │ └── __tests__ │ │ └── CryptoUtils.spec.ts │ ├── DomUtils │ └── DomUtils.ts │ ├── Formatters │ ├── CurrencyFormatter.ts │ ├── DateFormatter.ts │ ├── DateTimeFormatter.ts │ ├── NumberFormatter.ts │ └── __tests__ │ │ ├── CurrencyFormatter.spec.ts │ │ ├── DateFormatter.spec.ts │ │ ├── DateTimeFormatter.spec.ts │ │ └── NumberFormatter.spec.ts │ ├── FunctionalUtils │ ├── FunctionalUtils.ts │ └── __tests__ │ │ └── FunctionalUtils.spec.ts │ ├── NumberUtils │ └── NumberUtils.ts │ ├── SetUtils │ ├── SetUtils.ts │ └── __tests__ │ │ └── RichSet.spec.ts │ ├── SortUtils │ ├── SortUtils.ts │ └── __tests__ │ │ └── SortUtils.spec.ts │ ├── StringUtils │ ├── StringUtils.ts │ └── __tests__ │ │ └── StringUtils.spec.ts │ ├── presenter.ts │ └── time │ ├── __tests__ │ └── time.spec.ts │ ├── constants.ts │ ├── time.ts │ └── timezones.json ├── tsconfig.json ├── tsconfig.test.json └── yarn.lock /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/NuGet/.gitignore -------------------------------------------------------------------------------- /NuGet/Revenj.AspNetCore/Revenj.AspNetCore.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/NuGet/Revenj.AspNetCore/Revenj.AspNetCore.nuspec -------------------------------------------------------------------------------- /NuGet/Revenj.Client/Revenj.Client.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/NuGet/Revenj.Client/Revenj.Client.nuspec -------------------------------------------------------------------------------- /NuGet/Revenj.Oracle32/Revenj.Oracle32.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/NuGet/Revenj.Oracle32/Revenj.Oracle32.nuspec -------------------------------------------------------------------------------- /NuGet/Revenj.Oracle64/Revenj.Oracle64.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/NuGet/Revenj.Oracle64/Revenj.Oracle64.nuspec -------------------------------------------------------------------------------- /NuGet/Revenj/Revenj.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/NuGet/Revenj/Revenj.nuspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/README.md -------------------------------------------------------------------------------- /csharp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/.gitignore -------------------------------------------------------------------------------- /csharp/Client/ClientTest/ClientTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/ClientTest/ClientTest.csproj -------------------------------------------------------------------------------- /csharp/Client/ClientTest/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/ClientTest/Common.cs -------------------------------------------------------------------------------- /csharp/Client/ClientTest/CountTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/ClientTest/CountTests.cs -------------------------------------------------------------------------------- /csharp/Client/ClientTest/CrudTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/ClientTest/CrudTests.cs -------------------------------------------------------------------------------- /csharp/Client/ClientTest/DSL/Billing.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/ClientTest/DSL/Billing.dsl -------------------------------------------------------------------------------- /csharp/Client/ClientTest/DSL/Finance.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/ClientTest/DSL/Finance.dsl -------------------------------------------------------------------------------- /csharp/Client/ClientTest/DSL/Img.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/ClientTest/DSL/Img.dsl -------------------------------------------------------------------------------- /csharp/Client/ClientTest/DSL/Scraping.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/ClientTest/DSL/Scraping.dsl -------------------------------------------------------------------------------- /csharp/Client/ClientTest/DSL/Store.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/ClientTest/DSL/Store.dsl -------------------------------------------------------------------------------- /csharp/Client/ClientTest/DSL/Struct.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/ClientTest/DSL/Struct.dsl -------------------------------------------------------------------------------- /csharp/Client/ClientTest/DSL/Test.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/ClientTest/DSL/Test.dsl -------------------------------------------------------------------------------- /csharp/Client/ClientTest/LocatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/ClientTest/LocatorTests.cs -------------------------------------------------------------------------------- /csharp/Client/ClientTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/ClientTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/Client/ClientTest/ReportingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/ClientTest/ReportingTests.cs -------------------------------------------------------------------------------- /csharp/Client/ClientTest/SearchTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/ClientTest/SearchTests.cs -------------------------------------------------------------------------------- /csharp/Client/ClientTest/StandardTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/ClientTest/StandardTests.cs -------------------------------------------------------------------------------- /csharp/Client/ClientTest/SubmitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/ClientTest/SubmitTests.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/AccessControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/AccessControl.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/AddObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/AddObject.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/Bucket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/Bucket.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/BucketAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/BucketAccess.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/CopyObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/CopyObject.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/CreateBucket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/CreateBucket.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/DeleteBucket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/DeleteBucket.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/DeleteObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/DeleteObject.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/GetAllBuckets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/GetAllBuckets.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/GetBucketLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/GetBucketLocation.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/GetObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/GetObject.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/HMACSHA1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/HMACSHA1.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/Identity.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/ListEntries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/ListEntries.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/ListObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/ListObjects.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/LitS3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/LitS3.csproj -------------------------------------------------------------------------------- /csharp/Client/LitS3/LitS3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/LitS3.sln -------------------------------------------------------------------------------- /csharp/Client/LitS3/LitS3.vsmdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/LitS3.vsmdi -------------------------------------------------------------------------------- /csharp/Client/LitS3/LitS3Portable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/LitS3Portable.csproj -------------------------------------------------------------------------------- /csharp/Client/LitS3/Local.testsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/Local.testsettings -------------------------------------------------------------------------------- /csharp/Client/LitS3/ObjectTransfer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/ObjectTransfer.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/Readme.md -------------------------------------------------------------------------------- /csharp/Client/LitS3/RequestUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/RequestUtils.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/S3Authorizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/S3Authorizer.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/S3ErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/S3ErrorCode.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/S3Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/S3Exception.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/S3Headers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/S3Headers.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/S3Request.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/S3Request.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/S3Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/S3Response.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/S3Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/S3Service.cs -------------------------------------------------------------------------------- /csharp/Client/LitS3/TraceAndTestImpact.testsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/LitS3/TraceAndTestImpact.testsettings -------------------------------------------------------------------------------- /csharp/Client/PhoneTests/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/PhoneTests/App.xaml -------------------------------------------------------------------------------- /csharp/Client/PhoneTests/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/PhoneTests/App.xaml.cs -------------------------------------------------------------------------------- /csharp/Client/PhoneTests/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/PhoneTests/ApplicationIcon.png -------------------------------------------------------------------------------- /csharp/Client/PhoneTests/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/PhoneTests/Background.png -------------------------------------------------------------------------------- /csharp/Client/PhoneTests/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/PhoneTests/MainPage.xaml -------------------------------------------------------------------------------- /csharp/Client/PhoneTests/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/PhoneTests/MainPage.xaml.cs -------------------------------------------------------------------------------- /csharp/Client/PhoneTests/PhoneTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/PhoneTests/PhoneTests.csproj -------------------------------------------------------------------------------- /csharp/Client/PhoneTests/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/PhoneTests/Properties/AppManifest.xml -------------------------------------------------------------------------------- /csharp/Client/PhoneTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/PhoneTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/Client/PhoneTests/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/PhoneTests/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /csharp/Client/PhoneTests/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/PhoneTests/SplashScreenImage.jpg -------------------------------------------------------------------------------- /csharp/Client/PhoneTests/Tests/TestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/PhoneTests/Tests/TestClass.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client.DotNet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client.DotNet/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client.DotNet/Revenj.Client.DotNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client.DotNet/Revenj.Client.DotNet.csproj -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client.Interface/Patterns/DomainEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client.Interface/Patterns/DomainEvent.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client.Interface/Patterns/DomainObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client.Interface/Patterns/DomainObjects.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client.Interface/Patterns/History.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client.Interface/Patterns/History.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client.Interface/Patterns/Reporting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client.Interface/Patterns/Reporting.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client.Interface/Patterns/Repositories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client.Interface/Patterns/Repositories.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client.Interface/Patterns/Specification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client.Interface/Patterns/Specification.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client.Interface/Patterns/Templater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client.Interface/Patterns/Templater.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client.Interface/Patterns/Tracking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client.Interface/Patterns/Tracking.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client.Interface/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client.Interface/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client.Interface/Server/ICrudProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client.Interface/Server/ICrudProxy.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client.Interface/Server/IDomainProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client.Interface/Server/IDomainProxy.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client.Interface/Server/IReportingProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client.Interface/Server/IReportingProxy.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client.Interface/Server/IStandardProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client.Interface/Server/IStandardProxy.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client.Interface/Storage/IS3Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client.Interface/Storage/IS3Repository.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client.Portable/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client.Portable/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client.Portable/RequestUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client.Portable/RequestUtils.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client.Portable/StreamUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client.Portable/StreamUtils.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client.Portable/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client.Portable/Task.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client/Configuration.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client/Patterns/ClientDomainStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client/Patterns/ClientDomainStore.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client/Patterns/ClientRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client/Patterns/ClientRepository.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client/Patterns/ClientTemplaterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client/Patterns/ClientTemplaterService.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client/Patterns/DictionaryServiceLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client/Patterns/DictionaryServiceLocator.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client/Patterns/History.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client/Patterns/History.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client/Patterns/Search/SearchBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client/Patterns/Search/SearchBuilder.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client/Revenj.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client/Revenj.Client.csproj -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client/Serialization/ProtoMemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client/Serialization/ProtoMemoryStream.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client/Server/ApplicationProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client/Server/ApplicationProxy.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client/Server/CrudProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client/Server/CrudProxy.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client/Server/DomainProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client/Server/DomainProxy.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client/Server/HttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client/Server/HttpClient.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client/Server/ProxyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client/Server/ProxyHelper.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client/Server/ReportingProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client/Server/ReportingProxy.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client/Server/StandardProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client/Server/StandardProxy.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client/Startup.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client/StaticLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client/StaticLocator.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client/Storage/S3/LitS3Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client/Storage/S3/LitS3Repository.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client/Storage/S3/S3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client/Storage/S3/S3.cs -------------------------------------------------------------------------------- /csharp/Client/Revenj.Client/Stream/ChunkedMemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/Revenj.Client/Stream/ChunkedMemoryStream.cs -------------------------------------------------------------------------------- /csharp/Client/lib/ClientModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Client/lib/ClientModel.dll -------------------------------------------------------------------------------- /csharp/CodeAnalysisDictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/CodeAnalysisDictionary.xml -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core.Interface/Common/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core.Interface/Common/CollectionExtensions.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core.Interface/Common/FrameworkException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core.Interface/Common/FrameworkException.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core.Interface/Common/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core.Interface/Common/StringExtensions.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core.Interface/Database/IDatabaseQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core.Interface/Database/IDatabaseQuery.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core.Interface/DomainPatterns/Cache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core.Interface/DomainPatterns/Cache.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core.Interface/DomainPatterns/DataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core.Interface/DomainPatterns/DataContext.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core.Interface/DomainPatterns/DomainModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core.Interface/DomainPatterns/DomainModel.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core.Interface/DomainPatterns/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core.Interface/DomainPatterns/Events.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core.Interface/DomainPatterns/History.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core.Interface/DomainPatterns/History.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core.Interface/DomainPatterns/Notification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core.Interface/DomainPatterns/Notification.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core.Interface/DomainPatterns/Reporting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core.Interface/DomainPatterns/Reporting.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core.Interface/DomainPatterns/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core.Interface/DomainPatterns/Repository.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core.Interface/DomainPatterns/Tracking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core.Interface/DomainPatterns/Tracking.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core.Interface/DomainPatterns/Validation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core.Interface/DomainPatterns/Validation.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core.Interface/Extensibility/ISystemState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core.Interface/Extensibility/ISystemState.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core.Interface/Extensibility/ITypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core.Interface/Extensibility/ITypeResolver.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core.Interface/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core.Interface/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core.Interface/Revenj.Core.Interface.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core.Interface/Revenj.Core.Interface.csproj -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core.Interface/Security/IAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core.Interface/Security/IAuthentication.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core.Interface/Security/IPermissionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core.Interface/Security/IPermissionManager.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core.Interface/Security/IPrincipalFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core.Interface/Security/IPrincipalFactory.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core.Interface/Security/Roles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core.Interface/Security/Roles.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core.Interface/Utility/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core.Interface/Utility/Exceptions.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Core.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/DatabasePersistence/Postgres/BulkRead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/DatabasePersistence/Postgres/BulkRead.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/DatabasePersistence/Postgres/Setup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/DatabasePersistence/Postgres/Setup.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/DatabasePersistence/Relinq/QueryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/DatabasePersistence/Relinq/QueryModel.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/DomainPatterns/Aspects/HandlerAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/DomainPatterns/Aspects/HandlerAspect.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/DomainPatterns/Cache/EagerCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/DomainPatterns/Cache/EagerCache.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/DomainPatterns/Cache/LazyCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/DomainPatterns/Cache/LazyCache.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/DomainPatterns/Cache/LookupCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/DomainPatterns/Cache/LookupCache.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/DomainPatterns/Cache/WeakCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/DomainPatterns/Cache/WeakCache.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/DomainPatterns/ChangeNotifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/DomainPatterns/ChangeNotifications.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/DomainPatterns/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/DomainPatterns/Commands.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/DomainPatterns/DataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/DomainPatterns/DataContext.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/DomainPatterns/DocumentReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/DomainPatterns/DocumentReport.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/DomainPatterns/DomainModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/DomainPatterns/DomainModel.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/DomainPatterns/DomainTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/DomainPatterns/DomainTypeResolver.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/DomainPatterns/EventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/DomainPatterns/EventSource.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/DomainPatterns/EventStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/DomainPatterns/EventStore.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/DomainPatterns/GlobalEventStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/DomainPatterns/GlobalEventStore.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/DomainPatterns/History.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/DomainPatterns/History.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/DomainPatterns/Signature/DomainEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/DomainPatterns/Signature/DomainEvent.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/DomainPatterns/Validation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/DomainPatterns/Validation.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Extensibility/Aspects/IAspectComposer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Extensibility/Aspects/IAspectComposer.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Extensibility/Attributes/PluginAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Extensibility/Attributes/PluginAspect.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Extensibility/Autofac/Core/Container.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Extensibility/Autofac/Core/Container.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Extensibility/Autofac/Core/Disposer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Extensibility/Autofac/Core/Disposer.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Extensibility/Autofac/Core/IDisposer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Extensibility/Autofac/Core/IDisposer.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Extensibility/Autofac/Core/IModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Extensibility/Autofac/Core/IModule.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Extensibility/Autofac/Core/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Extensibility/Autofac/Core/Parameter.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Extensibility/Autofac/Core/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Extensibility/Autofac/Core/Service.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Extensibility/Autofac/IContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Extensibility/Autofac/IContainer.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Extensibility/Autofac/ILifetimeScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Extensibility/Autofac/ILifetimeScope.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Extensibility/Autofac/IStartable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Extensibility/Autofac/IStartable.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Extensibility/Autofac/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Extensibility/Autofac/Module.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Extensibility/Autofac/NamedParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Extensibility/Autofac/NamedParameter.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Extensibility/Autofac/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Extensibility/Autofac/TypeExtensions.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Extensibility/Autofac/TypedParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Extensibility/Autofac/TypedParameter.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Extensibility/Autofac/Util/Disposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Extensibility/Autofac/Util/Disposable.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Extensibility/Autofac/Util/Enforce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Extensibility/Autofac/Util/Enforce.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Extensibility/Autofac/Util/Traverse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Extensibility/Autofac/Util/Traverse.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Extensibility/Plugins/PluginsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Extensibility/Plugins/PluginsProvider.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Extensibility/Setup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Extensibility/Setup.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Extensibility/SystemInitialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Extensibility/SystemInitialization.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Revenj.Core.NetStandard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Revenj.Core.NetStandard.csproj -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Revenj.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Revenj.Core.csproj -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Security/DSL/Security.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Security/DSL/Security.dsl -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Security/IGlobalPermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Security/IGlobalPermission.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Security/IRolePermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Security/IRolePermission.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Security/IUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Security/IUser.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Security/IUserRoles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Security/IUserRoles.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Security/PermissionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Security/PermissionManager.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Security/RepositoryAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Security/RepositoryAuthentication.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Security/RepositoryPrincipalFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Security/RepositoryPrincipalFactory.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Security/UserPrincipal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Security/UserPrincipal.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Serialization/BinarySerialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Serialization/BinarySerialization.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Serialization/Json/IJsonObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Serialization/Json/IJsonObject.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Serialization/Json/JsonSerialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Serialization/Json/JsonSerialization.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Serialization/Json/TreePathConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Serialization/Json/TreePathConverter.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Serialization/WireSerialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Serialization/WireSerialization.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Serialization/XmlSerialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Serialization/XmlSerialization.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/SystemState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/SystemState.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/UnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/UnitOfWork.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Utility/ConfigurationErrorsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Utility/ConfigurationErrorsException.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Utility/DynamicOrderBy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Utility/DynamicOrderBy.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Utility/ExpandoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Utility/ExpandoHelper.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Utility/PdfConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Utility/PdfConverter.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Utility/Plugins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Utility/Plugins.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Utility/Reflection/AssemblyScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Utility/Reflection/AssemblyScanner.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Utility/Reflection/TypeUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Utility/Reflection/TypeUtility.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Utility/StableHashCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Utility/StableHashCode.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Utility/Streams/BufferedTextReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Utility/Streams/BufferedTextReader.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Utility/Streams/ChunkedMemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Utility/Streams/ChunkedMemoryStream.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Utility/StringCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Utility/StringCache.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Utility/TemporaryResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Utility/TemporaryResources.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Utility/TopologicalSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Utility/TopologicalSort.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Core/Utility/TreePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Core/Utility/TreePath.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.DatabasePersistence.Oracle/ConnectionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.DatabasePersistence.Oracle/ConnectionInfo.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.DatabasePersistence.Oracle/IOracleDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.DatabasePersistence.Oracle/IOracleDto.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.DatabasePersistence.Oracle/IOracleReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.DatabasePersistence.Oracle/IOracleReader.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.DatabasePersistence.Oracle/OracleSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.DatabasePersistence.Oracle/OracleSequence.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.DatabasePersistence.Oracle/Setup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.DatabasePersistence.Oracle/Setup.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Oracle32/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Oracle32/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/Core/Revenj.Oracle32/Revenj.Oracle32.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Core/Revenj.Oracle32/Revenj.Oracle32.csproj -------------------------------------------------------------------------------- /csharp/Dependencies/Autofac/Autofac License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/Autofac/Autofac License.txt -------------------------------------------------------------------------------- /csharp/Dependencies/Castle/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/Castle/Castle.Core.dll -------------------------------------------------------------------------------- /csharp/Dependencies/Castle/Castle.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/Castle/Castle.Core.xml -------------------------------------------------------------------------------- /csharp/Dependencies/Json.NET/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/Json.NET/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /csharp/Dependencies/Json.NET/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/Json.NET/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /csharp/Dependencies/LitS3/LitS3.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/LitS3/LitS3.XML -------------------------------------------------------------------------------- /csharp/Dependencies/LitS3/LitS3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/LitS3/LitS3.dll -------------------------------------------------------------------------------- /csharp/Dependencies/Npgsql/Npgsql-License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/Npgsql/Npgsql-License.txt -------------------------------------------------------------------------------- /csharp/Dependencies/Oracle32/Oracle.DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/Oracle32/Oracle.DataAccess.dll -------------------------------------------------------------------------------- /csharp/Dependencies/Oracle64/Oracle.DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/Oracle64/Oracle.DataAccess.dll -------------------------------------------------------------------------------- /csharp/Dependencies/PdfConverter/PdfConverter.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/PdfConverter/PdfConverter.exe.config -------------------------------------------------------------------------------- /csharp/Dependencies/Portable/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/Portable/protobuf-net.dll -------------------------------------------------------------------------------- /csharp/Dependencies/Portable/protobuf-net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/Portable/protobuf-net.xml -------------------------------------------------------------------------------- /csharp/Dependencies/Protobuf/Licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/Protobuf/Licence.txt -------------------------------------------------------------------------------- /csharp/Dependencies/Protobuf/README.txt: -------------------------------------------------------------------------------- 1 | This version of Protobuf.NET library was modified by Rikard Pavelic -------------------------------------------------------------------------------- /csharp/Dependencies/Protobuf/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/Protobuf/protobuf-net.dll -------------------------------------------------------------------------------- /csharp/Dependencies/Protobuf/protobuf-net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/Protobuf/protobuf-net.xml -------------------------------------------------------------------------------- /csharp/Dependencies/ReactiveExtensions/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/ReactiveExtensions/License.rtf -------------------------------------------------------------------------------- /csharp/Dependencies/ReactiveExtensions/Redist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/ReactiveExtensions/Redist.txt -------------------------------------------------------------------------------- /csharp/Dependencies/ReactiveExtensions/System.Reactive.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/ReactiveExtensions/System.Reactive.Core.dll -------------------------------------------------------------------------------- /csharp/Dependencies/ReactiveExtensions/System.Reactive.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/ReactiveExtensions/System.Reactive.Core.xml -------------------------------------------------------------------------------- /csharp/Dependencies/ReactiveExtensions/System.Reactive.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/ReactiveExtensions/System.Reactive.Linq.dll -------------------------------------------------------------------------------- /csharp/Dependencies/ReactiveExtensions/System.Reactive.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/ReactiveExtensions/System.Reactive.Linq.xml -------------------------------------------------------------------------------- /csharp/Dependencies/Remotion/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/Remotion/Apache-2.0.txt -------------------------------------------------------------------------------- /csharp/Dependencies/Remotion/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/Remotion/README.txt -------------------------------------------------------------------------------- /csharp/Dependencies/Serialize.Linq/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/Serialize.Linq/README.txt -------------------------------------------------------------------------------- /csharp/Dependencies/Serialize.Linq/Serialize.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/Serialize.Linq/Serialize.Linq.dll -------------------------------------------------------------------------------- /csharp/Dependencies/SignalR/Microsoft.AspNet.SignalR.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/SignalR/Microsoft.AspNet.SignalR.Client.dll -------------------------------------------------------------------------------- /csharp/Dependencies/SignalR/Microsoft.AspNet.SignalR.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/SignalR/Microsoft.AspNet.SignalR.Core.dll -------------------------------------------------------------------------------- /csharp/Dependencies/SignalR/Microsoft.AspNet.SignalR.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/SignalR/Microsoft.AspNet.SignalR.Core.xml -------------------------------------------------------------------------------- /csharp/Dependencies/SignalR/Microsoft.AspNet.SignalR.Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/SignalR/Microsoft.AspNet.SignalR.Owin.dll -------------------------------------------------------------------------------- /csharp/Dependencies/SignalR/Microsoft.AspNet.SignalR.Owin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/SignalR/Microsoft.AspNet.SignalR.Owin.xml -------------------------------------------------------------------------------- /csharp/Dependencies/SignalR/Microsoft.Owin.Host.SystemWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/SignalR/Microsoft.Owin.Host.SystemWeb.dll -------------------------------------------------------------------------------- /csharp/Dependencies/SignalR/Microsoft.Owin.Host.SystemWeb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/SignalR/Microsoft.Owin.Host.SystemWeb.xml -------------------------------------------------------------------------------- /csharp/Dependencies/SignalR/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/SignalR/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /csharp/Dependencies/SignalR/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/SignalR/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /csharp/Dependencies/SignalR/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/SignalR/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /csharp/Dependencies/SignalR/Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/SignalR/Owin.dll -------------------------------------------------------------------------------- /csharp/Dependencies/SignalR2/Microsoft.AspNet.SignalR.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/SignalR2/Microsoft.AspNet.SignalR.Core.dll -------------------------------------------------------------------------------- /csharp/Dependencies/SignalR2/Microsoft.AspNet.SignalR.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/SignalR2/Microsoft.AspNet.SignalR.Core.xml -------------------------------------------------------------------------------- /csharp/Dependencies/SignalR2/Microsoft.Owin.Diagnostics.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/SignalR2/Microsoft.Owin.Diagnostics.XML -------------------------------------------------------------------------------- /csharp/Dependencies/SignalR2/Microsoft.Owin.Diagnostics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/SignalR2/Microsoft.Owin.Diagnostics.dll -------------------------------------------------------------------------------- /csharp/Dependencies/SignalR2/Microsoft.Owin.Hosting.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/SignalR2/Microsoft.Owin.Hosting.XML -------------------------------------------------------------------------------- /csharp/Dependencies/SignalR2/Microsoft.Owin.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/SignalR2/Microsoft.Owin.Hosting.dll -------------------------------------------------------------------------------- /csharp/Dependencies/SignalR2/Microsoft.Owin.Security.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/SignalR2/Microsoft.Owin.Security.XML -------------------------------------------------------------------------------- /csharp/Dependencies/SignalR2/Microsoft.Owin.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/SignalR2/Microsoft.Owin.Security.dll -------------------------------------------------------------------------------- /csharp/Dependencies/SignalR2/Microsoft.Owin.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/SignalR2/Microsoft.Owin.XML -------------------------------------------------------------------------------- /csharp/Dependencies/SignalR2/Microsoft.Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/SignalR2/Microsoft.Owin.dll -------------------------------------------------------------------------------- /csharp/Dependencies/SignalR2/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/SignalR2/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /csharp/Dependencies/SignalR2/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/SignalR2/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /csharp/Dependencies/SignalR2/Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/SignalR2/Owin.dll -------------------------------------------------------------------------------- /csharp/Dependencies/SignalR2/System.Web.Cors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/SignalR2/System.Web.Cors.dll -------------------------------------------------------------------------------- /csharp/Dependencies/Templater/NGS.Templater-License.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/Templater/NGS.Templater-License.html -------------------------------------------------------------------------------- /csharp/Dependencies/Templater/NGS.Templater.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/Templater/NGS.Templater.dll -------------------------------------------------------------------------------- /csharp/Dependencies/Templater/NGS.Templater.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Dependencies/Templater/NGS.Templater.xml -------------------------------------------------------------------------------- /csharp/Features/Revenj.Features.Mailer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Features/Revenj.Features.Mailer/App.config -------------------------------------------------------------------------------- /csharp/Features/Revenj.Features.Mailer/Compiled/Model.Mailer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Features/Revenj.Features.Mailer/Compiled/Model.Mailer.dll -------------------------------------------------------------------------------- /csharp/Features/Revenj.Features.Mailer/DSL/Mailer.Mono.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Features/Revenj.Features.Mailer/DSL/Mailer.Mono.dsl -------------------------------------------------------------------------------- /csharp/Features/Revenj.Features.Mailer/DSL/Mailer.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Features/Revenj.Features.Mailer/DSL/Mailer.dsl -------------------------------------------------------------------------------- /csharp/Features/Revenj.Features.Mailer/IMailMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Features/Revenj.Features.Mailer/IMailMessage.cs -------------------------------------------------------------------------------- /csharp/Features/Revenj.Features.Mailer/IMailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Features/Revenj.Features.Mailer/IMailService.cs -------------------------------------------------------------------------------- /csharp/Features/Revenj.Features.Mailer/MailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Features/Revenj.Features.Mailer/MailService.cs -------------------------------------------------------------------------------- /csharp/Features/Revenj.Features.Mailer/NotSentSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Features/Revenj.Features.Mailer/NotSentSpecification.cs -------------------------------------------------------------------------------- /csharp/Features/Revenj.Features.Mailer/QueueProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Features/Revenj.Features.Mailer/QueueProcessor.cs -------------------------------------------------------------------------------- /csharp/Features/Revenj.Features.Mailer/QueueService.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Features/Revenj.Features.Mailer/QueueService.Designer.cs -------------------------------------------------------------------------------- /csharp/Features/Revenj.Features.Mailer/QueueService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Features/Revenj.Features.Mailer/QueueService.cs -------------------------------------------------------------------------------- /csharp/Features/Revenj.Features.Mailer/QueueService.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Features/Revenj.Features.Mailer/QueueService.resx -------------------------------------------------------------------------------- /csharp/Features/Revenj.Features.RestCache/CachingCrudCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Features/Revenj.Features.RestCache/CachingCrudCommands.cs -------------------------------------------------------------------------------- /csharp/Features/Revenj.Features.RestCache/CachingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Features/Revenj.Features.RestCache/CachingService.cs -------------------------------------------------------------------------------- /csharp/Features/Revenj.Features.Storage/S3/IS3Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Features/Revenj.Features.Storage/S3/IS3Repository.cs -------------------------------------------------------------------------------- /csharp/Features/Revenj.Features.Storage/S3/LitS3Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Features/Revenj.Features.Storage/S3/LitS3Repository.cs -------------------------------------------------------------------------------- /csharp/Features/Revenj.Features.Storage/S3/S3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Features/Revenj.Features.Storage/S3/S3.cs -------------------------------------------------------------------------------- /csharp/Features/Revenj.Features.Storage/S3/S3Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Features/Revenj.Features.Storage/S3/S3Repository.cs -------------------------------------------------------------------------------- /csharp/Plugins/Revenj.Plugins.AspNetCore.Commands/Try.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Plugins/Revenj.Plugins.AspNetCore.Commands/Try.cs -------------------------------------------------------------------------------- /csharp/Plugins/Revenj.Plugins.AspNetCore.Commands/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Plugins/Revenj.Plugins.AspNetCore.Commands/Utility.cs -------------------------------------------------------------------------------- /csharp/Plugins/Revenj.Plugins.Aspects/Commands/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Plugins/Revenj.Plugins.Aspects/Commands/Configuration.cs -------------------------------------------------------------------------------- /csharp/Plugins/Revenj.Plugins.Aspects/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Plugins/Revenj.Plugins.Aspects/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/Plugins/Revenj.Plugins.Rest.Commands/CrudCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Plugins/Revenj.Plugins.Rest.Commands/CrudCommands.cs -------------------------------------------------------------------------------- /csharp/Plugins/Revenj.Plugins.Rest.Commands/DomainCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Plugins/Revenj.Plugins.Rest.Commands/DomainCommands.cs -------------------------------------------------------------------------------- /csharp/Plugins/Revenj.Plugins.Rest.Commands/Either.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Plugins/Revenj.Plugins.Rest.Commands/Either.cs -------------------------------------------------------------------------------- /csharp/Plugins/Revenj.Plugins.Rest.Commands/ICrudCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Plugins/Revenj.Plugins.Rest.Commands/ICrudCommands.cs -------------------------------------------------------------------------------- /csharp/Plugins/Revenj.Plugins.Rest.Commands/IDomainCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Plugins/Revenj.Plugins.Rest.Commands/IDomainCommands.cs -------------------------------------------------------------------------------- /csharp/Plugins/Revenj.Plugins.Rest.Commands/IStandardCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Plugins/Revenj.Plugins.Rest.Commands/IStandardCommands.cs -------------------------------------------------------------------------------- /csharp/Plugins/Revenj.Plugins.Rest.Commands/MessageFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Plugins/Revenj.Plugins.Rest.Commands/MessageFormat.cs -------------------------------------------------------------------------------- /csharp/Plugins/Revenj.Plugins.Rest.Commands/ReportingCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Plugins/Revenj.Plugins.Rest.Commands/ReportingCommands.cs -------------------------------------------------------------------------------- /csharp/Plugins/Revenj.Plugins.Rest.Commands/StandardCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Plugins/Revenj.Plugins.Rest.Commands/StandardCommands.cs -------------------------------------------------------------------------------- /csharp/Plugins/Revenj.Plugins.Rest.Commands/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Plugins/Revenj.Plugins.Rest.Commands/Utility.cs -------------------------------------------------------------------------------- /csharp/Plugins/Revenj.Plugins.Server.Commands/CRUD/Create.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Plugins/Revenj.Plugins.Server.Commands/CRUD/Create.cs -------------------------------------------------------------------------------- /csharp/Plugins/Revenj.Plugins.Server.Commands/CRUD/Delete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Plugins/Revenj.Plugins.Server.Commands/CRUD/Delete.cs -------------------------------------------------------------------------------- /csharp/Plugins/Revenj.Plugins.Server.Commands/CRUD/Read.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Plugins/Revenj.Plugins.Server.Commands/CRUD/Read.cs -------------------------------------------------------------------------------- /csharp/Plugins/Revenj.Plugins.Server.Commands/CRUD/Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Plugins/Revenj.Plugins.Server.Commands/CRUD/Update.cs -------------------------------------------------------------------------------- /csharp/Plugins/Revenj.Plugins.Server.Commands/CommandResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Plugins/Revenj.Plugins.Server.Commands/CommandResult.cs -------------------------------------------------------------------------------- /csharp/Plugins/Revenj.Plugins.Server.Commands/ExecuteService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Plugins/Revenj.Plugins.Server.Commands/ExecuteService.cs -------------------------------------------------------------------------------- /csharp/Plugins/Revenj.Plugins.Server.Commands/QueueEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Plugins/Revenj.Plugins.Server.Commands/QueueEvent.cs -------------------------------------------------------------------------------- /csharp/Plugins/Revenj.Plugins.Server.Commands/SubmitEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Plugins/Revenj.Plugins.Server.Commands/SubmitEvent.cs -------------------------------------------------------------------------------- /csharp/Plugins/Revenj.Plugins.Server.Commands/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Plugins/Revenj.Plugins.Server.Commands/Utility.cs -------------------------------------------------------------------------------- /csharp/Revenj.Client.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Revenj.Client.sln -------------------------------------------------------------------------------- /csharp/Revenj.VS2015.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Revenj.VS2015.sln -------------------------------------------------------------------------------- /csharp/Revenj.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Revenj.sln -------------------------------------------------------------------------------- /csharp/Revenj.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Revenj.snk -------------------------------------------------------------------------------- /csharp/RevenjNetCore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/RevenjNetCore.sln -------------------------------------------------------------------------------- /csharp/RevenjNetStandard.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/RevenjNetStandard.sln -------------------------------------------------------------------------------- /csharp/Server/Revenj.Api.Interface/IRequestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Api.Interface/IRequestContext.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Api.Interface/IResponseContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Api.Interface/IResponseContext.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Api.Interface/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Api.Interface/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Api.Interface/Rest/ICommandConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Api.Interface/Rest/ICommandConverter.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Api.Interface/Rest/IRestApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Api.Interface/Rest/IRestApplication.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Api.Interface/Revenj.Api.Interface.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Api.Interface/Revenj.Api.Interface.csproj -------------------------------------------------------------------------------- /csharp/Server/Revenj.Api.Interface/Soap/ISoapApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Api.Interface/Soap/ISoapApplication.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Api.Interface/Soap/SoapResultDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Api.Interface/Soap/SoapResultDescription.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Api.Interface/ThreadContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Api.Interface/ThreadContext.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.AspNetCore/AdditionalCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.AspNetCore/AdditionalCommand.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.AspNetCore/AspNetContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.AspNetCore/AspNetContainer.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.AspNetCore/CommandConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.AspNetCore/CommandConverter.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.AspNetCore/PassThroughSerialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.AspNetCore/PassThroughSerialization.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.AspNetCore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.AspNetCore/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.AspNetCore/RestApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.AspNetCore/RestApplication.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.AspNetCore/Revenj.AspNetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.AspNetCore/Revenj.AspNetCore.csproj -------------------------------------------------------------------------------- /csharp/Server/Revenj.AspNetCore/RevenjConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.AspNetCore/RevenjConfig.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.AspNetCore/RevenjWebHostBuilderExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.AspNetCore/RevenjWebHostBuilderExtension.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.AspNetCore/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.AspNetCore/Utility.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Http/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Http/App.config -------------------------------------------------------------------------------- /csharp/Server/Revenj.Http/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Http/Attributes.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Http/HttpAuth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Http/HttpAuth.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Http/HttpListenerContex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Http/HttpListenerContex.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Http/HttpListenerServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Http/HttpListenerServer.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Http/HttpService.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Http/HttpService.Designer.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Http/HttpService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Http/HttpService.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Http/HttpSocketContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Http/HttpSocketContext.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Http/HttpSocketServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Http/HttpSocketServer.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Http/IHtmlView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Http/IHtmlView.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Http/NoAuth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Http/NoAuth.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Http/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Http/Program.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Http/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Http/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Http/Revenj.Http.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Http/Revenj.Http.csproj -------------------------------------------------------------------------------- /csharp/Server/Revenj.Http/RouteHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Http/RouteHandler.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Http/RouteMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Http/RouteMatch.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Http/Routes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Http/Routes.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Http/UriPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Http/UriPattern.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Http/cache/GeneratedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Http/cache/GeneratedModel.dll -------------------------------------------------------------------------------- /csharp/Server/Revenj.Processing.Interface/ICommandResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Processing.Interface/ICommandResult.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Processing.Interface/IProcessingEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Processing.Interface/IProcessingEngine.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Processing.Interface/IProcessingResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Processing.Interface/IProcessingResult.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Processing.Interface/IServerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Processing.Interface/IServerCommand.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Processing.Interface/IServerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Processing.Interface/IServerService.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Processing/Aspects/ServerServiceAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Processing/Aspects/ServerServiceAspect.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Processing/CommandResultDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Processing/CommandResultDescription.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Processing/ProcessingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Processing/ProcessingContext.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Processing/ProcessingEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Processing/ProcessingEngine.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Processing/ProcessingResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Processing/ProcessingResult.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Processing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Processing/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Processing/Revenj.Processing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Processing/Revenj.Processing.csproj -------------------------------------------------------------------------------- /csharp/Server/Revenj.Processing/ScopePool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Processing/ScopePool.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Processing/Setup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Processing/Setup.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.SignalR2SelfHost/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.SignalR2SelfHost/App.config -------------------------------------------------------------------------------- /csharp/Server/Revenj.SignalR2SelfHost/NotifyHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.SignalR2SelfHost/NotifyHub.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.SignalR2SelfHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.SignalR2SelfHost/Program.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.SignalR2SelfHost/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.SignalR2SelfHost/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.SignalR2SelfHost/cache/GeneratedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.SignalR2SelfHost/cache/GeneratedModel.dll -------------------------------------------------------------------------------- /csharp/Server/Revenj.SignalRWeb/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.SignalRWeb/Global.asax -------------------------------------------------------------------------------- /csharp/Server/Revenj.SignalRWeb/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.SignalRWeb/Global.asax.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.SignalRWeb/NotifyHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.SignalRWeb/NotifyHub.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.SignalRWeb/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.SignalRWeb/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.SignalRWeb/Revenj.SignalRWeb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.SignalRWeb/Revenj.SignalRWeb.csproj -------------------------------------------------------------------------------- /csharp/Server/Revenj.SignalRWeb/Scripts/jquery-1.6.4-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.SignalRWeb/Scripts/jquery-1.6.4-vsdoc.js -------------------------------------------------------------------------------- /csharp/Server/Revenj.SignalRWeb/Scripts/jquery-1.6.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.SignalRWeb/Scripts/jquery-1.6.4.js -------------------------------------------------------------------------------- /csharp/Server/Revenj.SignalRWeb/Scripts/jquery-1.6.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.SignalRWeb/Scripts/jquery-1.6.4.min.js -------------------------------------------------------------------------------- /csharp/Server/Revenj.SignalRWeb/Scripts/jquery.signalR-1.1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.SignalRWeb/Scripts/jquery.signalR-1.1.3.js -------------------------------------------------------------------------------- /csharp/Server/Revenj.SignalRWeb/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.SignalRWeb/Web.Debug.config -------------------------------------------------------------------------------- /csharp/Server/Revenj.SignalRWeb/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.SignalRWeb/Web.Release.config -------------------------------------------------------------------------------- /csharp/Server/Revenj.SignalRWeb/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.SignalRWeb/Web.config -------------------------------------------------------------------------------- /csharp/Server/Revenj.SignalRWeb/cache/Revenj.ServerModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.SignalRWeb/cache/Revenj.ServerModel.dll -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/Global.asax -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/Global.asax.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/GlobalErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/GlobalErrorHandler.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/NoPermissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/NoPermissions.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/PdfConverter/PdfConverter.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/PdfConverter/PdfConverter.exe -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/PdfConverter/PdfConverter.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/PdfConverter/PdfConverter.exe.config -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/Platform.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/ResponseUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/ResponseUtility.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/Rest/CommandConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/Rest/CommandConverter.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/Rest/JsonCommandDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/Rest/JsonCommandDescription.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/Rest/ObjectCommandDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/Rest/ObjectCommandDescription.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/Rest/ProtobufCommandDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/Rest/ProtobufCommandDescription.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/Rest/RawFormatMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/Rest/RawFormatMapper.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/Rest/RestApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/Rest/RestApplication.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/Rest/XmlCommandDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/Rest/XmlCommandDescription.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/Revenj.Wcf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/Revenj.Wcf.csproj -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/ServerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/ServerState.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/Soap/SoapApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/Soap/SoapApplication.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/Soap/SoapCommandDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/Soap/SoapCommandDescription.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/StandardAuthorizationPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/StandardAuthorizationPolicy.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/StandardLoginValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/StandardLoginValidator.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/StandardModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/StandardModule.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/Wcf/ContainerWcfHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/Wcf/ContainerWcfHost.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/Wcf/WcfRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/Wcf/WcfRequest.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/Wcf/WcfResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/Wcf/WcfResponse.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/Web.Debug.config -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/Web.Release.config -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/Web.config -------------------------------------------------------------------------------- /csharp/Server/Revenj.Wcf/cache/GeneratedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.Wcf/cache/GeneratedModel.dll -------------------------------------------------------------------------------- /csharp/Server/Revenj.WindowsService/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.WindowsService/App.config -------------------------------------------------------------------------------- /csharp/Server/Revenj.WindowsService/HostService.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.WindowsService/HostService.Designer.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.WindowsService/HostService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.WindowsService/HostService.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.WindowsService/HostService.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.WindowsService/HostService.resx -------------------------------------------------------------------------------- /csharp/Server/Revenj.WindowsService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.WindowsService/Program.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.WindowsService/ProjectInstaller.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.WindowsService/ProjectInstaller.Designer.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.WindowsService/ProjectInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.WindowsService/ProjectInstaller.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.WindowsService/ProjectInstaller.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.WindowsService/ProjectInstaller.resx -------------------------------------------------------------------------------- /csharp/Server/Revenj.WindowsService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.WindowsService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/Server/Revenj.WindowsService/Revenj.WindowsService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/Server/Revenj.WindowsService/Revenj.WindowsService.csproj -------------------------------------------------------------------------------- /csharp/SharedAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/csharp/SharedAssemblyInfo.cs -------------------------------------------------------------------------------- /java/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/.gitignore -------------------------------------------------------------------------------- /java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/pom.xml -------------------------------------------------------------------------------- /java/revenj-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-core/pom.xml -------------------------------------------------------------------------------- /java/revenj-core/src/main/java/org/revenj/GlobalEventStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-core/src/main/java/org/revenj/GlobalEventStore.java -------------------------------------------------------------------------------- /java/revenj-core/src/main/java/org/revenj/Guards.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-core/src/main/java/org/revenj/Guards.java -------------------------------------------------------------------------------- /java/revenj-core/src/main/java/org/revenj/Revenj.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-core/src/main/java/org/revenj/Revenj.java -------------------------------------------------------------------------------- /java/revenj-core/src/main/java/org/revenj/RevenjSystemState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-core/src/main/java/org/revenj/RevenjSystemState.java -------------------------------------------------------------------------------- /java/revenj-core/src/main/java/org/revenj/SimpleContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-core/src/main/java/org/revenj/SimpleContainer.java -------------------------------------------------------------------------------- /java/revenj-core/src/main/java/org/revenj/TreePath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-core/src/main/java/org/revenj/TreePath.java -------------------------------------------------------------------------------- /java/revenj-core/src/main/java/org/revenj/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-core/src/main/java/org/revenj/Utils.java -------------------------------------------------------------------------------- /java/revenj-core/src/main/java/org/revenj/database/postgres/jinq/JINQ-LICENSE: -------------------------------------------------------------------------------- 1 | https://github.com/my2iu/Jinq -------------------------------------------------------------------------------- /java/revenj-core/src/main/java/org/revenj/patterns/Generic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-core/src/main/java/org/revenj/patterns/Generic.java -------------------------------------------------------------------------------- /java/revenj-core/src/main/java/org/revenj/patterns/History.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-core/src/main/java/org/revenj/patterns/History.java -------------------------------------------------------------------------------- /java/revenj-core/src/main/java/org/revenj/patterns/Query.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-core/src/main/java/org/revenj/patterns/Query.java -------------------------------------------------------------------------------- /java/revenj-core/src/main/java/org/revenj/patterns/Report.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-core/src/main/java/org/revenj/patterns/Report.java -------------------------------------------------------------------------------- /java/revenj-core/src/main/java/org/revenj/patterns/Snapshot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-core/src/main/java/org/revenj/patterns/Snapshot.java -------------------------------------------------------------------------------- /java/revenj-core/src/test/java/org/revenj/TestCommon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-core/src/test/java/org/revenj/TestCommon.java -------------------------------------------------------------------------------- /java/revenj-core/src/test/java/org/revenj/TestContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-core/src/test/java/org/revenj/TestContainer.java -------------------------------------------------------------------------------- /java/revenj-core/src/test/java/org/revenj/TestJson.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-core/src/test/java/org/revenj/TestJson.java -------------------------------------------------------------------------------- /java/revenj-core/src/test/java/org/revenj/TestPostgres.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-core/src/test/java/org/revenj/TestPostgres.java -------------------------------------------------------------------------------- /java/revenj-core/src/test/java/org/revenj/TestReflection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-core/src/test/java/org/revenj/TestReflection.java -------------------------------------------------------------------------------- /java/revenj-core/src/test/java/org/revenj/TestSecurity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-core/src/test/java/org/revenj/TestSecurity.java -------------------------------------------------------------------------------- /java/revenj-core/src/test/java/org/revenj/TestXml.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-core/src/test/java/org/revenj/TestXml.java -------------------------------------------------------------------------------- /java/revenj-servlet/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-servlet/pom.xml -------------------------------------------------------------------------------- /java/revenj-servlet/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-servlet/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /java/revenj-spring/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-spring/pom.xml -------------------------------------------------------------------------------- /java/revenj-storage/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-storage/pom.xml -------------------------------------------------------------------------------- /java/revenj-storage/src/main/java/org/revenj/Storage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-storage/src/main/java/org/revenj/Storage.java -------------------------------------------------------------------------------- /java/revenj-storage/src/main/java/org/revenj/storage/S3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/revenj-storage/src/main/java/org/revenj/storage/S3.java -------------------------------------------------------------------------------- /java/test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/test/pom.xml -------------------------------------------------------------------------------- /java/test/src/test/java/org/revenj/Setup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/test/src/test/java/org/revenj/Setup.java -------------------------------------------------------------------------------- /java/test/src/test/java/org/revenj/TestContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/test/src/test/java/org/revenj/TestContainer.java -------------------------------------------------------------------------------- /java/test/src/test/java/org/revenj/TestDataContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/test/src/test/java/org/revenj/TestDataContext.java -------------------------------------------------------------------------------- /java/test/src/test/java/org/revenj/TestDslJson.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/test/src/test/java/org/revenj/TestDslJson.java -------------------------------------------------------------------------------- /java/test/src/test/java/org/revenj/TestNotifications.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/test/src/test/java/org/revenj/TestNotifications.java -------------------------------------------------------------------------------- /java/test/src/test/java/org/revenj/TestQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/test/src/test/java/org/revenj/TestQuery.java -------------------------------------------------------------------------------- /java/test/src/test/java/org/revenj/TestReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/test/src/test/java/org/revenj/TestReport.java -------------------------------------------------------------------------------- /java/test/src/test/java/org/revenj/TestRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/test/src/test/java/org/revenj/TestRepository.java -------------------------------------------------------------------------------- /java/test/src/test/java/org/revenj/TestSecurity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/test/src/test/java/org/revenj/TestSecurity.java -------------------------------------------------------------------------------- /java/test/src/test/java/org/revenj/TestServiceLocator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/test/src/test/java/org/revenj/TestServiceLocator.java -------------------------------------------------------------------------------- /java/test/src/test/resources/model.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/java/test/src/test/resources/model.dsl -------------------------------------------------------------------------------- /scala/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | 3 | target 4 | 5 | out/ 6 | *.iml -------------------------------------------------------------------------------- /scala/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/scala/README.md -------------------------------------------------------------------------------- /scala/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/scala/build.sbt -------------------------------------------------------------------------------- /scala/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /scala/project/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/scala/project/build.sbt -------------------------------------------------------------------------------- /scala/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/scala/project/plugins.sbt -------------------------------------------------------------------------------- /scala/revenj-core/src/main/scala/net/revenj/Guards.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/scala/revenj-core/src/main/scala/net/revenj/Guards.scala -------------------------------------------------------------------------------- /scala/revenj-core/src/main/scala/net/revenj/Revenj.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/scala/revenj-core/src/main/scala/net/revenj/Revenj.scala -------------------------------------------------------------------------------- /scala/revenj-core/src/main/scala/net/revenj/TreePath.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/scala/revenj-core/src/main/scala/net/revenj/TreePath.scala -------------------------------------------------------------------------------- /scala/revenj-core/src/main/scala/net/revenj/Utils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/scala/revenj-core/src/main/scala/net/revenj/Utils.scala -------------------------------------------------------------------------------- /scala/revenj-core/src/main/scala/net/revenj/patterns/Cache.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/scala/revenj-core/src/main/scala/net/revenj/patterns/Cache.scala -------------------------------------------------------------------------------- /scala/revenj-core/src/test/resources/META-INF/services/net.revenj.extensibility.SystemAspect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scala/revenj-core/src/test/resources/META-INF/services/net.revenj.patterns.DomainEventHandler%3Cnet.revenj.TestMe%3E: -------------------------------------------------------------------------------- 1 | net.revenj.TestMeHandler -------------------------------------------------------------------------------- /scala/revenj-core/src/test/resources/META-INF/services/net.revenj.patterns.DomainEventHandler%3Cnet.revenj.TestMe%5B%5D%3E: -------------------------------------------------------------------------------- 1 | net.revenj.TestMeArrayHandler -------------------------------------------------------------------------------- /scala/revenj-core/src/test/resources/META-INF/services/net.revenj.patterns.DomainEventHandler%3Cscala.Function0%3Cnet.revenj.Single%3E%3E: -------------------------------------------------------------------------------- 1 | net.revenj.Handler3 -------------------------------------------------------------------------------- /scala/revenj-core/src/test/resources/META-INF/services/net.revenj.patterns.EventStoreAspect%3Cnet.revenj.TestMe%3E: -------------------------------------------------------------------------------- 1 | net.revenj.EventClassAspect -------------------------------------------------------------------------------- /scala/revenj-core/src/test/resources/META-INF/services/net.revenj.patterns.ReportAspect%3Cnet.revenj.ReportMe%24Result%2Cnet.revenj.ReportMe%3E: -------------------------------------------------------------------------------- 1 | net.revenj.ReportClassAspect -------------------------------------------------------------------------------- /scala/revenj-core/src/test/resources/META-INF/services/net.revenj.server.ServerCommand: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scala/revenj-core/src/test/resources/META-INF/services/net.revenj.server.handlers.RequestBinding: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scala/revenj-core/src/test/scala/net/revenj/AspectCheck.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/scala/revenj-core/src/test/scala/net/revenj/AspectCheck.scala -------------------------------------------------------------------------------- /scala/revenj-core/src/test/scala/net/revenj/ReportMe.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/scala/revenj-core/src/test/scala/net/revenj/ReportMe.scala -------------------------------------------------------------------------------- /scala/revenj-core/src/test/scala/net/revenj/TestMe.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/scala/revenj-core/src/test/scala/net/revenj/TestMe.scala -------------------------------------------------------------------------------- /scala/tests/src/test/resources/META-INF/services/net.revenj.extensibility.SystemAspect: -------------------------------------------------------------------------------- 1 | example.Boot -------------------------------------------------------------------------------- /scala/tests/src/test/resources/META-INF/services/net.revenj.patterns.DomainEventHandler%3Cexample.test.TestMe%3E: -------------------------------------------------------------------------------- 1 | net.revenj.database.postgres.DbCheck$ExampleEventHandler -------------------------------------------------------------------------------- /scala/tests/src/test/resources/META-INF/services/net.revenj.server.ServerCommand: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scala/tests/src/test/resources/META-INF/services/net.revenj.server.handlers.RequestBinding: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scala/tests/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/scala/tests/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /scala/tests/src/test/resources/model.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/scala/tests/src/test/resources/model.dsl -------------------------------------------------------------------------------- /tutorials/AspNetCore/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/AspNetCore/.gitignore -------------------------------------------------------------------------------- /tutorials/AspNetCore/AspNetTutorial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/AspNetCore/AspNetTutorial.csproj -------------------------------------------------------------------------------- /tutorials/AspNetCore/AspNetTutorial.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/AspNetCore/AspNetTutorial.sln -------------------------------------------------------------------------------- /tutorials/AspNetCore/CustomException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/AspNetCore/CustomException.cs -------------------------------------------------------------------------------- /tutorials/AspNetCore/Customers/CustomerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/AspNetCore/Customers/CustomerService.cs -------------------------------------------------------------------------------- /tutorials/AspNetCore/Customers/Validate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/AspNetCore/Customers/Validate.cs -------------------------------------------------------------------------------- /tutorials/AspNetCore/DSL/model.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/AspNetCore/DSL/model.dsl -------------------------------------------------------------------------------- /tutorials/AspNetCore/Middleware/RevenjMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/AspNetCore/Middleware/RevenjMiddleware.cs -------------------------------------------------------------------------------- /tutorials/AspNetCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/AspNetCore/Program.cs -------------------------------------------------------------------------------- /tutorials/AspNetCore/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/AspNetCore/Properties/launchSettings.json -------------------------------------------------------------------------------- /tutorials/AspNetCore/SQL/01 - initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/AspNetCore/SQL/01 - initial.sql -------------------------------------------------------------------------------- /tutorials/AspNetCore/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/AspNetCore/Startup.cs -------------------------------------------------------------------------------- /tutorials/AspNetCore/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/AspNetCore/appsettings.Development.json -------------------------------------------------------------------------------- /tutorials/AspNetCore/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/AspNetCore/appsettings.json -------------------------------------------------------------------------------- /tutorials/AspNetCore/lib/Model.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/AspNetCore/lib/Model.dll -------------------------------------------------------------------------------- /tutorials/examples/SpringBoot.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/examples/SpringBoot.zip -------------------------------------------------------------------------------- /tutorials/pictures/aggregate-events-postgres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/aggregate-events-postgres.png -------------------------------------------------------------------------------- /tutorials/pictures/aspnet-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/aspnet-configuration.png -------------------------------------------------------------------------------- /tutorials/pictures/aspnet-diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/aspnet-diff.png -------------------------------------------------------------------------------- /tutorials/pictures/aspnet-migration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/aspnet-migration.png -------------------------------------------------------------------------------- /tutorials/pictures/boot-database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/boot-database.png -------------------------------------------------------------------------------- /tutorials/pictures/compile-dsl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/compile-dsl.png -------------------------------------------------------------------------------- /tutorials/pictures/configure-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/configure-config.png -------------------------------------------------------------------------------- /tutorials/pictures/convert-solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/convert-solution.png -------------------------------------------------------------------------------- /tutorials/pictures/create-command-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/create-command-linux.png -------------------------------------------------------------------------------- /tutorials/pictures/create-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/create-command.png -------------------------------------------------------------------------------- /tutorials/pictures/crud-commands-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/crud-commands-linux.png -------------------------------------------------------------------------------- /tutorials/pictures/crud-commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/crud-commands.png -------------------------------------------------------------------------------- /tutorials/pictures/cube-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/cube-filter.png -------------------------------------------------------------------------------- /tutorials/pictures/dal-bench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/dal-bench.png -------------------------------------------------------------------------------- /tutorials/pictures/destructive-migration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/destructive-migration.png -------------------------------------------------------------------------------- /tutorials/pictures/detail-sql-aggregate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/detail-sql-aggregate.png -------------------------------------------------------------------------------- /tutorials/pictures/downvote-and-sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/downvote-and-sync.png -------------------------------------------------------------------------------- /tutorials/pictures/entity-in-aggregate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/entity-in-aggregate.png -------------------------------------------------------------------------------- /tutorials/pictures/event-customer-sanitized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/event-customer-sanitized.png -------------------------------------------------------------------------------- /tutorials/pictures/event-handler-implementation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/event-handler-implementation.png -------------------------------------------------------------------------------- /tutorials/pictures/event-instance-fiddler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/event-instance-fiddler.png -------------------------------------------------------------------------------- /tutorials/pictures/event-return-instance-handler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/event-return-instance-handler.png -------------------------------------------------------------------------------- /tutorials/pictures/event-store-signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/event-store-signature.png -------------------------------------------------------------------------------- /tutorials/pictures/event-tables-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/event-tables-simple.png -------------------------------------------------------------------------------- /tutorials/pictures/fiddler-spring-domain-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/fiddler-spring-domain-search.png -------------------------------------------------------------------------------- /tutorials/pictures/fiddler-spring-get.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/fiddler-spring-get.png -------------------------------------------------------------------------------- /tutorials/pictures/fiddler-spring-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/fiddler-spring-post.png -------------------------------------------------------------------------------- /tutorials/pictures/first-fiddler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/first-fiddler.png -------------------------------------------------------------------------------- /tutorials/pictures/first-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/first-response.png -------------------------------------------------------------------------------- /tutorials/pictures/hooking-up-events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/hooking-up-events.png -------------------------------------------------------------------------------- /tutorials/pictures/idea-maven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/idea-maven.png -------------------------------------------------------------------------------- /tutorials/pictures/init-sql-script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/init-sql-script.png -------------------------------------------------------------------------------- /tutorials/pictures/initial-confirmation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/initial-confirmation.png -------------------------------------------------------------------------------- /tutorials/pictures/initial-pg-admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/initial-pg-admin.png -------------------------------------------------------------------------------- /tutorials/pictures/interface-property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/interface-property.png -------------------------------------------------------------------------------- /tutorials/pictures/json-bench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/json-bench.png -------------------------------------------------------------------------------- /tutorials/pictures/lazy-load-function-postgres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/lazy-load-function-postgres.png -------------------------------------------------------------------------------- /tutorials/pictures/login-to-dsl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/login-to-dsl.png -------------------------------------------------------------------------------- /tutorials/pictures/migration-int-guid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/migration-int-guid.png -------------------------------------------------------------------------------- /tutorials/pictures/model-dll-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/model-dll-linux.png -------------------------------------------------------------------------------- /tutorials/pictures/model-dll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/model-dll.png -------------------------------------------------------------------------------- /tutorials/pictures/mssql-multi-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/mssql-multi-query.png -------------------------------------------------------------------------------- /tutorials/pictures/new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/new-project.png -------------------------------------------------------------------------------- /tutorials/pictures/pgadmin-aggregate-events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/pgadmin-aggregate-events.png -------------------------------------------------------------------------------- /tutorials/pictures/postgres-lazy-load-uri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/postgres-lazy-load-uri.png -------------------------------------------------------------------------------- /tutorials/pictures/postgres-mixin-property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/postgres-mixin-property.png -------------------------------------------------------------------------------- /tutorials/pictures/postgres-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/postgres-model.png -------------------------------------------------------------------------------- /tutorials/pictures/postgres-notify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/postgres-notify.png -------------------------------------------------------------------------------- /tutorials/pictures/reactive-bulk-processing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/reactive-bulk-processing.png -------------------------------------------------------------------------------- /tutorials/pictures/revenj-core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/revenj-core.png -------------------------------------------------------------------------------- /tutorials/pictures/sln-changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/sln-changes.png -------------------------------------------------------------------------------- /tutorials/pictures/snowflake-no-lazy-load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/snowflake-no-lazy-load.png -------------------------------------------------------------------------------- /tutorials/pictures/snowflake-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/snowflake-schema.png -------------------------------------------------------------------------------- /tutorials/pictures/spring-boot-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/spring-boot-run.png -------------------------------------------------------------------------------- /tutorials/pictures/start-external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/start-external.png -------------------------------------------------------------------------------- /tutorials/pictures/techempower-single-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/techempower-single-13.png -------------------------------------------------------------------------------- /tutorials/pictures/techempower-update-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/techempower-update-13.png -------------------------------------------------------------------------------- /tutorials/pictures/techempower-update-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/techempower-update-15.png -------------------------------------------------------------------------------- /tutorials/pictures/test-project-events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/test-project-events.png -------------------------------------------------------------------------------- /tutorials/pictures/testing-aggregate-events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/testing-aggregate-events.png -------------------------------------------------------------------------------- /tutorials/pictures/unprocessed-events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/unprocessed-events.png -------------------------------------------------------------------------------- /tutorials/pictures/up-to-date-database-event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/pictures/up-to-date-database-event.png -------------------------------------------------------------------------------- /tutorials/revenj-tutorial-aggregate-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/revenj-tutorial-aggregate-events.md -------------------------------------------------------------------------------- /tutorials/revenj-tutorial-aspnetcore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/revenj-tutorial-aspnetcore.md -------------------------------------------------------------------------------- /tutorials/revenj-tutorial-bulk-reading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/revenj-tutorial-bulk-reading.md -------------------------------------------------------------------------------- /tutorials/revenj-tutorial-dependency-injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/revenj-tutorial-dependency-injection.md -------------------------------------------------------------------------------- /tutorials/revenj-tutorial-event-sourcing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/revenj-tutorial-event-sourcing.md -------------------------------------------------------------------------------- /tutorials/revenj-tutorial-handling-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/revenj-tutorial-handling-events.md -------------------------------------------------------------------------------- /tutorials/revenj-tutorial-jinq-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/revenj-tutorial-jinq-basics.md -------------------------------------------------------------------------------- /tutorials/revenj-tutorial-linq-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/revenj-tutorial-linq-basics.md -------------------------------------------------------------------------------- /tutorials/revenj-tutorial-mono.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/revenj-tutorial-mono.md -------------------------------------------------------------------------------- /tutorials/revenj-tutorial-nosql-documents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/revenj-tutorial-nosql-documents.md -------------------------------------------------------------------------------- /tutorials/revenj-tutorial-notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/revenj-tutorial-notifications.md -------------------------------------------------------------------------------- /tutorials/revenj-tutorial-olap-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/revenj-tutorial-olap-basics.md -------------------------------------------------------------------------------- /tutorials/revenj-tutorial-raw-sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/revenj-tutorial-raw-sql.md -------------------------------------------------------------------------------- /tutorials/revenj-tutorial-sbt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/revenj-tutorial-sbt.md -------------------------------------------------------------------------------- /tutorials/revenj-tutorial-security-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/revenj-tutorial-security-basics.md -------------------------------------------------------------------------------- /tutorials/revenj-tutorial-servlet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/revenj-tutorial-servlet.md -------------------------------------------------------------------------------- /tutorials/revenj-tutorial-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/revenj-tutorial-setup.md -------------------------------------------------------------------------------- /tutorials/revenj-tutorial-spring-boot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/revenj-tutorial-spring-boot.md -------------------------------------------------------------------------------- /tutorials/sbt/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/sbt/build.sbt -------------------------------------------------------------------------------- /tutorials/sbt/dsl/cms.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/sbt/dsl/cms.dsl -------------------------------------------------------------------------------- /tutorials/sbt/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.3.2 2 | -------------------------------------------------------------------------------- /tutorials/sbt/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/sbt/project/plugins.sbt -------------------------------------------------------------------------------- /tutorials/sbt/src/main/resources/META-INF/services/net.revenj.extensibility.SystemAspect: -------------------------------------------------------------------------------- 1 | example.Boot -------------------------------------------------------------------------------- /tutorials/sbt/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/sbt/src/main/resources/application.conf -------------------------------------------------------------------------------- /tutorials/sbt/src/main/scala/Startup.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/sbt/src/main/scala/Startup.scala -------------------------------------------------------------------------------- /tutorials/services/Crud.svc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/services/Crud.svc.md -------------------------------------------------------------------------------- /tutorials/services/Domain.svc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/services/Domain.svc.md -------------------------------------------------------------------------------- /tutorials/services/Reporting.svc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/services/Reporting.svc.md -------------------------------------------------------------------------------- /tutorials/services/Standard.svc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/tutorials/services/Standard.svc.md -------------------------------------------------------------------------------- /typescript-react/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/.editorconfig -------------------------------------------------------------------------------- /typescript-react/.eslintignore: -------------------------------------------------------------------------------- 1 | build/ 2 | dist/ 3 | node_modules/ 4 | .snapshots/ 5 | *.min.js -------------------------------------------------------------------------------- /typescript-react/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/.eslintrc -------------------------------------------------------------------------------- /typescript-react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/.gitignore -------------------------------------------------------------------------------- /typescript-react/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/.prettierrc -------------------------------------------------------------------------------- /typescript-react/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/.travis.yml -------------------------------------------------------------------------------- /typescript-react/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/.vscode/settings.json -------------------------------------------------------------------------------- /typescript-react/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/LICENSE -------------------------------------------------------------------------------- /typescript-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/README.md -------------------------------------------------------------------------------- /typescript-react/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/README.md -------------------------------------------------------------------------------- /typescript-react/example/api/export/dummy.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/api/export/dummy.xlsx -------------------------------------------------------------------------------- /typescript-react/example/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/api/index.ts -------------------------------------------------------------------------------- /typescript-react/example/api/model/domain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/api/model/domain.ts -------------------------------------------------------------------------------- /typescript-react/example/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/api/tsconfig.json -------------------------------------------------------------------------------- /typescript-react/example/config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/config-overrides.js -------------------------------------------------------------------------------- /typescript-react/example/dsl/demo.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/dsl/demo.dsl -------------------------------------------------------------------------------- /typescript-react/example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/package.json -------------------------------------------------------------------------------- /typescript-react/example/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/public/favicon.ico -------------------------------------------------------------------------------- /typescript-react/example/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/public/index.html -------------------------------------------------------------------------------- /typescript-react/example/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/public/manifest.json -------------------------------------------------------------------------------- /typescript-react/example/scripts/dsl-clc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/scripts/dsl-clc.jar -------------------------------------------------------------------------------- /typescript-react/example/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/src/App.test.tsx -------------------------------------------------------------------------------- /typescript-react/example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/src/App.tsx -------------------------------------------------------------------------------- /typescript-react/example/src/components/Auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/src/components/Auth.tsx -------------------------------------------------------------------------------- /typescript-react/example/src/components/Fields.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/src/components/Fields.module.css -------------------------------------------------------------------------------- /typescript-react/example/src/components/Fields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/src/components/Fields.tsx -------------------------------------------------------------------------------- /typescript-react/example/src/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/src/components/Layout.tsx -------------------------------------------------------------------------------- /typescript-react/example/src/components/Loading.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/src/components/Loading.module.css -------------------------------------------------------------------------------- /typescript-react/example/src/components/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/src/components/Loading.tsx -------------------------------------------------------------------------------- /typescript-react/example/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/src/index.css -------------------------------------------------------------------------------- /typescript-react/example/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/src/index.tsx -------------------------------------------------------------------------------- /typescript-react/example/src/pages/Package/Create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/src/pages/Package/Create.tsx -------------------------------------------------------------------------------- /typescript-react/example/src/pages/Package/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/src/pages/Package/List.tsx -------------------------------------------------------------------------------- /typescript-react/example/src/pages/Package/ViewEdit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/src/pages/Package/ViewEdit.tsx -------------------------------------------------------------------------------- /typescript-react/example/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /typescript-react/example/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/src/setupTests.ts -------------------------------------------------------------------------------- /typescript-react/example/src/util/Api.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/src/util/Api.tsx -------------------------------------------------------------------------------- /typescript-react/example/src/util/notify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/src/util/notify.ts -------------------------------------------------------------------------------- /typescript-react/example/src/util/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/src/util/validators.ts -------------------------------------------------------------------------------- /typescript-react/example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/tsconfig.json -------------------------------------------------------------------------------- /typescript-react/example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/example/yarn.lock -------------------------------------------------------------------------------- /typescript-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/package.json -------------------------------------------------------------------------------- /typescript-react/scripts/postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/scripts/postinstall.js -------------------------------------------------------------------------------- /typescript-react/src/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/.eslintrc -------------------------------------------------------------------------------- /typescript-react/src/ResultSet/ResultSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/ResultSet/ResultSet.ts -------------------------------------------------------------------------------- /typescript-react/src/components/Api/ApiContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Api/ApiContext.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Buttons/ButtonMenu.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Buttons/ButtonMenu.module.css -------------------------------------------------------------------------------- /typescript-react/src/components/Buttons/ButtonMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Buttons/ButtonMenu.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Buttons/Buttons.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Buttons/Buttons.module.css -------------------------------------------------------------------------------- /typescript-react/src/components/Buttons/Buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Buttons/Buttons.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Buttons/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Buttons/interfaces.ts -------------------------------------------------------------------------------- /typescript-react/src/components/Charts/Charts.module.css: -------------------------------------------------------------------------------- 1 | .Container { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /typescript-react/src/components/Charts/Charts.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Charts/Charts.story.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Charts/Charts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Charts/Charts.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Charts/Theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Charts/Theme.ts -------------------------------------------------------------------------------- /typescript-react/src/components/Charts/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Charts/helpers.ts -------------------------------------------------------------------------------- /typescript-react/src/components/Charts/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Charts/types.ts -------------------------------------------------------------------------------- /typescript-react/src/components/Description/Description.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Description/Description.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Form/Context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Form/Context.ts -------------------------------------------------------------------------------- /typescript-react/src/components/Form/Error.module.css: -------------------------------------------------------------------------------- 1 | .Error {} 2 | -------------------------------------------------------------------------------- /typescript-react/src/components/Form/Form.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Form/Form.module.css -------------------------------------------------------------------------------- /typescript-react/src/components/Form/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Form/Form.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Form/FormField.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Form/FormField.module.css -------------------------------------------------------------------------------- /typescript-react/src/components/Form/FormField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Form/FormField.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Form/FormSection.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Form/FormSection.module.css -------------------------------------------------------------------------------- /typescript-react/src/components/Form/FormSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Form/FormSection.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Form/GlobalFormError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Form/GlobalFormError.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Form/Group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Form/Group.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Form/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Form/interfaces.ts -------------------------------------------------------------------------------- /typescript-react/src/components/Header/Header.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Header/Header.module.css -------------------------------------------------------------------------------- /typescript-react/src/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Header/Header.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/I18n/I18n.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/I18n/I18n.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/I18n/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/I18n/service.ts -------------------------------------------------------------------------------- /typescript-react/src/components/Input/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Input/Input.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Label/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Label/Label.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Loader/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Loader/Loader.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Presenters/Actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Presenters/Actions.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Presenters/ListPresenter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Presenters/ListPresenter.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Presenters/Presenter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Presenters/Presenter.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Status/Status.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Status/Status.module.css -------------------------------------------------------------------------------- /typescript-react/src/components/Status/Status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Status/Status.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Table/Cell/ActionsCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/Cell/ActionsCell.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Table/Cell/BooleanCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/Cell/BooleanCell.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Table/Cell/Cells.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/Cell/Cells.module.css -------------------------------------------------------------------------------- /typescript-react/src/components/Table/Cell/CurrencyCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/Cell/CurrencyCell.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Table/Cell/CustomCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/Cell/CustomCell.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Table/Cell/DateTimeCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/Cell/DateTimeCell.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Table/Cell/DecimalCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/Cell/DecimalCell.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Table/Cell/FieldCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/Cell/FieldCell.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Table/Cell/IntegerCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/Cell/IntegerCell.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Table/Cell/LinkCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/Cell/LinkCell.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Table/Cell/S3FileCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/Cell/S3FileCell.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Table/Cell/ShortCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/Cell/ShortCell.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Table/Cell/StatusCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/Cell/StatusCell.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Table/Cell/TextCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/Cell/TextCell.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Table/Cell/TooltipCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/Cell/TooltipCell.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Table/Cell/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/Cell/index.ts -------------------------------------------------------------------------------- /typescript-react/src/components/Table/DetailRow/DetailRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/DetailRow/DetailRow.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Table/Expander.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/Expander.module.css -------------------------------------------------------------------------------- /typescript-react/src/components/Table/Expander.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/Expander.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Table/Footer/LabelFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/Footer/LabelFooter.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Table/Footer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/Footer/index.ts -------------------------------------------------------------------------------- /typescript-react/src/components/Table/NoData/NoData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/NoData/NoData.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Table/Table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/Table.css -------------------------------------------------------------------------------- /typescript-react/src/components/Table/Table.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/Table.story.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Table/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/Table.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Table/config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/config.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Table/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/constants.ts -------------------------------------------------------------------------------- /typescript-react/src/components/Table/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/interfaces.ts -------------------------------------------------------------------------------- /typescript-react/src/components/Table/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Table/requirements.md -------------------------------------------------------------------------------- /typescript-react/src/components/Tooltip/Tooltip.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Tooltip/Tooltip.module.css -------------------------------------------------------------------------------- /typescript-react/src/components/Tooltip/Tooltip.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Tooltip/Tooltip.story.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/Tooltip/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/Tooltip/Tooltip.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/View/FastFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/View/FastFilter.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/View/FiltersForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/View/FiltersForm.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/View/Form.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript-react/src/components/View/Grid.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/View/Grid.module.css -------------------------------------------------------------------------------- /typescript-react/src/components/View/Grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/View/Grid.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/View/PresenterForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/View/PresenterForm.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/View/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/View/helpers.ts -------------------------------------------------------------------------------- /typescript-react/src/components/decorators/formField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/decorators/formField.tsx -------------------------------------------------------------------------------- /typescript-react/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/index.ts -------------------------------------------------------------------------------- /typescript-react/src/components/validation/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/validation/collection.ts -------------------------------------------------------------------------------- /typescript-react/src/components/validation/conditional.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/validation/conditional.ts -------------------------------------------------------------------------------- /typescript-react/src/components/validation/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/validation/date.ts -------------------------------------------------------------------------------- /typescript-react/src/components/validation/equality.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/validation/equality.ts -------------------------------------------------------------------------------- /typescript-react/src/components/validation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/validation/index.ts -------------------------------------------------------------------------------- /typescript-react/src/components/validation/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/validation/interfaces.ts -------------------------------------------------------------------------------- /typescript-react/src/components/validation/numeric.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/validation/numeric.ts -------------------------------------------------------------------------------- /typescript-react/src/components/validation/operators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/validation/operators.ts -------------------------------------------------------------------------------- /typescript-react/src/components/validation/ordinal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/validation/ordinal.ts -------------------------------------------------------------------------------- /typescript-react/src/components/validation/required.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/validation/required.ts -------------------------------------------------------------------------------- /typescript-react/src/components/validation/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/validation/text.ts -------------------------------------------------------------------------------- /typescript-react/src/components/validation/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/validation/type.ts -------------------------------------------------------------------------------- /typescript-react/src/components/validation/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/components/validation/utils.ts -------------------------------------------------------------------------------- /typescript-react/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/constants.ts -------------------------------------------------------------------------------- /typescript-react/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/index.ts -------------------------------------------------------------------------------- /typescript-react/src/marshalling/Marshaller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/marshalling/Marshaller.ts -------------------------------------------------------------------------------- /typescript-react/src/marshalling/MarshallingError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/marshalling/MarshallingError.ts -------------------------------------------------------------------------------- /typescript-react/src/marshalling/__mocks__/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/marshalling/__mocks__/mocks.ts -------------------------------------------------------------------------------- /typescript-react/src/marshalling/__tests__/Marshaller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/marshalling/__tests__/Marshaller.spec.ts -------------------------------------------------------------------------------- /typescript-react/src/marshalling/__tests__/assert.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/marshalling/__tests__/assert.spec.ts -------------------------------------------------------------------------------- /typescript-react/src/marshalling/__tests__/boot.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/marshalling/__tests__/boot.spec.ts -------------------------------------------------------------------------------- /typescript-react/src/marshalling/assert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/marshalling/assert.ts -------------------------------------------------------------------------------- /typescript-react/src/marshalling/boot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/marshalling/boot.ts -------------------------------------------------------------------------------- /typescript-react/src/marshalling/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/marshalling/index.ts -------------------------------------------------------------------------------- /typescript-react/src/marshalling/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/marshalling/utils.ts -------------------------------------------------------------------------------- /typescript-react/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /typescript-react/src/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/types/global.d.ts -------------------------------------------------------------------------------- /typescript-react/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/typings.d.ts -------------------------------------------------------------------------------- /typescript-react/src/util/AsyncUtils/AsyncUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/util/AsyncUtils/AsyncUtils.ts -------------------------------------------------------------------------------- /typescript-react/src/util/CryptoUtils/CryptoUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/util/CryptoUtils/CryptoUtils.ts -------------------------------------------------------------------------------- /typescript-react/src/util/DomUtils/DomUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/util/DomUtils/DomUtils.ts -------------------------------------------------------------------------------- /typescript-react/src/util/Formatters/CurrencyFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/util/Formatters/CurrencyFormatter.ts -------------------------------------------------------------------------------- /typescript-react/src/util/Formatters/DateFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/util/Formatters/DateFormatter.ts -------------------------------------------------------------------------------- /typescript-react/src/util/Formatters/DateTimeFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/util/Formatters/DateTimeFormatter.ts -------------------------------------------------------------------------------- /typescript-react/src/util/Formatters/NumberFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/util/Formatters/NumberFormatter.ts -------------------------------------------------------------------------------- /typescript-react/src/util/FunctionalUtils/FunctionalUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/util/FunctionalUtils/FunctionalUtils.ts -------------------------------------------------------------------------------- /typescript-react/src/util/NumberUtils/NumberUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/util/NumberUtils/NumberUtils.ts -------------------------------------------------------------------------------- /typescript-react/src/util/SetUtils/SetUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/util/SetUtils/SetUtils.ts -------------------------------------------------------------------------------- /typescript-react/src/util/SetUtils/__tests__/RichSet.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/util/SetUtils/__tests__/RichSet.spec.ts -------------------------------------------------------------------------------- /typescript-react/src/util/SortUtils/SortUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/util/SortUtils/SortUtils.ts -------------------------------------------------------------------------------- /typescript-react/src/util/StringUtils/StringUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/util/StringUtils/StringUtils.ts -------------------------------------------------------------------------------- /typescript-react/src/util/presenter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/util/presenter.ts -------------------------------------------------------------------------------- /typescript-react/src/util/time/__tests__/time.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/util/time/__tests__/time.spec.ts -------------------------------------------------------------------------------- /typescript-react/src/util/time/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/util/time/constants.ts -------------------------------------------------------------------------------- /typescript-react/src/util/time/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/util/time/time.ts -------------------------------------------------------------------------------- /typescript-react/src/util/time/timezones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/src/util/time/timezones.json -------------------------------------------------------------------------------- /typescript-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/tsconfig.json -------------------------------------------------------------------------------- /typescript-react/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/tsconfig.test.json -------------------------------------------------------------------------------- /typescript-react/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-doo/revenj/HEAD/typescript-react/yarn.lock --------------------------------------------------------------------------------