Hi,
Part of the issue here is that you almost always going to have unstaged changes
in the SDK eg rat report, mustella test results, player swc or AIR SDK files
etc etc. In that case a git pull -rebase will always fail with "Cannot pull
with rebase: You have unstaged changes." .And you don't w
Well, I completed my .gitignore right after a sdk build + other locales, I
put the generated files/folders to be exclude from git operations in the
.gitignore to avoid this kind situation, do you mean it still happens ?
Thanks,
-Fred
-Message d'origine-
From: Justin Mclean
Sent: Thur
Hi,
> Well, I completed my .gitignore right after a sdk build + other locales, I
> put the generated files/folders to be exclude from git operations in the
> .gitignore to avoid this kind situation, do you mean it still happens ?
Yep it still happens. Unless there something more I need to do w
Hi,
I've started to get some of the git related information, including the
abundance of viewpoints, onto the wiki [1] ...
I'm getting really ticked off that some of the most vocal proponents
of the move to git - promising all the time to really (yes, really)
help out when it did happen - seem to
Ok, from what Erik said on a previous post and because he is on OSX, it
appears there's one more extension to add to the .gitignore.
I you do a release, I guess other files will be candidate to an addition
into this file too, I guess you can manage that, simply add those
files/folders to the "Ap
+1
As a side note and as I stated before, I wasn't one of them, I was for a
sub-git solution, from where you can work with svn as well as with git :P
-Fred
-Message d'origine-
From: Erik de Bruin
Sent: Thursday, March 21, 2013 8:28 AM
To: dev@flex.apache.org
Subject: [Git] getting w
Ok, I should have say "in this case, use 'git rebase -p origin/develop' to
preserve your 'merged branch commit' from being rewriten/flattened, then you
can push.", I guess that's more english.
As I don't know how I can explain that clearlier, just tell me what you want
me to give some more det
Hi,
> Ok, I should have say "in this case, use 'git rebase -p origin/develop' to
> preserve your 'merged branch commit' from being rewriten/flattened, then you
> can push.", I guess that's more english.
How do I know what this is going to do? git pull has a "--dry-run" option but
it seems get
True, the git rebase hasn't got a dry run but you can undo it if it didn't
please you:
git reflog
be9dd19 HEAD@{0}: commit: added test2.txt
b182b7f HEAD@{1}: rebase finished: returning to refs/heads/master
b182b7f HEAD@{2}: pull --rebase: CREATED myFile1.txt
db46d91 HEAD@{3}: checkout: moving f
Erik,
Can I update the daily workflow ?
-Fred
-Message d'origine-
From: Erik de Bruin
Sent: Thursday, March 21, 2013 8:28 AM
To: dev@flex.apache.org
Subject: [Git] getting workflow onto Wiki
Hi,
I've started to get some of the git related information, including the
abundance of
Fred,
Please hold on, I'm reading through all discussions relating to Git
and adding everything that has been discussed by just copy-pasting.
Once I'm done with that, I'll give the page(s) some initial structure
and ask for input from the list. Does that sound like a plan?
EdB
On Thu, Mar 21,
I wouldn't like double work, can you just hold one 1mn, the time I copy
paste on the wiki, then you can restart ?
Thanks,
-Fred
-Message d'origine-
From: Erik de Bruin
Sent: Thursday, March 21, 2013 10:21 AM
To: dev@flex.apache.org
Subject: Re: [Git] getting workflow onto Wiki
Fred,
I have saved what I had, will not edit until you ping here with an OK.
EdB
On Thu, Mar 21, 2013 at 10:26 AM, Frédéric THOMAS
wrote:
> I wouldn't like double work, can you just hold one 1mn, the time I copy
> paste on the wiki, then you can restart ?
>
> Thanks,
>
> -Fred
>
> -Message d'origi
All done !
Thanks,
-Fred
-Message d'origine-
From: Erik de Bruin
Sent: Thursday, March 21, 2013 10:29 AM
To: dev@flex.apache.org
Subject: Re: [Git] getting workflow onto Wiki
I have saved what I had, will not edit until you ping here with an OK.
EdB
On Thu, Mar 21, 2013 at 10:26 AM,
Hi,
Just noticed there's a hadoop project proposal with a name of "Falcon" I don't
see any issues or confusion among users (difference project space etc) - any of
the PMC have anything to add?
Thanks,
Justin
Btw, shouldn't the greenshock dependency be removed before donation? I
don't think they have a compatible license.
On 21 March 2013 05:22, Alex Harui wrote:
>
>
>
> On 3/20/13 9:39 PM, "Om" wrote:
>
> > On Wed, Mar 20, 2013 at 9:13 PM, Alex Harui wrote:
> >
> >> Igor,
> >>
> >> First I need t
Erik,
Arff, a quick review told me the git merge --no-ff Flex-12345 should go
before git pull --ff-only, if yo want to correct it ;-)
Thanks,
-Fred
-Message d'origine-
From: Frédéric THOMAS
Sent: Thursday, March 21, 2013 10:34 AM
To: dev@flex.apache.org
Subject: Re: [Git] getting wo
Hi,
> True, the git rebase hasn't got a dry run but you can undo it if it didn't
> please you:
>
> git reflog
Seems it doesn't always work - which makes me a little nervous:
http://stackoverflow.com/questions/134882/undoing-a-git-rebase
Sometime you need to do this (a bit scary):
http://www.bl
[
https://issues.apache.org/jira/browse/FLEX-33350?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13608794#comment-13608794
]
Maxime Cowez commented on FLEX-33350:
-
I'm the author of the early draft for this comp
I had a quick look at the 1rst one, this anwser is the good one to me:
The easiest way would be to find the head commit of the branch as it was
immediately before the rebase started in the reflog...
git reflog
and to reset the current branch to it (with the usual caveats about being
absolutel
Hi,
> I had a quick look at the 1rst one, this anwser is the good one to me.
Yep but it doesn't work in all cases.
> If you've enabled per branch reflogs
How do you do this?
> you should be able to simply do git reflog branchname@{1} as a rebase
> detaches the branch head before reattaching to
You can add [1] to your .gitconfig to have per branch refrog in all of your
repos, but personaly, I don't had to use it, the git reflog gives all git
operations done, included in branches.
Note: with the workflow I gave on the wiki, such situation shouldn't happen,
especialy because, we don't
Erik,
One more thing, the 'develop' has to be remove from 'git checkout -b
Flex-12345 develop' :P
Thanks,
-Fred
-Message d'origine-
From: Frédéric THOMAS
Sent: Thursday, March 21, 2013 10:45 AM
To: dev@flex.apache.org
Subject: Re: [Git] getting workflow onto Wiki
Erik,
Arff, a qui
Thank you, looks great. I'll make a separate page for your
contribution and add some comments and your change.
EdB
On Thu, Mar 21, 2013 at 10:34 AM, Frédéric THOMAS
wrote:
> All done !
>
>
> Thanks,
> -Fred
>
> -Message d'origine- From: Erik de Bruin
> Sent: Thursday, March 21, 2013 10:
My apps are all web based (US Govt IE8 user base). The client PCs have the
latest versions of the flash player, but the last approved version of AIR was
v1.5 (which isn't installed anyways).So that rounds out AIR here and HTML5
for the time being.
-Mark
-Original Message-
From: J
Thanks Erik, I'll do some simulations on my git lab to see if I didn't miss
anything and to add particular situations / more details.
-Fred
-Message d'origine-
From: Erik de Bruin
Sent: Thursday, March 21, 2013 11:17 AM
To: dev@flex.apache.org
Subject: Re: [Git] getting workflow onto
IntelliJ IDEA users can overlay AIR SDK (any version) fully because
IntelliJ doesn't care about flex-config.xml, air-config.xml,
airmobile-config.xml and mxmlc.bat files. Just checked that it works
with Flex SDK (any version) + AIR SDK 3.7.
Alexander
On 20.03.2013 22:19, Terry Corbet wrote:
Alexander Doroshko created FLEX-33443:
-
Summary: Typo in manifest.xml (apache.swc): VectorCollecton
instead of VectorCollection
Key: FLEX-33443
URL: https://issues.apache.org/jira/browse/FLEX-33443
[
https://issues.apache.org/jira/browse/FLEX-33443?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Alexander Doroshko updated FLEX-33443:
--
Attachment: screenshot-1.jpg
> Typo in manifest.xml (apache.swc): VectorCollecton i
[
https://issues.apache.org/jira/browse/FLEX-33397?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Cyrill Zadra resolved FLEX-33397.
-
Resolution: Fixed
Fix Version/s: Apache Flex 4.10.0
Patch commited.. Thank you Mark.
[
https://issues.apache.org/jira/browse/FLEX-33443?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Justin Mclean resolved FLEX-33443.
--
Resolution: Fixed
> Typo in manifest.xml (apache.swc): VectorCollecton instead of VectorCol
Yep, Tweenlite will be removed isn't be used by the component.
We're going to use Flex SDK tween.
Igor Costa
www.igorcosta.com
www.igorcosta.org
On Thu, Mar 21, 2013 at 6:44 AM, João Fernandes <
joaopedromartinsfernan...@gmail.com> wrote:
> Btw, shouldn't the gree
Om
As I mentioned in first email, before I had the privilege to commit the
code, I had first auth from Modest Map guys and feedback from others
committers of Flex project and overall users.
That's why I didn't commit in first sentence.
Igor Costa
www.igorcosta.com
w
To not repeat the whole Mozilla -> Phoenix -> Firefox drama, I suggest
to leave it alone. Worst case scenario is that we can't fork the
compiler and make it a TLP while keeping it's current name ;-)
I don't think anyone will confuse "the Apache Flex compiler internally
known as Falcon" with "the o
Igor I think it's a requirement that the guys behind Modest Maps need to
fill all the paperwork required for donation like any other donation.
On 21 March 2013 12:11, Igor Costa wrote:
> Om
>
>
> As I mentioned in first email, before I had the privilege to commit the
> code, I had first auth fr
Erik, tell me pls when you finished with the wiki, I'll correct what I did
this morning like that.
-Thanks,
-Fred
-Message d'origine-
From: Frédéric THOMAS
Sent: Thursday, March 21, 2013 11:22 AM
To: dev@flex.apache.org
Subject: Re: [Git] getting workflow onto Wiki
Thanks Erik, I'll
[
https://issues.apache.org/jira/browse/FLEX-33350?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13608940#comment-13608940
]
Cyrill Zadra commented on FLEX-33350:
-
Mhh ubs I just see I missed to read the first l
Justin, coming back to your first commit, I want to show you the different
possibilities you had, I used my git lab to do that, it's like you have a
computer and me too.
U:\gitLab\work\asf\flex\testWorkFlow\justin>git branch
* develop
master
-
You add locales
-
I'm done for the afternoon, so: take it away!
:-)
EdB
On Thu, Mar 21, 2013 at 2:21 PM, Frédéric THOMAS
wrote:
> Erik, tell me pls when you finished with the wiki, I'll correct what I did
> this morning like that.
>
> -Thanks,
> -Fred
>
> -Message d'origine- From: Frédéric THOMAS
> Sen
[
https://issues.apache.org/jira/browse/FLEX-33413?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13608954#comment-13608954
]
Cyrill Zadra commented on FLEX-33413:
-
The error occurs because playerProductInstall.s
I'm done too I guess for today, it depends, I'll see if I add the same kind
of things for a colaborative workflow today or later.
Everything needs a bit of cleanup but, still, good job Erik ;-)
Thanks,
-Fred
-Message d'origine-
From: Erik de Bruin
Sent: Thursday, March 21, 2013 2:58
> Everything needs a bit of cleanup but, still, good job Erik ;-)
I was only getting started! I hope to finally 'understand' a git
workflow through this action, so it should end up as a more or less
coherent story by the time I finish.
Everyone else: can you please take a look at what is there an
Option 2, please. It's probably easier to keep the name the creators
are currently using, for reference and syncing/updating. It will also
avoid the the idea that the SDK is using old tech ;-)
EdB
On Thu, Mar 21, 2013 at 3:09 PM, Cyrill Zadra (JIRA) wrote:
>
> [
> https://issues.apache.or
[
https://issues.apache.org/jira/browse/FLEX-28915?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13609036#comment-13609036
]
c sills commented on FLEX-28915:
Hello.
We are using flex to develop Android, iOS and Bla
Hi there Joao
We're working on that.
Best Regards
Igor Costa
www.igorcosta.com
www.igorcosta.org
On Thu, Mar 21, 2013 at 9:39 AM, João Fernandes <
joaopedromartinsfernan...@gmail.com> wrote:
> Igor I think it's a requirement that the guys behind Modest Maps need t
[
https://issues.apache.org/jira/browse/FLEX-24594?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13609234#comment-13609234
]
Ken Patel commented on FLEX-24594:
--
fyi, this error is still produced if the following fi
> https://git-wip-us.apache.org/docs/switching-to-git.html#user-name-spaces-for-branches?
So are we adding a voting option 3.5?
- Gordon
-Original Message-
From: omup...@gmail.com [mailto:omup...@gmail.com] On Behalf Of Om
Sent: Wednesday, March 20, 2013 8:46 PM
To: dev@flex.apache.org
On Thu, Mar 21, 2013 at 11:22 AM, Gordon Smith wrote:
> >
> https://git-wip-us.apache.org/docs/switching-to-git.html#user-name-spaces-for-branches
> ?
>
> So are we adding a voting option 3.5?
>
> - Gordon
>
>
Please feel free to add this option and send out a new poll. In that case,
you should
Hi Gordon,
The drawback with those kind of structure is when a user (already a branch)
does a branch, how do you know whom the feature branch belong ?
eg. how do you know which ones are yours ?
FRED-PC /u/gitLab/work/asf/flex/whiteboard (gosmith)
$ git branch
ADD_FEATURE_1
ADD_FEATURE_2
ah
Sorry, I don't follow you. I would think that a feature branch doesn't belong
to a particular person; it's where multiple people are developing a particular
feature.
In any case, don't all the other voting options have some drawback? If there
was an obviously-right option that had no drawbacks,
3.2 seems quite different from 3.5. 3.2 refers to "the whiteboard", implying to
me that there is a repo just for whiteboards. In 3.5 there would be no such
repo.
I'm not going to vote on whiteboards, because I don't have a strong opinion on
how they should be done. And therefore I'm not going t
[
https://issues.apache.org/jira/browse/FLEX-28915?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13609370#comment-13609370
]
Alex Harui commented on FLEX-28915:
---
We always welcome patches from users who can figure
[
https://issues.apache.org/jira/browse/FLEX-28915?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13609380#comment-13609380
]
Alex Harui commented on FLEX-28915:
---
Also, did you try a simpler non-mobile test case th
Fred,
I think I almost understood this. A couple of questions:
1) Why did you have to do "add ." after updating the readme?
2) Why did you have to add "origin develop" to "pull --rebase"?
-Alex
On 3/21/13 6:55 AM, "Frédéric THOMAS" wrote:
> Justin, coming back to your first commit, I want t
[
https://issues.apache.org/jira/browse/FLEX-33413?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13609392#comment-13609392
]
Alex Harui commented on FLEX-33413:
---
Please update the ant task to copy expressInstall.s
A branch should belong to a project (a directory structure) and not shared
by force (it can be a local branch only), the point is that, even with what
INFRA is proposing us, as soon as we will want to do a branch, we'll have to
incorporate every whiteboard inside of it because there's only one m
1) Why did you have to do "add ." after updating the readme?
Because once committed, the stage area doesn't contains this file anymore, I
have to tell it to add my added/modified/removed files, git add . (from a
directory, the dot means: add whatever you're going to find in this
directory/sub-
On 3/21/13 1:23 PM, "Frédéric THOMAS" wrote:
> 1) Why did you have to do "add ." after updating the readme?
>
> Because once committed, the stage area doesn't contains this file anymore, I
> have to tell it to add my added/modified/removed files, git add . (from a
> directory, the dot means:
The Falcon and ASJS repos have been opened up. Please go ahead and test it
out.
Utilities log history is still being investigated.
Whiteboard is pending our decision.
Migration of External has not yet started.
Thanks,
Om
Om,
Btw, I remove my vote of 3.1 and give my +1 to the 3.4 (stay on svn), that's
a lazy vote, I can change my mind ?
-Fred
-Message d'origine-
From: Frédéric THOMAS
Sent: Thursday, March 21, 2013 9:15 PM
To: dev@flex.apache.org
Subject: Re: [Git] repos open?
A branch should belong
Nothing, if I modify a file and just do a commit, the commit does see
anything, the only way is to do a commit -a (Tell the command to
automatically stage files that have been modified and deleted, but new files
you have not told git about are not affected) [1]
-Fred
[1] https://www.kernel.or
Sorry, I have not been tracking the votes. Let me start up a new vote with
these options:
===
What to do with Whiteboard?
1. Use the sparse checkout option as described here (
http://markmail.org/message/dg7hplezkzwiroes)
2. Create a branch per user in the
ah, maybe you meant instead of the dot..., in this case I would have done a
git add README
-Fred
-Message d'origine-
From: Frédéric THOMAS
Sent: Thursday, March 21, 2013 9:33 PM
To: dev@flex.apache.org
Subject: Re: [OT] Log history
Nothing, if I modify a file and just do a commit, th
4. Let whiteboards remain in SVN +1
-Fred
-Message d'origine-
From: Om
Sent: Thursday, March 21, 2013 9:34 PM
To: dev@flex.apache.org
Subject: [DISCUSS] How do we want to handle Whiteboard?
Sorry, I have not been tracking the votes. Let me start up a new vote with
these options:
Just to make it clear, this is not the VOTE thread. We usually discuss
pros and cons of each item in a DISCUSS thread before calling a vote.
Thanks,
Om
On Thu, Mar 21, 2013 at 1:37 PM, Frédéric THOMAS wrote:
> 4. Let whiteboards remain in SVN +1
>
> -Fred
>
> -Message d'origine- From: O
Ok :)
A branch (and generaly the main branch of a repo) should belong to a project
(a directory structure) and not shared
by force (it can be a local branch only), the point is that, even with what
INFRA is proposing us, as soon as we will want to do a branch, we'll have to
incorporate every wh
On 3/21/13 1:36 PM, "Frédéric THOMAS" wrote:
> ah, maybe you meant instead of the dot..., in this case I would have done a
> git add README
>
No, it just hasn't been my experience so far that I need to run add on files
already tracked. I'm about to push something and want to make sure I'm no
On Thu, Mar 21, 2013 at 8:25 AM, Erik de Bruin wrote:
> > Everything needs a bit of cleanup but, still, good job Erik ;-)
>
> I was only getting started! I hope to finally 'understand' a git
> workflow through this action, so it should end up as a more or less
> coherent story by the time I finis
The way I see it:
#1 Pros: Uses Git. Therefore you only need to know one SCM. Any work with
a rich branching history retains that history when landing in the main
repos.
#1 Cons: 240MB initial download. It took several hours for some folks.
#2 Pros: Not sure.
#2 Cons: I think it would be h
Yes, true, that's an other option I forgot because I don't use to use it
because the git way is to work with your working area and then the stage
area where you can prepare what you want in the commit, even at the "line of
a file" level, it's the first way to clean up your work, you can then
co
I followed this only up to the point you did 'git hist'. My git (1.7.12.4) has
no such command.
- Gordon
-Original Message-
From: Frédéric THOMAS [mailto:webdoubl...@hotmail.com]
Sent: Thursday, March 21, 2013 6:55 AM
To: dev@flex.apache.org
Subject: Re: [OT] Log history
Justin, coming
git commit works fine too if you want to skip the stage.
See:
http://markmail.org/thread/xd6vpbz5g7a4aely
--Dasa
On Mar 21, 2013, at 1:47 PM, Alex Harui
wrote:
>
>
>
> On 3/21/13 1:36 PM, "Frédéric THOMAS" wrote:
>
>> ah, maybe you meant instead of the dot..., in this case I would have
OK, then I'm pushing what I have. Run for cover!
Seriously though, it seems like I would always work this way. How often do
you run into scenarios where you are glad you staged before committing?
-Alex
On 3/21/13 1:54 PM, "Frédéric THOMAS" wrote:
> Yes, true, that's an other option I forgot b
Sorry, true, I tried to not using my aliases to demonstrate but I forgot
about that one, copy [1] in your .gitconfig
-Fred
[1]
[alias]
co = checkout
ci = commit
st = status
br = branch
hist = log --pretty=format:\"%h %ad | %s%d
[%an]\" --graph --date=short --decorate
type = cat-file -t
On Thu, Mar 21, 2013 at 2:02 PM, Frédéric THOMAS wrote:
> Sorry, true, I tried to not using my aliases to demonstrate but I forgot
> about that one, copy [1] in your .gitconfig
>
> -Fred
>
> [1]
>
> [alias]
> co = checkout
> ci = commit
> st = status
> br = branch
> hist = log --pretty=format
Difficult to say, it makes my commits more atomic and then clearer and when
I've got time I review my commits too, when I'm in a hurry, I don't do
anything of this though :)
-Fred
-Message d'origine-
From: Alex Harui
Sent: Thursday, March 21, 2013 10:01 PM
To: dev@flex.apache.org
Sub
OK, my next conceptual problem is at
> U:\gitLab\work\asf\flex\testWorkFlow\fred>git pull --rebase Current branch
> develop is up to date.
I assume this is pulling from justin's develop branch into fred's develop
branch. But how did this relationship get established? Was the fred repo cloned
On 3/21/13 2:05 PM, "Frédéric THOMAS" wrote:
> Difficult to say, it makes my commits more atomic and then clearer and when
> I've got time I review my commits too, when I'm in a hurry, I don't do
> anything of this though :)
>
One more question: If I don't have my .gitignore set right, then
As promised, I am getting closer to share my basic FXG to SVG
transformation stylesheet. I propose the location:
flex-asjs (develop)/fxg2svg/
Anyone hates this proposal? If not, I will check my code in soon with a
couple of very basic examples.
Thanks,
Om
It is not linked to the justin repo but as we have a remote one, I created
the same kind of repo that I called flex-sdk.git, it's what is called a bare
repo, you can do it creating first a draft repo with at least one file on
each branch you want inside and then use git clone --bare myDraftRepo
On 3/21/13 2:17 PM, "Om" wrote:
> As promised, I am getting closer to share my basic FXG to SVG
> transformation stylesheet. I propose the location:
>
> flex-asjs (develop)/fxg2svg/
>
> Anyone hates this proposal? If not, I will check my code in soon with a
> couple of very basic examples.
True, I use to verify first doing git status.
-Fred
-Message d'origine-
From: Alex Harui
Sent: Thursday, March 21, 2013 10:13 PM
To: dev@flex.apache.org
Subject: Re: [OT] Log history
On 3/21/13 2:05 PM, "Frédéric THOMAS" wrote:
Difficult to say, it makes my commits more atomic an
When a remote repo is cloned to make a local repo, doing 'git pull' in a
particular branch of the local repo pulls from the corresponding branch in the
remote depo?
- Gordon
-Original Message-
From: Frédéric THOMAS [mailto:webdoubl...@hotmail.com]
Sent: Thursday, March 21, 2013 2:21 PM
until it exists, yep.
-Fred
-Message d'origine-
From: Gordon Smith
Sent: Thursday, March 21, 2013 10:31 PM
To: dev@flex.apache.org
Subject: RE: [OT] Log history
When a remote repo is cloned to make a local repo, doing 'git pull' in a
particular branch of the local repo pulls from the
Why do you say that?
Why can't you just subclass BitmapImage (or Bitmap if it's simple enough) and
add a few event handlers?
On Mar 21, 2013, at 11:34 PM, Jonathan Campos wrote:
> I'm curious if anyone else has created a very very very simple spark image
> already? I'm debating the need for a p
Marcus Fritze created FLEX-33444:
Summary: Application activate Event not dispatched when change Tab
in Firefox aka Focus not correct when using multiple TextInput
Key: FLEX-33444
URL: https://issues.apache.org/j
[
https://issues.apache.org/jira/browse/FLEX-33444?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Marcus Fritze updated FLEX-33444:
-
Attachment: TextInputFocusBug.png
TextInputFocusBug.mxml
TextInput
I pushed changes to flex-tlf and flex-sdk that should enable “ant clean main
checkintests” to run in flex-sdk without any sort of file system links.
It assumes that you have a folder named flex-tlf as a sibling to the flex-sdk
folder. If you aren’t set up that way, then we can add some paramete
tlf instead of flex-tlf wouldn't cool ? I indicated tlf in the others doc,
as I indicated to clone the flex-sdk to sdk :)
-Fred
-Message d'origine-
From: aha...@apache.org
Sent: Thursday, March 21, 2013 11:07 PM
To: comm...@flex.apache.org
Subject: git commit: Fix SDK Build by calling
On Thu, Mar 21, 2013 at 5:03 PM, Harbs wrote:
> Why do you say that?
Problem is that they aren't mouse enabled.
http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/display/InteractiveObject.html
--
Jonathan Campos
[
https://issues.apache.org/jira/browse/FLEX-33444?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Marcus Fritze updated FLEX-33444:
-
Environment:
- Firefox 19.0.2
- Flash Player 11.6.602.180
- Mac OS X 10.8.3, Windows 7, Windows 8
[
https://issues.apache.org/jira/browse/FLEX-33444?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13609604#comment-13609604
]
Marcus Fritze commented on FLEX-33444:
--
Maybe this is not a Flex / Flash issue. Maybe
Yeah, but if you place a BitmapImage in a Group that should be sufficient
and about as lightweight as you can get.
To go further lightweight, you would just use BitmapImage and do some math
on some upper-level container or call hitTestPoint to detect what got
clicked.
On 3/21/13 3:19 PM, "Jonath
[
https://issues.apache.org/jira/browse/FLEX-33444?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13609627#comment-13609627
]
Alex Harui commented on FLEX-33444:
---
If you have time, but an AS-only, non-Flex test app
OK, we'll have to add variables for that.
Can I rename flex-tlf to tlf in the file system or will that mess up git?
On 3/21/13 3:11 PM, "Frédéric THOMAS" wrote:
> tlf instead of flex-tlf wouldn't cool ? I indicated tlf in the others doc,
> as I indicated to clone the flex-sdk to sdk :)
>
> -F
Hi,
> It assumes that you have a folder named flex-tlf as a sibling to the flex-sdk
> folder. If you aren’t set up that way, then we can add some parameters to
> the flex-sdk/frameworks/projects/textLayout/build.xml.
I think that fine as a default but can it be overwritten by a environment
var
Hi,
> Can I rename flex-tlf to tlf in the file system or will that mess up git?
I prefer it to be keep as "flex-tif" ie the same name as the repo's name rather
than just "tlf" as default.
Justin
Can I rename flex-tlf to tlf in the file system or will that mess up git?
No problems
OK, we'll have to add variables for that ?
I trend to use asf/flex/sdk and asf/flex/tlf and it is what I indicated in
the readme and maybe on the web site as well, it can be changed but a
variable would be m
On 3/21/13 4:11 PM, "Justin Mclean" wrote:
> Hi,
>
>> It assumes that you have a folder named flex-tlf as a sibling to the flex-sdk
>> folder. If you aren¹t set up that way, then we can add some parameters to
>> the flex-sdk/frameworks/projects/textLayout/build.xml.
> I think that fine as a
+1
Isn't it typical to have the remote and local repos have the same name?
- Gordon
-Original Message-
From: Justin Mclean [mailto:jus...@classsoftware.com]
Sent: Thursday, March 21, 2013 4:19 PM
To: dev@flex.apache.org
Subject: Re: git commit: Fix SDK Build by calling external ant targ
1 - 100 of 115 matches
Mail list logo