text
stringlengths
20
57.3k
labels
class label
4 classes
Title: Research support for programmatic migrations Body: # Problem Many other Python ORMs have support for programmatically running migrations, i.e. each individual step in a migration is written to a python file that can be modified by the user. While we already support using standard Prisma migrations we should lo...
2hard
Title: JS cleanup Body: There is a lot of JS files in themes and plugins. https://github.com/pythonhub/quokka/search?l=javascript&p=1 The idea is to shrink that.
2hard
Title: add `nrows` Body: - expose a new argument `nrows=None` + default: auto-detect terminal height with some sensible default such as `20` (similar to `ncols`) - hide bars `if n < total and pos >= nrows` + completed/`close()`d bars will ignore `nrows` and just print according to `leave` - [ ] TODO: link r...
2hard
Title: Add support for transactions Body: Prisma has preview support for [interactive transactions](https://www.prisma.io/docs/concepts/components/prisma-client/transactions#interactive-transactions). The base work for this has already been done in the `wip/transactions` branch, some kinks need to be ironed out. ...
2hard
Title: Redirects for changed urls Body: Implemented history of changed urls for redirects
2hard
Title: Embedding Sphinx Extension Body: This issue was opened in light of trying to embed lux widgets in the documentation. We've tried a variety of solutions listed below, but none of them were able to either import or embed the widgets. Our most recent version can be found on this [branch](https://github.com/caitlyn...
2hard
Title: Pi-Plates Body: Can we add the Pi-Plates and Automation hat to your software. That would be awesome!
2hard
Title: Publish workflow (optional) Body: Optional workflow for publishing once enabled should: Have a pipeline for approval Replace "publish/save" button with "put for approval" Users defined in pipeline will be able to approve Thy will have a dashboard also will receive an email with "one click approval link"
2hard
Title: Add support for the Prisma Data Proxy Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> The Prisma Data Proxy solves the issues with managing connections in serverless applications. While it is in beta at the moment, we should support it ...
2hard
Title: Add tests for the synchronous client Body: We did previously have tests for the synchronous client but the test setup broke with the latest pytest version. We should add these back using the `databases/` tests.
2hard
Title: Investigate removing `prisma()` prefix from model-based queries Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> We currently require that query methods called from model classes must first call `.prisma()`, e.g. ```py user = User.pr...
2hard
Title: Upgrade Flask-Admin Body: https://github.com/flask-admin/flask-admin changed a lot, now there is the need to adjust Quokka templaring and Quokka-themes to work with the new admin
2hard
Title: (Not an issue right now) Handle multiple returns Body: ~~I'll try to work on this relatively soon, but~~ to think out loud.. In interprocedural_cfg.py, we have ```python def return_handler(self, node, function_nodes): """Handle the return from a function during a function call.""" call_node = N...
2hard
Title: Add support for database views Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> Prisma added preview feature support for views in `4.9.0`. We should support this too. ## Suggested solution <!-- A clear and concise description of wh...
2hard
Title: Search Body: SearchView and Search urls should be implemented Better if using built in MongoDB full text search feature modules should have a way to define the index schema, maybe a new file **search_indexes.py** (remember to add in cookiecutter template) By default Content and Channel should be indexed. Sea...
2hard
Title: Add support for ordering by relevance Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> Prisma has support for ordering full text search results by relevance, we should support it too. https://www.prisma.io/docs/concepts/components/pri...
2hard
Title: Add support for field references in query filters Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> Prisma added support for referencing fields in query filters in `v.4.3.0`, we should support it too. https://www.prisma.io/docs/referen...
2hard
Title: Enforce calling of `Case.call` in Python tests Body: In Python tests generated by Schemathesis, it's crucial to call `case.call` to execute the test case properly. However, users sometimes forget to include this call, leading to potential confusion and incomplete tests. However, there could be use cases like ...
2hard
Title: Control installed modules via database / remove the auto loader for blueprints Body: I like the auto-load feature, you just drop a module folder and it is done! but it is error prone and I am already having trouble with naming problems. Now the idea is to keep the folder /modules and the same blueprint structur...
2hard
Title: Generate Async and Sync client together at the same time Body: ## Problem In my project, i mixed sync and async operations together, so i have to use sync and async in the same project but not in the same context. ## Suggested solution Shall we just generate sync and async clients together? ## Altern...
2hard
Title: Implement black code formatting as pre-commit Body: In order to avoid style-related comments when discussing code with contributors, I propose that we implement the [black](https://github.com/ambv/black) python code formatter as a pre-commit requirement for development. This will potentially have a large imp...
2hard
Title: Role based access control to posts in admin Body: in admin the access to content needs to be controlled by role. by default we have admin, moderator, editor, viewer - admin (can access all) - moderator (can access all content except administration options) - editor (can access only the self-created content or c...
2hard
Title: [Bug] Web 终端使用 sz 下载 100kb 左右的文件卡在 99% 并控制台报错 Body: ### Product Version v4.2.0; v4.1.0 ### Product Edition - [X] Community Edition - [ ] Enterprise Edition - [ ] Enterprise Trial Edition ### Installation Method - [X] Online Installation (One-click command installation) - [ ] Offline Package Installation - [...
2hard
Title: Fix ParallelCoordinates tests and add fast parameter Body: See #420 - [x] fix image comparison tests for parallel coordinates - [x] add `fast=False` argument and docstring - [x] create fast and regular drawing methods based on parameter - [x] add section in documentation explaining fast vs. slow - [x...
2hard
Title: The take argument should affect the return type Body: For example, the following will not raise an index error in mypy ```py user = await client.user.find_unique(where={'id': 1}, include={'posts': {'take': 1}}) assert user is not None post = user.posts[2] ``` One solution would be to modify the return ty...
2hard
Title: Refactor internal query builder to use the JSON protocol Body: Prisma are working on removing the internal GraphQL protocol and moving to a JSON-based approach instead which will simplify a lot of internal code and potentially result in the ability to completely remove certain codegen-metadata resulting in small...
2hard
Title: Support defining the Prisma Schema using python models Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> One potential source of conflict when transitioning to use Prisma Client Python from other ORMs is that models must be defined in a s...
2hard
Title: Version control for content Body: Thinking on using this with different configurable backends. - Database (versions will be stored as collections in db) - Git (will use gittle to serialize and store versions to disk/repo)
2hard
Title: Add benchmarking to tests Body: Due to the issues of fast vs. slow in `ParallelCoordinates` (see #230 and #448) -- it may be useful to have a benchmarking utility in our tests to ensure that our visualizers run at a near constant speed given the same data.
2hard
Title: Simpler syntax to create lists, dicts, and other collections as arguments to keywords Body: Robot's automatic argument conversion (#2890) makes it possible to have a keywords like ```python def accept_list(arg: list): ... def accept_dict(arg: dict): ... ``` and call them so that argument are Pyt...
2hard
Title: [ENH] Pyjanitor for PySpark Body: # Brief Description <!-- Please provide a brief description of what you'd like to propose. --> I would like to know if there are any interest to create pyjanitor for pyspark? I'm using pyspark a lot and I would really like use custom method chaining to clean up my ETL code...
2hard
Title: Allow resource files and libraries to be imported privately in other resource files Body: It could be beneficial if users could import resource files and libraries in a "private" way. Currently, resource files are imported in a sort of recursive way where you have access to all keywords that resource file import...
2hard
Title: Move subtask queueing to workers Body: ## Motivations Mars now handles all subtasks within a single supervisor. When the number of subtasks or workers is large, there can be huge load on a supervisor node. What's more, scheduling merely on the supervisor side brings considerable latency between worker tasks. ...
2hard
Title: Add support for ordering by relations Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> Since Prisma [v3.0.1](https://github.com/prisma/prisma/releases/tag/3.0.1) ordering by relational fields is generally available. We should support it ...
2hard
Title: Multiple Filter Support Body: Currently when multiple filters are applied it is unclear if an OR or AND is applied. Not enough explanations and information is displayed on the visualization to indicate this. For example, even though clauses are combined via conjunction, in this example, it seems like only one o...
2hard
Title: Custom test settings a.k.a. test metadata Body: It would be great If we have keyword that will be able to set `test metadata` to test report. This is not issue, when you are running tests using robot, but when you're running tests using pabot the `suite metadata` is not enough to cover all the information that ...
2hard
Title: Implement permission management on admin for post editing Body: Suggested by @matheusbrat > is it possible to apply a prefilter on quokka admin? For example, a editor could see just his publications instead of all? Desired functionality 1. Admin can see/edit everything 2. On role create it should be possible t...
2hard
Title: Support heavily nested relational querying Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> We currently define all nested relational input types like: `PostCreateWithoutRelationsInput` when we could instead define them like: `PostCreate...
2hard
Title: Python 3 support is not ok Body: Running with Python3.x still raises a lot of erros, some of them below: - [ ] It misses pep8 and pyflakes packages (should add to requirements) - [ ] flaskhtmlbuilder uses unicode() and it does not exists in py3, lead in to an error in admin
2hard
Title: Windows Image Similarity Tests Body: A good suggestion came out from @jkeung at pycon2018, we should investigate creating separate baseline images for windows machines. Recommend that we had a check in the base.py for if the machine is windows and then direct the test to checkout the windows folder in baselin...
2hard
Title: Refactor the internal Query Builder to serialise using type information Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> Currently our Client API is tightly coupled to the internal GraphQL API, this is because we just naively send argume...
2hard
Title: Add support for the Active Record Pattern Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> Popular Python ORMs such as the Django ORM have support for the [Active Record Pattern](https://en.wikipedia.org/wiki/Active_record_pattern), e.g....
2hard
Title: Make use of property based testing Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> Due to auto-generated nature of the client and the heavily nested query arguments, there are many possible combinations of arguments and methods that we ...
2hard
Title: [BUG]: Pytest with a specific config failed after PR #5868 Body: ### Is there an existing issue for this bug? - [X] I have searched the existing issues ### 🐛 Describe the bug Main repo test_shard_llama fails for these configs: ``` {'tp_size': 2, 'pp_size': 2, 'sp_size': 2, 'num_microbatches': 2, '...
2hard
Title: Export CI images to S3 Body: Create a TravisCI `after_failure` script that uploads actual images and diffs to S3 so we can diagnose TravisCI failures. ### Proposal/Issue It seems like every time we push a commit to GitHub the TravisCI tests fail, even if they were working locally. Right now we're messing ...
2hard
Title: pyee error | exception calling callback for <Future at 0x737d75f0 state=finished raised KeyError> Body: # How to submit an Issue to a Mycroft repository When submitting an Issue to a Mycroft repository, please follow these guidelines to help us help you. ## Be clear about the software, hardware and versio...
2hard
Title: Support skipping pydantic validation Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> One reason for slower performance is that we validate the data that the prisma engine gives us using pydantic models. At least providing an option to s...
2hard
Title: Support discarding action results Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> When doing batch inserts the resulting data is normally completely ignored. However we will still convert the data that Prisma gives us into Pydantic mode...
2hard
Title: Explore using DMMF types directly Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> Currently, we define our own types based off of the model definitions themselves, however, Prisma also includes the actual type definitions themselves in ...
2hard
Title: Hobbies corpus unicode decoding error on Windows x64 (AppVeyor) Body: **Describe the bug** There appears to be a unicode decoding error on Python 3 in Windows when loading the hobbies corpus. This was observed in AppVeyor builds that use the hobbies corpus during testing such as #489 but is probably true for ...
2hard
Title: Consider: dropping custom SaveLoad in favor of Pickle v.5 or joblib.dump? Body: [PEP 574](https://www.python.org/dev/peps/pep-0574/) defines pickle-version-5, which supports alternate serialization of things like large numpy arrays. It's natively available in Python 3.8, with a PyPI backport [pickle5](https://p...
2hard
Title: Add support for native query engine bindings Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> Prisma has experimental support for natively binding the query engine to the node client, this reduces the overhead between the client and the ...
2hard
Title: Online clustering Body: Hi, thanks a lot for the work here! Do you plan on adding support for online training? Similar to scikit's partial_fit()? Best, Olana
2hard
Title: Supporting export/copyable intent Body: Vis objects are currently exported as code via `to_Altair` or `to_VegaLite`, but the Lux syntax is not exposed. As suggested by @adityagp, we should extend Lux with a feature that allows users to copy the code that generates the intent via a UI button so that users can pas...
2hard
Title: post_update UPDATE statement will bump version_id a second time, but also not get the correct value if a committed_state is present Body: ### Discussed in https://github.com/sqlalchemy/sqlalchemy/discussions/10798 ```py from sqlalchemy import Column from sqlalchemy import create_engine from sqlalchemy impo...
2hard
Title: Add support for selecting fields Body: ## Problem A crucial part of modern and performant ORMs is the ability to choose what fields are returned, Prisma Client Python is currently missing this feature. ## Mypy solution As we have a mypy plugin we can dynamically modify types on the fly, this means we wo...
2hard
Title: Upgrade MongoDB to v6.x Body: ## SUMMARY MongoDB V4.4 is EOL in Feb 2024 (as per https://www.mongodb.com/support-policy/lifecycles ). It would be nice to have a version upgrade to V5.x. Background: We are using external MongoDB provided by our internal DB team. They started upgrading the DBs from the pr...
2hard
Title: Uploading images via TinyMCE or anather WYSIWYG editor Body: Is it possible?
2hard
Title: Implement CopyNext model Body: https://api.semanticscholar.org/CorpusID:225103260 This is similar to [`CopyNet`](https://docs.allennlp.org/models/main/models/generation/models/copynet_seq2seq/#copynetseq2seq) from [Gu et al., 2016](https://api.semanticscholar.org/CorpusID:8174613), but adds an inductive bias ...
2hard
Title: Delegate binary downloading to prisma Body: ## Problem With many possible configurations and settings, binary downloading is complicated, as such we should see if it is possible to delegate this task to the prisma as they already handle all of it for us. This is an issue as we currently don't respect any b...
2hard
Title: Add support for querying from partial models Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> Currently partial models cannot be used with model-based access. ```py from prisma.partials import UserOnlyId user = await UserOnlyId.pr...
2hard
Title: [BUG] Examples for request body ignored during testcase generation Body: **Describe the bug** Yesterday I was testing an OAS which had the following pattern `^(?=[[:ascii:]]+$)[^\/\\\s$]{1,36}$` and for some reason this caused schemathesis to ignore the examples I provided for my request body. **To Reprod...
2hard
Title: Why is a high tolerance required to pass Classification Report Image Similarity Test??? Body: **Describe the issue** A clear and concise description of what the issue is. Since adding 'support' feature, there is a fairly big jump in tolerance required for classification reports to pass image tests. We need ...
2hard
Title: Add a function for casting to magic types Body: ## Problem Referencing magic types (types that are modified by a plugin) can be annoying as it is not possible to properly represent them. We should add a function similar to [`typing.cast`](https://docs.python.org/3/library/typing.html#typing.cast) that type...
2hard
Title: feat: cockroachdb support Body: ## Problem Right now we can't use providers that have been added recently : Cockroachdb & Planetscale. Any file generation attempt returns: ``` Error: Get config: Schema Parsing P1012 error: Datasource provider not known: "cockroachdb". --> schema.prisma:2 | ...
2hard
Title: Add support for `binaryTargets` generator option Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> After #454 is merged we will not properly generate the current binary platform name. This is fine for now as Prisma gives us the binary pat...
2hard
Title: Improve support for dynamic query building Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> Other ORMs such as Django have support for custom dynamic query building with [managers](https://docs.djangoproject.com/en/4.0/topics/db/managers...
2hard
Title: Optimise generated types Body: In order to circumvent mypy not supporting recursive types we duplicate every would-be recursive type. While this works it leads to a massive number of types being generated which slows down mypy considerably. This appears to be unavoidable but we can improve performance by only...
2hard
Title: Support packaging applications into a single binary Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> We have not investigated whether or not Prisma Client Python can be used with python packagers like pyinstaller and py2exe. It is highly...
2hard
Title: Add support for filtering by Json values Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> Prisma supports [filtering by the values of json fields](https://www.prisma.io/docs/reference/api-reference/prisma-client-reference#json-filters), ...
2hard
Title: Add support for more aggregation features Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> We currently only support aggregating by `count`, prisma [supports aggregation](https://www.prisma.io/docs/reference/api-reference/prisma-client-r...
2hard
Title: ContentBox to bundle itens Body:
2hard
Title: Settings improvement Body: - [x] rewrite app.config to get settings from database (overwritting) - [x] remove the code that updates settings on Config.save() - [x] add app factory to create_minimum_app (for context) - [x] Make quokka.utils.lazy_setting to use with create_minumum_app().app_context() to allow the ...
2hard
Title: User Guide update Body: DESCRIPTION TODO
2hard
Title: Support query raw annotations Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> Prisma recently changed how raw queries work internally, values are now returned alongside meta information, for example: ```json { "count": {"prisma__...
2hard
Title: [FEATURE] Recursion limit to examples Body: ### Is your feature request related to a problem? Please describe to have control on the recursion in explicit examples ### Describe the solution you'd like from the documentation is see a similar `stateful-recursion-limit=<N>` when following links maybe we c...
2hard
Title: Namespace client methods Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> Model names can clash with methods like `connect()`, `query_first()` etc ## Suggested solution <!-- A clear and concise description of what you want to happe...
2hard
Title: [BUG]: Pipeline Parallelism fails when input shape varies Body: ### Is there an existing issue for this bug? - [X] I have searched the existing issues ### 🐛 Describe the bug Pipeline parallelism fails when input size is different. Such as : ``` for batch in iter: #batch1: bs*seq=1*128 #batch2: bs...
2hard
Title: Fix Pyright linting in CI Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> Our Pyright linting is actually missing files and not checking them.... ## Suggested solution <!-- A clear and concise description of what you want to happe...
2hard
Title: Add support for filtering by non-unique properties in unique queries Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> Prisma added preview feature support for this in `4.5.0`, we should support this too (if the feature flag is set). #...
2hard
Title: [Metric]Add metrics Body: <!-- Thank you for your contribution! Please review https://github.com/mars-project/mars/blob/master/CONTRIBUTING.rst before opening an issue. --> ## Background There is no metrics in mars and it's useful and necessary to add a simple and convenient metric framework. ## Desi...
2hard
Title: Better way to manage js/css dependencies Body: Seems quokka depends on lots of external js library, such as - bootstrap - lepture/editor - tinymce So I'm considering a better way to organize and manage the js dependencies. These days I'm trying to learn something about nodejs, and some js dependency managment...
2hard
Title: Fix mypy plugin Body: <!-- Thanks for helping us improve Prisma Client Python! 🙏 Please follow the sections in the template and provide as much information as possible about your problem, e.g. by enabling additional logging output. See https://prisma-client-py.readthedocs.io/en/stable/reference/logging/ for...
2hard
Title: Better support for Pandas.Series Body: We should create a LuxSeries object to take on the sliced version of the LuxDataframe, following [guidelines](https://pandas.pydata.org/pandas-docs/stable/development/extending.html#override-constructor-properties) for subclassing DataFrames. We need to pass the `_metadata`...
2hard
Title: Standardize benchmark code of arctic Body: We currently we have multiple unrelated benchmarks for various scenarios: - generic Arctic top level calls - draft Arctic breakdown solution for keeping track of where time goes ((de)compress, numpy, serialization, MongoDB IO) - draft Arrow serialization benchmarks ...
2hard
Title: deprecate ScatterPlotVisualizer Body: - ``ScatterPlotVisualizer`` is being moved to contrib in 0.8 - ``DecisionBoundaryVisualizer`` is being moved to contrib in 0.8
2hard
Title: Support creating variables that are not logged even on TRACE level Body: Often in automation we need to use passwords or other values that should not be logged. To help with that, various libraries have keywords that avoid logging given values even though their keywords normally do that. For example, SeleniumLib...
2hard
Title: tqdm.auto.tqdm problem detecting IPython (Spyder and Jupyter QtConsole) Body: ## Frontmatter - [x] I have marked all applicable categories: + [ ] exception-raising bug + [x] visual output bug + [ ] documentation request (i.e. "X is missing from the documentation." If instead I want to ask "how to...
2hard
Title: Add support for `Prisma.JsonNull` equivalent Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> https://discord.com/channels/933860922039099444/1080804462970535996/1080804462970535996 ## Suggested solution <!-- A clear and concise de...
2hard
Title: Configuration file support Body: DESCRIPTION TODO
2hard
Title: [shardformer, pipeline]: add `gradient_checkpointing_ratio` and heterogenous shard policy Body: ## Description `gradient checkpointing` is known to be memory efficient yet could slow down the TGS(Tokens per second for a GPU) to 75% (Est. value, assuming time of backward = 2x time of forward). Thus, it is a tr...
2hard
Title: Potentially unnecessary binary files on generate Body: ## Bug description In a basic Docker container: ``` FROM python:3.8 WORKDIR /app COPY requirements.txt requirements.txt RUN pip3 install -r requirements.txt COPY schema.prisma schema.prisma RUN prisma generate COPY . . CMD ["python3", "main.py"] ...
2hard
Title: Add user dissimilarity matrix Body: Hi, first of all, thanks for your precious work. I have this suggestion: for the categorical variable is is possible to add a precomputed dissimilarity matrix (like from gower function)? Thanks
2hard
Title: Add Jupyter Notebook Widgets Body: This is an initial issue to track and research incorporating interactive Jupyter Notebook widgets into yellowbrick. Likely any outputs from this would be well placed in the `contrib` module A few potentially bad use cases: - Feature analysis one or many categories - ...
2hard
Title: Add support for the Unsupported type Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> Prisma supports an `Unsupported` type that means types that Prisma does not support yet can still be represented in the schema. We should support it too. ...
2hard
Title: Animated Feature Visualizers Body: Without too much work, it appears that we can create an animated image that captures changes to a dataset over time or some series related domain. We could accomplish this by using the built in `matplotib.animation` Here's an example located here: https://matplotlib.org/...
2hard
Title: Topic Saliency and Relevancy Frequency Distribution Body: **Describe the solution you'd like** Adapt or extend the `FreqDist` visualizer to show not just the frequency of tokens in the corpus but rank them according to their relationship to a topic model (e.g. LDA). Ranked by *saliency*, the `FreqDist` will sh...
2hard
Title: In place edit for posts Body: If "admin" or "editor" is logged in, should see an "EDIT" icon on the top of each post, it should open a "modal" window with quick-edit form to edit Title, Slug, Body/Description and tags. The modal should follow the "content_format" to choose the editor.
2hard
Title: Replace internal commenting system and use as default instead of disqus Body: Started a new project to handle comments https://github.com/rochacbruno/flasqus Quokka internal comments should be the default again but using this Flasqus solution when its ready. Disqus, Intensedebate and facebook will still be an ...
2hard
Title: Support FirePAd collaborative editor (for multiauthors in realtime) Body: https://github.com/firebase/firepad
2hard