A css who done it: Difference between revisions
No edit summary |
(dbasdafad) |
||
Line 1: | Line 1: | ||
This is a project for special issue 26 | This is a project for special issue 26 , @[[User:Imre|imre]] and @[[User:Wordfa|fred]] | ||
Plan: | |||
- make a plugin | |||
- it tells u who made the CSS for a page your on | |||
- it does this by looking up the spec | |||
Issues to solve: | |||
- how to find who did what in multiple docs that are linked together | |||
What we want to achieve:<syntaxhighlight lang="json"> | |||
{ | |||
"all": { | |||
"contributors": [ | |||
{ | |||
"name": "baksdj", | |||
"company": "dfsdf" | |||
}, | |||
{ | |||
"name": "baksdj", | |||
"company": "dfsdf" | |||
}, | |||
{ | |||
"name": "baksdj", | |||
"company": "dfsdf" | |||
} | |||
], | |||
"date": 2423, | |||
"firstSpec": "www.sdds.fsdfsd", | |||
"what": "sdasdsa sdsads" | |||
}, | |||
"aimi": { | |||
"contributors": [ | |||
{ | |||
"name": "baksdj", | |||
"company": "dfsdf" | |||
}, | |||
{ | |||
"name": "baksdj", | |||
"company": "dfsdf" | |||
}, | |||
{ | |||
"name": "baksdj", | |||
"company": "dfsdf" | |||
} | |||
], | |||
"date": 2423, | |||
"firstSpec": "www.sdds.fsdfsd", | |||
"what": "sdasdsa sdsads" | |||
}, | |||
"other": { | |||
"contributors": [ | |||
{ | |||
"name": "baksdj", | |||
"company": "dfsdf" | |||
}, | |||
{ | |||
"name": "baksdj", | |||
"company": "dfsdf" | |||
}, | |||
{ | |||
"name": "baksdj", | |||
"company": "dfsdf" | |||
} | |||
], | |||
"date": 2423, | |||
"firstSpec": "www.sdds.fsdfsd", | |||
"what": "sdasdsa sdsads" | |||
} | |||
} | |||
</syntaxhighlight> |
Revision as of 12:35, 17 February 2025
This is a project for special issue 26 , @imre and @fred
Plan:
- make a plugin
- it tells u who made the CSS for a page your on
- it does this by looking up the spec
Issues to solve:
- how to find who did what in multiple docs that are linked together
What we want to achieve:
{
"all": {
"contributors": [
{
"name": "baksdj",
"company": "dfsdf"
},
{
"name": "baksdj",
"company": "dfsdf"
},
{
"name": "baksdj",
"company": "dfsdf"
}
],
"date": 2423,
"firstSpec": "www.sdds.fsdfsd",
"what": "sdasdsa sdsads"
},
"aimi": {
"contributors": [
{
"name": "baksdj",
"company": "dfsdf"
},
{
"name": "baksdj",
"company": "dfsdf"
},
{
"name": "baksdj",
"company": "dfsdf"
}
],
"date": 2423,
"firstSpec": "www.sdds.fsdfsd",
"what": "sdasdsa sdsads"
},
"other": {
"contributors": [
{
"name": "baksdj",
"company": "dfsdf"
},
{
"name": "baksdj",
"company": "dfsdf"
},
{
"name": "baksdj",
"company": "dfsdf"
}
],
"date": 2423,
"firstSpec": "www.sdds.fsdfsd",
"what": "sdasdsa sdsads"
}
}